https://github.com/nikolaskostakis/router
Thesis
https://github.com/nikolaskostakis/router
python3 routing-algorithm tcl thesis-project
Last synced: 8 months ago
JSON representation
Thesis
- Host: GitHub
- URL: https://github.com/nikolaskostakis/router
- Owner: nikolaskostakis
- License: mit
- Created: 2023-12-21T17:18:50.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-02-17T14:17:56.000Z (9 months ago)
- Last Synced: 2025-02-17T15:26:34.000Z (9 months ago)
- Topics: python3, routing-algorithm, tcl, thesis-project
- Language: Python
- Homepage:
- Size: 919 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Router
This project is a routing tool, based on Lee's Maze Algorithm & is part of my thesis.
> The project is still under development!
## Requirements
Python 3.10 and beyond
### Required packages
- tkinter
- pyreadline
- numpy
- mathplotlib
## Project structure
Router/
├── benchmarks/
├── data/
├── src/
│ ├── file_io/
│ │ ├── __init__.py
│ │ ├── parsers.py
│ │ └── writers.py
│ ├── place_and_route/
│ │ ├── __init__.py
│ │ ├── placement.py
│ │ └── routing.py
│ ├── structures/
│ │ ├── __init__.py
│ │ ├── design_components.py
│ │ └── trees.py
│ ├── ui/
│ │ ├── __init__.py
│ │ ├── gui.py
│ │ └── tcl_interpreter.py
│ ├── __init__.py
│ ├── config.py
│ └── router.py
├── test/
├── .gitignore
├── Makefile
└── README.md