Skip to content
Snippets Groups Projects
Commit 400aead8 authored by Müller, Felix's avatar Müller, Felix
Browse files

removed unsupported Refine/CoarsenBisections, DUNE only supports single refinement/coarsen steps

parent ac1384a7
No related branches found
No related tags found
No related merge requests found
......@@ -16,8 +16,6 @@ namespace AMDiS
Parameters::get(prefix + "->time relative tolerance", timeRelativeTolerance);
Parameters::get(prefix + "->coarsen allowed", coarsenAllowed);
Parameters::get(prefix + "->refinement allowed", refinementAllowed);
Parameters::get(prefix + "->refine bisections", refineBisections);
Parameters::get(prefix + "->coarsen bisections", coarseBisections);
Parameters::get(prefix + "->sum factor", fac_sum);
Parameters::get(prefix + "->max factor", fac_max);
......
......@@ -69,20 +69,6 @@ namespace AMDiS
/// true if refinement is allowed, false otherwise.
int refinementAllowed = 1;
/** \brief
* parameter to tell the marking strategy how many bisections should be
* performed when an element is marked for refinement; usually the value is
* 1 or DIM
*/
int refineBisections = 1;
/** \brief
* parameter to tell the marking strategy how many bisections should
* be undone when an element is marked for coarsening; usually the value is
* 1 or DIM
*/
int coarseBisections = 1;
};
public:
......@@ -519,18 +505,6 @@ namespace AMDiS
scalContents.at(key)->coarsenAllowed = allow;
}
/// Returns \ref refineBisections
int getRefineBisections(int index) const
{
return scalContents[index]->refineBisections;
}
/// Returns \ref coarseBisections
int getCoarseBisections(int index) const
{
return scalContents[index]->coarseBisections;
}
int getSize() const
{
return int(scalContents.size());
......
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