summaryrefslogtreecommitdiff
path: root/src/expr/array_store_all.h
diff options
context:
space:
mode:
authorTim King <taking@cs.nyu.edu>2017-10-04 09:26:28 -0700
committerGitHub <noreply@github.com>2017-10-04 09:26:28 -0700
commitf2bd626d6337ca4df70c0bf541d7d9bec4ef5be5 (patch)
tree26f1e8d8cf034cf18ef9fb9c5fbf7e7e10b6a0b4 /src/expr/array_store_all.h
parentfa99334bf3c8ef2b833a48cd1141d84723716d80 (diff)
Removing the throw specifier from ArrayStoreAll constructor. (#1182)
Addresses CIDS: 1457252 and 1379620. Miscellaneous cleanup to ArrayStoreAll.
Diffstat (limited to 'src/expr/array_store_all.h')
-rw-r--r--src/expr/array_store_all.h64
1 files changed, 29 insertions, 35 deletions
diff --git a/src/expr/array_store_all.h b/src/expr/array_store_all.h
index c8474dfa1..308794f48 100644
--- a/src/expr/array_store_all.h
+++ b/src/expr/array_store_all.h
@@ -18,64 +18,58 @@
#include "cvc4_public.h"
-#pragma once
+#ifndef __CVC4__ARRAY_STORE_ALL_H
+#define __CVC4__ARRAY_STORE_ALL_H
#include <iosfwd>
-
-#include "base/exception.h"
+#include <memory>
namespace CVC4 {
- // messy; Expr needs ArrayStoreAll (because it's the payload of a
- // CONSTANT-kinded expression), and ArrayStoreAll needs Expr.
- class Expr;
- class ArrayType;
-}/* CVC4 namespace */
-
+// messy; Expr needs ArrayStoreAll (because it's the payload of a
+// CONSTANT-kinded expression), and ArrayStoreAll needs Expr.
+class Expr;
+class ArrayType;
+} // namespace CVC4
namespace CVC4 {
class CVC4_PUBLIC ArrayStoreAll {
-public:
- ArrayStoreAll(const ArrayStoreAll& other);
+ public:
+ /**
+ * @throws IllegalArgumentException if `type` is not an array or if `expr` is
+ * not a constant of type `type`.
+ */
+ ArrayStoreAll(const ArrayType& type, const Expr& expr);
+ ~ArrayStoreAll() throw();
+ ArrayStoreAll(const ArrayStoreAll& other);
ArrayStoreAll& operator=(const ArrayStoreAll& other);
- ArrayStoreAll(const ArrayType& type, const Expr& expr)
- throw(IllegalArgumentException);
-
- ~ArrayStoreAll() throw();
-
const ArrayType& getType() const throw();
-
const Expr& getExpr() const throw();
bool operator==(const ArrayStoreAll& asa) const throw();
-
- bool operator!=(const ArrayStoreAll& asa) const throw() {
- return !(*this == asa);
- }
-
+ bool operator!=(const ArrayStoreAll& asa) const throw();
bool operator<(const ArrayStoreAll& asa) const throw();
bool operator<=(const ArrayStoreAll& asa) const throw();
- bool operator>(const ArrayStoreAll& asa) const throw() {
- return !(*this <= asa);
- }
- bool operator>=(const ArrayStoreAll& asa) const throw() {
- return !(*this < asa);
- }
+ bool operator>(const ArrayStoreAll& asa) const throw();
+ bool operator>=(const ArrayStoreAll& asa) const throw();
-private:
- ArrayType* d_type;
- Expr* d_expr;
-};/* class ArrayStoreAll */
+ private:
+ std::unique_ptr<ArrayType> d_type;
+ std::unique_ptr<Expr> d_expr;
+}; /* class ArrayStoreAll */
-std::ostream& operator<<(std::ostream& out, const ArrayStoreAll& asa) CVC4_PUBLIC;
+std::ostream& operator<<(std::ostream& out,
+ const ArrayStoreAll& asa) CVC4_PUBLIC;
/**
* Hash function for the ArrayStoreAll constants.
*/
struct CVC4_PUBLIC ArrayStoreAllHashFunction {
size_t operator()(const ArrayStoreAll& asa) const;
-};/* struct ArrayStoreAllHashFunction */
+}; /* struct ArrayStoreAllHashFunction */
+
+} // namespace CVC4
-}/* CVC4 namespace */
+#endif /* __CVC4__ARRAY_STORE_ALL_H */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback