olbender / tinyso

A minimalistic header-only library for stochastic optimization algorithms, such as a genetic algorithm

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

tinyso: a minimalistic header-only C++ library for stochastic optimization algorithms, such as a genetic algorithm

License: MIT

tinyso is a small and efficient library written in modern C++ to provide functionality for stochastic optimization.

tinyso is available as single-file, header-only library. Insert tinyso.hpp into your project, #include "tinyso.hpp", and compile your project with a modern C++ compiler (C++11 or newer).

Table of Contents

Features

  • Written in highly portable and high quality C++11
  • Available as header-only, single-file distribution. Insert tinyso.hpp into your project, #include "tinyso.hpp", and compile your project with a modern C++ compiler (C++11 or newer)
  • Genetic algorithm with creep mutation and tournament selection. Each individual is a list of doubles.

Dependencies

No dependencies! All you need is a C++11-compliant compiler as the project ships the following dependencies as part of the source distribution:

Installation

Installation as single-file, header-only library

tinyso is provided as header-only, single-file library as well. Insert tinyso.hpp into your project, #include "tinyso.hpp", and compile your project with a modern C++ compiler (C++11 or newer)

License

  • This project is released under the terms of the MIT License - License: MIT

About

A minimalistic header-only library for stochastic optimization algorithms, such as a genetic algorithm

License:MIT License


Languages

Language:C++ 99.5%Language:CMake 0.5%