Skip to content
Snippets Groups Projects
Commit 150768c0 authored by Robert Klöfkorn's avatar Robert Klöfkorn
Browse files

Added constant for new adapt method.

[[Imported from SVN: r1919]]
parent 7bbd218b
No related branches found
No related tags found
No related merge requests found
......@@ -1054,6 +1054,13 @@ namespace Dune
//! maximal number of levels
enum { MAXL = 64 };
//! normal default number of new elements for new adapt method
enum { newElementsChunk_ = 100 };
//! if one element is refined then it causes apporximately not more than
//! this number of new elements
enum { refineEstimate_ = 40 };
//! Constructor which reads an ALU3dGrid Macro Triang file
//! or given GridFile
#ifdef _ALU3DGRID_PARALLEL_
......@@ -1146,7 +1153,7 @@ namespace Dune
bool adapt ( );
template <class DofManagerType, class RestrictProlongOperatorType>
bool adapt (DofManagerType &, RestrictProlongOperatorType &);
bool adapt (DofManagerType &, RestrictProlongOperatorType &, bool verbose=false );
//**********************************************************
// End of Interface Methods
......
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