summaryrefslogtreecommitdiff
path: root/src/expr/uninterpreted_constant.cpp
blob: 9d8b122647ae1e0415d563aa3908bc7a23497aaa (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
/*********************                                                        */
/*! \file uninterpreted_constant.cpp
 ** \verbatim
 ** Top contributors (to current version):
 **   Andres Noetzli, Andrew Reynolds, Tim King
 ** This file is part of the CVC4 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.\endverbatim
 **
 ** \brief Representation of constants of uninterpreted sorts
 **
 ** Representation of constants of uninterpreted sorts.
 **/

#include "expr/uninterpreted_constant.h"

#include <algorithm>
#include <iostream>
#include <sstream>
#include <string>

#include "base/check.h"
#include "expr/type_node.h"

using namespace std;

namespace CVC5 {

UninterpretedConstant::UninterpretedConstant(const TypeNode& type,
                                             Integer index)
    : d_type(new TypeNode(type)), d_index(index)
{
  //PrettyCheckArgument(type.isSort(), type, "uninterpreted constants can only be created for uninterpreted sorts, not `%s'", type.toString().c_str());
  PrettyCheckArgument(index >= 0, index, "index >= 0 required for uninterpreted constant index, not `%s'", index.toString().c_str());
}

UninterpretedConstant::~UninterpretedConstant() {}

UninterpretedConstant::UninterpretedConstant(const UninterpretedConstant& other)
    : d_type(new TypeNode(other.getType())), d_index(other.getIndex())
{
}

const TypeNode& UninterpretedConstant::getType() const { return *d_type; }
const Integer& UninterpretedConstant::getIndex() const { return d_index; }
bool UninterpretedConstant::operator==(const UninterpretedConstant& uc) const
{
  return getType() == uc.getType() && d_index == uc.d_index;
}
bool UninterpretedConstant::operator!=(const UninterpretedConstant& uc) const
{
  return !(*this == uc);
}

bool UninterpretedConstant::operator<(const UninterpretedConstant& uc) const
{
  return getType() < uc.getType()
         || (getType() == uc.getType() && d_index < uc.d_index);
}
bool UninterpretedConstant::operator<=(const UninterpretedConstant& uc) const
{
  return getType() < uc.getType()
         || (getType() == uc.getType() && d_index <= uc.d_index);
}
bool UninterpretedConstant::operator>(const UninterpretedConstant& uc) const
{
  return !(*this <= uc);
}
bool UninterpretedConstant::operator>=(const UninterpretedConstant& uc) const
{
  return !(*this < uc);
}

std::ostream& operator<<(std::ostream& out, const UninterpretedConstant& uc) {
  std::stringstream ss;
  ss << uc.getType();
  std::string st(ss.str());
  // must remove delimiting quotes from the name of the type
  // this prevents us from printing symbols like |@uc_|T|_n|
  std::string q("|");
  size_t pos;
  while ((pos = st.find(q)) != std::string::npos)
  {
    st.replace(pos, 1, "");
  }
  return out << "uc_" << st.c_str() << "_" << uc.getIndex();
}

size_t UninterpretedConstantHashFunction::operator()(
    const UninterpretedConstant& uc) const
{
  return TypeNodeHashFunction()(uc.getType())
         * IntegerHashFunction()(uc.getIndex());
}

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