Z3 is a theorem prover from Microsoft Research. It is licensed under the MIT license. Windows binary distributions include C++ runtime redistributables If you are not familiar with Z3, you can start ...
import com.microsoft.z3.*; public class Test { public static void main(String[] args){ Context ctx = new Context(); BoolExpr b = ctx.mkBoolConst("hello"); Solver ...