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 "cvc5_private.h" |
20 |
|
|
21 |
|
#pragma once |
22 |
|
|
23 |
|
#include "theory/arith/arithvar.h" |
24 |
|
|
25 |
|
namespace cvc5 { |
26 |
|
namespace theory { |
27 |
|
namespace arith { |
28 |
|
|
29 |
|
class Tableau; |
30 |
|
|
31 |
|
class TableauSizes { |
32 |
|
private: |
33 |
|
const Tableau* d_tab; |
34 |
|
public: |
35 |
9854 |
TableauSizes(const Tableau* tab): d_tab(tab){} |
36 |
|
|
37 |
|
uint32_t getRowLength(ArithVar b) const; |
38 |
|
uint32_t getColumnLength(ArithVar x) const; |
39 |
|
}; /* TableauSizes */ |
40 |
|
|
41 |
|
} // namespace arith |
42 |
|
} // namespace theory |
43 |
|
} // namespace cvc5 |