mirror of
https://github.com/Z3Prover/z3
synced 2025-06-06 22:23:22 +00:00
lower/upper case
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
5c6c601490
commit
2da3593f50
2 changed files with 3 additions and 2 deletions
|
@ -50,7 +50,7 @@ typedef struct FStar_UInt128_uint128_s {
|
||||||
* latter is for internal use. */
|
* latter is for internal use. */
|
||||||
typedef FStar_UInt128_uint128 FStar_UInt128_t, uint128_t;
|
typedef FStar_UInt128_uint128 FStar_UInt128_t, uint128_t;
|
||||||
|
|
||||||
#include "math/bigfix/lowstar_endianness.h"
|
#include "math/bigfix/LowStar_Endianness.h"
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
|
@ -97,7 +97,6 @@ namespace polysat {
|
||||||
lbool fixplex<Ext>::make_feasible() {
|
lbool fixplex<Ext>::make_feasible() {
|
||||||
++m_stats.m_num_checks;
|
++m_stats.m_num_checks;
|
||||||
m_left_basis.reset();
|
m_left_basis.reset();
|
||||||
m_unsat_core.reset();
|
|
||||||
unsigned num_iterations = 0;
|
unsigned num_iterations = 0;
|
||||||
unsigned num_repeated = 0;
|
unsigned num_repeated = 0;
|
||||||
var_t v = null_var;
|
var_t v = null_var;
|
||||||
|
@ -1220,6 +1219,8 @@ namespace polysat {
|
||||||
}
|
}
|
||||||
for (unsigned i = 0; i < m_vars.size(); ++i) {
|
for (unsigned i = 0; i < m_vars.size(); ++i) {
|
||||||
SASSERT(is_base(i) || in_bounds(i));
|
SASSERT(is_base(i) || in_bounds(i));
|
||||||
|
if (!is_base(i) && !in_bounds(i))
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue