I want to run z3 solver methods such as 'solver.check()' on GPU using Numba to speed up solving. Is it possible? How can I do it?
I tested '@jit' but I can't get result.
Edit:
This is my code:
@jit
def solve(self, goal):
solver = z3.Solver()
solver.reset()
solver.add(goal.as_expr())
satisfiability = solver.check() # Check satisfiability
goal parameter is z3 Goal object