3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 17:44:08 +00:00

fix closing parnetheses

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2022-08-18 13:26:29 -07:00
parent d094f6a856
commit 19da3c7086

View file

@ -117,7 +117,7 @@ describe('high-level', () => {
const x = Int.const('x') const x = Int.const('x')
solver.add(Not(x.eq(1))) solver.add(Not(x.eq(1)))
expect(await solver.check()).toStrictEqual('unsat') expect(await solver.check()).toStrictEqual('unsat')
} });
it('disproves x = y implies g(g(x)) = g(y)', async () => { it('disproves x = y implies g(g(x)) = g(y)', async () => {
const { Solver, Int, Function, Implies, Not } = api.Context('main'); const { Solver, Int, Function, Implies, Not } = api.Context('main');