From fb0bccc62586bf4eb69d1d985e0f98b1490b43da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Atgeirr=20Fl=C3=B8=20Rasmussen?= Date: Fri, 23 Jan 2015 09:12:15 +0100 Subject: [PATCH] Fix whitespace issues. --- opm/core/pressure/IncompTpfaSinglePhase.hpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/opm/core/pressure/IncompTpfaSinglePhase.hpp b/opm/core/pressure/IncompTpfaSinglePhase.hpp index 275e2ea1f..617a093c0 100644 --- a/opm/core/pressure/IncompTpfaSinglePhase.hpp +++ b/opm/core/pressure/IncompTpfaSinglePhase.hpp @@ -43,18 +43,18 @@ namespace Opm class IncompTpfaSinglePhase { public: - /// Construct solver for incompressible case. + /// Construct solver for incompressible case. /// \param[in] grid A 2d or 3d grid. /// \param[in] props Rock and fluid properties. /// \param[in] linsolver Linear solver to use. /// \param[in] wells The wells used as driving forces. - IncompTpfaSinglePhase(const UnstructuredGrid& grid, + IncompTpfaSinglePhase(const UnstructuredGrid& grid, const IncompPropertiesSinglePhase& props, const LinearSolverInterface& linsolver, const Wells& wells); /// Destructor. - ~IncompTpfaSinglePhase(); + ~IncompTpfaSinglePhase(); /// Solve the pressure equation. void solve(std::vector& press, @@ -69,18 +69,18 @@ namespace Opm protected: // ------ Data that will remain unmodified after construction. ------ - const UnstructuredGrid& grid_; + const UnstructuredGrid& grid_; const IncompPropertiesSinglePhase& props_; const LinearSolverInterface& linsolver_; const Wells& wells_; - std::vector htrans_; - std::vector trans_ ; + std::vector htrans_; + std::vector trans_ ; std::vector zeros_; std::vector totmob_; struct ifs_tpfa_forces forces_; // ------ Internal data for the ifs_tpfa solver. ------ - struct ifs_tpfa_data* h_; + struct ifs_tpfa_data* h_; }; } // namespace Opm