Skip to content

Commit

Permalink
Update parser
Browse files Browse the repository at this point in the history
  • Loading branch information
Remy Willems committed Nov 9, 2021
1 parent 524772c commit fc5665f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Source/Core/Parser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -350,12 +350,12 @@ void Consts(out List<Declaration>/*!*/ ds) {
}
makeClone = true;

foreach(var axiom in axioms) {
ds.Add(axiom);
}
var constant = new Constant(y, x, u, ParentsClone, ChildrenComplete, kv, axioms);
ds.Add(constant);
}
foreach(var axiom in axioms) {
ds.Add(axiom);
}

}

Expand Down

0 comments on commit fc5665f

Please sign in to comment.