Skip to content

Low-level implementation and demonstration of multiple artificial intelligence methods.

Notifications You must be signed in to change notification settings

lfgodoi/artificial-intelligence-suite

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Artificial Intelligence Suite (artificial-intelligence-suite)

Low-level implementation and demonstration of multiple artificial intelligence methods.

Project structure

The project repository contains the following folders.

  • ./include/: public header files with algorithm definitions.
  • ./src/: private source files with algorithm implementations.
  • ./tests/: test files.
  • ./lib/: third party libraries.
  • ./build/: build directory where the build artifacts will be stored.
  • ./CMakeLists.txt: the main CMake configuration file that defines the project and its build rules.

Building a single executable file

In order to build an executable file, run the following command.

g++ ./src/<code>.cpp -o ./build/<executable-file>

Building all executable files

If you want to build the executable files all at once, run the following sequence of commands.

mkdir -p ./build && cmake -B./build -S. && cmake --build ./build

Running an executable file

The executable files are created into ./build/ directory. You can run them by using the following command.

./build/<executable-file>

About

Low-level implementation and demonstration of multiple artificial intelligence methods.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published