mirror of
https://github.com/Z3Prover/z3
synced 2025-04-29 20:05:51 +00:00
add hilbert basis utility for extracting auxiliary invariants
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
3a15db5244
commit
a14f29a4eb
4 changed files with 23 additions and 1 deletions
|
@ -179,6 +179,9 @@ public:
|
|||
}
|
||||
|
||||
vector & operator=(vector const & source) {
|
||||
if (this == &source) {
|
||||
return *this;
|
||||
}
|
||||
destroy();
|
||||
if (source.m_data) {
|
||||
copy_core(source);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue