Problem

Trait Problem 

Source
pub trait Problem {
    // Required method
    fn num_params(&self) -> usize;
}
Expand description

A trait for defining optimization problems.

Required Methods§

Source

fn num_params(&self) -> usize

Returns the number of parameters in the problem.

Implementors§