assessment 1.0.0

A library that allows different types of assessments, to convert between them and to perform basic operations.
Documentation
1
2
3
4
5
6
7
8
pub use linear_function::LinearFunction;
pub use piecewise_linear_function::{PiecewiseLinearFunction, PiecewiseLinearFunctionError};

/// Linear function
pub mod linear_function;

/// Piecewise linear function
pub mod piecewise_linear_function;