File tree Expand file tree Collapse file tree 2 files changed +1
-12
lines changed
Expand file tree Collapse file tree 2 files changed +1
-12
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments