@@ -49,7 +49,7 @@ public AbstractHoudini(Program program)
4949 this . name2Impl = BoogieUtil . nameImplMapping ( program ) ;
5050
5151 this . vcgen = new VCGen ( program , CommandLineOptions . Clo . ProverLogFilePath , CommandLineOptions . Clo . ProverLogFileAppend , new List < Checker > ( ) ) ;
52- this . prover = ProverInterface . CreateProver ( program , CommandLineOptions . Clo . ProverLogFilePath , CommandLineOptions . Clo . ProverLogFileAppend , CommandLineOptions . Clo . ProverKillTime ) ;
52+ this . prover = ProverInterface . CreateProver ( program , CommandLineOptions . Clo . ProverLogFilePath , CommandLineOptions . Clo . ProverLogFileAppend , CommandLineOptions . Clo . TimeLimit ) ;
5353 this . reporter = new AbstractHoudiniErrorReporter ( ) ;
5454
5555 var impls = new List < Implementation > (
@@ -443,7 +443,7 @@ public VCExpr GetSummaryExpr(Dictionary<string, VCExpr> incarnations, VCExpressi
443443 continue ;
444444
445445 var vexpr = VCExpressionGenerator . False ;
446- consts . Iter ( c => vexpr = gen . OrSimp ( vexpr , gen . Eq ( incarnations [ v . Name ] , gen . Integer ( Microsoft . Basetypes . BigNum . FromInt ( c ) ) ) ) ) ;
446+ consts . Iter ( c => vexpr = gen . OrSimp ( vexpr , gen . Eq ( incarnations [ v . Name ] , gen . Integer ( Microsoft . BaseTypes . BigNum . FromInt ( c ) ) ) ) ) ;
447447 ret = gen . AndSimp ( ret , vexpr ) ;
448448 }
449449
@@ -592,7 +592,7 @@ private object ToValue(Model.Element elem)
592592 {
593593 if ( elem is Model . Integer )
594594 {
595- return Microsoft . Basetypes . BigNum . FromInt ( ( elem as Model . Integer ) . AsInt ( ) ) ;
595+ return Microsoft . BaseTypes . BigNum . FromInt ( ( elem as Model . Integer ) . AsInt ( ) ) ;
596596 }
597597 if ( elem is Model . Boolean )
598598 {
@@ -617,9 +617,9 @@ private VCExpr ToVcExpr(Expr expr, Dictionary<string, VCExpr> incarnations, VCEx
617617 return VCExpressionGenerator . False ;
618618 }
619619 }
620- else if ( val is Microsoft . Basetypes . BigNum )
620+ else if ( val is Microsoft . BaseTypes . BigNum )
621621 {
622- return gen . Integer ( ( Microsoft . Basetypes . BigNum ) val ) ;
622+ return gen . Integer ( ( Microsoft . BaseTypes . BigNum ) val ) ;
623623 }
624624
625625 throw new NotImplementedException ( "Cannot handle literals of this type" ) ;
0 commit comments