pub struct FittedBudgetConstrainedRBFSampler { /* private fields */ }Expand description
Fitted budget-constrained RBF sampler
Implementations§
Source§impl FittedBudgetConstrainedRBFSampler
impl FittedBudgetConstrainedRBFSampler
Sourcepub fn optimization_result(&self) -> &BudgetOptimizationResult
pub fn optimization_result(&self) -> &BudgetOptimizationResult
Get the optimization result
Sourcepub fn optimal_components(&self) -> usize
pub fn optimal_components(&self) -> usize
Get the optimal number of components
Sourcepub fn quality_score(&self) -> f64
pub fn quality_score(&self) -> f64
Get the quality score
Sourcepub fn budget_usage(&self) -> &BudgetUsage
pub fn budget_usage(&self) -> &BudgetUsage
Get the budget usage
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FittedBudgetConstrainedRBFSampler
impl RefUnwindSafe for FittedBudgetConstrainedRBFSampler
impl Send for FittedBudgetConstrainedRBFSampler
impl Sync for FittedBudgetConstrainedRBFSampler
impl Unpin for FittedBudgetConstrainedRBFSampler
impl UnwindSafe for FittedBudgetConstrainedRBFSampler
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more