17 lines
332 B
C++
17 lines
332 B
C++
#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: Tabu Search Maze Solver active." << std::endl;
|
|
return 0;
|
|
}
|