Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor(Missing reference): Missing reference files #202

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions mt-kahypar/io/docs/FileFormats.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Any results obtained from the binary or one of the library interfaces will also
## hMetis Format for Input Hypergraphs

Per default, Mt-KaHyPar assumes that the input hypergraph is provided in the hMetis format:
[Unweighted Example](tests/instances/unweighted_hypergraph.hgr), [Weighted Example](tests/instances/hypergraph_with_node_and_edge_weights.hgr), [hMetis manual](https://karypis.github.io/glaros/files/sw/hmetis/manual.pdf)
Unweighted Example, Weighted Example, in Figure 5 of [hMetis manual](https://karypis.github.io/glaros/files/sw/hmetis/manual.pdf).

The general format looks as follows:

Expand Down Expand Up @@ -38,7 +38,7 @@ Otherwise, there is one line for each hypernode containing a single entry, which

Mt-KaHyPar can also read input *graphs* in Metis format via `--input-file-format=metis`.
Also, target graphs for the Steiner tree metric need to be provided in the Metis format:
[Unweighted Example](tests/instances/unweighted_graph.graph), [Weighted Example](tests/instances/graph_with_node_and_edge_weights.graph), [Metis manual](https://karypis.github.io/glaros/files/sw/metis/manual.pdf)
Unweighted Example, Weighted Example in Figure 2 of [Metis manual](https://karypis.github.io/glaros/files/sw/metis/manual.pdf).

**Important note:** Mt-KaHyPar only works on undirected graphs. Therefore, for each edge `u -> v` in the input file there *must be* a corresponding entry for `v -> u` with the same edge weight.

Expand Down