Skip to content

Commit f0fd9bd

Browse files
committed
trailing whitespace
1 parent 62cac5e commit f0fd9bd

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

ExampleCodes/LinearSolvers/GMRES/Poisson/AMReX_GMRES_Poisson.H

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -145,11 +145,11 @@ void GMRESPOISSONT<MF>::apply (MF& lhs, MF& rhs) const
145145
{
146146
// apply matrix to rhs for output lhs
147147
rhs.FillBoundary(m_geom.periodicity());
148-
148+
149149
const GpuArray<Real, AMREX_SPACEDIM> dx = m_geom.CellSizeArray();
150150

151151
for ( MFIter mfi(rhs,TilingIfNotGPU()); mfi.isValid(); ++mfi ) {
152-
152+
153153
const Box& bx = mfi.tilebox();
154154

155155
const Array4<const Real> & rhs_p = rhs.array(mfi);
@@ -167,7 +167,7 @@ void GMRESPOISSONT<MF>::apply (MF& lhs, MF& rhs) const
167167

168168
}
169169

170-
170+
171171
}
172172

173173
template <typename MF>

ExampleCodes/LinearSolvers/GMRES/Poisson/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ int main (int argc, char* argv[])
122122
gmres_poisson.solve(phi, rhs, 1.e-12, 0.);
123123

124124
WriteSingleLevelPlotfile("phi", phi, {"phi"}, geom, 0., 0);
125-
125+
126126
}
127127
amrex::Finalize();
128128
return 0;

0 commit comments

Comments
 (0)