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
8d704341
Commit
8d704341
authored
12 years ago
by
Régis Blanc
Browse files
Options
Downloads
Patches
Plain Diff
timeout option back for analysis phase
parent
9f5e11c7
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/scala/leon/verification/AnalysisPhase.scala
+17
-4
17 additions, 4 deletions
src/main/scala/leon/verification/AnalysisPhase.scala
with
17 additions
and
4 deletions
src/main/scala/leon/verification/AnalysisPhase.scala
+
17
−
4
View file @
8d704341
...
@@ -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
)
...
...
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