3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-07 09:55:19 +00:00

comment out simple proofs unit test

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2024-09-24 23:01:00 +01:00
parent 8b81bda469
commit 2655301afc

View file

@ -355,7 +355,9 @@ describe('high-level', () => {
});
});
describe('bitvectors', () => {
describe('bitvectors', () => {
/**
it('can do simple proofs', async () => {
const { BitVec, Concat, Implies, isBitVecVal } = api.Context('main');
@ -374,6 +376,7 @@ describe('high-level', () => {
await prove(Implies(Concat(x, y).eq(Concat(y, x)), x.eq(y)));
});
**/
it('finds x and y such that: x ^ y - 103 == x * y', async () => {
const { BitVec, isBitVecVal } = api.Context('main');
@ -393,6 +396,7 @@ describe('high-level', () => {
});
});
describe('arrays', () => {
it('Example 1', async () => {
const Z3 = api.Context('main');