3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-11-25 15:09:34 +00:00

abc_new: sorted -> is_sorted

This commit is contained in:
Emil J. Tywoniak 2025-11-24 11:46:09 +01:00
parent 615e338acd
commit e8cbc92462

View file

@ -38,8 +38,8 @@ std::vector<Module*> order_modules(Design *design, std::vector<Module *> modules
sort.edge(submodule, m);
}
}
bool sorted = sort.sort();
log_assert(sorted);
bool is_sorted = sort.sort();
log_assert(is_sorted);
return sort.sorted;
}