mirror of
https://github.com/boostorg/container.git
synced 2026-07-05 15:00:46 +02:00
37 lines
1.3 KiB
C++
37 lines
1.3 KiB
C++
//////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// (C) Copyright Ion Gaztanaga 2007-2026. 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.
|
|
//
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Compares boost::container::deque (reservable and non-reservable) against
|
|
// std::deque.
|
|
//
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
#include <deque>
|
|
#include <memory> //std::allocator
|
|
#include <boost/container/deque.hpp>
|
|
#include <boost/container/options.hpp>
|
|
|
|
#include "bench_vector_common.hpp"
|
|
|
|
template<class IntType, class Operation>
|
|
void run_containers(unsigned numit, unsigned numele, bool bp)
|
|
{
|
|
vector_test_template< std::deque<IntType, std::allocator<IntType> >, Operation >(numit, numele, "std::deque ", bp);
|
|
vector_test_template< bc::deque<IntType, std::allocator<IntType> >, Operation >(numit, numele, "deque ", bp);
|
|
vector_test_template< bc::deque<IntType, std::allocator<IntType>,
|
|
typename bc::deque_options<bc::reservable<true> >::type >, Operation >(numit, numele, "deque(reserv) ", bp);
|
|
}
|
|
|
|
int main()
|
|
{
|
|
test_vectors<int>();
|
|
return 0;
|
|
}
|