3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-24 09:35:32 +00:00

remove unneeded constructors (last round)

This commit is contained in:
Nuno Lopes 2020-07-12 17:41:57 +01:00
parent 44ec259c4c
commit bb26f219fe
37 changed files with 65 additions and 276 deletions

View file

@ -173,9 +173,6 @@ class parallel_tactic : public tactic {
cube_var(expr_ref_vector const& c, expr_ref_vector const& vs):
m_vars(vs), m_cube(c) {}
cube_var(cube_var const& other):
m_vars(other.m_vars), m_cube(other.m_cube) {}
cube_var operator()(ast_translation& tr) {
expr_ref_vector vars(tr(m_vars));
expr_ref_vector cube(tr(m_cube));