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
1212624e
Commit
1212624e
authored
12 years ago
by
Etienne Kneuss
Committed by
Philippe Suter
11 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Remove debug output, fix&improve testing suite
parent
26b57933
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/main/scala/leon/synthesis/heuristics/ADTLongInduction.scala
+4
-4
4 additions, 4 deletions
...in/scala/leon/synthesis/heuristics/ADTLongInduction.scala
src/test/scala/leon/test/synthesis/SynthesisSuite.scala
+19
-9
19 additions, 9 deletions
src/test/scala/leon/test/synthesis/SynthesisSuite.scala
with
23 additions
and
13 deletions
src/main/scala/leon/synthesis/heuristics/ADTLongInduction.scala
+
4
−
4
View file @
1212624e
...
...
@@ -85,8 +85,8 @@ case object ADTLongInduction extends Rule("ADT Long Induction") with Heuristic {
List
()
}
println
(
ccd
)
println
(
subIds
)
//
println(ccd)
//
println(subIds)
val
newPattern
=
unrollPattern
(
id
,
ccd
,
subIds
)(
pat
)
val
newMap
=
trMap
.
mapValues
(
v
=>
substAll
(
Map
(
id
->
CaseClass
(
ccd
,
subIds
.
map
(
Variable
(
_
)))),
v
))
...
...
@@ -127,8 +127,8 @@ case object ADTLongInduction extends Rule("ADT Long Induction") with Heuristic {
}
val
subProblem
=
Problem
(
c
.
ids
:::
postXss
,
And
(
subPC
::
postFs
),
subPhi
,
p
.
xs
)
println
(
subProblem
)
println
(
recCalls
)
//
println(subProblem)
//
println(recCalls)
(
subProblem
,
pat
,
recCalls
,
pc
)
}
...
...
This diff is collapsed.
Click to expand it.
src/test/scala/leon/test/synthesis/SynthesisSuite.scala
+
19
−
9
View file @
1212624e
...
...
@@ -42,7 +42,7 @@ class SynthesisSuite extends FunSuite {
val
solver
=
new
FairZ3Solver
(
ctx
)
solver
.
setProgram
(
program
)
val
simpleSolver
=
new
Fair
Z3Solver
(
ctx
)
val
simpleSolver
=
new
Uninterpreted
Z3Solver
(
ctx
)
simpleSolver
.
setProgram
(
program
)
for
((
f
,
ps
)
<-
results
;
p
<-
ps
)
{
...
...
@@ -73,22 +73,32 @@ class SynthesisSuite extends FunSuite {
otherRules
.
flatMap
{
r
=>
r
.
instantiateOn
(
sctx
,
p
)
}
}
apps
.
find
(
_
.
toString
==
ss
.
desc
)
match
{
case
Some
(
app
)
=>
def
matchingDesc
(
app
:
RuleInstantiation
,
ss
:
Apply
)
:
Boolean
=
{
import
java.util.regex.Pattern
;
val
pattern
=
Pattern
.
quote
(
ss
.
desc
).
replace
(
"*"
,
"\\E.*\\Q"
)
app
.
toString
.
matches
(
pattern
)
}
apps
.
filter
(
matchingDesc
(
_
,
ss
))
match
{
case
app
::
Nil
=>
app
.
apply
(
sctx
)
match
{
case
RuleSuccess
(
sol
)
=>
case
RuleSuccess
(
sol
,
trusted
)
=>
assert
(
ss
.
andThen
.
isEmpty
)
sol
case
RuleDecomposed
(
sub
)
=>
app
.
onSuccess
((
sub
zip
ss
.
andThen
)
map
{
case
(
p
,
ss
)
=>
synthesizeWith
(
sctx
,
p
,
ss
)
}).
get
val
subSols
=
(
sub
zip
ss
.
andThen
)
map
{
case
(
p
,
ss
)
=>
synthesizeWith
(
sctx
,
p
,
ss
)
}
app
.
onSuccess
(
subSols
).
get
case
_
=>
throw
new
AssertionError
(
"Failed to apply "
+
app
+
" on "
+
p
)
}
case
N
one
=>
case
N
il
=>
throw
new
AssertionError
(
"Failed to find "
+
ss
.
desc
+
". Available: "
+
apps
.
mkString
(
", "
))
case
xs
=>
throw
new
AssertionError
(
"Ambiguous "
+
ss
.
desc
+
". Found: "
+
xs
.
mkString
(
", "
))
}
}
...
...
@@ -116,7 +126,7 @@ class SynthesisSuite extends FunSuite {
def
assertRuleSuccess
(
sctx
:
SynthesisContext
,
rr
:
RuleInstantiation
)
:
Option
[
Solution
]
=
{
rr
.
apply
(
sctx
)
match
{
case
RuleSuccess
(
sol
)
=>
case
RuleSuccess
(
sol
,
trusted
)
=>
Some
(
sol
)
case
_
=>
assert
(
false
,
"Rule did not succeed"
)
...
...
@@ -187,7 +197,7 @@ object Injection {
)
{
case
(
sctx
,
fd
,
p
)
=>
rules
.
CEGIS
.
instantiateOn
(
sctx
,
p
).
head
.
apply
(
sctx
)
match
{
case
RuleSuccess
(
sol
)
=>
case
RuleSuccess
(
sol
,
trusted
)
=>
assert
(
false
,
"CEGIS should have failed, but found : %s"
.
format
(
sol
))
case
_
=>
}
...
...
@@ -258,7 +268,7 @@ object SortedList {
case
"insertSorted"
=>
Apply
(
"Assert isSorted(in1)"
,
List
(
Apply
(
"ADT Induction on 'in1'"
,
List
(
Apply
(
"Ineq. Split on 'head
16
' and 'v
4
'"
,
List
(
Apply
(
"Ineq. Split on 'head
*
' and 'v
*
'"
,
List
(
Apply
(
"CEGIS"
),
Apply
(
"CEGIS"
),
Apply
(
"CEGIS"
)
...
...
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