Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
spinicist committed Apr 22, 2024
1 parent fb6e015 commit b147817
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions cxx/vineyard/func/diffs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,21 @@ namespace rl {

ForwardDiff::ForwardDiff(Index d)
: Functor<Cx4>()
, dim{d} {};
, dim{d}
{
}

BackwardDiff::BackwardDiff(Index d)
: Functor<Cx4>()
, dim{d} {};
, dim{d}
{
}

CentralDiff::CentralDiff(Index d)
: Functor<Cx4>()
, dim{d} {};
, dim{d}
{
}

void ForwardDiff::operator()(Input x, Output y) const
{
Expand Down

0 comments on commit b147817

Please sign in to comment.