1 |
|
/****************************************************************************** |
2 |
|
* Top contributors (to current version): |
3 |
|
* Tim King |
4 |
|
* |
5 |
|
* This file is part of the cvc5 project. |
6 |
|
* |
7 |
|
* Copyright (c) 2009-2021 by the authors listed in the file AUTHORS |
8 |
|
* in the top-level source directory and their institutional affiliations. |
9 |
|
* All rights reserved. See the file COPYING in the top-level source |
10 |
|
* directory for licensing information. |
11 |
|
* **************************************************************************** |
12 |
|
* |
13 |
|
* [[ Add one-line brief description here ]] |
14 |
|
* |
15 |
|
* [[ Add lengthier description here ]] |
16 |
|
* \todo document this file |
17 |
|
*/ |
18 |
|
|
19 |
|
#include "base/output.h" |
20 |
|
#include "theory/arith/tableau_sizes.h" |
21 |
|
#include "theory/arith/tableau.h" |
22 |
|
|
23 |
|
namespace cvc5 { |
24 |
|
namespace theory { |
25 |
|
namespace arith { |
26 |
|
|
27 |
|
uint32_t TableauSizes::getRowLength(ArithVar b) const { |
28 |
|
return d_tab->basicRowLength(b); |
29 |
|
} |
30 |
|
|
31 |
|
uint32_t TableauSizes::getColumnLength(ArithVar x) const { |
32 |
|
return d_tab->getColLength(x); |
33 |
|
} |
34 |
|
|
35 |
|
} // namespace arith |
36 |
|
} // namespace theory |
37 |
29505 |
} // namespace cvc5 |