Gliph\Graph\UndirectedAdjacencyList::removeEdge PHP Method

removeEdge() public method

public removeEdge ( $from, $to )
    public function removeEdge($from, $to)
    {
        $this->vertices[$from]->detach($to);
        $this->vertices[$to]->detach($from);
    }