Skip to content
Snippets Groups Projects
Commit 773edd8e authored by Etienne Kneuss's avatar Etienne Kneuss
Browse files

Fix

parent 67bc0996
No related branches found
No related tags found
No related merge requests found
...@@ -41,7 +41,7 @@ class GroupedTactic(vctx: VerificationContext) extends Tactic(vctx) { ...@@ -41,7 +41,7 @@ class GroupedTactic(vctx: VerificationContext) extends Tactic(vctx) {
case ((fi @ FunctionInvocation(tfd, args), pre), path) => case ((fi @ FunctionInvocation(tfd, args), pre), path) =>
val pre2 = replaceFromIDs((tfd.params.map(_.id) zip args).toMap, pre) val pre2 = replaceFromIDs((tfd.params.map(_.id) zip args).toMap, pre)
val vc = implies(and(precOrTrue(fd), path), pre2) val vc = implies(and(precOrTrue(fd), path), pre2)
val fiS = exprToShortString(fi) val fiS = sizeLimit(fi.toString, 40)
VC(vc, fd, VCKinds.Info(VCKinds.Precondition, s"call $fiS"), this).setPos(fi) VC(vc, fd, VCKinds.Info(VCKinds.Precondition, s"call $fiS"), this).setPos(fi)
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment