Skip to content

Latest commit

 

History

History

README.md

08 - Network Design

Application Area: Telecommunications Network Planning

← Back to Main Repository


Overview

The Network Design problem involves constructing a cost-efficient communication network that can handle specified traffic demands while maintaining degree constraints. This problem is relevant for telecommunications, data center design, and logistics networks.

Network Design Visualization

Problem Description

Given an $n \times n$ demand matrix $T$ (where $t_{ij}$ represents traffic from node $i$ to node $j$) and an integer $p > 0$:

  1. Construct a simple directed graph $D$ with node set ${1,\ldots,n}$ where each node has in-degree and out-degree equal to $p$
  2. Route $t_{ij}$ units of flow from $i$ to $j$ for all $1 \leq i, j \leq n$ with $i \neq j$
  3. Minimize the maximum aggregate flow on any edge of $D$

Instance Parameters:

  • $p = 2$ (each node has 2 incoming and 2 outgoing connections)
  • $n \in {5, \ldots, 24}$ nodes
  • Demand matrix entries: $t_{ij} \in {0} \cup [16, 100]$

Directory Contents

References