Skip to content
Snippets Groups Projects
Commit 76305bb8 authored by Etienne Kneuss's avatar Etienne Kneuss Committed by Philippe Suter
Browse files

Fix PC being ignored by Synthesizer

parent 1900e8dd
No related branches found
No related tags found
No related merge requests found
...@@ -12,8 +12,8 @@ case class ChooseInfo(ctx: LeonContext, ...@@ -12,8 +12,8 @@ case class ChooseInfo(ctx: LeonContext,
ch: Choose, ch: Choose,
options: SynthesisOptions) { options: SynthesisOptions) {
val synthesizer = new Synthesizer(ctx, Some(fd), prog, Problem.fromChoose(ch), options)
val problem = Problem.fromChoose(ch, pc) val problem = Problem.fromChoose(ch, pc)
val synthesizer = new Synthesizer(ctx, Some(fd), prog, problem, options)
} }
object ChooseInfo { object ChooseInfo {
......
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