Refactor: structure project properly with src/ include/ storage/ docs/

This commit is contained in:
StirGpea 2026-08-14 07:09:37 +00:00
parent 975c29cca6
commit 929e16264f
4 changed files with 16 additions and 25 deletions

11
.gitignore vendored
View file

@ -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

View file

@ -1,3 +1,3 @@
# BugLab - Maze Tabu Search
# BugLab
A C++ project solving maze pathfinding using Tabu Search.
Проект по решению лабиринтов методом Tabu Search.

View file

@ -1,19 +0,0 @@
#include <iostream>
#include <vector>
#include <random>
#include <algorithm>
#include <chrono>
#include <queue>
// 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;
}

7
src/main.cpp Normal file
View file

@ -0,0 +1,7 @@
#include <iostream>
#include <vector>
int main() {
std::cout << "BugLab - Maze Tabu Search ready." << std::endl;
return 0;
}