mirror of
https://github.com/Z3Prover/z3
synced 2025-08-02 09:20:22 +00:00
remove a few more copy constructors, though still not enough to enable the assertion in vector
I give up for now; there are too many copies left for little return..
This commit is contained in:
parent
e2b2b7f82e
commit
e844aef896
17 changed files with 44 additions and 95 deletions
|
@ -77,16 +77,6 @@ namespace smt {
|
|||
m_value(m),
|
||||
m_eq(true)
|
||||
{}
|
||||
clause(clause const& cls):
|
||||
m_lits(cls.m_lits),
|
||||
m_weights(cls.m_weights.m()),
|
||||
m_k(cls.m_k),
|
||||
m_value(cls.m_value),
|
||||
m_eq(cls.m_eq) {
|
||||
for (unsigned i = 0; i < cls.m_weights.size(); ++i) {
|
||||
m_weights.push_back(cls.m_weights[i]);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
struct stats {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue