]> Creatis software - FrontAlgorithms.git/blobdiff - libs/fpa/Base/Dijkstra.hxx
...
[FrontAlgorithms.git] / libs / fpa / Base / Dijkstra.hxx
index c5563c92d29702a7738a7e9ebd46483b1da95156..149363d64128543dd1bfa29de9edd04cf2b8cac3 100644 (file)
@@ -173,6 +173,12 @@ GenerateData( )
 
   } // elihw
   this->_FreeMarks( );
+
+  // Complete data into minimum spanning tree
+  mst->ClearSeeds( );
+  mst->SetCollisions( this->m_Collisions );
+  for( TVertex seed: this->GetSeeds( ) )
+    mst->AddSeed( seed );
 }
 
 #endif // __fpa__Base__Dijkstra__hxx__