1 2 3 4 5 6 7 8 9 10 11 12
#ifndef __HYPERNEAT_VECTOR_HPP__ #define __HYPERNEAT_VECTOR_HPP__ #include <vector> namespace hyperneat { template <class V> using Vector = std::vector<V>; } #endif