aboutsummaryrefslogtreecommitdiff
path: root/include/HyperNeat/Utils/Set.hpp
blob: d403e6bc89862b19ffdb91764e773582fb962be6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef __HYPERNEAT_SET_HPP__
#define __HYPERNEAT_SET_HPP__

#include <set>

namespace hyperneat
{
    template <class V>
    using Set = std::set<V>;
}

#endif