hgr_to_bipartite_graphml_converter.cc
/*******************************************************************************
* This file is part of KaHyPar.
*
* Copyright (C) 2016 Sebastian Schlag <sebastian.schlag@kit.edu>
*
* KaHyPar is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* KaHyPar is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with KaHyPar. If not, see <http://www.gnu.org/licenses/>.
*
******************************************************************************/
#include <fstream>
#include <iostream>
#include <sstream>
#include <string>
#include "kahypar/definitions.h"
#include "kahypar/io/hypergraph_io.h"
#include "kahypar/macros.h"
using namespace kahypar;
int main(int argc, char* argv[]) {
if (argc != 2 && argc != 3) {
std::cout << "No .hgr file specified" << std::endl;
std::cout << "Usage: HgrToBipartiteGraphMLConverter <.hgr> [optional: <partition file>]" << std::endl;
exit(0);
}
std::string hgr_filename(argv[1]);
PartitionID max_part = 1;
std::vector<PartitionID> partition;
if (argc == 3) {
std::string partition_filename(argv[2]);
std::cout << "Reading partition file: " << partition_filename << std::endl;
kahypar::io::readPartitionFile(partition_filename, partition);
for (size_t index = 0; index < partition.size(); ++index) {
max_part = std::max(max_part, partition[index]);
}
}
Hypergraph hypergraph(io::createHypergraphFromFile(hgr_filename, max_part + 1));
if (partition.size() != 0 && partition.size() != hypergraph.initialNumNodes()) {
std::cout << "partition file has incorrect size. Exiting." << std::endl;
exit(-1);
}
for (size_t index = 0; index < partition.size(); ++index) {
hypergraph.setNodePart(index, partition[index]);
}
std::string graphml_filename(hgr_filename + ".k" + std::to_string(max_part + 1) + ".graphml");
std::cout << "write graphml file: " << graphml_filename << std::endl;
kahypar::io::writeHypergraphToGraphMLFile(hypergraph, graphml_filename);
std::cout << " ... done!" << std::endl;
return 0;
}