Refactor: project structure (src, include, storage, docs) and base implementation
This commit is contained in:
parent
929e16264f
commit
3aafb7312b
2 changed files with 12 additions and 3 deletions
|
|
@ -1,3 +1,2 @@
|
|||
# BugLab
|
||||
|
||||
Проект по решению лабиринтов методом Tabu Search.
|
||||
Maze pathfinding project using Tabu Search.
|
||||
|
|
|
|||
12
src/main.cpp
12
src/main.cpp
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue