optirustic 1.2.3

This crate moved to https://github.com/s-simoncelli/nsga-rs
pub use constraint::{Constraint, RelationalOperator};
pub use data::DataValue;
pub use error::OError;
pub use individual::{Individual, IndividualExport, Individuals, IndividualsMut, Population};
pub use objective::{Objective, ObjectiveDirection};
pub use problem::{builtin_problems, EvaluationResult, Evaluator, Problem, ProblemExport};
pub use variable::{Boolean, BoundedNumber, Choice, Variable, VariableType, VariableValue};

mod constraint;
mod data;
mod error;
mod individual;
mod objective;
mod problem;
pub mod utils;
mod variable;

#[cfg(test)]
pub(crate) mod test_utils;

// Export Python only objects.
#[cfg(feature = "python")]
pub use variable::PyVariable;

#[cfg(feature = "python")]
pub use problem::PyProblem;