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
42c3cf2c
Commit
42c3cf2c
authored
11 years ago
by
Etienne Kneuss
Browse files
Options
Downloads
Patches
Plain Diff
Add rule for splitting ifs in predicates
parent
da408410
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/main/scala/leon/synthesis/Rules.scala
+1
-0
1 addition, 0 deletions
src/main/scala/leon/synthesis/Rules.scala
src/main/scala/leon/synthesis/rules/IfSplit.scala
+49
-0
49 additions, 0 deletions
src/main/scala/leon/synthesis/rules/IfSplit.scala
with
50 additions
and
0 deletions
src/main/scala/leon/synthesis/Rules.scala
+
1
−
0
View file @
42c3cf2c
...
@@ -18,6 +18,7 @@ object Rules {
...
@@ -18,6 +18,7 @@ object Rules {
OnePoint
,
OnePoint
,
Ground
,
Ground
,
CaseSplit
,
CaseSplit
,
IfSplit
,
UnusedInput
,
UnusedInput
,
UnconstrainedOutput
,
UnconstrainedOutput
,
OptimisticGround
,
OptimisticGround
,
...
...
This diff is collapsed.
Click to expand it.
src/main/scala/leon/synthesis/rules/IfSplit.scala
0 → 100644
+
49
−
0
View file @
42c3cf2c
/* Copyright 2009-2014 EPFL, Lausanne */
package
leon
package
synthesis
package
rules
import
purescala.Trees._
import
purescala.TreeOps._
import
purescala.Extractors._
case
object
IfSplit
extends
Rule
(
"If-Split"
)
{
def
instantiateOn
(
sctx
:
SynthesisContext
,
p
:
Problem
)
:
Traversable
[
RuleInstantiation
]
=
{
val
ifs
=
collect
{
case
i
:
IfExpr
=>
Set
(
i
)
case
_
=>
Set
[
IfExpr
]()
}(
p
.
phi
)
ifs
.
toList
match
{
case
i
::
_
=>
List
(
split
(
i
,
p
,
"Split top-level If"
))
case
_
=>
Nil
}
}
def
split
(
i
:
IfExpr
,
p
:
Problem
,
description
:
String
)
:
RuleInstantiation
=
{
val
subs
=
List
(
Problem
(
p
.
as
,
And
(
p
.
pc
,
i
.
cond
),
replace
(
Map
(
i
->
i
.
thenn
),
p
.
pc
),
p
.
xs
),
Problem
(
p
.
as
,
And
(
p
.
pc
,
Not
(
i
.
cond
)),
replace
(
Map
(
i
->
i
.
elze
),
p
.
pc
),
p
.
xs
)
)
val
onSuccess
:
List
[
Solution
]
=>
Option
[
Solution
]
=
{
case
sols
if
sols
.
size
==
2
=>
val
List
(
ts
,
es
)
=
sols
val
pre
=
Or
(
And
(
i
.
cond
,
ts
.
pre
),
And
(
Not
(
i
.
cond
),
es
.
pre
))
val
defs
=
ts
.
defs
++
es
.
defs
val
term
=
IfExpr
(
i
.
cond
,
ts
.
term
,
es
.
term
)
Some
(
Solution
(
pre
,
defs
,
term
))
case
_
=>
None
}
RuleInstantiation
.
immediateDecomp
(
p
,
this
,
subs
,
onSuccess
,
description
)
}
}
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