mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
fix includes
most includes are now sorted by abstraction levels, with the most abstract header first. also some system headers like <string> are now explicitly included in every file where some of their classes are used.
This commit is contained in:
committed by
Andreas Lauser
parent
7df261d46a
commit
7b3c8f18bb
@@ -31,20 +31,23 @@
|
||||
// The numerical model
|
||||
#include <dumux/boxmodels/2p/2pmodel.hh>
|
||||
|
||||
// The DUNE grid used
|
||||
#include <dune/grid/yaspgrid.hh>
|
||||
|
||||
// Spatially dependent parameters
|
||||
// The components that are used
|
||||
#include <dumux/material/components/h2o.hh>
|
||||
#include <dumux/material/components/oil.hh>
|
||||
#include <dumux/common/cubegridcreator.hh>
|
||||
|
||||
// include material laws
|
||||
// The material laws
|
||||
#include <dumux/material/fluidmatrixinteractions/2p/regularizedbrookscorey.hh> /*@\label{tutorial-coupled:rawLawInclude}@*/
|
||||
#include <dumux/material/fluidmatrixinteractions/2p/efftoabslaw.hh>
|
||||
#include <dumux/material/fluidmatrixinteractions/mp/2padapter.hh>
|
||||
|
||||
// The DUNE grid used
|
||||
#include <dune/grid/yaspgrid.hh>
|
||||
#include <dumux/common/cubegridcreator.hh>
|
||||
|
||||
// Dune::FieldVector and Dune::FieldMatrix
|
||||
#include <dune/common/fvector.hh>
|
||||
#include <dune/common/fmatrix.hh>
|
||||
|
||||
namespace Dumux {
|
||||
|
||||
// forward declaration of the problem class
|
||||
|
||||
Reference in New Issue
Block a user