summaryrefslogtreecommitdiff
path: root/src/theory/arith/normal_form.h
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@cs.nyu.edu>2014-06-17 17:29:12 -0400
committerlianah <lianahady@gmail.com>2014-06-19 18:24:39 -0400
commitb766bc3bcc5510a283f8f35f3362b33f8a0ed461 (patch)
treec0685d64a12d7e35a113e39bc76cbdb7b673b20e /src/theory/arith/normal_form.h
parent51dc426b0e217a4f1292be995f5473a7f2d27ad8 (diff)
Final preparations for arithmetic for building with libc++.
Diffstat (limited to 'src/theory/arith/normal_form.h')
-rw-r--r--src/theory/arith/normal_form.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/theory/arith/normal_form.h b/src/theory/arith/normal_form.h
index 3267834b5..8d37bed23 100644
--- a/src/theory/arith/normal_form.h
+++ b/src/theory/arith/normal_form.h
@@ -28,7 +28,6 @@
#include <list>
#include <algorithm>
-#include <ext/algorithm>
namespace CVC4 {
namespace theory {
@@ -510,7 +509,7 @@ private:
public:
- class iterator {
+ class iterator : public std::iterator<std::input_iterator_tag, Variable> {
private:
internal_iterator d_iter;
@@ -732,7 +731,7 @@ public:
}
static bool isSorted(const std::vector<Monomial>& m) {
- return __gnu_cxx::is_sorted(m.begin(), m.end());
+ return std::is_sorted(m.begin(), m.end());
}
static bool isStrictlySorted(const std::vector<Monomial>& m) {
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback