コード例 #1
0
ファイル: ShellingOrderModule.cpp プロジェクト: marvin2k/ogdf
void ShellingOrderModule::call(const Graph &G,
	ShellingOrder &order,
	adjEntry adj)
{
	List<ShellingOrderSet> partition;
	doCall(G,adj,partition);

	order.init(G,partition);
}