Skip to content

Commit

Permalink
change comment to avoid confusing doxygen [ci skip]
Browse files Browse the repository at this point in the history
Using /// means that doxygen will interpret it, which is
not what we wanted here.
  • Loading branch information
KrisThielemans committed May 16, 2024
1 parent b64d077 commit 6b88234
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/recon_buildblock/QuadraticPrior.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -655,7 +655,7 @@ QuadraticPrior<elemT>::accumulate_Hessian_times_input(DiscretisedDensity<3, elem
const int min_dx = max(weights[0][0].get_min_index(), min_x - x);
const int max_dx = min(weights[0][0].get_max_index(), max_x - x);

/// At this point, we have j = [z][y][x]
// At this point, we have j = [z][y][x]
// The next for loops will have k = [z+dz][y+dy][x+dx]
// The following computes
//(H_{wf} y)_j =
Expand Down
2 changes: 1 addition & 1 deletion src/recon_buildblock/RelativeDifferencePrior.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -577,7 +577,7 @@ RelativeDifferencePrior<elemT>::accumulate_Hessian_times_input(DiscretisedDensit
const int min_dx = max(weights[0][0].get_min_index(), min_x - x);
const int max_dx = min(weights[0][0].get_max_index(), max_x - x);

/// At this point, we have j = [z][y][x]
// At this point, we have j = [z][y][x]
// The next for loops will have k = [z+dz][y+dy][x+dx]
// The following computes
//(H_{wf} y)_j =
Expand Down

0 comments on commit 6b88234

Please sign in to comment.