summaryrefslogtreecommitdiff
path: root/impl/Operator.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'impl/Operator.hpp')
-rw-r--r--impl/Operator.hpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/impl/Operator.hpp b/impl/Operator.hpp
index b67591f..cf3ffed 100644
--- a/impl/Operator.hpp
+++ b/impl/Operator.hpp
@@ -47,8 +47,7 @@ struct Minimum : public Operator<Domain> {
template<typename Domain>
struct Negation : public Operator<Domain> {
virtual Domain eval(const std::vector<Domain>& arguments) const {
- if (arguments.size() > 1)
- throw "Too many arguments to a negation.";
+ assert(arguments.size() == 1);
return -arguments[0];
}
void print(std::ostream& cout) const {