The main entry point to the Z3 API
import { init } from 'z3-solver';const { Context } = await init();const { Solver, Int } = new Context('main');const x = Int.const('x');const y = Int.const('y');const solver = new Solver();solver.add(x.add(2).le(y.sub(10))); // x + 2 <= y - 10if (await solver.check() !== 'sat') { throw new Error("couldn't find a solution")}const model = solver.model();console.log(`x=${model.get(x)}, y=${model.get(y)}`);// x=0, y=12 Copy
import { init } from 'z3-solver';const { Context } = await init();const { Solver, Int } = new Context('main');const x = Int.const('x');const y = Int.const('y');const solver = new Solver();solver.add(x.add(2).le(y.sub(10))); // x + 2 <= y - 10if (await solver.check() !== 'sat') { throw new Error("couldn't find a solution")}const model = solver.model();console.log(`x=${model.get(x)}, y=${model.get(y)}`);// x=0, y=12
The main entry point to the Z3 API