GCC Code Coverage Report
Directory: . Exec Total Coverage
File: src/theory/shared_solver_distributed.cpp Lines: 34 34 100.0 %
Date: 2021-11-07 Branches: 56 100 56.0 %

Line Exec Source
1
/******************************************************************************
2
 * Top contributors (to current version):
3
 *   Andrew Reynolds
4
 *
5
 * This file is part of the cvc5 project.
6
 *
7
 * Copyright (c) 2009-2021 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.
11
 * ****************************************************************************
12
 *
13
 * Shared solver in the distributed architecture.
14
 */
15
16
#include "theory/shared_solver_distributed.h"
17
18
#include "theory/theory_engine.h"
19
20
namespace cvc5 {
21
namespace theory {
22
23
15273
SharedSolverDistributed::SharedSolverDistributed(Env& env, TheoryEngine& te)
24
15273
    : SharedSolver(env, te)
25
{
26
15273
}
27
28
15273
bool SharedSolverDistributed::needsEqualityEngine(theory::EeSetupInfo& esi)
29
{
30
15273
  return d_sharedTerms.needsEqualityEngine(esi);
31
}
32
33
15273
void SharedSolverDistributed::setEqualityEngine(eq::EqualityEngine* ee)
34
{
35
15273
  d_sharedTerms.setEqualityEngine(ee);
36
15273
}
37
38
1006902
void SharedSolverDistributed::preRegisterSharedInternal(TNode t)
39
{
40
1006902
  if (t.getKind() == kind::EQUAL)
41
  {
42
    // When sharing is enabled, we propagate from the shared terms manager also
43
522840
    d_sharedTerms.addEqualityToPropagate(t);
44
  }
45
1006902
}
46
47
1364448
EqualityStatus SharedSolverDistributed::getEqualityStatus(TNode a, TNode b)
48
{
49
  // if we're using a shared terms database, ask its status if a and b are
50
  // shared.
51
1364448
  if (d_sharedTerms.isShared(a) && d_sharedTerms.isShared(b))
52
  {
53
1292821
    if (d_sharedTerms.areEqual(a, b))
54
    {
55
174522
      return EQUALITY_TRUE_AND_PROPAGATED;
56
    }
57
1118299
    else if (d_sharedTerms.areDisequal(a, b))
58
    {
59
6127
      return EQUALITY_FALSE_AND_PROPAGATED;
60
    }
61
  }
62
  // otherwise, ask the theory
63
1183799
  return d_te.theoryOf(Theory::theoryOf(a.getType()))->getEqualityStatus(a, b);
64
}
65
66
383457
TrustNode SharedSolverDistributed::explain(TNode literal, TheoryId id)
67
{
68
383457
  TrustNode texp;
69
383457
  if (id == THEORY_BUILTIN)
70
  {
71
    // explanation using the shared terms database
72
148554
    texp = d_sharedTerms.explain(literal);
73
297108
    Trace("shared-solver")
74
148554
        << "\tTerm was propagated by THEORY_BUILTIN. Explanation: "
75
148554
        << texp.getNode() << std::endl;
76
  }
77
  else
78
  {
79
    // By default, we ask the individual theory for the explanation.
80
    // It is possible that a centralized approach could preempt this.
81
234903
    texp = d_te.theoryOf(id)->explain(literal);
82
469806
    Trace("shared-solver") << "\tTerm was propagated by owner theory: " << id
83
234903
                           << ". Explanation: " << texp.getNode() << std::endl;
84
  }
85
383457
  return texp;
86
}
87
88
7897718
void SharedSolverDistributed::assertShared(TNode n, bool polarity, TNode reason)
89
{
90
7897718
  d_sharedTerms.assertShared(n, polarity, reason);
91
7897718
}
92
93
}  // namespace theory
94
31137
}  // namespace cvc5