Skip to content

Commit

Permalink
Fix metric reporting (#196)
Browse files Browse the repository at this point in the history
Fix metric reporting in exponential sampling tests.
  • Loading branch information
papachristoumarios authored Jan 11, 2022
1 parent 584af91 commit f9d3414
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/logconcave_sampling_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -816,7 +816,7 @@ void benchmark_polytope_linear_program_optimization(
std::cerr << "Min LP Value: " << f_lp(minimum) << std::endl;
std::cerr << "Argmin: " << minimum.getCoefficients().transpose() << std::endl;
std::cerr << "Average ETA: " << ETA / (NT) num_phases << std::endl;
std::cerr << "Average Time per Independent sample: " << total_min_ess / ETA << std::endl;
std::cerr << "Average Time per Independent sample: " << ETA / total_min_ess << std::endl;
std::cerr << "Average Max PSRF: " << total_max_psrf / (NT) num_phases << std::endl;
std::cerr << "Average Min ESS: " << total_min_ess / (NT) num_phases << std::endl;
std::cerr << "Average number of reflections: " <<
Expand Down

0 comments on commit f9d3414

Please sign in to comment.