Refactor: project structure (src, include, storage, docs) and base implementation

This commit is contained in:
StirGpea 2026-08-14 07:09:39 +00:00
parent 929e16264f
commit 3aafb7312b
2 changed files with 12 additions and 3 deletions

View file

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

View file

@ -1,7 +1,17 @@
#include <iostream>
#include <vector>
#include <random>
#include <algorithm>
// Maze Tabu Search
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 ready." << std::endl;
std::cout << "BugLab: Tabu Search Maze Solver active." << std::endl;
return 0;
}