use num::{Float, FromPrimitive};
pub fn himmelblau<T: Float + FromPrimitive>(param: &[T]) -> T {
assert!(param.len() == 2);
let (x1, x2) = (param[0], param[1]);
(x1.powi(2) + x2 - T::from_f64(11.0).unwrap()).powi(2)
+ (x1 + x2.powi(2) - T::from_f64(7.0).unwrap()).powi(2)
}
mod tests {
#[test]
fn test_himmelblau_optimum() {
assert!((::himmelblau(&[3.0_f32, 2.0_f32])).abs() < ::std::f32::EPSILON);
assert!((::himmelblau(&[-2.805118_f32, 3.131312_f32])).abs() < ::std::f32::EPSILON);
assert!((::himmelblau(&[-3.779310_f32, -3.283186_f32])).abs() < ::std::f32::EPSILON);
assert!((::himmelblau(&[3.584428_f32, -1.848126_f32])).abs() < ::std::f32::EPSILON);
}
#[test]
#[should_panic]
fn test_himmelblau_param_length() {
::himmelblau(&[0.0_f32, -1.0_f32, 0.1_f32]);
}
}