summaryrefslogtreecommitdiff
path: root/src/preprocessing/passes/theory_preprocess.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/preprocessing/passes/theory_preprocess.cpp')
-rw-r--r--src/preprocessing/passes/theory_preprocess.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/preprocessing/passes/theory_preprocess.cpp b/src/preprocessing/passes/theory_preprocess.cpp
index 50831f585..22ae14762 100644
--- a/src/preprocessing/passes/theory_preprocess.cpp
+++ b/src/preprocessing/passes/theory_preprocess.cpp
@@ -51,7 +51,7 @@ PreprocessingPassResult TheoryPreprocess::applyInternal(
Assert(newSkolems.size() == newAsserts.size());
for (unsigned j = 0, nnasserts = newAsserts.size(); j < nnasserts; j++)
{
- imap[newSkolems[j]] = assertions->size();
+ imap[assertions->size()] = newSkolems[j];
assertions->pushBackTrusted(newAsserts[j]);
// new assertions have a dependence on the node (old pf architecture)
if (options::unsatCores())
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback