@@ -40,19 +40,15 @@ function benchmark_kpo!(SUITE)
4040 end seconds = 10
4141
4242 show_progress = false
43- sorting = " no_sorting "
43+ sorting = :none
4444 classify_default = false
4545
4646 method = WarmUp (; thread= false )
4747 result = get_steady_states (problem, method; show_progress, sorting, classify_default)
4848
4949 SUITE[" Steady states" ][" Homotopy Problem" ][" Warm up method" ] = @benchmarkable begin
5050 get_steady_states (
51- $ problem,
52- $ method;
53- show_progress= false ,
54- sorting= " no_sorting" ,
55- classify_default= false ,
51+ $ problem, $ method; show_progress= false , sorting= :none , classify_default= false
5652 )
5753 end seconds = 10
5854
@@ -61,11 +57,7 @@ function benchmark_kpo!(SUITE)
6157
6258 SUITE[" Steady states" ][" Homotopy Problem" ][" Total degree homotopy" ] = @benchmarkable begin
6359 get_steady_states (
64- $ problem,
65- $ method;
66- show_progress= false ,
67- sorting= " no_sorting" ,
68- classify_default= false ,
60+ $ problem, $ method; show_progress= false , sorting= :none , classify_default= false
6961 )
7062 end seconds = 10
7163
@@ -74,24 +66,20 @@ function benchmark_kpo!(SUITE)
7466
7567 SUITE[" Steady states" ][" Homotopy Problem" ][" Polyhedral homotopy" ] = @benchmarkable begin
7668 get_steady_states (
77- $ problem,
78- $ method;
79- show_progress= false ,
80- sorting= " no_sorting" ,
81- classify_default= false ,
69+ $ problem, $ method; show_progress= false , sorting= :none , classify_default= false
8270 )
8371 end seconds = 10
8472
8573 solutions_not_sorted = result. solutions
86- sort_solutions (solutions_not_sorted; sorting= " nearest" , show_progress= false )
87- sort_solutions (solutions_not_sorted; sorting= " hilbert" , show_progress= false )
74+ sort_solutions (solutions_not_sorted; sorting= : nearest , show_progress= false )
75+ sort_solutions (solutions_not_sorted; sorting= : hilbert , show_progress= false )
8876
8977 SUITE[" Sorting" ][" One dimensional" ][" Nearest-neighbor sorting" ] = @benchmarkable begin
90- sort_solutions ($ solutions_not_sorted; show_progress= false , sorting= " nearest" )
78+ sort_solutions ($ solutions_not_sorted; show_progress= false , sorting= : nearest )
9179 end seconds = 10
9280
9381 SUITE[" Sorting" ][" One dimensional" ][" Hilbert sorting" ] = @benchmarkable begin
94- sort_solutions ($ solutions_not_sorted; show_progress= false , sorting= " hilbert" )
82+ sort_solutions ($ solutions_not_sorted; show_progress= false , sorting= : hilbert )
9583 end seconds = 10
9684
9785 _classify_default! (deepcopy (result))
0 commit comments