container/bench/bench_set_adaptive_pool.cpp
Ion Gaztañaga 04b0791593 * Fixed adaptive pool bugs
* Improved adaptive pool testing enabling invariant checking in debug mode.
* New compile-time and runtime calculated parameters for adaptive_pool.
* New test comparing set with default allocator or adaptive pool
2018-04-29 12:42:04 +02:00

35 lines
1.1 KiB
C++

//////////////////////////////////////////////////////////////////////////////
//
// (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 <boost/container/set.hpp>
#include <boost/container/allocator.hpp>
#include <boost/container/adaptive_pool.hpp>
int main()
{
using namespace boost::container;
fill_range_ints();
fill_range_strings();
//set<..., adaptive_pool> vs. set
launch_tests< set<int, std::less<int>, private_adaptive_pool<int> >, set<int> >
("set<int, ..., private_adaptive_pool<int>", "set<int>");
launch_tests< set<string, std::less<string>, private_adaptive_pool<string> >, set<string> >
("set<string, ..., private_adaptive_pool<string>", "set<string>");
return 0;
}