1 //////////////////////////////////////////////////////////////////////////////
2 //
3 // (C) Copyright Ion Gaztanaga 2013-2013. Distributed under the Boost
4 // Software License, Version 1.0. (See accompanying file
5 // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6 //
7 // See http://www.boost.org/libs/container for documentation.
8 //
9 //////////////////////////////////////////////////////////////////////////////
10
11 #include "boost/container/set.hpp"
12 #include "bench_set.hpp"
13
main()14 int main()
15 {
16 using namespace boost::container;
17
18 fill_range_ints();
19 fill_range_strings();
20
21 //set(RB) vs set(SG)
22 launch_tests< set<int, std::less<int>, std::allocator<int>, tree_assoc_options< tree_type<scapegoat_tree> >::type >, set<int> >
23 ("set<int>(SG)", "set<int>(RB)");
24 launch_tests< set<string, std::less<string>, std::allocator<string>, tree_assoc_options< tree_type<scapegoat_tree> >::type >, set<string> >
25 ("set<string>(SG)", "set<string>(RB)");
26
27 return 0;
28 }
29