Skip to content

Commit 4dcf5fb

Browse files
authored
Merge pull request boogie-org#134 from bkragl/drop-dead-options
Remove dead Boogie options
2 parents 90ee3e9 + 36da229 commit 4dcf5fb

File tree

2 files changed

+1
-12
lines changed

2 files changed

+1
-12
lines changed

source/CoreLib/VerificationPasses.cs

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1158,7 +1158,6 @@ public override CBAProgram runCBAPass(CBAProgram program)
11581158
Debug.Assert(onlyEnsures());
11591159
// Turn on summary computation in Boogie
11601160
Debug.Assert(CommandLineOptions.Clo.StratifiedInlining > 0);
1161-
CommandLineOptions.Clo.StratifiedInliningOption = 1;
11621161
}
11631162

11641163
// Insert summaries
@@ -1694,14 +1693,7 @@ protected void PruneIrrelevantImpls(Program program)
16941693

16951694
public override ErrorTrace mapBackTrace(ErrorTrace trace)
16961695
{
1697-
var ret = trace;
1698-
if(ExtractLoops) ret = elPass.mapBackTrace(trace);
1699-
1700-
if (!runHoudini)
1701-
{
1702-
CommandLineOptions.Clo.StratifiedInliningOption = 0;
1703-
}
1704-
return ret;
1696+
return ExtractLoops ? elPass.mapBackTrace(trace) : trace;
17051697
}
17061698
}
17071699

source/Util/BoogieUtil.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,6 @@ public static bool InitializeBoogie(string clo)
4545
if (!CommandLineOptions.Clo.Parse(args.ToArray()))
4646
return true;
4747

48-
// No Max: avoids theorem prover restarts
49-
CommandLineOptions.Clo.MaxProverMemory = 0;
50-
5148
return false;
5249
}
5350

0 commit comments

Comments
 (0)