Skip to content

Commit

Permalink
Remove some confusing root-2s
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael McLeod committed Nov 13, 2024
1 parent e384883 commit 9f0923b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cpp/purify/algorithm_factory.h
Original file line number Diff line number Diff line change
Expand Up @@ -174,8 +174,8 @@ fb_factory(const algo_distribution dist,
auto fb = std::make_shared<Algorithm>(uv_data.vis);
fb->itermax(max_iterations)
.gamma(reg_parameter)
.sigma(sigma * std::sqrt(2))
.beta(step_size * std::sqrt(2))
.sigma(sigma)
.beta(step_size)
.relative_variation(relative_variation)
.tight_frame(tight_frame)
.nu(op_norm * op_norm)
Expand Down

0 comments on commit 9f0923b

Please sign in to comment.