Skip to content

Commit

Permalink
Updating some comments
Browse files Browse the repository at this point in the history
  • Loading branch information
whaeck committed Nov 15, 2023
1 parent fd3b0f2 commit 12cf2de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/scion/math/InterpolationTable/src/operation.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ InterpolationTable& operation( const InterpolationTable& right,
// tables need to be linearised for the operation to be performed
if ( this->isLinearised() && right.isLinearised() ) {

// if they are already on the same grid just sum the y values
// if they are already on the same grid just perform the operation
if ( this->x() == right.x() ) {

std::transform( this->y().begin(), this->y().end(), right.y().begin(),
Expand Down

0 comments on commit 12cf2de

Please sign in to comment.