mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 17:15:31 +00:00
Add intblast solver
This commit is contained in:
parent
0520558fc0
commit
9293923b8a
28 changed files with 1621 additions and 58 deletions
|
@ -219,12 +219,12 @@ public:
|
|||
}
|
||||
};
|
||||
|
||||
template<typename T>
|
||||
template<typename V>
|
||||
class set_vector_idx_trail : public trail {
|
||||
ptr_vector<T> & m_vector;
|
||||
V & m_vector;
|
||||
unsigned m_idx;
|
||||
public:
|
||||
set_vector_idx_trail(ptr_vector<T> & v, unsigned idx):
|
||||
set_vector_idx_trail(V & v, unsigned idx):
|
||||
m_vector(v),
|
||||
m_idx(idx) {
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue