9 #ifndef IMPKERNEL_CONVERTIBLE_VECTOR_H
10 #define IMPKERNEL_CONVERTIBLE_VECTOR_H
11 #include <IMP/kernel_config.h>
16 #include <cereal/access.hpp>
19 #if defined(_MSC_VER) && _MSC_VER == 1500
20 # include <type_traits>
21 # include <boost/type_traits.hpp>
22 # include <boost/utility.hpp>
25 #if IMP_COMPILER_HAS_DEBUG_VECTOR &&IMP_HAS_CHECKS >= IMP_INTERNAL
26 #include <debug/vector>
31 IMPKERNEL_BEGIN_NAMESPACE
43 #if !defined(IMP_DOXYGEN) && !defined(SWIG)
44 #if IMP_COMPILER_HAS_DEBUG_VECTOR &&IMP_HAS_CHECKS >= IMP_INTERNAL
46 public __gnu_debug::vector<T>
53 #if IMP_COMPILER_HAS_DEBUG_VECTOR &&IMP_HAS_CHECKS >= IMP_INTERNAL
54 typedef __gnu_debug::vector<T> V;
56 typedef std::vector<T> V;
59 friend class cereal::access;
61 template<
class Archive>
void save(Archive &ar)
const {
62 size_t sz = V::size();
70 template<
class Archive>
void load(Archive &ar) {
82 explicit Vector(
unsigned int sz,
const T &t = T()) : V(sz, t) {}
83 #if defined(_MSC_VER) && _MSC_VER == 1500
86 typename boost::disable_if<std::is_integral<It>::value>::type *t=0) {
87 for (It it = b; it != e; ++it) {
92 explicit Vector(
const std::vector<VO> &o) {
94 for (std::vector<VO>::const_iterator it = o.begin();
95 it != o.end(); ++it) {
104 explicit Vector(
const std::vector<VO> &o)
105 : V(o.begin(), o.end()) {}
113 V::insert(V::end(), o.begin(), o.end());
116 #if !defined(IMP_DOXYGEN) && !defined(SWIG)
117 void show(std::ostream &out = std::cout)
const {
119 for (
unsigned int i = 0; i < V::size(); ++i) {
120 if (i > 0) out <<
", ";
130 std::ostringstream oss;
134 std::size_t __hash__()
const {
135 return boost::hash_range(V::begin(), V::end());
140 #if !defined(SWIG) && !defined(IMP_DOXYGEN)
147 inline Vector<T> operator+(Vector<T> ret,
const Vector<T> &o) {
148 ret.insert(ret.end(), o.begin(), o.end());
154 #if IMP_COMPILER_HAS_DEBUG_VECTOR &&IMP_HAS_CHECKS >= IMP_INTERNAL
156 inline std::size_t hash_value(
const __gnu_debug::vector<T> &t) {
157 return boost::hash_range(t.begin(), t.end());
161 IMPKERNEL_END_NAMESPACE
164 template <
class Archive,
class T>
165 struct specialize<Archive, IMP::Vector<T>,
166 cereal::specialization::member_load_save> {};
Helper functions for implementing hashes.
Helper class to aid in output of IMP classes to streams.
A more IMP-like version of the std::vector.
Base class for a simple primitive-like type.
std::ostream & show(Hierarchy h, std::ostream &out=std::cout)
Print the hierarchy using a given decorator to display each node.
Base class for a simple primitive-like type.
Helper class to aid in output of IMP classes to streams.