projects
/
cvc5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b8d1e24
)
Fix error message.
author
ajreynol
<andrew.j.reynolds@gmail.com>
Fri, 5 May 2017 14:35:12 +0000
(09:35 -0500)
committer
ajreynol
<andrew.j.reynolds@gmail.com>
Fri, 5 May 2017 14:35:31 +0000
(09:35 -0500)
src/theory/sets/theory_sets_type_rules.h
patch
|
blob
|
history
diff --git
a/src/theory/sets/theory_sets_type_rules.h
b/src/theory/sets/theory_sets_type_rules.h
index 7462847b69f2ac3ae10aae91a42c5dede5bedd4d..b8c0a80559391986f161c2fbf27b741fb2b1087b 100644
(file)
--- a/
src/theory/sets/theory_sets_type_rules.h
+++ b/
src/theory/sets/theory_sets_type_rules.h
@@
-192,7
+192,7
@@
struct UniverseSetTypeRule {
Assert(check);
TypeNode setType = n.getType();
if(!setType.isSet()) {
- throw TypeCheckingExceptionPrivate(n, "
COMPLEMENT operates on a set, non-set object found
");
+ throw TypeCheckingExceptionPrivate(n, "
Non-set type found for universe set
");
}
return setType;
}