RecommendationAlgorithm

Trait RecommendationAlgorithm 

Source
pub trait RecommendationAlgorithm {
    // Required methods
    fn generate_recommendations(
        &self,
        analysis: &CostAnalysis,
    ) -> DeviceResult<Vec<OptimizationRecommendation>>;
    fn get_algorithm_name(&self) -> String;
}
Expand description

Recommendation algorithm trait

Required Methods§

Implementors§