summaryrefslogtreecommitdiff
path: root/src/util/cardinality.cpp
blob: 8aba4ad41b4d418b216420464a89ebc8af6c7b37 (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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
/*********************                                                        */
/*! \file cardinality.cpp
 ** \verbatim
 ** Original author: mdeters
 ** Major contributors: none
 ** Minor contributors (to current version): none
 ** This file is part of the CVC4 prototype.
 ** Copyright (c) 2009, 2010, 2011  The Analysis of Computer Systems Group (ACSys)
 ** Courant Institute of Mathematical Sciences
 ** New York University
 ** See the file COPYING in the top-level source directory for licensing
 ** information.\endverbatim
 **
 ** \brief Representation of cardinality
 **
 ** Implementation of a simple class to represent a cardinality.
 **/

#include "util/cardinality.h"

namespace CVC4 {

const Integer Cardinality::s_unknownCard(0);
const Integer Cardinality::s_intCard(-1);
const Integer Cardinality::s_realCard(-2);

const Cardinality Cardinality::INTEGERS(CardinalityBeth(0));
const Cardinality Cardinality::REALS(CardinalityBeth(1));
const Cardinality Cardinality::UNKNOWN((CardinalityUnknown()));

Cardinality& Cardinality::operator+=(const Cardinality& c) throw() {
  if(isUnknown()) {
    return *this;
  } else if(c.isUnknown()) {
    d_card = s_unknownCard;
    return *this;
  }

  if(isFinite() && c.isFinite()) {
    d_card += c.d_card - 1;
    return *this;
  }
  if(*this >= c) {
    return *this;
  } else {
    return *this = c;
  }
}

/** Assigning multiplication of this cardinality with another. */
Cardinality& Cardinality::operator*=(const Cardinality& c) throw() {
  if(isUnknown()) {
    return *this;
  } else if(c.isUnknown()) {
    d_card = s_unknownCard;
    return *this;
  }

  if(*this == 0 || c == 0) {
    return *this = 0;
  } else if(!isFinite() || !c.isFinite()) {
    if(*this >= c) {
      return *this;
    } else {
      return *this = c;
    }
  } else {
    d_card -= 1;
    d_card *= c.d_card - 1;
    d_card += 1;
    return *this;
  }
}

/** Assigning exponentiation of this cardinality with another. */
Cardinality& Cardinality::operator^=(const Cardinality& c)
  throw(IllegalArgumentException) {
  if(isUnknown()) {
    return *this;
  } else if(c.isUnknown()) {
    d_card = s_unknownCard;
    return *this;
  }

  if(c == 0) {
    // (anything) ^ 0 == 1
    d_card = 2;// remember +1 for finite cardinalities
    return *this;
  } else if(*this == 0) {
    // 0 ^ (>= 1) == 0
    return *this;
  } else if(*this == 1) {
    // 1 ^ (>= 1) == 1
    return *this;
  } else if(c == 1) {
    // (anything) ^ 1 == (that thing)
    return *this;
  } else if(isFinite() && c.isFinite()) {
    // finite ^ finite == finite
    //
    // Note: can throw an assertion if c is too big for
    // exponentiation
    d_card = (d_card - 1).pow(c.d_card.getUnsignedLong() - 1) + 1;
    return *this;
  } else if(!isFinite() && c.isFinite()) {
    // inf ^ finite == inf
    return *this;
  } else {
    Assert(*this >= 2 && !c.isFinite(),
           "fall-through case not as expected:\n%s\n%s",
           this->toString().c_str(), c.toString().c_str());
    // (>= 2) ^ beth_k == beth_(k+1)
    // unless the base is already > the exponent
    if(*this > c) {
      return *this;
    }
    d_card = c.d_card - 1;
    return *this;
  }
}


std::string Cardinality::toString() const throw() {
  std::stringstream ss;
  ss << *this;
  return ss.str();
}


std::ostream& operator<<(std::ostream& out, CardinalityBeth b) throw() {
  out << "beth[" << b.getNumber() << ']';

  return out;
}


std::ostream& operator<<(std::ostream& out, const Cardinality& c) throw() {
  if(c.isUnknown()) {
    out << "Cardinality::UNKNOWN";
  } else if(c.isFinite()) {
    out << c.getFiniteCardinality();
  } else {
    out << CardinalityBeth(c.getBethNumber());
  }

  return out;
}


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