Skip to content
Snippets Groups Projects
Commit f572ef59 authored by Philippe Suter's avatar Philippe Suter
Browse files

No commit message

No commit message
parent c6ecee57
Branches
Tags
No related merge requests found
...@@ -67,7 +67,11 @@ class Analysis(val program: Program) { ...@@ -67,7 +67,11 @@ class Analysis(val program: Program) {
val vc = postconditionVC(funDef) val vc = postconditionVC(funDef)
if(vc != BooleanLiteral(true)) { if(vc != BooleanLiteral(true)) {
reporter.info("Verification condition (post) for ==== " + funDef.id + " ====") reporter.info("Verification condition (post) for ==== " + funDef.id + " ====")
reporter.info(vc) if(Settings.unrollingLevel == 0) {
reporter.info(vc)
} else {
reporter.info("(not showing unrolled VCs)")
}
// reporter.info("Negated:") // reporter.info("Negated:")
// reporter.info(negate(vc)) // reporter.info(negate(vc))
// reporter.info("Negated, expanded:") // reporter.info("Negated, expanded:")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment