mirror of
https://github.com/Z3Prover/z3
synced 2025-04-28 11:25:51 +00:00
toward order lemma
Signed-off-by: Lev <levnach@hotmail.com>
This commit is contained in:
parent
a5c146a740
commit
4db4a8da3f
3 changed files with 109 additions and 84 deletions
|
@ -28,6 +28,10 @@ void print_vector(const C & t, std::ostream & out) {
|
|||
out << p << " ";
|
||||
out << std::endl;
|
||||
}
|
||||
template <typename C, typename D>
|
||||
bool contains(const C & collection, const D & key) {
|
||||
return collection.find(key) != collection.end();
|
||||
}
|
||||
|
||||
template <typename C>
|
||||
void print_vector(const C * t, unsigned size, std::ostream & out) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue