aboutsummaryrefslogtreecommitdiff
path: root/include/HyperNeat/Utils/Vector.hpp
blob: f7352e46bd02b9cb5b1496c68966e2fc5e6a0cf1 (plain)
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