summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Sotoudeh <sotoudeh@stanford.edu>2022-01-11 21:53:28 -0800
committerMatthew Sotoudeh <sotoudeh@stanford.edu>2022-01-11 21:53:28 -0800
commitc1c4806507d6cd12240fcc9ee8b22d1bf5f7c9bd (patch)
tree2cb07f9df6be3af06c33eab834cfabe2b8fd9c8e
parenta19fbe7939725baadc13ce609a0a6a1216afeffa (diff)
Fix bugs in reporting multiple cyclesmultiple-cycles-quick
-rw-r--r--src/theory/arith/idl/idl_extension.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/theory/arith/idl/idl_extension.cpp b/src/theory/arith/idl/idl_extension.cpp
index aa2807507..3323390aa 100644
--- a/src/theory/arith/idl/idl_extension.cpp
+++ b/src/theory/arith/idl/idl_extension.cpp
@@ -146,7 +146,6 @@ void IdlExtension::traceCycles() {
std::vector<bool> seen(d_numVars, false);
for (size_t start = 0; start < d_numVars; start++) {
if (seen[start]) continue;
- seen[start] = true;
std::vector<size_t> cycle{start};
std::unordered_map<size_t, size_t> node_to_cycle_idx;
bool abort = false;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback