Skip to content
Snippets Groups Projects
Commit 60b43d73 authored by konog98's avatar konog98
Browse files

EXACT Track hinzugefügt.

parent 0c38d51b
No related branches found
No related tags found
No related merge requests found
## Project Structure ## Project Structure
APPALGO-SOSE24 APPALGO-SOSE24
│── LICENSE.txt │── LICENSE.txt
...@@ -16,7 +15,7 @@ ...@@ -16,7 +15,7 @@
## Description ## Description
This project is a STUDENT SUBMISSION and contains a solver for the PACE 2024 challenge. The solver aims to minimize crossings in bipartite graphs using linear programming and various optimization techniques. This project is a STUDENT SUBMISSION and contains a solver for the PACE-Exact Track 2024 challenge. The solver aims to minimize crossings in bipartite graphs using linear programming and various optimization techniques.
Our approach first attempts to minimize crossings by assigning a truth value for each crossing. Due to this simplistic restriction, cycles can occur in the B partition (y). We then systematically try to reduce these cycles by adding constraints. Attempting to add all constraints initially sets too many constraints for the ILP solver, making it infeasible. However, the current solution is memory and runtime intensive. Our approach first attempts to minimize crossings by assigning a truth value for each crossing. Due to this simplistic restriction, cycles can occur in the B partition (y). We then systematically try to reduce these cycles by adding constraints. Attempting to add all constraints initially sets too many constraints for the ILP solver, making it infeasible. However, the current solution is memory and runtime intensive.
...@@ -47,7 +46,8 @@ From the medium_test_sets, only the following graphs run within the allotted tim ...@@ -47,7 +46,8 @@ From the medium_test_sets, only the following graphs run within the allotted tim
``` ```
4. **Install the External Libraries:** 4. **Install the External Libraries:**
This project requires the following external libraries: This project requires to install the libraries in the requirements.txt:
```bash ```bash
pip install -r requirements.txt pip install -r requirements.txt
``` ```
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment