Compute the Approximate Edge Dominating Set for undirected graph encoded in DIMACS format.
Project description
Loynaz: Approximate Edge Dominating Set Solver
This work builds upon Efficient Edge Dominating Set Approximation for Sparse Graphs.
Edge Dominating Set Problem - Overview
Definition
The Edge Dominating Set (EDS) problem is a classical problem in graph theory and combinatorial optimization. Given an undirected graph $G = (V, E)$, an edge dominating set is a subset $D \subseteq E$ such that every edge not in $D$ is adjacent to at least one edge in $D$.
Formal Definition:
A set $D \subseteq E$ is an edge dominating set if for every edge $e \in E \setminus D$, there exists an edge $d \in D$ such that $e$ and $d$ share a common vertex.
Objective
Find an edge dominating set $D$ of minimum cardinality (smallest possible size).
Computational Complexity
- NP-Hard: The decision version of EDS ("Does a graph $G$ have an edge dominating set of size $k$?") is NP-complete.
- Approximation: There exists a 2-approximation algorithm for EDS (i.e., a solution at most twice the optimal size).
- Exact Solutions: Solvable in exponential time via brute-force or more efficient algorithms like branch-and-bound.
Applications
- Network design and fault tolerance.
- Wireless sensor networks (efficient coverage).
- Scheduling and resource allocation problems.
Variants
- Weighted Edge Dominating Set: Edges have weights, and the goal is to minimize the total weight of $D$.
- Connected Edge Dominating Set: Requires $D$ to induce a connected subgraph.
- Efficient Edge Dominating Set: Imposes additional constraints on the structure of $D$.
Related Problems
- Vertex Cover: A vertex cover indirectly dominates edges, while EDS directly dominates them.
- Dominating Set: A vertex-based variant where vertices dominate neighboring vertices.
Example
Consider a graph $G$ with edges $E = {(1,2), (2,3), (3,4)}$:
- A minimal edge dominating set: $D = {(2,3)}$, since:
- Edge (1,2) is adjacent to (2,3).
- Edge (3,4) is adjacent to (2,3).
Algorithms
- Greedy Approach: Iteratively select edges covering the most undominated edges.
- Integer Linear Programming (ILP): Formulate EDS as an optimization problem.
- Fixed-Parameter Tractability (FPT): Solvable in $O^*(c^k)$ time for some constant $c$.
Open Problems
- Finding improved approximation ratios or exact algorithms for special graph classes (e.g., planar graphs, bipartite graphs).
- Investigating parameterized complexity further.
References
- Garey & Johnson, Computers and Intractability (1979).
- G. F. Italiano et al., Exact and Approximate Algorithms for Edge Dominating Set.
Problem Statement
Input: A Boolean Adjacency Matrix $M$.
Answer: Find a Minimum Edge Dominating Set.
Example Instance: 5 x 5 matrix
| c1 | c2 | c3 | c4 | c5 | |
|---|---|---|---|---|---|
| r1 | 0 | 0 | 1 | 0 | 1 |
| r2 | 0 | 0 | 0 | 1 | 0 |
| r3 | 1 | 0 | 0 | 0 | 1 |
| r4 | 0 | 1 | 0 | 0 | 0 |
| r5 | 1 | 0 | 1 | 0 | 0 |
The input for undirected graph is typically provided in DIMACS format. In this way, the previous adjacency matrix is represented in a text file using the following string representation:
p edge 5 4
e 1 3
e 1 5
e 2 4
e 3 5
This represents a 5x5 matrix in DIMACS format such that each edge $(v,w)$ appears exactly once in the input file and is not repeated as $(w,v)$. In this format, every edge appears in the form of
e W V
where the fields W and V specify the endpoints of the edge while the lower-case character e signifies that this is an edge descriptor line.
Example Solution:
Edge Dominating Set Found (3, 5), (2, 4): Edges (3, 5), and (2, 4) constitute an optimal solution.
Compile and Environment
Prerequisites
- Python ≥ 3.10
Installation
pip install loynaz
Execution
-
Clone the repository:
git clone https://github.com/frankvegadelgado/loynaz.git cd loynaz
-
Run the script:
edge -i ./benchmarks/testMatrix1
utilizing the
edgecommand provided by Loynaz's Library to execute the Boolean adjacency matrixloynaz\benchmarks\testMatrix1. The filetestMatrix1represents the example described herein. We also support.xz,.lzma,.bz2, and.bzip2compressed text files.Example Output:
testMatrix1: Edge Dominating Set Found (3, 5), (2, 4)This indicates edges
(3, 5), (2, 4)form a edge dominating set.
Edge Dominating Set Size
Use the -c flag to count the edges in the edge dominating set:
edge -i ./benchmarks/testMatrix2 -c
Output:
testMatrix2: Edge Dominating Set Size 3
Command Options
Display help and options:
edge -h
Output:
usage: edge [-h] -i INPUTFILE [-a] [-b] [-c] [-v] [-l] [--version]
Compute the Approximate Edge Dominating Set for undirected graph encoded in DIMACS format.
options:
-h, --help show this help message and exit
-i INPUTFILE, --inputFile INPUTFILE
input file path
-a, --approximation enable comparison with a polynomial-time approximation approach within a factor of at most 2
-b, --bruteForce enable comparison with the exponential-time brute-force approach
-c, --count calculate the size of the edge dominating set
-v, --verbose anable verbose output
-l, --log enable file logging
--version show program's version number and exit
Batch Execution
Batch execution allows you to solve multiple graphs within a directory consecutively.
To view available command-line options for the batch_edge command, use the following in your terminal or command prompt:
batch_edge -h
This will display the following help information:
usage: batch_edge [-h] -i INPUTDIRECTORY [-a] [-b] [-c] [-v] [-l] [--version]
Compute the Approximate Edge Dominating Set for all undirected graphs encoded in DIMACS format and stored in a directory.
options:
-h, --help show this help message and exit
-i INPUTDIRECTORY, --inputDirectory INPUTDIRECTORY
Input directory path
-a, --approximation enable comparison with a polynomial-time approximation approach within a factor of at most 2
-b, --bruteForce enable comparison with the exponential-time brute-force approach
-c, --count calculate the size of the edge dominating set
-v, --verbose anable verbose output
-l, --log enable file logging
--version show program's version number and exit
Testing Application
A command-line utility named test_edge is provided for evaluating the Algorithm using randomly generated, large sparse matrices. It supports the following options:
usage: test_edge [-h] -d DIMENSION [-n NUM_TESTS] [-s SPARSITY] [-a] [-b] [-c] [-w] [-v] [-l] [--version]
The Loynaz Testing Application using randomly generated, large sparse matrices.
options:
-h, --help show this help message and exit
-d DIMENSION, --dimension DIMENSION
an integer specifying the dimensions of the square matrices
-n NUM_TESTS, --num_tests NUM_TESTS
an integer specifying the number of tests to run
-s SPARSITY, --sparsity SPARSITY
sparsity of the matrices (0.0 for dense, close to 1.0 for very sparse)
-a, --approximation enable comparison with a polynomial-time approximation approach within a factor of at most 2
-b, --bruteForce enable comparison with the exponential-time brute-force approach
-c, --count calculate the size of the edge dominating set
-w, --write write the generated random matrix to a file in the current directory
-v, --verbose anable verbose output
-l, --log enable file logging
--version show program's version number and exit
Code
- Python implementation by Frank Vega.
License
- MIT License.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file loynaz-0.0.2.tar.gz.
File metadata
- Download URL: loynaz-0.0.2.tar.gz
- Upload date:
- Size: 16.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
18176de20f616fbd42b3faa09edad97c0d735b716f7c90a5991eca85d1d2a5e5
|
|
| MD5 |
c41c5e593269ac4d33f03c1934bf8c16
|
|
| BLAKE2b-256 |
eb452732c6d31970b516795d13c79ba20affdcdf98b7947967192b0d8e1fcdc4
|
Provenance
The following attestation bundles were made for loynaz-0.0.2.tar.gz:
Publisher:
publish.yml on frankvegadelgado/loynaz
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
loynaz-0.0.2.tar.gz -
Subject digest:
18176de20f616fbd42b3faa09edad97c0d735b716f7c90a5991eca85d1d2a5e5 - Sigstore transparency entry: 230384461
- Sigstore integration time:
-
Permalink:
frankvegadelgado/loynaz@f7f03f717198de8b631a67ffb350e163900414ed -
Branch / Tag:
refs/tags/v0.0.2 - Owner: https://github.com/frankvegadelgado
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f7f03f717198de8b631a67ffb350e163900414ed -
Trigger Event:
release
-
Statement type:
File details
Details for the file loynaz-0.0.2-py3-none-any.whl.
File metadata
- Download URL: loynaz-0.0.2-py3-none-any.whl
- Upload date:
- Size: 16.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fd44459d7b03284bca351353710ccedb3f40b262abbe72ebb1275ecd3745d78c
|
|
| MD5 |
378582dde99164aee33c629ff1a98725
|
|
| BLAKE2b-256 |
a5753371261317414cdb25ffebcf7909c86485eb49e89492e1dee341adb90235
|
Provenance
The following attestation bundles were made for loynaz-0.0.2-py3-none-any.whl:
Publisher:
publish.yml on frankvegadelgado/loynaz
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
loynaz-0.0.2-py3-none-any.whl -
Subject digest:
fd44459d7b03284bca351353710ccedb3f40b262abbe72ebb1275ecd3745d78c - Sigstore transparency entry: 230384463
- Sigstore integration time:
-
Permalink:
frankvegadelgado/loynaz@f7f03f717198de8b631a67ffb350e163900414ed -
Branch / Tag:
refs/tags/v0.0.2 - Owner: https://github.com/frankvegadelgado
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f7f03f717198de8b631a67ffb350e163900414ed -
Trigger Event:
release
-
Statement type: