-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmainpage.dox
82 lines (82 loc) · 3.48 KB
/
mainpage.dox
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
/**
* @mainpage Symphony
*
* @section intro Introduction
*
* **Symphony** (System for Yielding Multi-dimensional Problem Heuristic Optimization and Navigation) is a C++ project focused on implementing search algorithms for rational agent problems.
*
* It provides a flexible, extensible framework for defining states, actions, and search strategies, along with example problems and test cases to ensure correctness and performance.
*
* The inspiration for this project is drawn from a university course on Artificial Intelligence, where students learn about rational agents, search algorithms, and problem-solving techniques.
* By providing a structured, modular codebase, Symphony aims to help students and enthusiasts understand and experiment with these concepts in a practical, hands-on way.
*
* ---
*
* ![GitHub](https://img.shields.io/github/license/velocitatem/Symphony)
* ![GitHub release (latest by date)](https://img.shields.io/github/v/release/velocitatem/Symphony)
* ![GitHub issues](https://img.shields.io/github/issues-raw/velocitatem/Symphony)
* ![GitHub pull requests](https://img.shields.io/github/issues-pr/velocitatem/Symphony)
* ![GitHub contributors](https://img.shields.io/github/contributors/velocitatem/Symphony)
* ![GitHub commit activity](https://img.shields.io/github/commit-activity/m/velocitatem/Symphony)
* ![GitHub last commit](https://img.shields.io/github/last-commit/velocitatem/Symphony)
*
* ---
*
* @section getting_started Getting Started
*
* To get started with Symphony, follow these steps:
*
* @subsection prerequisites Prerequisites
*
* - **C++20 Compiler**:
* Ensure you have a modern C++ compiler that supports C++20 (e.g., `g++` >= 10 or `clang++` >= 12).
*
* - **CMake (3.29 or newer)**:
* Used for building the project.
*
* - **GoogleTest Library** (optional for running tests):
* Make sure `gtest` and `gtest_main` libraries are installed on your system, or use the provided configuration if you have them in your environment.
*
* @subsection build Building the Project
*
* 1. **Clone the Repository**:
*
* 2. **Configure and Build**:
* @code{.bash}
* mkdir build && cd build
* cmake ..
* make
* @endcode
*
* After building, the executables will be located in the build directory:
*
* ---
*
* @section extending Extending the Project
*
* - **Add New Problems**:
* Create classes extending `Problem` and `State`, defining domain-specific logic, actions, and heuristics.
*
* - **Implement Additional Search Algorithms**:
* Extend `Search` with new search strategies (e.g., `DepthFirstSearch`, `UniformCostSearch`, `AStarSearch`) and integrate them into the problem-solving pipeline.
*
* - **Additional Testing and CI**:
* Add more test cases and integrate Continuous Integration (CI) to ensure code quality and maintainability.
*
* ---
*
* @section contributing Contributing
*
* Contributions are welcome! If you find issues or want to add features, feel free to:
*
* 1. Fork the repository
* 2. Create a new branch (`git checkout -b feature/my-feature`)
* 3. Commit your changes (`git commit -am 'Add my feature'`)
* 4. Push the branch (`git push origin feature/my-feature`)
* 5. Create a new Pull Request
*
* ---
*
* Symphony is designed to be a springboard for further exploration into rational agents, search algorithms, and AI problem-solving techniques.
* With its clean architecture and example-driven approach, you can quickly adapt and extend it for your own research or educational projects.
*/