summaryrefslogtreecommitdiff
path: root/src/theory/arith/arith_utilities.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/arith/arith_utilities.h')
-rw-r--r--src/theory/arith/arith_utilities.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/theory/arith/arith_utilities.h b/src/theory/arith/arith_utilities.h
index 0d7f214d7..b926af2e0 100644
--- a/src/theory/arith/arith_utilities.h
+++ b/src/theory/arith/arith_utilities.h
@@ -44,7 +44,7 @@ typedef std::unordered_map<Node, ArithVar> NodeToArithVarMap;
typedef DenseMap<Node> ArithVarToNodeMap;
inline Node mkRationalNode(const Rational& q){
- return NodeManager::currentNM()->mkConst<Rational>(q);
+ return NodeManager::currentNM()->mkConst(kind::CONST_RATIONAL, q);
}
inline Node mkBoolNode(bool b){
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback