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
38641196
Commit
38641196
authored
11 years ago
by
Régis Blanc
Browse files
Options
Downloads
Patches
Plain Diff
Rewrite ChooseCollector using generic Collector
parent
55246deb
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/purescala/TreeOps.scala
+8
-18
8 additions, 18 deletions
src/main/scala/leon/purescala/TreeOps.scala
with
8 additions
and
18 deletions
src/main/scala/leon/purescala/TreeOps.scala
+
8
−
18
View file @
38641196
...
...
@@ -1086,7 +1086,7 @@ object TreeOps {
def
traverse
(
e
:
Expr
)
:
T
}
class
CollectorWithPaths
[
T
](
matcher
:
PartialFunction
[
Expr
,
T
])
extends
TransformerWithPC
{
class
CollectorWithPaths
[
T
](
matcher
:
PartialFunction
[
Expr
,
T
])
extends
TransformerWithPC
with
Traverser
[
Seq
[(
T
,
Expr
)]]
{
type
C
=
Seq
[
Expr
]
val
initC
=
Nil
def
register
(
e
:
Expr
,
path
:
C
)
=
path
:+
e
...
...
@@ -1107,27 +1107,17 @@ object TreeOps {
results
}
}
class
ChooseCollectorWithPaths
extends
TransformerWithPC
with
Traverser
[
Seq
[(
Choose
,
Expr
)]]
{
type
C
=
Seq
[
Expr
]
val
initC
=
Nil
def
register
(
e
:
Expr
,
path
:
C
)
=
path
:+
e
var
results
:
Seq
[(
Choose
,
Expr
)]
=
Nil
override
def
rec
(
e
:
Expr
,
path
:
C
)
=
e
match
{
case
c
:
Choose
=>
results
=
results
:+
(
c
,
And
(
path
))
c
case
_
=>
super
.
rec
(
e
,
path
)
private
object
ChooseMatch
extends
PartialFunction
[
Expr
,
Choose
]
{
override
def
apply
(
e
:
Expr
)
:
Choose
=
e
match
{
case
(
c
:
Choose
)
=>
c
}
def
traverse
(
e
:
Expr
)
=
{
results
=
Nil
rec
(
e
,
initC
)
results
override
def
isDefinedAt
(
e
:
Expr
)
:
Boolean
=
e
match
{
case
(
c
:
Choose
)
=>
true
case
_
=>
false
}
}
class
ChooseCollectorWithPaths
extends
CollectorWithPaths
[
Choose
](
ChooseMatch
)
/**
* Eliminates tuples of arity 0 and 1.
...
...
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