https://github.com/kit-parco/networkit
Raw File
Tip revision: b9e972f104b33c4f80111e8d92d4f9e09c2f1c91 authored by cls on 22 August 2014, 14:54:11 UTC
merge Dev -> default
Tip revision: b9e972f
LibDemo.cpp
#include <NetworKit/io/FastMETISGraphReader.h>
#include <NetworKit/auxiliary/Log.h>
#include <NetworKit/community/PLM.h>
#include <iostream>


int main() {
	std::cout << "simple demonstration of NetworKit as a library\n";
	Aux::Log::Settings::setLogLevel(Aux::Log::LogLevel::info);
	NetworKit::FastMETISGraphReader reader;
	NetworKit::Graph jazz = reader.read("./input/jazz.graph");
	NetworKit::PLM plm(true);
	NetworKit::Partition communities = plm.run(jazz);

	std::cout << communities.numberOfSubsets() << " communities have been found\n";	
	return 0;

}

back to top