3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-26 21:16:02 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-01-05 21:51:34 -08:00
parent 2acab46388
commit 63fc62fbe4
6 changed files with 72 additions and 51 deletions

View file

@ -20,6 +20,7 @@ Revision History:
#define SAT_ELIM_EQS_H_
#include "sat/sat_types.h"
#include "util/union_find.h"
namespace sat {
class solver;
@ -44,6 +45,7 @@ namespace sat {
elim_eqs(solver & s);
~elim_eqs();
void operator()(literal_vector const & roots, bool_var_vector const & to_elim);
void operator()(union_find<>& uf);
};
};