3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-28 19:35:50 +00:00

Add refine interval infrastructure

Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
Leonardo de Moura 2013-01-06 18:30:41 -08:00
parent c01f27fe13
commit f1d47f35b2
3 changed files with 563 additions and 32 deletions

View file

@ -371,6 +371,9 @@ public:
interval * operator->() {
return &m_interval;
}
interval const * operator->() const {
return &m_interval;
}
};
#endif