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
391c4132
Commit
391c4132
authored
10 years ago
by
Emmanouil (Manos) Koukoutos
Committed by
Etienne Kneuss
10 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Just some comments
parent
a28d26e9
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/repair/RepairTrackingEvaluator.scala
+9
-13
9 additions, 13 deletions
src/main/scala/leon/repair/RepairTrackingEvaluator.scala
with
9 additions
and
13 deletions
src/main/scala/leon/repair/RepairTrackingEvaluator.scala
+
9
−
13
View file @
391c4132
...
...
@@ -10,6 +10,11 @@ import leon.LeonContext
import
leon.evaluators.RecursiveEvaluator
import
leon.synthesis._
/**
* This evaluator tracks all dependencies between function calls (.fullCallGraph)
* as well as if each invocation was successful or erroneous (led to an error)
* (.fiStatus)
*/
class
RepairTrackingEvaluator
(
ctx
:
LeonContext
,
prog
:
Program
)
extends
RecursiveEvaluator
(
ctx
,
prog
,
50000
)
{
type
RC
=
CollectingRecContext
type
GC
=
GlobalContext
...
...
@@ -22,25 +27,16 @@ class RepairTrackingEvaluator(ctx: LeonContext, prog: Program) extends Recursive
// This is a call graph to track dependencies of function invocations.
// If fi1 calls fi2 but fails fi2's precondition, we consider it
// fi1's fault and we don't register the dependency.
private
val
callGraph
:
MMap
[
FI
,
Set
[
FI
]]
=
MMap
()
//.withDefaultValue(Set())
private
val
callGraph
:
MMap
[
FI
,
Set
[
FI
]]
=
MMap
()
// Register a call without any edges towards other calls
private
def
registerNode
(
fi
:
FI
)
=
if
(!
callGraph
.
contains
(
fi
))
callGraph
update
(
fi
,
Set
())
// Register an edge - also registers start and end nodes
private
def
registerCall
(
fi
:
FI
,
lastFI
:
Option
[
FI
])
=
{
lastFI
foreach
{
lfi
=>
callGraph
update
(
lfi
,
callGraph
(
lfi
)
+
fi
)
}
}
def
fullCallGraph
=
{
/*println("About to print")
for{
(test, tests) <-callGraph
} {
println(test._2 mkString ", ")
println(new ExamplesTable("", tests.toSeq.map{ x => InExample(x._2)}).toString)
}*/
leon
.
utils
.
GraphOps
.
transitiveClosure
(
callGraph
.
toMap
)
}
def
fullCallGraph
=
leon
.
utils
.
GraphOps
.
transitiveClosure
(
callGraph
.
toMap
)
// Tracks if every function invocation succeeded or failed
private
val
fiStatus_
:
MMap
[
FI
,
Boolean
]
=
MMap
().
withDefaultValue
(
false
)
...
...
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