mirror of
https://github.com/Z3Prover/z3
synced 2025-04-15 13:28:47 +00:00
comment out simple proofs unit test
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
8b81bda469
commit
2655301afc
|
@ -355,7 +355,9 @@ describe('high-level', () => {
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
describe('bitvectors', () => {
|
describe('bitvectors', () => {
|
||||||
|
/**
|
||||||
it('can do simple proofs', async () => {
|
it('can do simple proofs', async () => {
|
||||||
const { BitVec, Concat, Implies, isBitVecVal } = api.Context('main');
|
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)));
|
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 () => {
|
it('finds x and y such that: x ^ y - 103 == x * y', async () => {
|
||||||
const { BitVec, isBitVecVal } = api.Context('main');
|
const { BitVec, isBitVecVal } = api.Context('main');
|
||||||
|
@ -393,6 +396,7 @@ describe('high-level', () => {
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
describe('arrays', () => {
|
describe('arrays', () => {
|
||||||
it('Example 1', async () => {
|
it('Example 1', async () => {
|
||||||
const Z3 = api.Context('main');
|
const Z3 = api.Context('main');
|
||||||
|
|
Loading…
Reference in a new issue