diff options
Diffstat (limited to 'include/HyperNeat/Utils/Set.hpp')
-rw-r--r-- | include/HyperNeat/Utils/Set.hpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/HyperNeat/Utils/Set.hpp b/include/HyperNeat/Utils/Set.hpp new file mode 100644 index 0000000..d403e6b --- /dev/null +++ b/include/HyperNeat/Utils/Set.hpp @@ -0,0 +1,12 @@ +#ifndef __HYPERNEAT_SET_HPP__ +#define __HYPERNEAT_SET_HPP__ + +#include <set> + +namespace hyperneat +{ + template <class V> + using Set = std::set<V>; +} + +#endif |