Skip to content

Commit

Permalink
kosmetische Korrekturen und Kommentare zum
Browse files Browse the repository at this point in the history
Stasi-Algorithmus
  • Loading branch information
Markus committed Dec 9, 2024
1 parent 95131d9 commit 7365250
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions ugbase/lib_grid/algorithms/extrusion/ArteExpandFracs3D.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1914,7 +1914,7 @@ bool ArteExpandFracs3D::establishNewVertices< true,
*
*/

IndexType segmenteErledigt = 0;
IndexType d_segmenteErledigt = 0;

while( vecAttVolElemInfoCop.size() != 0 )
{
Expand All @@ -1933,7 +1933,7 @@ bool ArteExpandFracs3D::establishNewVertices< true,

// UG_LOG("volume center " << center << std::endl );

int loopsDone = 0;
int d_loopsDone = 0;

while( vecAttVolElemInfoCop.size() != 0 )
{
Expand Down Expand Up @@ -2026,7 +2026,7 @@ bool ArteExpandFracs3D::establishNewVertices< true,

vecAttVolElemInfoCop.erase( vecAttVolElemInfoCop.begin() + startIndexInner );

// if( loopsDone == 1 )
// if( d_loopsDone == 1 )
// return false;

for( VecAttachedVolumeElemInfo::iterator aveiIt = vecAttVolElemInfoCop.begin();
Expand Down Expand Up @@ -2055,16 +2055,16 @@ bool ArteExpandFracs3D::establishNewVertices< true,
}


loopsDone++;
d_loopsDone++;


}

vecSegVolElmInfo.push_back(segmentAVEI);

// segmenteErledigt++;
// d_segmenteErledigt++;
//
// if( segmenteErledigt == 1 )
// if( d_segmenteErledigt == 1 )
// return false;
}

Expand All @@ -2077,6 +2077,7 @@ bool ArteExpandFracs3D::establishNewVertices< true,

for( SegmentVolElmInfo const & svei : vecSegVolElmInfo )
{
// TODO FIXME das hier wieder entfernen, die Subdomain Zuweisung, nur für debug Zwecke
IndexType sudoMax = m_sh.num_subsets();

for( AttachedVolumeElemInfo const & vei : svei )
Expand Down

0 comments on commit 7365250

Please sign in to comment.