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

verbose option no longer here

parent 6f5b6689
No related branches found
No related tags found
No related merge requests found
......@@ -41,7 +41,6 @@ class LeonPlugin(val global: Global, val actionAfterExtraction : Option[Program=
" --parallel Run all solvers in parallel" + "\n" +
" --noLuckyTests Do not perform additional tests to potentially find models early" + "\n" +
" --noverifymodel Do not verify the correctness of models returned by Z3" + "\n" +
" --verbose Print debugging informations" + "\n" +
" --debug=[1-5] Debug level" + "\n" +
" --tags=t1:... Filter out debug information that are not of one of the given tags"
)
......@@ -67,7 +66,6 @@ class LeonPlugin(val global: Global, val actionAfterExtraction : Option[Program=
case "parallel" => leon.Settings.useParallel = true
case "noLuckyTests" => leon.Settings.luckyTest = false
case "noverifymodel" => leon.Settings.verifyModel = false
case "verbose" => leon.Settings.verbose = true
case s if s.startsWith("debug=") => leon.Settings.debugLevel = try { s.substring("debug=".length, s.length).toInt } catch { case _ => 0 }
case s if s.startsWith("tags=") => leon.Settings.debugTags = Set(splitList(s.substring("tags=".length, s.length)): _*)
case s if s.startsWith("unrolling=") => leon.Settings.unrollingLevel = try { s.substring("unrolling=".length, s.length).toInt } catch { case _ => 0 }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment