UNPKG

z3-solver

Version:

This project provides high-level and low-level TypeScript bindings for the [Z3 theorem prover](https://github.com/Z3Prover/z3). It is available on npm as [z3-solver](https://www.npmjs.com/package/z3-solver).

4 lines (3 loc) 138 B
import { Z3Core } from '../low-level'; import { Z3HighLevel } from './types'; export declare function createApi(Z3: Z3Core): Z3HighLevel;