blob: c2910b560705c5cb5191c7bc44a12ae531d45e80 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef __HYPERNEAT_VALUEMAP_HPP__
#define __HYPERNEAT_VALUEMAP_HPP__
#include <HyperNeat/Utils/Vector.hpp>
#include <HyperNeat/Utils/ValuePoint.hpp>
namespace hyperneat
{
using ValueMap = Vector<ValuePoint>;
}
#endif
|