1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
#![feature(alloc_system)]

extern crate alloc_system;

extern crate libloading;
extern crate capnp;

pub mod component;

/// manages the execution of a FBP graph.
///
/// It had two main parts : the "exterior scheduler" and the "interior scheduler".
///
/// The exterior scheduler is an API to easily manage the scheduler.
///
/// The interior scheduler is the actual state of the scheduler. It is edited by sending messages. 
/// The messages are send by the exterior scheduler and the components of the Graph.
pub mod scheduler;

pub mod ports;
pub mod result;