https://github.com/kit-parco/networkit
Raw File
Tip revision: a7bc1888890805e02a85aad47c42025c3d2cabb9 authored by maxv on 03 July 2014, 07:57:48 UTC
Removed tag 3.2
Tip revision: a7bc188
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