summaryrefslogtreecommitdiff
path: root/src/util
diff options
context:
space:
mode:
authorajreynol <andrew.j.reynolds@gmail.com>2015-09-09 09:48:26 +0200
committerajreynol <andrew.j.reynolds@gmail.com>2015-09-09 09:48:26 +0200
commitd78d47eafdad2d76f681463787647cdf5892a2fd (patch)
tree5fca468d7ec975e44085481e70db88b73706e2c7 /src/util
parent289f4081c7497efbf33ffbcef5c5e35b89a9bbed (diff)
Working towards a fair enumerator for codatatypes.
Diffstat (limited to 'src/util')
-rw-r--r--src/util/uninterpreted_constant.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/uninterpreted_constant.h b/src/util/uninterpreted_constant.h
index c4fb776bc..13a80a19d 100644
--- a/src/util/uninterpreted_constant.h
+++ b/src/util/uninterpreted_constant.h
@@ -32,7 +32,7 @@ public:
UninterpretedConstant(Type type, Integer index) throw(IllegalArgumentException) :
d_type(type),
d_index(index) {
- CheckArgument(type.isSort(), type, "uninterpreted constants can only be created for uninterpreted sorts, not `%s'", type.toString().c_str());
+ //CheckArgument(type.isSort(), type, "uninterpreted constants can only be created for uninterpreted sorts, not `%s'", type.toString().c_str());
CheckArgument(index >= 0, index, "index >= 0 required for uninterpreted constant index, not `%s'", index.toString().c_str());
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback