Skip to content
Snippets Groups Projects
Commit 84d6e3f1 authored by Christoph Grüninger's avatar Christoph Grüninger
Browse files

[cleanup] Fix warnings in gridadapt.

- Wrong order of initializing member variables.
- Remove unused variable.
No warning:
- Remove semicolon after methods.
- Drop continue, use negated if statement.
(reviewed by martins)


git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@14646 2fb0f335-1f38-0410-981e-8018bf24f1b0
parent 5d1df2a3
No related branches found
No related tags found
No related merge requests found
...@@ -65,7 +65,11 @@ public: ...@@ -65,7 +65,11 @@ public:
* @param problem The problem * @param problem The problem
*/ */
ImplicitGridAdapt (Problem& problem) ImplicitGridAdapt (Problem& problem)
: problem_(problem), adaptationHelper_(problem.gridView()), adaptationIndicator_(problem), marked_(0), coarsened_(0) : adaptationHelper_(problem.gridView()),
problem_(problem),
adaptationIndicator_(problem),
marked_(0),
coarsened_(0)
{ {
levelMin_ = GET_PARAM_FROM_GROUP(TypeTag, int, GridAdapt, MinLevel); levelMin_ = GET_PARAM_FROM_GROUP(TypeTag, int, GridAdapt, MinLevel);
levelMax_ = GET_PARAM_FROM_GROUP(TypeTag, int, GridAdapt, MaxLevel); levelMax_ = GET_PARAM_FROM_GROUP(TypeTag, int, GridAdapt, MaxLevel);
...@@ -214,28 +218,27 @@ public: ...@@ -214,28 +218,27 @@ public:
{ {
typedef std::unordered_map<int, int> CoarsenMarkerType; typedef std::unordered_map<int, int> CoarsenMarkerType;
CoarsenMarkerType coarsenMarker; CoarsenMarkerType coarsenMarker;
const typename Grid::Traits::LocalIdSet& idSet(problem_.grid().localIdSet());
for (LeafIterator eIt = problem_.gridView().template begin<0>(); for (LeafIterator eIt = problem_.gridView().template begin<0>();
eIt!=problem_.gridView().template end<0>(); ++eIt) eIt!=problem_.gridView().template end<0>(); ++eIt)
{ {
// only mark non-ghost elements // only mark non-ghost elements
if (eIt->partitionType() == Dune::GhostEntity) if (eIt->partitionType() != Dune::GhostEntity)
continue;
// refine?
if (indicator.refine(*eIt) && eIt->level() < levelMax_)
{ {
problem_.grid().mark( 1, *eIt); // refine?
++marked_; if (indicator.refine(*eIt) && eIt->level() < levelMax_)
{
problem_.grid().mark( 1, *eIt);
++marked_;
// this also refines the neighbor elements // this also refines the neighbor elements
checkNeighborsRefine_(*eIt); checkNeighborsRefine_(*eIt);
} }
if (indicator.coarsen(*eIt) && eIt->hasFather()) if (indicator.coarsen(*eIt) && eIt->hasFather())
{ {
problem_.grid().mark( -1, *eIt ); problem_.grid().mark( -1, *eIt );
++coarsened_; ++coarsened_;
}
} }
} }
} }
...@@ -348,7 +351,7 @@ private: ...@@ -348,7 +351,7 @@ private:
} }
} }
return true; return true;
}; }
/*! /*!
...@@ -434,20 +437,20 @@ class ImplicitGridAdapt<TypeTag, false> ...@@ -434,20 +437,20 @@ class ImplicitGridAdapt<TypeTag, false>
public: public:
void init() void init()
{}; {}
void adaptGrid() void adaptGrid()
{}; {}
bool wasAdapted() bool wasAdapted()
{ {
return false; return false;
} }
void setLevels(int, int) void setLevels(int, int)
{}; {}
void setTolerance(int, int) void setTolerance(int, int)
{}; {}
const void setIndicator(const SolutionVector&, const void setIndicator(const SolutionVector&,
const Scalar&, const Scalar&) const Scalar&, const Scalar&)
{}; {}
ImplicitGridAdapt (Problem& problem) ImplicitGridAdapt (Problem& problem)
{} {}
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment