Skip to content
Snippets Groups Projects
Commit 36e629cf authored by Koen Hillewaert's avatar Koen Hillewaert
Browse files

bug fix: did not initialise _pyramids such that refinement was always

activated ...
parent 476c99c0
No related branches found
No related tags found
No related merge requests found
......@@ -1449,7 +1449,7 @@ void adaptiveElements<T>::addInView(double tol, int step,
adaptiveData::adaptiveData(PViewData *data)
: _step(-1), _level(-1), _tol(-1.), _inData(data),
_points(0), _lines(0), _triangles(0), _quadrangles(0),
_tetrahedra(0), _hexahedra(0), _prisms(0)
_tetrahedra(0), _hexahedra(0), _prisms(0),_pyramids(0)
{
_outData = new PViewDataList(true);
_outData->setName(data->getName() + "_adapted");
......
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