Skip to content
Snippets Groups Projects
Commit cbb4d1ff authored by Thomas Moulard's avatar Thomas Moulard
Browse files

Rewrite README using Markdown syntax.

parent 2eebf6db
No related branches found
No related tags found
No related merge requests found
See INSTALL for installation instructions. dynamic-graph
=============
The dynamic-graph library is a framework to create dynamic This software provides an efficient way to modelize a C++ data-flow.
graphs of generic entities connected together by signals,
with helper facilities such as signal casters, an object A dynamic graph data-flow is composed of:
factory and an object pool. It is a spin-off and was - entities (graph nodes)
originally part of the StackOfTasks library. - 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.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment