rufi 0.4.2

Rust Fields: a Rust based implementation of the Aggregate Computing paradigm
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#[cfg(feature = "core")]
pub mod core {
    pub use rf_core::*;
}
#[cfg(feature = "distributed")]
pub mod distributed {
    pub use rf_distributed::*;
    #[cfg(feature = "impls")]
    pub mod impls {
        pub use rf_distributed_impl::*;
    }
}
#[cfg(feature = "programs")]
pub mod programs {
    pub use rufi_gradient::*;
}