Skip to content
Snippets Groups Projects
Commit 42c3cf2c authored by Etienne Kneuss's avatar Etienne Kneuss
Browse files

Add rule for splitting ifs in predicates

parent da408410
No related branches found
No related tags found
No related merge requests found
...@@ -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,
......
/* 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)
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment