3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-25 01:55:32 +00:00
This commit is contained in:
Jakob Rath 2023-11-29 16:03:47 +01:00
parent e76c6b0fdc
commit cf9b7bed0c

View file

@ -19,21 +19,21 @@ Author:
#include "util/ref_vector.h"
#include "util/sat_literal.h"
#include "math/dd/dd_pdd.h"
#include "math/dd/dd_bdd.h"
#include "math/dd/dd_fdd.h"
namespace polysat {
class solver;
class constraint;
class clause;
using clause_ref = ref<clause>;
using clause_ref_vector = sref_vector<clause>;
typedef dd::pdd pdd;
typedef dd::bdd bdd;
typedef dd::bddv bddv;
typedef dd::val_pp val_pp;
using dd::pdd;
using dd::pdd_monomial;
using dd::pdd_manager;
using dd::val_pp;
using pvar = unsigned;
using pvar_vector = unsigned_vector;