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
3c77e1f5
Commit
3c77e1f5
authored
9 years ago
by
Manos Koukoutos
Browse files
Options
Downloads
Patches
Plain Diff
Hopefully a little more readable
parent
9382c4cd
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/scala/leon/termination/ProcessingPipeline.scala
+25
-25
25 additions, 25 deletions
src/main/scala/leon/termination/ProcessingPipeline.scala
with
25 additions
and
25 deletions
src/main/scala/leon/termination/ProcessingPipeline.scala
+
25
−
25
View file @
3c77e1f5
...
@@ -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] = {
...
...
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