summaryrefslogtreecommitdiff
path: root/test/unit/theory/theory_white.cpp
blob: 7bf0f2426cd04d5f4f1b7b38f6f34e2c3b3d4953 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
/*********************                                                        */
/*! \file theory_white.cpp
 ** \verbatim
 ** Top contributors (to current version):
 **   Aina Niemetz, Tim King, Dejan Jovanovic
 ** This file is part of the CVC4 project.
 ** Copyright (c) 2009-2020 by the authors listed in the file AUTHORS
 ** in the top-level source directory and their institutional affiliations.
 ** All rights reserved.  See the file COPYING in the top-level source
 ** directory for licensing information.\endverbatim
 **
 ** \brief Black box testing of CVC4::theory::Theory.
 **
 ** Black box testing of CVC4::theory::Theory.
 **/

#include <memory>
#include <vector>

#include "context/context.h"
#include "expr/node.h"
#include "test_smt.h"
#include "theory/theory.h"
#include "theory/theory_engine.h"
#include "util/resource_manager.h"

namespace CVC4 {

using namespace theory;
using namespace expr;
using namespace context;

namespace test {

class TestTheoryWhite : public TestSmtNoFinishInit
{
 protected:
  void SetUp() override
  {
    TestSmtNoFinishInit::SetUp();
    d_context = d_smtEngine->getContext();
    d_user_context = d_smtEngine->getUserContext();
    d_logicInfo.reset(new LogicInfo());
    d_logicInfo->lock();
    d_smtEngine->finishInit();
    delete d_smtEngine->getTheoryEngine()->d_theoryTable[THEORY_BUILTIN];
    delete d_smtEngine->getTheoryEngine()->d_theoryOut[THEORY_BUILTIN];
    d_smtEngine->getTheoryEngine()->d_theoryTable[THEORY_BUILTIN] = nullptr;
    d_smtEngine->getTheoryEngine()->d_theoryOut[THEORY_BUILTIN] = nullptr;

    d_dummy_theory.reset(new DummyTheory<THEORY_BUILTIN>(d_context,
                                                         d_user_context,
                                                         d_outputChannel,
                                                         Valuation(nullptr),
                                                         *d_logicInfo,
                                                         nullptr));
    d_outputChannel.clear();
    d_atom0 = d_nodeManager->mkConst(true);
    d_atom1 = d_nodeManager->mkConst(false);
  }

  Context* d_context;
  UserContext* d_user_context;
  std::unique_ptr<LogicInfo> d_logicInfo;
  DummyOutputChannel d_outputChannel;
  std::unique_ptr<DummyTheory<THEORY_BUILTIN>> d_dummy_theory;
  Node d_atom0;
  Node d_atom1;
};

TEST_F(TestTheoryWhite, effort)
{
  Theory::Effort s = Theory::EFFORT_STANDARD;
  Theory::Effort f = Theory::EFFORT_FULL;

  ASSERT_TRUE(Theory::standardEffortOnly(s));
  ASSERT_FALSE(Theory::standardEffortOnly(f));

  ASSERT_FALSE(Theory::fullEffort(s));
  ASSERT_TRUE(Theory::fullEffort(f));

  ASSERT_TRUE(Theory::standardEffortOrMore(s));
  ASSERT_TRUE(Theory::standardEffortOrMore(f));
}

TEST_F(TestTheoryWhite, done)
{
  ASSERT_TRUE(d_dummy_theory->done());

  d_dummy_theory->assertFact(d_atom0, true);
  d_dummy_theory->assertFact(d_atom1, true);

  ASSERT_FALSE(d_dummy_theory->done());

  d_dummy_theory->check(Theory::EFFORT_FULL);

  ASSERT_TRUE(d_dummy_theory->done());
}

TEST_F(TestTheoryWhite, outputChannel_accessors)
{
  /* void setOutputChannel(OutputChannel& out)  */
  /* OutputChannel& getOutputChannel() */

  DummyOutputChannel theOtherChannel;

  ASSERT_EQ(&(d_dummy_theory->getOutputChannel()), &d_outputChannel);

  d_dummy_theory->setOutputChannel(theOtherChannel);

  ASSERT_EQ(&(d_dummy_theory->getOutputChannel()), &theOtherChannel);

  const OutputChannel& oc = d_dummy_theory->getOutputChannel();

  ASSERT_EQ(&oc, &theOtherChannel);
}

TEST_F(TestTheoryWhite, outputChannel)
{
  Node n = d_atom0.orNode(d_atom1);
  d_outputChannel.lemma(n);
  d_outputChannel.split(d_atom0);
  Node s = d_atom0.orNode(d_atom0.notNode());
  ASSERT_EQ(d_outputChannel.d_callHistory.size(), 2u);
  ASSERT_EQ(d_outputChannel.d_callHistory[0], std::make_pair(LEMMA, n));
  ASSERT_EQ(d_outputChannel.d_callHistory[1], std::make_pair(LEMMA, s));
  d_outputChannel.d_callHistory.clear();
}
}  // namespace test
}  // namespace CVC4
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback