equil init: re-indent

this makes the indentation style of the equil init code consistent
with the rest of eWoms.
This commit is contained in:
Andreas Lauser 2018-01-02 12:43:56 +01:00
parent 0690cad957
commit 01c2a2da97
2 changed files with 176 additions and 176 deletions

View File

@ -858,4 +858,4 @@ inline bool isConstPc(const MaterialLawManager& materialLawManager,
} // namespace Equil } // namespace Equil
} // namespace Ewoms } // namespace Ewoms
#endif // EWOMS_EQUILIBRATIONHELPERS_HEADER_INCLUDED #endif // EWOMS_EQUILIBRATIONHELPERS_HH

View File

@ -29,7 +29,7 @@
namespace Ewoms namespace Ewoms
{ {
/** /**
* Forward and reverse mappings between cells and * Forward and reverse mappings between cells and
* regions/partitions (e.g., the ECLIPSE-style 'SATNUM', * regions/partitions (e.g., the ECLIPSE-style 'SATNUM',
* 'PVTNUM', or 'EQUILNUM' arrays). * 'PVTNUM', or 'EQUILNUM' arrays).
@ -40,9 +40,9 @@ namespace Ewoms
* 'value_type', 'size_type', and * 'value_type', 'size_type', and
* 'const_iterator'. * 'const_iterator'.
*/ */
template < class Region = std::vector<int> > template < class Region = std::vector<int> >
class RegionMapping { class RegionMapping {
public: public:
/** /**
* Constructor. * Constructor.
* *
@ -148,7 +148,7 @@ namespace Ewoms
rev_.c.begin() + rev_.p[i + 1]); rev_.c.begin() + rev_.p[i + 1]);
} }
private: private:
/** /**
* Copy of forward region mapping (cell-to-region). * Copy of forward region mapping (cell-to-region).
*/ */
@ -209,8 +209,8 @@ namespace Ewoms
p[0] = 0; p[0] = 0;
} }
} rev_; /**< Reverse mapping instance */ } rev_; /**< Reverse mapping instance */
}; };
} // namespace Opm } // namespace Ewoms
#endif // OPM_REGIONMAPPING_HEADER_INCLUDED #endif // OPM_REGIONMAPPING_HH