Skip to content

Commit

Permalink
Set correct way to name the noise level
Browse files Browse the repository at this point in the history
  • Loading branch information
Lht97 committed Dec 6, 2024
1 parent c77f8c2 commit 928fa72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/profile_optiprofiler.m
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ function profile_optiprofiler(options)
options.benchmark_id =[strrep(options.labels{1}, '-', '_'), '_', strrep(options.labels{2}, '-', '_'),...
'_', num2str(options.mindim), '_', num2str(options.maxdim), '_', num2str(options.n_runs), '_', options.feature_name];
if strcmpi(options.feature_name, 'noisy') || strcmpi(options.feature_name, 'custom')
options.benchmark_id = [options.benchmark_id, '_', num2str(options.noise_level)];
options.benchmark_id = [options.benchmark_id, '_', int2str(int32(-log10(options.noise_level)))];
end
if options.run_plain
options.benchmark_id = [options.benchmark_id, '_plain'];
Expand Down

0 comments on commit 928fa72

Please sign in to comment.