Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

10 - Topology Design

Alternative Names: Graph Golf, Order/Degree Problem, Node-Degree-Diameter Problem

← Back to Main Repository


Overview

The Topology Design problem seeks to construct graphs with optimal communication properties given structural constraints. This problem has applications in network design, where minimizing communication latency (diameter) while limiting connection costs (degree) is crucial.

External Resources:

Problem Description

Given:

  • A target number of nodes $n$
  • A maximum degree constraint $\Delta$

Objective: Find a graph $G = (V,E)$ with $|V| = n$ and maximum degree $\Delta(G) \leq \Delta$ that minimizes the diameter.

Diameter: The diameter of a graph is the maximum shortest path distance between any pair of vertices: $$ \text{diam}(G) = \max_{u,v \in V} d(u,v) $$

Note: We do not use average shortest path length as a tiebreaker.

Directory Contents

  • instances/ - Topology design problem instances
  • models/ - Mathematical model formulations
  • solutions/ - Optimal or best-known solutions
  • check/ - Solution verification tools
  • info/ - Additional documentation and papers
  • misc/ - Utility scripts and generators
  • submissions/ - Community solution submissions

References

Both references are available in the info/ directory.