Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolajBjorner committed Aug 24, 2021
1 parent e5b6cd3 commit 26db68b
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/ast/datatype_decl_plugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -710,11 +710,9 @@ namespace datatype {
ptr_vector<sort> todo, subsorts;
sort* s0 = s;
todo.push_back(s);
status st;
std::cout << "is recursive " << mk_pp(s, m) << "\n";
status st;
while (!todo.empty()) {
s = todo.back();
std::cout << "is recursive - todo " << mk_pp(s, m) << "\n";
if (already_found.find(datatype_name(s), st) && st == BLACK) {
todo.pop_back();
continue;
Expand Down

0 comments on commit 26db68b

Please sign in to comment.