sciforge 0.0.3

A comprehensive scientific computing library in pure Rust with zero dependencies
Documentation
1
2
3
4
5
6
7
8
9
10
//! Experiment definition and execution.
//!
//! An [`experiment::Experiment`] binds a domain, function name, and typed
//! parameters; the [`runner::ExperimentRunner`] dispatches it and returns
//! a [`runner::RunOutput`].

/// Experiment struct: domain, function name, typed parameters.
pub mod experiment;
/// ExperimentRunner: executes an Experiment through the dispatch layer.
pub mod runner;