<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />Hi all!<div>&nbsp;&nbsp; &nbsp;</div><div>&nbsp;&nbsp; &nbsp;Does anyone have ideas about parallel laplacian smoothing. I want to rewrite the vtkSmoothPolydataFilter using OpenMP. But after I look into the source code, I found that the iteration is all like this.&nbsp;</div><div>for (inVerts=input-&gt;GetVerts(), inVerts-&gt;InitTraversal();&nbsp;inVerts-&gt;GetNextCell(npts,pts); )</div><div>the next iteration is based on the previous one, this is not easy to rewrite by parellel.</div><div>for example, if the iteration is like this, for(long i = 0; i &lt; 1000000000; i++)</div><div>I can easily &nbsp;use OpenMP parallel directive&nbsp;#pragma parallel for . &nbsp;So does anyone have experience about the&nbsp;parallel laplacian smoothing. Code or Linkers about this are all welcome!!!!!&nbsp;</div><div>Thanks&nbsp;</div>