https://github.com/fbbdev/nodal
Flow-based programming framework
https://github.com/fbbdev/nodal
c-plus-plus c-plus-plus-14 compiler cpp cpp14 dataflow dataflow-compiler dataflow-programming flow flow-based-programming framework graph library programming
Last synced: about 2 months ago
JSON representation
Flow-based programming framework
- Host: GitHub
- URL: https://github.com/fbbdev/nodal
- Owner: fbbdev
- License: mit
- Created: 2015-01-03T01:15:35.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2018-04-09T13:27:10.000Z (about 7 years ago)
- Last Synced: 2025-04-24T00:05:11.297Z (about 2 months ago)
- Topics: c-plus-plus, c-plus-plus-14, compiler, cpp, cpp14, dataflow, dataflow-compiler, dataflow-programming, flow, flow-based-programming, framework, graph, library, programming
- Language: C++
- Homepage:
- Size: 133 KB
- Stars: 15
- Watchers: 5
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Nodal
[](https://travis-ci.org/fbbdev/nodal)
Nodal is a small C++ library offering a generic foundation for development of
applications based on
[dataflow](http://en.wikipedia.org/wiki/Dataflow_programming) and
[flow-based](http://en.wikipedia.org/wiki/Flow-based_programming) programming.Nodal is based on the Boost Graph Library and uses C++ 11/14 features.
## Building
Dependencies:
* cmake >= 3.9
* boost >= 1.56.0```
git clone https://github.com/nodal/nodal.git
cd nodal
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE={Debug|Release} -DBUILD_EXAMPLES={ON|OFF} ..
make
```## Documentation
The library is not complete and lacks documentation. See the
[examples](https://github.com/nodal/nodal/tree/master/examples)
directory for usage examples.## License
The MIT License (MIT)
Copyright (c) 2015 Fabio Massaioli
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.