Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
devops committed Oct 17, 2024
2 parents 664df4c + 2d26b93 commit 2b3f7c8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions k-distribution/include/kframework/builtin/domains.md
Original file line number Diff line number Diff line change
Expand Up @@ -1366,10 +1366,10 @@ module INT-SYMBOLIC [symbolic]
rule X %Int N => X requires 0 <=Int X andBool X <Int N [simplification]
// Bit-shifts
rule X <<Int 0 => X [simplification]
rule 0 <<Int _ => 0 [simplification]
rule X >>Int 0 => X [simplification]
rule 0 >>Int _ => 0 [simplification]
rule X <<Int 0 => X [simplification, preserves-definedness]
rule 0 <<Int Y => 0 requires 0 <=Int Y [simplification, preserves-definedness]
rule X >>Int 0 => X [simplification, preserves-definedness]
rule 0 >>Int Y => 0 requires 0 <=Int Y [simplification, preserves-definedness]
endmodule
module INT-SYMBOLIC-KORE [symbolic, haskell]
Expand Down

0 comments on commit 2b3f7c8

Please sign in to comment.