Skip to content

Commit

Permalink
clang-format
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigoacb committed Nov 5, 2024
1 parent 421499d commit 004a2b2
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions grid/src/Cabana_Grid_Splines.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -761,8 +761,9 @@ struct Spline<5>

// Knot at i - 1
gradients[1] =
( -75.0 + xn *
( 168.0 + xn * ( -72.0 + xn * ( -96.0 + xn * ( 80.0 ) ) ) ) ) *
( -75.0 +
xn * ( 168.0 +
xn * ( -72.0 + xn * ( -96.0 + xn * ( 80.0 ) ) ) ) ) *
denom_2 * rdx;

// Knot at i
Expand All @@ -780,8 +781,9 @@ struct Spline<5>

// Knot at i + 2
gradients[4] =
( 75.0 + xn *
( 168.0 + xn * ( 72.0 + xn * ( -96.0 + xn * ( -80.0 ) ) ) ) ) *
( 75.0 +
xn * ( 168.0 +
xn * ( 72.0 + xn * ( -96.0 + xn * ( -80.0 ) ) ) ) ) *
denom_2 * rdx;

// Knot at i + 3
Expand Down

0 comments on commit 004a2b2

Please sign in to comment.