mirror of
https://github.com/Z3Prover/z3
synced 2025-04-29 03:45:51 +00:00
na
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
1e3c3dc48f
commit
204b417396
3 changed files with 10 additions and 6 deletions
|
@ -1054,11 +1054,13 @@ namespace polysat {
|
|||
*
|
||||
*/
|
||||
|
||||
#if 0
|
||||
template<typename Ext>
|
||||
void fixplex<Ext>::propagate_eqs() {
|
||||
for (unsigned i = 0; i < m_rows.size(); ++i)
|
||||
get_offset_eqs(row(i));
|
||||
}
|
||||
#endif
|
||||
|
||||
|
||||
template<typename Ext>
|
||||
|
@ -1105,7 +1107,7 @@ namespace polysat {
|
|||
numeral cz, cu;
|
||||
for (auto c : M.col_entries(x)) {
|
||||
auto r2 = c.get_row();
|
||||
if (r1.id() >= r2.id())
|
||||
if (r1.id() == r2.id())
|
||||
continue;
|
||||
if (!is_offset_row(r2, cz, z, cu, u))
|
||||
continue;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue