Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

07 - Maximum Independent Set Problem

Alternative Names: Maximum Stable Set Problem, MISP

← Back to Main Repository


Overview

The Maximum Independent Set Problem is a fundamental graph optimization problem with applications in scheduling, resource allocation, and network design. Despite its simple formulation, it is NP-hard and challenging even for moderately-sized graphs.

MIS Visualization

Problem Description

Given a graph $G=(V,E)$, find an independent set $I \subseteq V$ of maximum cardinality.

Definition: A set $I \subseteq V$ is independent (or stable) if no two vertices in $I$ are adjacent, i.e., there does not exist an edge $(u,v) \in E$ with $u, v \in I$.

Objective: Maximize $|I|$.

Directory Contents

  • instances/ - Graph instances in various formats
  • models/ - Mathematical model formulations
  • solutions/ - Optimal or best-known solutions
  • check/ - Solution verification tools
  • misc/ - Utility scripts and generators
  • submissions/ - Community solution submissions

Related Works

References