3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-27 19:05:51 +00:00

lower/upper case

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2021-08-04 17:36:42 -07:00
parent 5c6c601490
commit 2da3593f50
2 changed files with 3 additions and 2 deletions

View file

@ -50,7 +50,7 @@ typedef struct FStar_UInt128_uint128_s {
* latter is for internal use. */
typedef FStar_UInt128_uint128 FStar_UInt128_t, uint128_t;
#include "math/bigfix/lowstar_endianness.h"
#include "math/bigfix/LowStar_Endianness.h"
#endif

View file

@ -97,7 +97,6 @@ namespace polysat {
lbool fixplex<Ext>::make_feasible() {
++m_stats.m_num_checks;
m_left_basis.reset();
m_unsat_core.reset();
unsigned num_iterations = 0;
unsigned num_repeated = 0;
var_t v = null_var;
@ -1220,6 +1219,8 @@ namespace polysat {
}
for (unsigned i = 0; i < m_vars.size(); ++i) {
SASSERT(is_base(i) || in_bounds(i));
if (!is_base(i) && !in_bounds(i))
return false;
}
return true;
}