Skip to content

Code and experiments submitted for the MPC journal special issue in extension of DIMACS15

License

Notifications You must be signed in to change notification settings

DIKU-Steiner/MPC15

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Faster Exact Algorithms for Computing Steiner Trees in Higher Dimensional Euclidean Spaces

The Euclidean Steiner Minimal Tree (ESTP) problem seeks a network of minimal total edge length spanning a set of n terminal points while allowing for the insertion of additional points (Steiner points) to decrease the overall length of the network.

This repository contains 3 implementations (Branch, Smith*, and Smith) for solving ESTP in any dimension to optimality. Typical point sets containing up to 20 terminals can be solved in 2D and up to 16 terminals in 5D. For detailed descriptions of these methods, or if used in published research, please see:

Code and data files are part of a submission for the Mathematical Programming Computation journal special issue in extension of the 11th DIMACS Implementation Challenge: Steiner Tree Problems.

Software usage

To compile and solve a Steiner tree problem (specified as an STP file) using first the Branch method and then the Smith* method run:

> cd code/SteinerExact/
> make
> ./SteinerExact -method Branch -input filename.stp
> ./SteinerExact -method SmithStar -input filename.stp

Compiling and running the fixed version of Warren Smiths original algorithm can be done by

> cd code/WarrenSmith/
> make
> ./stpToSmith.sh filename.stp | ./wds_smt_timing

Further details about program compiling and usage is found in the READMEs under the code directory.

Experiments

All runs can be executed by going to the experiment folder and running make. For instance:

> cd experiments/Cube/Branch/
> make

For futher details see the experiments/README.md file.

About

Code and experiments submitted for the MPC journal special issue in extension of DIMACS15

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published