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
ae8dabd6
Commit
ae8dabd6
authored
9 years ago
by
Manos Koukoutos
Browse files
Options
Downloads
Patches
Plain Diff
Decouple definitions of Synthesizer/SynthesisContext
parent
975bce69
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/main/scala/leon/synthesis/SynthesisContext.scala
+0
-12
0 additions, 12 deletions
src/main/scala/leon/synthesis/SynthesisContext.scala
src/main/scala/leon/synthesis/Synthesizer.scala
+1
-1
1 addition, 1 deletion
src/main/scala/leon/synthesis/Synthesizer.scala
with
1 addition
and
13 deletions
src/main/scala/leon/synthesis/SynthesisContext.scala
+
0
−
12
View file @
ae8dabd6
...
@@ -31,15 +31,3 @@ class SynthesisContext(
...
@@ -31,15 +31,3 @@ class SynthesisContext(
}
}
}
}
object
SynthesisContext
{
def
fromSynthesizer
(
synth
:
Synthesizer
)
=
{
new
SynthesisContext
(
synth
.
context
,
synth
.
settings
,
synth
.
ci
.
fd
,
synth
.
program
)
}
}
This diff is collapsed.
Click to expand it.
src/main/scala/leon/synthesis/Synthesizer.scala
+
1
−
1
View file @
ae8dabd6
...
@@ -23,7 +23,7 @@ class Synthesizer(val context : LeonContext,
...
@@ -23,7 +23,7 @@ class Synthesizer(val context : LeonContext,
val
reporter
=
context
.
reporter
val
reporter
=
context
.
reporter
lazy
val
sctx
=
SynthesisContext
.
fromSynthesizer
(
this
)
lazy
val
sctx
=
new
SynthesisContext
(
context
,
settings
,
ci
.
fd
,
program
)
implicit
val
debugSection
=
leon
.
utils
.
DebugSectionSynthesis
implicit
val
debugSection
=
leon
.
utils
.
DebugSectionSynthesis
...
...
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