Can I create a new solver from an old one in Z3? In Z3, the standard process to create a solver is like the following
context ctx; solver sv(ctx);
After a process of inserting assertions and checking, I want to create a new solver, say sv2, that is equivalent to sv. But I cannot find the supporting function or API. Solving is expensive, that is way I do not want to create sv2 from scratch.
Ting Chen