Initial commit: project structure, README, .gitignore and initial source code

This commit is contained in:
StirGpea 2026-08-14 05:51:41 +00:00
commit 975c29cca6
3 changed files with 41 additions and 0 deletions

19
.gitignore vendored Normal file
View file

@ -0,0 +1,19 @@
# Build artifacts
*.o
*.a
*.so
*.exe
build/
bin/
out/
# Python virtual environment
myenv/
__pycache__/
*.pyc
# IDEs & OS files
.vscode/
.idea/
.DS_Store
*.swp

3
README.md Normal file
View file

@ -0,0 +1,3 @@
# BugLab - Maze Tabu Search
A C++ project solving maze pathfinding using Tabu Search.

19
main.cpp Normal file
View file

@ -0,0 +1,19 @@
#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;
}