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:
parent
9c62b431e4
commit
1810d7e77d
8 changed files with 186 additions and 146 deletions
|
@ -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) {}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue