summaryrefslogtreecommitdiff
path: root/src/theory/arrays
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2021-02-02 15:12:45 -0600
committerGitHub <noreply@github.com>2021-02-02 15:12:45 -0600
commitd97cee1a7c1a688d1ad9c748247bd9da1d86973f (patch)
tree836301d49970579f065e570be3b95be1202ae5a1 /src/theory/arrays
parent3393c0c828b44f88c92e52a2b49d8a572b2a9b93 (diff)
(proof-new) Miscellaneous fixes and regressions (#5841)
Diffstat (limited to 'src/theory/arrays')
-rw-r--r--src/theory/arrays/inference_manager.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/theory/arrays/inference_manager.cpp b/src/theory/arrays/inference_manager.cpp
index ec6890293..f2c805d38 100644
--- a/src/theory/arrays/inference_manager.cpp
+++ b/src/theory/arrays/inference_manager.cpp
@@ -114,8 +114,10 @@ void InferenceManager::convert(PfRule& id,
break;
case PfRule::ARRAYS_EXT: children.push_back(exp); break;
default:
- // unknown rule, should never happen
- Assert(false);
+ if (id != PfRule::ARRAYS_TRUST)
+ {
+ Assert(false) << "Unknown rule " << id << "\n";
+ }
children.push_back(exp);
args.push_back(conc);
id = PfRule::ARRAYS_TRUST;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback