Skip to content

Commit

Permalink
replacing pm@~
Browse files Browse the repository at this point in the history
  • Loading branch information
VeraZhang0311 committed Jul 9, 2024
1 parent 6f9d2ee commit 8e7618d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Src/Core/API/Results/SolveResult.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ public Env Env
}

public string getConstraints(){
return solver.Z3Solver.ToString();
String constraints = solver.Z3Solver.ToString();
constraints = constraints.Replace("pm@~SC2VAR~", "");
return constraints;
}

public DateTime StopTime
Expand Down

0 comments on commit 8e7618d

Please sign in to comment.