Skip to content
Snippets Groups Projects
Commit 3c77e1f5 authored by Manos Koukoutos's avatar Manos Koukoutos
Browse files

Hopefully a little more readable

parent 9382c4cd
No related branches found
No related tags found
No related merge requests found
...@@ -126,36 +126,36 @@ abstract class ProcessingPipeline(context: LeonContext, initProgram: Program) ex ...@@ -126,36 +126,36 @@ abstract class ProcessingPipeline(context: LeonContext, initProgram: Program) ex
} }
private val terminationMap : MutableMap[FunDef, TerminationGuarantee] = MutableMap.empty private val terminationMap : MutableMap[FunDef, TerminationGuarantee] = MutableMap.empty
def terminates(funDef: FunDef): TerminationGuarantee = terminationMap.get(funDef) match { def terminates(funDef: FunDef): TerminationGuarantee = {
case Some(guarantee) => guarantee val guarantee = {
case None => terminationMap.get(funDef) orElse
val guarantee = brokenMap.get(funDef) match { brokenMap.get(funDef).map { case (reason, args) => LoopsGivenInputs(reason, args) } orElse
case Some((reason, args)) => LoopsGivenInputs(reason, args) maybeBrokenMap.get(funDef).map { case (reason, args) => MaybeLoopsGivenInputs(reason, args)} getOrElse {
case None => maybeBrokenMap.get(funDef) match { val callees = program.callGraph.transitiveCallees(funDef)
case Some((reason, args)) => MaybeLoopsGivenInputs(reason, args) val broken = brokenMap.keys.toSet ++ maybeBrokenMap.keys
case None => val brokenCallees = callees intersect broken
val callees = program.callGraph.transitiveCallees(funDef) if (brokenCallees.nonEmpty) {
val broken = brokenMap.keys.toSet ++ maybeBrokenMap.keys CallsNonTerminating(brokenCallees)
callees intersect broken match { } else if (isProblem(funDef)) {
case set if set.nonEmpty => CallsNonTerminating(set) NoGuarantee
case _ if isProblem(funDef) => NoGuarantee } else {
case _ => clearedMap.get(funDef) match { clearedMap.get(funDef).map(Terminates).getOrElse(
case Some(reason) => Terminates(reason) if (!running) {
case None if !running => verifyTermination(funDef)
verifyTermination(funDef) terminates(funDef)
terminates(funDef) } else {
case _ => if (!dependencies.exists(_.contains(funDef))) {
if (!dependencies.exists(_.contains(funDef))) { dependencies ++= generateProblems(funDef)
dependencies ++= generateProblems(funDef)
}
NoGuarantee
} }
NoGuarantee
} }
)
} }
} }
}
if (!running) terminationMap(funDef) = guarantee if (!running) terminationMap(funDef) = guarantee
guarantee guarantee
} }
private def generateProblems(funDef: FunDef): Seq[Problem] = { private def generateProblems(funDef: FunDef): Seq[Problem] = {
......
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