Add the theory inference manager (#4948)
[cvc5.git] / src / theory / theory.cpp
1 /********************* */
2 /*! \file theory.cpp
3 ** \verbatim
4 ** Top contributors (to current version):
5 ** Tim King, Mathias Preiner, Dejan Jovanovic
6 ** This file is part of the CVC4 project.
7 ** Copyright (c) 2009-2020 by the authors listed in the file AUTHORS
8 ** in the top-level source directory) and their institutional affiliations.
9 ** All rights reserved. See the file COPYING in the top-level source
10 ** directory for licensing information.\endverbatim
11 **
12 ** \brief Base for theory interface.
13 **
14 ** Base for theory interface.
15 **/
16
17 #include "theory/theory.h"
18
19 #include <iostream>
20 #include <sstream>
21 #include <string>
22 #include <vector>
23
24 #include "base/check.h"
25 #include "expr/node_algorithm.h"
26 #include "options/theory_options.h"
27 #include "smt/smt_statistics_registry.h"
28 #include "theory/ext_theory.h"
29 #include "theory/quantifiers_engine.h"
30 #include "theory/substitutions.h"
31 #include "theory/theory_rewriter.h"
32
33 using namespace std;
34
35 namespace CVC4 {
36 namespace theory {
37
38 /** Default value for the uninterpreted sorts is the UF theory */
39 TheoryId Theory::s_uninterpretedSortOwner = THEORY_UF;
40
41 std::ostream& operator<<(std::ostream& os, Theory::Effort level){
42 switch(level){
43 case Theory::EFFORT_STANDARD:
44 os << "EFFORT_STANDARD"; break;
45 case Theory::EFFORT_FULL:
46 os << "EFFORT_FULL"; break;
47 case Theory::EFFORT_LAST_CALL:
48 os << "EFFORT_LAST_CALL"; break;
49 default:
50 Unreachable();
51 }
52 return os;
53 }/* ostream& operator<<(ostream&, Theory::Effort) */
54
55 Theory::Theory(TheoryId id,
56 context::Context* satContext,
57 context::UserContext* userContext,
58 OutputChannel& out,
59 Valuation valuation,
60 const LogicInfo& logicInfo,
61 ProofNodeManager* pnm,
62 std::string name)
63 : d_id(id),
64 d_satContext(satContext),
65 d_userContext(userContext),
66 d_logicInfo(logicInfo),
67 d_pnm(pnm),
68 d_facts(satContext),
69 d_factsHead(satContext, 0),
70 d_sharedTermsIndex(satContext, 0),
71 d_careGraph(NULL),
72 d_quantEngine(NULL),
73 d_decManager(nullptr),
74 d_instanceName(name),
75 d_checkTime(getStatsPrefix(id) + name + "::checkTime"),
76 d_computeCareGraphTime(getStatsPrefix(id) + name
77 + "::computeCareGraphTime"),
78 d_sharedTerms(satContext),
79 d_out(&out),
80 d_valuation(valuation),
81 d_equalityEngine(nullptr),
82 d_allocEqualityEngine(nullptr),
83 d_theoryState(nullptr),
84 d_inferManager(nullptr),
85 d_proofsEnabled(false)
86 {
87 smtStatisticsRegistry()->registerStat(&d_checkTime);
88 smtStatisticsRegistry()->registerStat(&d_computeCareGraphTime);
89 }
90
91 Theory::~Theory() {
92 smtStatisticsRegistry()->unregisterStat(&d_checkTime);
93 smtStatisticsRegistry()->unregisterStat(&d_computeCareGraphTime);
94 }
95
96 bool Theory::needsEqualityEngine(EeSetupInfo& esi)
97 {
98 // by default, this theory does not use an (official) equality engine
99 return false;
100 }
101
102 void Theory::setEqualityEngine(eq::EqualityEngine* ee)
103 {
104 // set the equality engine pointer
105 d_equalityEngine = ee;
106 if (d_theoryState != nullptr)
107 {
108 d_theoryState->setEqualityEngine(ee);
109 }
110 if (d_inferManager != nullptr)
111 {
112 d_inferManager->setEqualityEngine(ee);
113 }
114 }
115
116 void Theory::setQuantifiersEngine(QuantifiersEngine* qe)
117 {
118 Assert(d_quantEngine == nullptr);
119 // quantifiers engine may be null if not in quantified logic
120 d_quantEngine = qe;
121 }
122
123 void Theory::setDecisionManager(DecisionManager* dm)
124 {
125 Assert(d_decManager == nullptr);
126 Assert(dm != nullptr);
127 d_decManager = dm;
128 }
129
130 void Theory::finishInitStandalone()
131 {
132 EeSetupInfo esi;
133 if (needsEqualityEngine(esi))
134 {
135 // always associated with the same SAT context as the theory (d_satContext)
136 d_allocEqualityEngine.reset(new eq::EqualityEngine(
137 *esi.d_notify, d_satContext, esi.d_name, esi.d_constantsAreTriggers));
138 // use it as the official equality engine
139 setEqualityEngine(d_allocEqualityEngine.get());
140 }
141 finishInit();
142 }
143
144 TheoryId Theory::theoryOf(options::TheoryOfMode mode, TNode node)
145 {
146 TheoryId tid = THEORY_BUILTIN;
147 switch(mode) {
148 case options::TheoryOfMode::THEORY_OF_TYPE_BASED:
149 // Constants, variables, 0-ary constructors
150 if (node.isVar())
151 {
152 if (node.getKind() == kind::BOOLEAN_TERM_VARIABLE)
153 {
154 tid = THEORY_UF;
155 }
156 else
157 {
158 tid = Theory::theoryOf(node.getType());
159 }
160 }
161 else if (node.isConst())
162 {
163 tid = Theory::theoryOf(node.getType());
164 }
165 else if (node.getKind() == kind::EQUAL)
166 {
167 // Equality is owned by the theory that owns the domain
168 tid = Theory::theoryOf(node[0].getType());
169 }
170 else
171 {
172 // Regular nodes are owned by the kind
173 tid = kindToTheoryId(node.getKind());
174 }
175 break;
176 case options::TheoryOfMode::THEORY_OF_TERM_BASED:
177 // Variables
178 if (node.isVar())
179 {
180 if (Theory::theoryOf(node.getType()) != theory::THEORY_BOOL)
181 {
182 // We treat the variables as uninterpreted
183 tid = s_uninterpretedSortOwner;
184 }
185 else
186 {
187 if (node.getKind() == kind::BOOLEAN_TERM_VARIABLE)
188 {
189 // Boolean vars go to UF
190 tid = THEORY_UF;
191 }
192 else
193 {
194 // Except for the Boolean ones
195 tid = THEORY_BOOL;
196 }
197 }
198 }
199 else if (node.isConst())
200 {
201 // Constants go to the theory of the type
202 tid = Theory::theoryOf(node.getType());
203 }
204 else if (node.getKind() == kind::EQUAL)
205 { // Equality
206 // If one of them is an ITE, it's irelevant, since they will get
207 // replaced out anyhow
208 if (node[0].getKind() == kind::ITE)
209 {
210 tid = Theory::theoryOf(node[0].getType());
211 }
212 else if (node[1].getKind() == kind::ITE)
213 {
214 tid = Theory::theoryOf(node[1].getType());
215 }
216 else
217 {
218 TNode l = node[0];
219 TNode r = node[1];
220 TypeNode ltype = l.getType();
221 TypeNode rtype = r.getType();
222 if (ltype != rtype)
223 {
224 tid = Theory::theoryOf(l.getType());
225 }
226 else
227 {
228 // If both sides belong to the same theory the choice is easy
229 TheoryId T1 = Theory::theoryOf(l);
230 TheoryId T2 = Theory::theoryOf(r);
231 if (T1 == T2)
232 {
233 tid = T1;
234 }
235 else
236 {
237 TheoryId T3 = Theory::theoryOf(ltype);
238 // This is a case of
239 // * x*y = f(z) -> UF
240 // * x = c -> UF
241 // * f(x) = read(a, y) -> either UF or ARRAY
242 // at least one of the theories has to be parametric, i.e. theory
243 // of the type is different from the theory of the term
244 if (T1 == T3)
245 {
246 tid = T2;
247 }
248 else if (T2 == T3)
249 {
250 tid = T1;
251 }
252 else
253 {
254 // If both are parametric, we take the smaller one (arbitrary)
255 tid = T1 < T2 ? T1 : T2;
256 }
257 }
258 }
259 }
260 }
261 else
262 {
263 // Regular nodes are owned by the kind
264 tid = kindToTheoryId(node.getKind());
265 }
266 break;
267 default:
268 Unreachable();
269 }
270 Trace("theory::internal") << "theoryOf(" << mode << ", " << node << ") -> " << tid << std::endl;
271 return tid;
272 }
273
274 void Theory::notifySharedTerm(TNode n)
275 {
276 // TODO (project #39): this will move to addSharedTerm, as every theory with
277 // an equality does this in their notifySharedTerm method.
278 // if we have an equality engine, add the trigger term
279 if (d_equalityEngine != nullptr)
280 {
281 d_equalityEngine->addTriggerTerm(n, d_id);
282 }
283 }
284
285 void Theory::computeCareGraph() {
286 Debug("sharing") << "Theory::computeCareGraph<" << getId() << ">()" << endl;
287 for (unsigned i = 0; i < d_sharedTerms.size(); ++ i) {
288 TNode a = d_sharedTerms[i];
289 TypeNode aType = a.getType();
290 for (unsigned j = i + 1; j < d_sharedTerms.size(); ++ j) {
291 TNode b = d_sharedTerms[j];
292 if (b.getType() != aType) {
293 // We don't care about the terms of different types
294 continue;
295 }
296 switch (d_valuation.getEqualityStatus(a, b)) {
297 case EQUALITY_TRUE_AND_PROPAGATED:
298 case EQUALITY_FALSE_AND_PROPAGATED:
299 // If we know about it, we should have propagated it, so we can skip
300 break;
301 default:
302 // Let's split on it
303 addCarePair(a, b);
304 break;
305 }
306 }
307 }
308 }
309
310 void Theory::printFacts(std::ostream& os) const {
311 unsigned i, n = d_facts.size();
312 for(i = 0; i < n; i++){
313 const Assertion& a_i = d_facts[i];
314 Node assertion = a_i;
315 os << d_id << '[' << i << ']' << " " << assertion << endl;
316 }
317 }
318
319 void Theory::debugPrintFacts() const{
320 DebugChannel.getStream() << "Theory::debugPrintFacts()" << endl;
321 printFacts(DebugChannel.getStream());
322 }
323
324 bool Theory::isLegalElimination(TNode x, TNode val)
325 {
326 Assert(x.isVar());
327 if (x.getKind() == kind::BOOLEAN_TERM_VARIABLE
328 || val.getKind() == kind::BOOLEAN_TERM_VARIABLE)
329 {
330 return false;
331 }
332 if (expr::hasSubterm(val, x))
333 {
334 return false;
335 }
336 if (!val.getType().isSubtypeOf(x.getType()))
337 {
338 return false;
339 }
340 if (!options::produceModels())
341 {
342 // don't care about the model, we are fine
343 return true;
344 }
345 // if there is a model object
346 TheoryModel* tm = d_valuation.getModel();
347 Assert(tm != nullptr);
348 return tm->isLegalElimination(x, val);
349 }
350
351 std::unordered_set<TNode, TNodeHashFunction> Theory::currentlySharedTerms() const{
352 std::unordered_set<TNode, TNodeHashFunction> currentlyShared;
353 for (shared_terms_iterator i = shared_terms_begin(),
354 i_end = shared_terms_end(); i != i_end; ++i) {
355 currentlyShared.insert (*i);
356 }
357 return currentlyShared;
358 }
359
360 bool Theory::collectModelInfo(TheoryModel* m)
361 {
362 std::set<Node> termSet;
363 // Compute terms appearing in assertions and shared terms
364 computeRelevantTerms(termSet);
365 // if we are using an equality engine, assert it to the model
366 if (d_equalityEngine != nullptr)
367 {
368 if (!m->assertEqualityEngine(d_equalityEngine, &termSet))
369 {
370 return false;
371 }
372 }
373 // now, collect theory-specific value assigments
374 return collectModelValues(m, termSet);
375 }
376
377 void Theory::collectTerms(TNode n,
378 set<Kind>& irrKinds,
379 set<Node>& termSet) const
380 {
381 if (termSet.find(n) != termSet.end()) {
382 return;
383 }
384 Kind nk = n.getKind();
385 if (irrKinds.find(nk) == irrKinds.end())
386 {
387 Trace("theory::collectTerms")
388 << "Theory::collectTerms: adding " << n << endl;
389 termSet.insert(n);
390 }
391 if (nk == kind::NOT || nk == kind::EQUAL || !isLeaf(n))
392 {
393 for(TNode::iterator child_it = n.begin(); child_it != n.end(); ++child_it) {
394 collectTerms(*child_it, irrKinds, termSet);
395 }
396 }
397 }
398
399 void Theory::computeRelevantTermsInternal(std::set<Node>& termSet,
400 std::set<Kind>& irrKinds,
401 bool includeShared) const
402 {
403 // Collect all terms appearing in assertions
404 irrKinds.insert(kind::EQUAL);
405 irrKinds.insert(kind::NOT);
406 context::CDList<Assertion>::const_iterator assert_it = facts_begin(),
407 assert_it_end = facts_end();
408 for (; assert_it != assert_it_end; ++assert_it)
409 {
410 collectTerms(*assert_it, irrKinds, termSet);
411 }
412
413 if (!includeShared)
414 {
415 return;
416 }
417 // Add terms that are shared terms
418 std::set<Kind> kempty;
419 context::CDList<TNode>::const_iterator shared_it = shared_terms_begin(),
420 shared_it_end = shared_terms_end();
421 for (; shared_it != shared_it_end; ++shared_it)
422 {
423 collectTerms(*shared_it, kempty, termSet);
424 }
425 }
426
427 void Theory::computeRelevantTerms(std::set<Node>& termSet, bool includeShared)
428 {
429 std::set<Kind> irrKinds;
430 computeRelevantTermsInternal(termSet, irrKinds, includeShared);
431 }
432
433 bool Theory::collectModelValues(TheoryModel* m, const std::set<Node>& termSet)
434 {
435 return true;
436 }
437
438 Theory::PPAssertStatus Theory::ppAssert(TNode in,
439 SubstitutionMap& outSubstitutions)
440 {
441 if (in.getKind() == kind::EQUAL)
442 {
443 // (and (= x t) phi) can be replaced by phi[x/t] if
444 // 1) x is a variable
445 // 2) x is not in the term t
446 // 3) x : T and t : S, then S <: T
447 if (in[0].isVar() && isLegalElimination(in[0], in[1])
448 && in[0].getKind() != kind::BOOLEAN_TERM_VARIABLE)
449 {
450 outSubstitutions.addSubstitution(in[0], in[1]);
451 return PP_ASSERT_STATUS_SOLVED;
452 }
453 if (in[1].isVar() && isLegalElimination(in[1], in[0])
454 && in[1].getKind() != kind::BOOLEAN_TERM_VARIABLE)
455 {
456 outSubstitutions.addSubstitution(in[1], in[0]);
457 return PP_ASSERT_STATUS_SOLVED;
458 }
459 if (in[0].isConst() && in[1].isConst())
460 {
461 if (in[0] != in[1])
462 {
463 return PP_ASSERT_STATUS_CONFLICT;
464 }
465 }
466 }
467
468 return PP_ASSERT_STATUS_UNSOLVED;
469 }
470
471 std::pair<bool, Node> Theory::entailmentCheck(TNode lit)
472 {
473 return make_pair(false, Node::null());
474 }
475
476 void Theory::addCarePair(TNode t1, TNode t2) {
477 if (d_careGraph) {
478 d_careGraph->insert(CarePair(t1, t2, d_id));
479 }
480 }
481
482 void Theory::getCareGraph(CareGraph* careGraph) {
483 Assert(careGraph != NULL);
484
485 Trace("sharing") << "Theory<" << getId() << ">::getCareGraph()" << std::endl;
486 TimerStat::CodeTimer computeCareGraphTime(d_computeCareGraphTime);
487 d_careGraph = careGraph;
488 computeCareGraph();
489 d_careGraph = NULL;
490 }
491
492 EqualityStatus Theory::getEqualityStatus(TNode a, TNode b)
493 {
494 // if not using an equality engine, then by default we don't know the status
495 if (d_equalityEngine == nullptr)
496 {
497 return EQUALITY_UNKNOWN;
498 }
499 Assert(d_equalityEngine->hasTerm(a) && d_equalityEngine->hasTerm(b));
500
501 // Check for equality (simplest)
502 if (d_equalityEngine->areEqual(a, b))
503 {
504 // The terms are implied to be equal
505 return EQUALITY_TRUE;
506 }
507
508 // Check for disequality
509 if (d_equalityEngine->areDisequal(a, b, false))
510 {
511 // The terms are implied to be dis-equal
512 return EQUALITY_FALSE;
513 }
514
515 // All other terms are unknown, which is conservative. A theory may override
516 // this method if it knows more information.
517 return EQUALITY_UNKNOWN;
518 }
519
520 void Theory::check(Effort level)
521 {
522 // see if we are already done (as an optimization)
523 if (done() && level < EFFORT_FULL)
524 {
525 return;
526 }
527 Assert(d_theoryState!=nullptr);
528 // standard calls for resource, stats
529 d_out->spendResource(ResourceManager::Resource::TheoryCheckStep);
530 TimerStat::CodeTimer checkTimer(d_checkTime);
531 // pre-check at level
532 if (preCheck(level))
533 {
534 // check aborted for a theory-specific reason
535 return;
536 }
537 // process the pending fact queue
538 while (!done() && !d_theoryState->isInConflict())
539 {
540 // Get the next assertion from the fact queue
541 Assertion assertion = get();
542 TNode fact = assertion.d_assertion;
543 bool polarity = fact.getKind() != kind::NOT;
544 TNode atom = polarity ? fact : fact[0];
545 // call the pre-notify method
546 if (preNotifyFact(atom, polarity, fact, assertion.d_isPreregistered, false))
547 {
548 // handled in theory-specific way that doesn't involve equality engine
549 continue;
550 }
551 // Theories that don't have an equality engine should always return true
552 // for preNotifyFact
553 Assert(d_equalityEngine != nullptr);
554 // assert to the equality engine
555 if (atom.getKind() == kind::EQUAL)
556 {
557 d_equalityEngine->assertEquality(atom, polarity, fact);
558 }
559 else
560 {
561 d_equalityEngine->assertPredicate(atom, polarity, fact);
562 }
563 // notify the theory of the new fact, which is not internal
564 notifyFact(atom, polarity, fact, false);
565 }
566 // post-check at level
567 postCheck(level);
568 }
569
570 bool Theory::preCheck(Effort level) { return false; }
571
572 void Theory::postCheck(Effort level) {}
573
574 bool Theory::preNotifyFact(
575 TNode atom, bool polarity, TNode fact, bool isPrereg, bool isInternal)
576 {
577 return false;
578 }
579
580 void Theory::notifyFact(TNode atom, bool polarity, TNode fact, bool isInternal)
581 {
582 }
583
584 void Theory::preRegisterTerm(TNode node) {}
585
586 void Theory::addSharedTerm(TNode n)
587 {
588 Debug("sharing") << "Theory::addSharedTerm<" << getId() << ">(" << n << ")"
589 << std::endl;
590 Debug("theory::assertions")
591 << "Theory::addSharedTerm<" << getId() << ">(" << n << ")" << std::endl;
592 d_sharedTerms.push_back(n);
593 // now call theory-specific method notifySharedTerm
594 notifySharedTerm(n);
595 }
596
597 eq::EqualityEngine* Theory::getEqualityEngine()
598 {
599 // get the assigned equality engine, which is a pointer stored in this class
600 return d_equalityEngine;
601 }
602
603 }/* CVC4::theory namespace */
604 }/* CVC4 namespace */