Skip to content
Snippets Groups Projects
Commit 8a33bd22 authored by Stephane Grandcolas's avatar Stephane Grandcolas
Browse files

Update README.txt

parent 348f3ab0
No related branches found
No related tags found
No related merge requests found
sga: a program that constructs a tree decomposition of a graph.
treedepth : A program that builds a tree decomposition of a graph.
The approach consists first in performing recursively decompositions of the graph, building ta partition of the vertices A-B-C such that there are no edge of G between vertices of A and B. C is the separator.
Then the resulting decomposition is improved applying pullup and swap operations while the height of the decomposition decreases.
The approach consists first in decomposing recursively the graph, searching each time a partition A|B|C of the vertices such that there is no edge of G whose extremities are one in A and the other in B. C is the separator.
The resulting decomposition is improved applying pullups and ejections while the height of the decomposition decreases.
Type make to build the program named treedepth. Type ./treedepth -help to print usage information.
For example ./treedepth -file heur_111.gr time 60.
Use make PACE=yes to generate a version of the program corresponding to pace 2020 requirements.
Use make PACE=yes to generate a version of the program corresponding to pace 2020 requirements (no options in line then).
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment