Skip to content
Snippets Groups Projects
Forked from Stack Of Tasks / dynamic-graph
447 commits behind the upstream repository.
user avatar
Francois Keith authored
This solution worked only for win32 systems, and
created link errors for unix systems...

This reverts commit e7e487ebdf9c550742d4c9525bbb151e25437393.
81397a06
History

dynamic-graph

This software provides an efficient way to modelize a C++ data-flow.

A dynamic graph data-flow is composed of:

  • entities (graph nodes)
  • signals (input/output of a graph action)

Output signals can then be plugged into input signals to data transmission.

An efficient caching mechanism avoid useless data recomputation and a simple built-in language can be used to control the graph actions.

Setup

To compile this package, it is recommended to create a separate build directory:

mkdir _build
cd _build
cmake [OPTIONS] ..
make install

Please note that CMake produces a CMakeCache.txt file which should be deleted to reconfigure a package from scratch.