Skip to content
Snippets Groups Projects
Commit 8d704341 authored by Régis Blanc's avatar Régis Blanc
Browse files

timeout option back for analysis phase

parent 9f5e11c7
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ import purescala.Trees._ ...@@ -7,7 +7,7 @@ import purescala.Trees._
import purescala.TreeOps._ import purescala.TreeOps._
import purescala.TypeTrees._ import purescala.TypeTrees._
import solvers.{Solver,TrivialSolver} import solvers.{Solver,TrivialSolver,TimeoutSolver}
import solvers.z3.FairZ3Solver import solvers.z3.FairZ3Solver
import scala.collection.mutable.{Set => MutableSet} import scala.collection.mutable.{Set => MutableSet}
...@@ -17,27 +17,40 @@ object AnalysisPhase extends LeonPhase[Program,VerificationReport] { ...@@ -17,27 +17,40 @@ object AnalysisPhase extends LeonPhase[Program,VerificationReport] {
val description = "Leon Verification" val description = "Leon Verification"
override val definedOptions : Set[LeonOptionDef] = Set( override val definedOptions : Set[LeonOptionDef] = Set(
LeonValueOptionDef("functions", "--functions=f1:f2", "Limit verification to f1,f2,...") LeonValueOptionDef("functions", "--functions=f1:f2", "Limit verification to f1,f2,..."),
LeonValueOptionDef("timeout", "--timeout=T", "Timeout after T seconds when trying to prove a verification condition.")
) )
def run(ctx: LeonContext)(program: Program) : VerificationReport = { def run(ctx: LeonContext)(program: Program) : VerificationReport = {
val functionsToAnalyse : MutableSet[String] = MutableSet.empty val functionsToAnalyse : MutableSet[String] = MutableSet.empty
var timeout: Option[Int] = None
for(opt <- ctx.options) opt match { for(opt <- ctx.options) opt match {
case LeonValueOption("functions", ListValue(fs)) => case LeonValueOption("functions", ListValue(fs)) =>
functionsToAnalyse ++= fs functionsToAnalyse ++= fs
case LeonValueOption("timeout", t) =>
try {
timeout = Some(t.toInt)
} catch {
case _: Throwable =>
}
case _ => case _ =>
} }
val reporter = ctx.reporter val reporter = ctx.reporter
val trivialSolver = new TrivialSolver(ctx) val trivialSolver = new TrivialSolver(ctx)
val fairZ3 = new FairZ3Solver(ctx) val fairZ3 = new FairZ3Solver(ctx)
val solvers : Seq[Solver] = trivialSolver :: fairZ3 :: Nil val solvers0 : Seq[Solver] = trivialSolver :: fairZ3 :: Nil
val solvers: Seq[Solver] = timeout match {
case Some(t) => solvers0.map(s => new TimeoutSolver(s, t))
case None => solvers0
}
solvers.foreach(_.setProgram(program)) solvers.foreach(_.setProgram(program))
val defaultTactic = new DefaultTactic(reporter) val defaultTactic = new DefaultTactic(reporter)
defaultTactic.setProgram(program) defaultTactic.setProgram(program)
val inductionTactic = new InductionTactic(reporter) val inductionTactic = new InductionTactic(reporter)
......
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