mirror of
https://github.com/Z3Prover/z3
synced 2025-06-19 20:33:38 +00:00
This commit is contained in:
parent
e5b6cd36f0
commit
26db68bf2c
1 changed files with 1 additions and 3 deletions
|
@ -710,11 +710,9 @@ namespace datatype {
|
||||||
ptr_vector<sort> todo, subsorts;
|
ptr_vector<sort> todo, subsorts;
|
||||||
sort* s0 = s;
|
sort* s0 = s;
|
||||||
todo.push_back(s);
|
todo.push_back(s);
|
||||||
status st;
|
status st;
|
||||||
std::cout << "is recursive " << mk_pp(s, m) << "\n";
|
|
||||||
while (!todo.empty()) {
|
while (!todo.empty()) {
|
||||||
s = todo.back();
|
s = todo.back();
|
||||||
std::cout << "is recursive - todo " << mk_pp(s, m) << "\n";
|
|
||||||
if (already_found.find(datatype_name(s), st) && st == BLACK) {
|
if (already_found.find(datatype_name(s), st) && st == BLACK) {
|
||||||
todo.pop_back();
|
todo.pop_back();
|
||||||
continue;
|
continue;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue