oars 3.0.1

A library providing construction methods and utility functions for orthogonal arrays and strong orthogonal arrays
Documentation
1
2
3
4
5
6
7
8
9
//! Exports the necessary traits, structs, and error types to work with oars.
//!
//! Note that this module does not export structs for specific constructors.

#[cfg(feature = "parallel")]
pub use crate::oa::ParOAConstructor;
pub use crate::oa::{OAConstructor, OAResult, OA};
pub use crate::soa::{SOAConstructor, SOAResult, SOA};
pub use crate::utils::{Float, Integer, OarsError, OarsResult};