Skip to content

Latest commit

 

History

History
6 lines (4 loc) · 821 Bytes

README.md

File metadata and controls

6 lines (4 loc) · 821 Bytes

Minimum Dominating Set Problem

A dominating set in a graph is a set of vertices such that every vertex outside the set is adjacent to a vertex in the set. The domination number is the minimum cardinality of a dominating set in the graph. The problem of finding the minimum dominating set is a combinatorial optimization problem that has been proved to be NP-hard. Given the difficulty of this problem, an Iterated Greedy algorithm is proposed for its solution and it is compared to the solution given by an exact algorithm and by the state-of-art algorithms. Computational results show that the proposal is able to find optimal or near-optimal solutions within a short computational time.

Datasets

The code, an Excel file with the tables of the experiments results and instances are available in this repository.