Refactor: structure project properly with src/ include/ storage/ docs/
This commit is contained in:
parent
975c29cca6
commit
929e16264f
4 changed files with 16 additions and 25 deletions
11
.gitignore
vendored
11
.gitignore
vendored
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
# BugLab - Maze Tabu Search
|
||||
# BugLab
|
||||
|
||||
A C++ project solving maze pathfinding using Tabu Search.
|
||||
Проект по решению лабиринтов методом Tabu Search.
|
||||
|
|
|
|||
19
main.cpp
19
main.cpp
|
|
@ -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
7
src/main.cpp
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
#include <iostream>
|
||||
#include <vector>
|
||||
|
||||
int main() {
|
||||
std::cout << "BugLab - Maze Tabu Search ready." << std::endl;
|
||||
return 0;
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue