basedOpinionated utility library |
git clone git://git.dimitrijedobrota.com/based.git |
Log | Files | Refs | README | HACKING | CONTRIBUTING | CODE_OF_CONDUCT | BUILDING | |
algorithm.cpp (733B)
1 #include "based/algorithm.hpp" 2 3 #include "based/instrumentation.hpp" 4 5 int main() 6 { 7 { 8 const based::timer time; 9 10 based::count_operations( 11 16UL, 12 16UL * 1024 * 1024, 13 [](const auto& a, const auto& b) { based::min_element(a, b); }, 14 based::normalize_n); 15 } 16 17 { 18 const based::timer time; 19 20 based::count_operations( 21 16UL, 22 16UL * 1024 * 1024, 23 [](const auto& a, const auto& b) { based::max_element(a, b); }, 24 based::normalize_n); 25 } 26 27 { 28 const based::timer time; 29 30 based::count_operations( 31 16UL, 32 16UL * 1024 * 1024, 33 [](const auto& a, const auto& b) { based::minmax_element(a, b); }, 34 based::normalize_n); 35 } 36 37 return 0; 38 }