pub struct BendableScore<const H: usize, const S: usize> { /* private fields */ }Expand description
A score with a configurable number of hard and soft levels.
Level counts are const generic parameters, enabling Copy and zero heap allocation.
§Type Parameters
H- Number of hard score levelsS- Number of soft score levels
§Examples
use solverforge_core::score::{BendableScore, Score};
// Create a score with 2 hard levels and 3 soft levels
let score: BendableScore<2, 3> = BendableScore::of([-1, -2], [-10, -20, -30]);
assert_eq!(score.hard_levels_count(), 2);
assert_eq!(score.soft_levels_count(), 3);
assert!(!score.is_feasible()); // Negative hard scoresImplementations§
Source§impl<const H: usize, const S: usize> BendableScore<H, S>
impl<const H: usize, const S: usize> BendableScore<H, S>
Sourcepub const fn of(hard: [i64; H], soft: [i64; S]) -> Self
pub const fn of(hard: [i64; H], soft: [i64; S]) -> Self
Creates a new BendableScore with the given hard and soft score arrays.
Sourcepub const fn hard_levels_count(&self) -> usize
pub const fn hard_levels_count(&self) -> usize
Returns the number of hard score levels.
Sourcepub const fn soft_levels_count(&self) -> usize
pub const fn soft_levels_count(&self) -> usize
Returns the number of soft score levels.
Sourcepub const fn hard_score(&self, level: usize) -> i64
pub const fn hard_score(&self, level: usize) -> i64
Sourcepub const fn soft_score(&self, level: usize) -> i64
pub const fn soft_score(&self, level: usize) -> i64
Sourcepub const fn hard_scores(&self) -> &[i64; H]
pub const fn hard_scores(&self) -> &[i64; H]
Returns all hard scores as a slice.
Sourcepub const fn soft_scores(&self) -> &[i64; S]
pub const fn soft_scores(&self) -> &[i64; S]
Returns all soft scores as a slice.
Trait Implementations§
Source§impl<const H: usize, const S: usize> Clone for BendableScore<H, S>
impl<const H: usize, const S: usize> Clone for BendableScore<H, S>
Source§fn clone(&self) -> BendableScore<H, S>
fn clone(&self) -> BendableScore<H, S>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<const H: usize, const S: usize> Ord for BendableScore<H, S>
impl<const H: usize, const S: usize> Ord for BendableScore<H, S>
Source§impl<const H: usize, const S: usize> PartialOrd for BendableScore<H, S>
impl<const H: usize, const S: usize> PartialOrd for BendableScore<H, S>
Source§impl<const H: usize, const S: usize> Score for BendableScore<H, S>
impl<const H: usize, const S: usize> Score for BendableScore<H, S>
Source§fn is_feasible(&self) -> bool
fn is_feasible(&self) -> bool
Returns true if this score represents a feasible solution. Read more
Source§fn levels_count() -> usize
fn levels_count() -> usize
Returns the number of score levels. Read more
Source§fn from_level_numbers(levels: &[i64]) -> Self
fn from_level_numbers(levels: &[i64]) -> Self
Creates a score from level numbers. Read more
Source§fn compare(&self, other: &Self) -> Ordering
fn compare(&self, other: &Self) -> Ordering
Compares two scores, returning the ordering. Read more
Source§fn is_better_than(&self, other: &Self) -> bool
fn is_better_than(&self, other: &Self) -> bool
Returns true if this score is better than the other score. Read more
Source§fn is_worse_than(&self, other: &Self) -> bool
fn is_worse_than(&self, other: &Self) -> bool
Returns true if this score is worse than the other score.
Source§fn is_equal_to(&self, other: &Self) -> bool
fn is_equal_to(&self, other: &Self) -> bool
Returns true if this score is equal to the other score.
impl<const H: usize, const S: usize> Copy for BendableScore<H, S>
impl<const H: usize, const S: usize> Eq for BendableScore<H, S>
impl<const H: usize, const S: usize> StructuralPartialEq for BendableScore<H, S>
Auto Trait Implementations§
impl<const H: usize, const S: usize> Freeze for BendableScore<H, S>
impl<const H: usize, const S: usize> RefUnwindSafe for BendableScore<H, S>
impl<const H: usize, const S: usize> Send for BendableScore<H, S>
impl<const H: usize, const S: usize> Sync for BendableScore<H, S>
impl<const H: usize, const S: usize> Unpin for BendableScore<H, S>
impl<const H: usize, const S: usize> UnwindSafe for BendableScore<H, S>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more