summaryrefslogtreecommitdiff
path: root/src/theory/arith/bound_counts.cpp
blob: 27e9a35dcd21e31c151479953cc0d412c996250f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "theory/arith/bound_counts.h"
#include "theory/arith/tableau.h"

namespace CVC4 {
namespace theory {
namespace arith {

const BoundsInfo& BoundCountingLookup::boundsInfo(ArithVar basic) const {
  RowIndex ridx = d_tab->basicToRowIndex(basic);
  Assert(d_bc->isKey(ridx));
  return (*d_bc)[ridx];
}

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