mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 00:55:31 +00:00
rename
This commit is contained in:
parent
cf1ce4cea2
commit
7fbf27309b
1 changed files with 5 additions and 5 deletions
|
@ -415,19 +415,19 @@ namespace polysat {
|
|||
};
|
||||
|
||||
class univariate_bitblast_factory : public univariate_solver_factory {
|
||||
symbol qf_bv;
|
||||
scoped_ptr<solver_factory> sf;
|
||||
symbol m_logic;
|
||||
scoped_ptr<solver_factory> m_factory;
|
||||
|
||||
public:
|
||||
univariate_bitblast_factory() :
|
||||
qf_bv("QF_BV") {
|
||||
sf = mk_smt_strategic_solver_factory(qf_bv);
|
||||
m_logic("QF_BV") {
|
||||
m_factory = mk_smt_strategic_solver_factory(m_logic);
|
||||
}
|
||||
|
||||
~univariate_bitblast_factory() override = default;
|
||||
|
||||
scoped_ptr<univariate_solver> operator()(unsigned bit_width) override {
|
||||
return alloc(univariate_bitblast_solver, *sf, bit_width);
|
||||
return alloc(univariate_bitblast_solver, *m_factory, bit_width);
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue