mirror of
https://github.com/Z3Prover/z3
synced 2025-07-19 10:52:02 +00:00
na
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
80492e65ea
commit
80751bdd12
1 changed files with 3 additions and 1 deletions
|
@ -118,11 +118,13 @@ namespace polysat {
|
||||||
|
|
||||||
template<typename Ext>
|
template<typename Ext>
|
||||||
void fixplex<Ext>::gauss_jordan() {
|
void fixplex<Ext>::gauss_jordan() {
|
||||||
while (!m_base_vars.empty.empty()) {
|
while (!m_base_vars.empty()) {
|
||||||
auto v = m_base_vars.back();
|
auto v = m_base_vars.back();
|
||||||
auto rid = m_vars[v].m_base2row;
|
auto rid = m_vars[v].m_base2row;
|
||||||
|
#if 0
|
||||||
auto const& row = m_rows[rid];
|
auto const& row = m_rows[rid];
|
||||||
make_basic(v, row);
|
make_basic(v, row);
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue