summaryrefslogtreecommitdiff
path: root/src/theory/rewriter_tables_template.h
blob: c549f8cfbc525b4ffa4b008763d534bb5af1c061 (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
/******************************************************************************
 * Top contributors (to current version):
 *   Dejan Jovanovic, Tim King, Andres Noetzli
 *
 * This file is part of the cvc5 project.
 *
 * Copyright (c) 2009-2021 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.
 * ****************************************************************************
 *
 * Rewriter tables for various theories.
 *
 * This file contains template code for the rewriter tables that are generated
 * from the Theory kinds files.
 */

#include "cvc5_private.h"

#pragma once

#include "expr/attribute.h"
#include "expr/attribute_unique_id.h"
#include "theory/rewriter.h"
#include "theory/rewriter_attributes.h"

// clang-format off
${rewriter_includes}
// clang-format on

namespace cvc5 {
namespace theory {

Node Rewriter::getPreRewriteCache(theory::TheoryId theoryId, TNode node)
{
  switch (theoryId)
  {
    // clang-format off
${pre_rewrite_get_cache}
      // clang-format on
    default: Unreachable();
  }
}

Node Rewriter::getPostRewriteCache(theory::TheoryId theoryId, TNode node)
{
  switch (theoryId)
  {
    // clang-format off
${post_rewrite_get_cache}
      // clang-format on
    default: Unreachable();
  }
}

void Rewriter::setPreRewriteCache(theory::TheoryId theoryId,
                                  TNode node,
                                  TNode cache)
{
  switch (theoryId)
  {
    // clang-format off
${pre_rewrite_set_cache}
      // clang-format on
    default: Unreachable();
  }
}

void Rewriter::setPostRewriteCache(theory::TheoryId theoryId,
                                   TNode node,
                                   TNode cache)
{
  switch (theoryId)
  {
    // clang-format off
${post_rewrite_set_cache}
      // clang-format on
    default: Unreachable();
  }
}

Rewriter::Rewriter() : d_tpg(nullptr)
{
  for (size_t i = 0; i < kind::LAST_KIND; ++i)
  {
    d_preRewriters[i] = nullptr;
    d_postRewriters[i] = nullptr;
  }

  for (size_t i = 0; i < theory::THEORY_LAST; ++i)
  {
    d_preRewritersEqual[i] = nullptr;
    d_postRewritersEqual[i] = nullptr;
  }
}

void Rewriter::clearCachesInternal()
{
  typedef cvc5::expr::attr::AttributeUniqueId AttributeUniqueId;
  std::vector<AttributeUniqueId> preids;
  // clang-format off
  ${pre_rewrite_attribute_ids}  // clang-format on

  std::vector<AttributeUniqueId>
      postids;
  // clang-format off
  ${post_rewrite_attribute_ids}  // clang-format on

  std::vector<const AttributeUniqueId*>
      allids;
  for (size_t i = 0, size = preids.size(); i < size; ++i)
  {
    allids.push_back(&preids[i]);
  }
  for (size_t i = 0, size = postids.size(); i < size; ++i)
  {
    allids.push_back(&postids[i]);
  }
  NodeManager::currentNM()->deleteAttributes(allids);
}

}  // namespace theory
}  // namespace cvc5
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback