Skip to main content

UnBounded

Trait UnBounded 

Source
pub trait UnBounded {
    const BOUNDS: (f64, f64) = _;

    // Provided method
    fn in_bounds(_x: Vec<f64>) -> bool { ... }
}
Expand description

This is a trait that ensures consistent implementation of unbounded benchmark functions

Provided Associated Constants§

Source

const BOUNDS: (f64, f64) = _

The bounds of the canonical optimization problem

Provided Methods§

Source

fn in_bounds(_x: Vec<f64>) -> bool

Function to check bounds

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§