pub trait ParameterOptimizationAlgorithm {
// Required methods
fn optimize(
&self,
objective: &ObjectiveFunction,
space: &ParameterSpace,
budget: &OptimizationBudget,
) -> DeviceResult<OptimizationResult>;
fn get_algorithm_name(&self) -> String;
fn supports_constraints(&self) -> bool;
}
Expand description
Parameter optimization algorithm trait