From 929e16264ff570e74892613cfb36189d0a39000c Mon Sep 17 00:00:00 2001 From: StirGpea Date: Fri, 14 Aug 2026 07:09:37 +0000 Subject: [PATCH] Refactor: structure project properly with src/ include/ storage/ docs/ --- .gitignore | 11 +++++++---- README.md | 4 ++-- main.cpp | 19 ------------------- src/main.cpp | 7 +++++++ 4 files changed, 16 insertions(+), 25 deletions(-) delete mode 100644 main.cpp create mode 100644 src/main.cpp diff --git a/.gitignore b/.gitignore index 3c9154f..3037342 100644 --- a/.gitignore +++ b/.gitignore @@ -1,13 +1,16 @@ # Build artifacts +build/ +bin/ +out/ *.o *.a *.so *.exe -build/ -bin/ -out/ -# Python virtual environment +# Storage +storage/ + +# Python / Tools myenv/ __pycache__/ *.pyc diff --git a/README.md b/README.md index 4c1c4f5..a170945 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,3 @@ -# BugLab - Maze Tabu Search +# BugLab -A C++ project solving maze pathfinding using Tabu Search. +Проект по решению лабиринтов методом Tabu Search. diff --git a/main.cpp b/main.cpp deleted file mode 100644 index 54e0730..0000000 --- a/main.cpp +++ /dev/null @@ -1,19 +0,0 @@ -#include -#include -#include -#include -#include -#include - -// Simple Maze Tabu Search Implementation -struct Point { - int x, y; - bool operator==(const Point& other) const { - return x == other.x && y == other.y; - } -}; - -int main() { - std::cout << "BugLab Maze Tabu Search initialized.\n"; - return 0; -} diff --git a/src/main.cpp b/src/main.cpp new file mode 100644 index 0000000..cdcd4fd --- /dev/null +++ b/src/main.cpp @@ -0,0 +1,7 @@ +#include +#include + +int main() { + std::cout << "BugLab - Maze Tabu Search ready." << std::endl; + return 0; +}