3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-28 11:25:51 +00:00

cleanup mostly, more asserts in tangent lemma

This commit is contained in:
Lev Nachmanson 2019-03-22 17:37:19 -07:00
parent 9c62b431e4
commit 1810d7e77d
8 changed files with 186 additions and 146 deletions

View file

@ -140,7 +140,7 @@ struct numeric_pair {
numeric_pair(T xp, T yp) : x(xp), y(yp) {}
template <typename X>
numeric_pair(const X & n) : x(n), y(0) {
explicit numeric_pair(const X & n) : x(n), y(0) {
}
numeric_pair(const numeric_pair<T> & n) : x(n.x), y(n.y) {}