Go to the documentation of this file.00001 #include <hayai/hayai.hpp>
00002
00003 #include "delivery_man.hpp"
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013 BENCHMARK_P(DeliveryMan, DeliverPackage, 10, 100,
00014 (std::size_t speed, std::size_t distance))
00015 {
00016 DeliveryMan(speed).DeliverPackage(distance);
00017 }
00018
00019 BENCHMARK_P_INSTANCE(DeliveryMan, DeliverPackage, (1, 10));
00020 BENCHMARK_P_INSTANCE(DeliveryMan, DeliverPackage, (5, 10));
00021 BENCHMARK_P_INSTANCE(DeliveryMan, DeliverPackage, (10, 10));