Merge branch '1.2.x'
[cvc5.git] / src / theory / arith / arithvar.cpp
1 /********************* */
2 /*! \file arithvar.cpp
3 ** \verbatim
4 ** Original author: Tim King
5 ** Major contributors: none
6 ** Minor contributors (to current version): none
7 ** This file is part of the CVC4 project.
8 ** Copyright (c) 2009-2013 New York University and The University of Iowa
9 ** See the file COPYING in the top-level source directory for licensing
10 ** information.\endverbatim
11 **
12 ** \brief [[ Add one-line brief description here ]]
13 **
14 ** [[ Add lengthier description here ]]
15 ** \todo document this file
16 **/
17
18
19 #include "theory/arith/arithvar.h"
20 #include <limits>
21
22 namespace CVC4 {
23 namespace theory {
24 namespace arith {
25
26 const ArithVar ARITHVAR_SENTINEL = std::numeric_limits<ArithVar>::max();
27
28 }/* CVC4::theory::arith namespace */
29 }/* CVC4::theory namespace */
30 }/* CVC4 namespace */