https://github.com/kit-parco/networkit
Raw File
Tip revision: 775aded92213ca284a98a63d4d6b7d0fac759c64 authored by cls on 08 October 2014, 11:41:25 UTC
close branch
Tip revision: 775aded
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