blob: 257dbe6c862d5ced89c7d38bc1e7809bc722f5a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef __HYPERNEAT_VECTOR2D_HPP__
#define __HYPERNEAT_VECTOR2D_HPP__
#include <Hyperneat/Utils/Vector.hpp>
namespace hyperneat
{
template <class V>
using Vector2D = Vector<Vector<V>>;
}
#endif
|