From a3668f13696f07cf8cebbacc385a3a1cde650244 Mon Sep 17 00:00:00 2001 From: Andrey Pavlenko Date: Fri, 21 Mar 2014 18:29:06 +0400 Subject: [PATCH] changing default perf strategy from BASIC (old) to SIMPLE (new, faster) --- modules/ts/src/ts_perf.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ts/src/ts_perf.cpp b/modules/ts/src/ts_perf.cpp index f1403b9c57..25981a7219 100644 --- a/modules/ts/src/ts_perf.cpp +++ b/modules/ts/src/ts_perf.cpp @@ -20,7 +20,7 @@ static std::vector available_impls; static std::string param_impl; static enum PERF_STRATEGY strategyForce = PERF_STRATEGY_DEFAULT; -static enum PERF_STRATEGY strategyModule = PERF_STRATEGY_BASE; +static enum PERF_STRATEGY strategyModule = PERF_STRATEGY_SIMPLE; static double param_max_outliers; static double param_max_deviation;