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:
parent
d094f6a856
commit
19da3c7086
|
@ -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');
|
||||||
|
|
Loading…
Reference in a new issue