1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220
|
/* Boolector: Satisfiability Modulo Theories (SMT) solver.
*
* Copyright (C) 2007-2021 by the authors listed in the AUTHORS file.
*
* This file is part of Boolector.
* See COPYING for more information on using this software.
*/
#include "test.h"
extern "C" {
#include "utils/btorutil.h"
}
class TestComp : public TestBoolector
{
protected:
static constexpr uint32_t BTOR_TEST_COMP_LOW = 1;
static constexpr uint32_t BTOR_TEST_COMP_HIGH = 4;
void u_comp_test (int32_t (*func) (int32_t, int32_t),
BoolectorNode *(*btorfun) (Btor *,
BoolectorNode *,
BoolectorNode *),
int32_t low,
int32_t high,
uint32_t rwl)
{
assert (func != NULL);
assert (low > 0);
assert (low <= high);
int32_t i = 0;
int32_t j = 0;
int32_t result = 0;
int32_t num_bits = 0;
int32_t max = 0;
int32_t sat_res;
for (num_bits = low; num_bits <= high; num_bits++)
{
max = btor_util_pow_2 (num_bits);
for (i = 0; i < max; i++)
{
for (j = 0; j < max; j++)
{
result = func (i, j);
if (d_btor) boolector_delete (d_btor);
d_btor = boolector_new ();
boolector_set_opt (d_btor, BTOR_OPT_REWRITE_LEVEL, rwl);
BoolectorSort sort = boolector_bitvec_sort (d_btor, num_bits);
BoolectorNode *const1, *const2, *bfun;
const1 = boolector_unsigned_int (d_btor, i, sort);
const2 = boolector_unsigned_int (d_btor, j, sort);
bfun = btorfun (d_btor, const1, const2);
boolector_assert (d_btor, bfun);
sat_res = boolector_sat (d_btor);
ASSERT_TRUE ((result && sat_res == BOOLECTOR_SAT)
|| (!result && sat_res == BOOLECTOR_UNSAT));
boolector_release_sort (d_btor, sort);
boolector_release (d_btor, const1);
boolector_release (d_btor, const2);
boolector_release (d_btor, bfun);
boolector_delete (d_btor);
d_btor = nullptr;
}
}
}
}
void s_comp_test (int32_t (*func) (int32_t, int32_t),
BoolectorNode *(*btorfun) (Btor *,
BoolectorNode *,
BoolectorNode *),
int32_t low,
int32_t high,
uint32_t rwl)
{
assert (func != NULL);
assert (low > 0);
assert (low <= high);
int32_t i = 0;
int32_t j = 0;
int32_t result = 0;
int32_t num_bits = 0;
int32_t max = 0;
int32_t sat_res;
for (num_bits = low; num_bits <= high; num_bits++)
{
max = btor_util_pow_2 (num_bits - 1);
for (i = -max; i < max; i++)
{
for (j = -max; j < max; j++)
{
result = func (i, j);
if (d_btor) boolector_delete (d_btor);
d_btor = boolector_new ();
boolector_set_opt (d_btor, BTOR_OPT_REWRITE_LEVEL, rwl);
BoolectorSort sort = boolector_bitvec_sort (d_btor, num_bits);
BoolectorNode *const1, *const2, *bfun;
const1 = boolector_int (d_btor, i, sort);
const2 = boolector_int (d_btor, j, sort);
bfun = btorfun (d_btor, const1, const2);
boolector_assert (d_btor, bfun);
sat_res = boolector_sat (d_btor);
ASSERT_TRUE (sat_res == BOOLECTOR_SAT || sat_res == BOOLECTOR_UNSAT);
if (sat_res == BOOLECTOR_SAT)
{
ASSERT_TRUE (result > 0);
}
else
{
ASSERT_EQ (sat_res, BOOLECTOR_UNSAT);
ASSERT_TRUE (result == 0);
}
boolector_release_sort (d_btor, sort);
boolector_release (d_btor, const1);
boolector_release (d_btor, const2);
boolector_release (d_btor, bfun);
boolector_delete (d_btor);
d_btor = nullptr;
}
}
}
}
static int32_t eq (int32_t x, int32_t y) { return x == y; }
static int32_t ne (int32_t x, int32_t y) { return x != y; }
static int32_t lt (int32_t x, int32_t y) { return x < y; }
static int32_t lte (int32_t x, int32_t y) { return x <= y; }
static int32_t gt (int32_t x, int32_t y) { return x > y; }
static int32_t gte (int32_t x, int32_t y) { return x >= y; }
};
TEST_F (TestComp, test_eq_1)
{
u_comp_test (eq, boolector_eq, BTOR_TEST_COMP_LOW, BTOR_TEST_COMP_HIGH, 1);
u_comp_test (eq, boolector_eq, BTOR_TEST_COMP_LOW, BTOR_TEST_COMP_HIGH, 0);
}
TEST_F (TestComp, test_ne_1)
{
u_comp_test (ne, boolector_ne, BTOR_TEST_COMP_LOW, BTOR_TEST_COMP_HIGH, 1);
u_comp_test (ne, boolector_ne, BTOR_TEST_COMP_LOW, BTOR_TEST_COMP_HIGH, 0);
}
TEST_F (TestComp, test_ult)
{
u_comp_test (lt, boolector_ult, BTOR_TEST_COMP_LOW, BTOR_TEST_COMP_HIGH, 1);
u_comp_test (lt, boolector_ult, BTOR_TEST_COMP_LOW, BTOR_TEST_COMP_HIGH, 0);
}
TEST_F (TestComp, test_ulte)
{
u_comp_test (lte, boolector_ulte, BTOR_TEST_COMP_LOW, BTOR_TEST_COMP_HIGH, 1);
u_comp_test (lte, boolector_ulte, BTOR_TEST_COMP_LOW, BTOR_TEST_COMP_HIGH, 0);
}
TEST_F (TestComp, test_ugt)
{
u_comp_test (gt, boolector_ugt, BTOR_TEST_COMP_LOW, BTOR_TEST_COMP_HIGH, 1);
u_comp_test (gt, boolector_ugt, BTOR_TEST_COMP_LOW, BTOR_TEST_COMP_HIGH, 0);
}
TEST_F (TestComp, test_ugte)
{
u_comp_test (gte, boolector_ugte, BTOR_TEST_COMP_LOW, BTOR_TEST_COMP_HIGH, 1);
u_comp_test (gte, boolector_ugte, BTOR_TEST_COMP_LOW, BTOR_TEST_COMP_HIGH, 0);
}
TEST_F (TestComp, test_eq_2)
{
s_comp_test (eq, boolector_eq, BTOR_TEST_COMP_LOW, BTOR_TEST_COMP_HIGH, 1);
s_comp_test (eq, boolector_eq, BTOR_TEST_COMP_LOW, BTOR_TEST_COMP_HIGH, 0);
}
TEST_F (TestComp, test_ne_2)
{
s_comp_test (ne, boolector_ne, BTOR_TEST_COMP_LOW, BTOR_TEST_COMP_HIGH, 1);
s_comp_test (ne, boolector_ne, BTOR_TEST_COMP_LOW, BTOR_TEST_COMP_HIGH, 0);
}
TEST_F (TestComp, test_slt)
{
s_comp_test (lt, boolector_slt, BTOR_TEST_COMP_LOW, BTOR_TEST_COMP_HIGH, 1);
s_comp_test (lt, boolector_slt, BTOR_TEST_COMP_LOW, BTOR_TEST_COMP_HIGH, 0);
}
TEST_F (TestComp, test_slte)
{
s_comp_test (lte, boolector_slte, BTOR_TEST_COMP_LOW, BTOR_TEST_COMP_HIGH, 1);
s_comp_test (lte, boolector_slte, BTOR_TEST_COMP_LOW, BTOR_TEST_COMP_HIGH, 0);
}
TEST_F (TestComp, test_sgt)
{
s_comp_test (gt, boolector_sgt, BTOR_TEST_COMP_LOW, BTOR_TEST_COMP_HIGH, 1);
s_comp_test (gt, boolector_sgt, BTOR_TEST_COMP_LOW, BTOR_TEST_COMP_HIGH, 0);
}
TEST_F (TestComp, test_sgte)
{
s_comp_test (gte, boolector_sgte, BTOR_TEST_COMP_LOW, BTOR_TEST_COMP_HIGH, 1);
s_comp_test (gte, boolector_sgte, BTOR_TEST_COMP_LOW, BTOR_TEST_COMP_HIGH, 0);
}
|