コード例 #1
0
ファイル: GraphAsLists.php プロジェクト: EdenChan/Instances
 /**
  * Purges this graph, making it the empty graph.
  */
 public function purge()
 {
     for ($i = 0; $i < $this->numberOfVertices; ++$i) {
         $this->adjacencyList[$i]->purge();
     }
     parent::purge();
 }
コード例 #2
0
ファイル: GraphAsMatrix.php プロジェクト: EdenChan/Instances
 /**
  * Purges this graph, making it the empty graph.
  */
 public function purge()
 {
     for ($i = 0; $i < $this->numberOfVertices; ++$i) {
         for ($j = 0; $j < $this->numberOfVertices; ++$j) {
             $this->matrix[array($i, $j)] = NULL;
         }
     }
     parent::purge();
 }