Skip to content

Commit 01f7b52

Browse files
committed
verification errors fixed but DA unsound!!
1 parent a14cc6c commit 01f7b52

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/scala/decider/Decider.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,7 @@ trait DefaultDeciderProvider extends VerifierComponent { this: Verifier =>
344344
return term
345345

346346
val labelNode = getOrCreateAnalysisLabelNode(sourceChunks, sourceTerms)
347-
term // XXX ake: labelNode.map(n => Implies(n.term, term)).getOrElse(term)
347+
labelNode.map(n => Implies(n.term, term)).getOrElse(term)
348348
}
349349

350350
def isPathInfeasible(): Boolean = Verifier.config.disableInfeasibilityChecks() && pcs.getCurrentInfeasibilityNode.isDefined

0 commit comments

Comments
 (0)