You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the function CIsochartEngine::PartitionByGlobalAvgL2Stretch inside file isochartengine.cpp, there are 2 function calls to perform chart partition in the do while loop: one is ParameterizeChartsInHeapParallelized which calls pChart->Partition(), and the other one is GenerateNewChartsToParameterize which calls pChartWithMaxL2Stretch->Bipartition3D().
So my question is why calling 2 partitions in every 1 iteration of the do while loop. What if only Partition() or Bipartition3D() is called? And what's the difference between Partition() and Bipartition3D()?
Thanks.
The text was updated successfully, but these errors were encountered:
In the function
CIsochartEngine::PartitionByGlobalAvgL2Stretch
inside fileisochartengine.cpp
, there are 2 function calls to perform chart partition in thedo while
loop: one isParameterizeChartsInHeapParallelized
which callspChart->Partition()
, and the other one isGenerateNewChartsToParameterize
which callspChartWithMaxL2Stretch->Bipartition3D()
.So my question is why calling 2 partitions in every 1 iteration of the
do while
loop. What if onlyPartition()
orBipartition3D()
is called? And what's the difference betweenPartition()
andBipartition3D()
?Thanks.
The text was updated successfully, but these errors were encountered: