- File:
-
- 1 edited
-
src/ResolvExpr/SatisfyAssertions.cpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/ResolvExpr/SatisfyAssertions.cpp
rb86dd969 r597f284 10 10 // Created On : Mon Jun 10 17:45:00 2019 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : T hu Jul 31 18:04:31 202513 // Update Count : 612 // Last Modified On : Tue Jul 2 18:15:51 2024 13 // Update Count : 5 14 14 // 15 15 … … 456 456 // should a limit be imposed? worst case here is O(n^2) but very unlikely to happen. 457 457 458 for ( ;;) {458 for (unsigned resetCount = 0; ; ++resetCount) { 459 459 ast::AssertionList next; 460 460 // make initial pass at matching assertions … … 475 475 } else if ( result == AssertionResult::Skip ) { 476 476 next.emplace_back(assn); 477 // goto nextSat; 477 478 } 478 479 }
Note:
See TracChangeset
for help on using the changeset viewer.