Commit f2cd9e3b authored by Davis King's avatar Davis King
Browse files

use a time based exeuction limit in example

parent 501d17f6
...@@ -304,7 +304,8 @@ int main() try ...@@ -304,7 +304,8 @@ int main() try
auto result = find_min_global(complex_holder_table, auto result = find_min_global(complex_holder_table,
{-10,-10}, // lower bounds {-10,-10}, // lower bounds
{10,10}, // upper bounds {10,10}, // upper bounds
max_function_calls(300)); std::chrono::milliseconds(500) // run this long
);
cout.precision(9); cout.precision(9);
// These cout statements will show that find_min_global() found the // These cout statements will show that find_min_global() found the
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment