summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers/instantiate.cpp
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2020-09-28 18:33:03 -0500
committerGitHub <noreply@github.com>2020-09-28 18:33:03 -0500
commit0ae9a3cfd78bc2d0b8a603a21f2181038fab4880 (patch)
tree7db1a29bf39973de0754af63aa7dbdfc01b50cab /src/theory/quantifiers/instantiate.cpp
parentd4564e7ef8eb277fcfc42c3130a3180165594b58 (diff)
Minor fixes to quantifiers proofs (#5151)
Includes minor changes to the proof checker and a fix in the instantiate module.
Diffstat (limited to 'src/theory/quantifiers/instantiate.cpp')
-rw-r--r--src/theory/quantifiers/instantiate.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/theory/quantifiers/instantiate.cpp b/src/theory/quantifiers/instantiate.cpp
index 0abcd98cb..f88c2e7a0 100644
--- a/src/theory/quantifiers/instantiate.cpp
+++ b/src/theory/quantifiers/instantiate.cpp
@@ -272,7 +272,7 @@ bool Instantiate::addInstantiation(
"Instantiate::getInstantiation:qpreprocess",
false,
PfRule::THEORY_PREPROCESS);
- pfTmp->addStep(body, PfRule::EQ_RESOLVE, {orig_body, proven}, {body});
+ pfTmp->addStep(body, PfRule::EQ_RESOLVE, {orig_body, proven}, {});
}
}
Trace("inst-debug") << "...preprocess to " << body << std::endl;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback