Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
inox
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
LARA
inox
Commits
c219c26a
Commit
c219c26a
authored
13 years ago
by
Régis Blanc
Browse files
Options
Downloads
Patches
Plain Diff
verbose option no longer here
parent
6f5b6689
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/scala/leon/plugin/LeonPlugin.scala
+0
-2
0 additions, 2 deletions
src/main/scala/leon/plugin/LeonPlugin.scala
with
0 additions
and
2 deletions
src/main/scala/leon/plugin/LeonPlugin.scala
+
0
−
2
View file @
c219c26a
...
...
@@ -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
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment