mirror of
https://github.com/Z3Prover/z3
synced 2025-08-10 05:00:51 +00:00
fix sorting network bug, add network compilation,...
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
72f09e4729
commit
019ff77613
15 changed files with 350 additions and 100 deletions
|
@ -556,7 +556,7 @@ static void test_A_5_5_3() {
|
|||
for (unsigned k = 1; k <= 5; ++k) {
|
||||
for (unsigned l = 1; l <= 5; ++l) {
|
||||
for (unsigned j = 1; j <= 3; ++j) {
|
||||
bool one = ((j*k <= i) && (((i - j) % 3) == 0); // fixme
|
||||
bool one = ((j*k <= i) && (((i - j) % 3) == 0)); // fixme
|
||||
v.push_back(rational(one));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue