Skip to content
Snippets Groups Projects
Commit bae17050 authored by Matti Pellika's avatar Matti Pellika
Browse files

Another try ..

parent 871a92ef
No related branches found
No related tags found
No related merge requests found
...@@ -73,7 +73,8 @@ set(GMSH_API ...@@ -73,7 +73,8 @@ set(GMSH_API
Geo/MPyramid.h Geo/MElementCut.h Geo/discreteVertex.h Geo/discreteEdge.h Geo/MPyramid.h Geo/MElementCut.h Geo/discreteVertex.h Geo/discreteEdge.h
Geo/discreteFace.h Geo/discreteRegion.h Geo/SPoint2.h Geo/SPoint3.h Geo/discreteFace.h Geo/discreteRegion.h Geo/SPoint2.h Geo/SPoint3.h
Geo/SVector3.h Geo/STensor3.h Geo/SBoundingBox3d.h Geo/Pair.h Geo/Range.h Geo/SVector3.h Geo/STensor3.h Geo/SBoundingBox3d.h Geo/Pair.h Geo/Range.h
Geo/SOrientedBoundingBox.h Geo/CellComplex.h Geo/ChainComplex.h Geo/SOrientedBoundingBox.h Geo/CellComplex.h Geo/ChainComplex.h Geo/Cell.h
Geo/Homology.h
Mesh/meshGEdge.h Mesh/meshGFace.h Mesh/meshGFaceOptimize.h Mesh/meshGEdge.h Mesh/meshGFace.h Mesh/meshGFaceOptimize.h
Mesh/meshGFaceDelaunayInsertion.h Mesh/meshGFaceDelaunayInsertion.h
Solver/dofManager.h Solver/femTerm.h Solver/laplaceTerm.h Solver/elasticityTerm.h Solver/dofManager.h Solver/femTerm.h Solver/laplaceTerm.h Solver/elasticityTerm.h
......
...@@ -502,11 +502,8 @@ void CellComplex::removeSubdomain(){ ...@@ -502,11 +502,8 @@ void CellComplex::removeSubdomain(){
for(int i = 0; i < 4; i++){ for(int i = 0; i < 4; i++){
for(citer cit = firstCell(i); cit != lastCell(i); ){ for(citer cit = firstCell(i); cit != lastCell(i); ){
Cell* cell = *cit; Cell* cell = *cit;
if(cell->inSubdomain()) {
removeCell(cell);
cit++; cit++;
} if(cell->inSubdomain()) removeCell(cell);
else ++cit;
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment