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

Remove Grid.HeapSize

parent 62b7c885
No related branches found
No related tags found
1 merge request!1830Fix/clang 10 warnings
......@@ -7,6 +7,8 @@ Differences Between DuMuX 3.2 and DuMuX 3.1
### Immediate interface changes not allowing/requiring a deprecation period
- Remove `Grid.HeapSize` as dune-ugrid removed the according feature as well.
### Deprecated properties, to be removed after 3.2:
### Deprecated classes/files, to be removed after 3.2:
......
......@@ -85,7 +85,6 @@ Adaptive | MaxLevel | std::size_t | 0 | |
* | | GmshPhysicalEntityThreshold | std::size_t | 0 | |
* | | Gradingstd::to_string(i) | Scalar | grading[i] | |
* | | Gradingstd::to_string(i) | std::vector<ctype> | grading[i] | |
* | | HeapSize | int | | |
* | | Image | std::string | | |
* | | KeepPhysicalOverlap | bool | true | |
* | | LeftBoundary | CoordinateType | 0.0 | |
......
......@@ -51,7 +51,6 @@ namespace Dumux {
* - CellType : "Cube" or "Simplex" to be used for structured grids
* - Refinement : the number of global refines to perform
* - Verbosity : whether the grid construction should output to standard out
* - HeapSize: The heapsize used to allocate memory
* - BoundarySegments : whether to insert boundary segments into the grid
*
*/
......@@ -143,10 +142,7 @@ private:
* \brief Do some operations before making the grid
*/
void preProcessing_(const std::string& modelParamGroup)
{
if(hasParamInGroup(modelParamGroup, "Grid.HeapSize"))
Grid::setDefaultHeapSize(getParamFromGroup<unsigned>(modelParamGroup, "Grid.HeapSize"));
}
{}
/*!
* \brief Do some operatrion after making the grid, like global refinement
......
......@@ -129,7 +129,6 @@ Cube
#
GridParameter
closure none
heapsize 1000
#
Boundarydomain
default 1
......
......@@ -40,7 +40,6 @@ Cube
#
GridParameter
closure none
heapsize 1000
#
Boundarydomain
default 1
......
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