Skip to content

Commit

Permalink
Fixed seq indexing manual check.
Browse files Browse the repository at this point in the history
  • Loading branch information
robby-phd committed Mar 20, 2024
1 parent bd705f9 commit 6f432c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions shared/src/main/scala/org/sireum/logika/Logika.scala
Original file line number Diff line number Diff line change
Expand Up @@ -993,9 +993,9 @@ import Util._
}
return s0
}
if (normPCs.contains(loHiCondExp)) {
if (normPCs.contains(th.normalizeExp(loHiCondExp))) {
return accept(loHiCondExp.prettyST, "is in")
} else if (normPCs.contains(th.normalizeExp(loCondExp)) && normPCs.contains(hiCondExp)) {
} else if (normPCs.contains(th.normalizeExp(loCondExp)) && normPCs.contains(th.normalizeExp(hiCondExp))) {
return accept(st"{ ${loCondExp.prettyST}; ${hiCondExp.prettyST} }", "is a subset of")
} else {
val sizeCond = hiCondExp.right
Expand Down

0 comments on commit 6f432c8

Please sign in to comment.