Performance issues about Z3 for Java
问题 I am running into some performance issues in my current project with Z3 for Java: Basically most of my current constraints are pretty simple: e.g: (f(x) = 2 && f(y) <= 3) || f(x) <=5 I am using static context and solver instances shared by the whole project: public class ConstraintManager { static Context ctx; static Solver solver; ... } If I generate expr by the same instance of ctx for billions of times, is that going to an issue? When is the best time to invoke ctx.Dispose() , or, what's