/* Score types for representing solution quality
Scores are used to compare solutions and guide the optimization process.
All score types are immutable and implement arithmetic operations.
*/
pub use BendableScore;
pub use HardMediumSoftScore;
pub use HardSoftScore;
pub use HardSoftDecimalScore;
pub use ScoreLevel;
pub use SoftScore;
pub use ;