////////////////////////////////////////////////////////////////////////////// // // (C) Copyright Ion Gaztanaga 2013-2013. Distributed under the Boost // Software License, Version 1.0. (See accompanying file // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) // // See http://www.boost.org/libs/container for documentation. // ////////////////////////////////////////////////////////////////////////////// //Enable checks in debug mode #ifndef NDEBUG #define BOOST_CONTAINER_ADAPTIVE_NODE_POOL_CHECK_INVARIANTS #endif #include "bench_set.hpp" #include #include #include int main() { using namespace boost::container; fill_range_ints(); fill_range_strings(); //set<..., adaptive_pool> vs. set launch_tests< set, private_adaptive_pool >, set > ("set", "set"); launch_tests< set, private_adaptive_pool >, set > ("set", "set"); return 0; }