mirror of
https://github.com/Z3Prover/z3
synced 2025-04-08 18:31:49 +00:00
override
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
b2a6c30100
commit
38d690650b
|
@ -203,7 +203,7 @@ public:
|
|||
const nex* get_child_exp(unsigned j) const override { return m_children[j].e(); }
|
||||
unsigned get_child_pow(unsigned j) const override { return m_children[j].pow(); }
|
||||
|
||||
unsigned number_of_child_powers() const { return m_children.size(); }
|
||||
unsigned number_of_child_powers() const override { return m_children.size(); }
|
||||
|
||||
nex_mul() : m_coeff(1) {}
|
||||
nex_mul(rational const& c, vector<nex_pow> const& args) : m_coeff(c), m_children(args) {}
|
||||
|
|
Loading…
Reference in a new issue