use core::marker::PhantomData;
use super::spec::{Dimensionality, HasSpec, ProblemSpec, Properties, Reference};
use crate::{BoxConstraints, CostFunction};
const A: f64 = 20.0;
const B: f64 = 0.2;
pub const STANDARD_LOWER: f64 = -32.768;
pub const STANDARD_UPPER: f64 = 32.768;
pub fn ackley(x: &[f64]) -> f64 {
debug_assert!(!x.is_empty());
let n = x.len() as f64;
let c = 2.0 * core::f64::consts::PI;
let mut sum_sq = 0.0;
let mut sum_cos = 0.0;
for &v in x.iter() {
sum_sq += v * v;
sum_cos += (c * v).cos();
}
-A * (-B * (sum_sq / n).sqrt()).exp() - (sum_cos / n).exp() + A + core::f64::consts::E
}
pub struct Ackley<P = Vec<f64>>(PhantomData<fn() -> P>);
impl<P> Ackley<P> {
pub const fn new() -> Self {
Self(PhantomData)
}
}
impl<P> Default for Ackley<P> {
fn default() -> Self {
Self::new()
}
}
pub static ACKLEY_SPEC: ProblemSpec = ProblemSpec {
name: "Ackley",
dim: Dimensionality::NDimensional { min: 1 },
properties: Properties {
smooth: false,
differentiable: false,
convex: false,
unimodal: false,
separable: false,
scalable: true,
},
references: &[
Reference {
citation: "Ackley (1987)",
title: "A Connectionist Machine for Genetic Hillclimbing",
source: "Kluwer Academic Publishers, Boston, MA",
doi: Some("10.1007/978-1-4613-1997-9"),
url: None,
},
Reference {
citation: "Bäck (1996)",
title: "Evolutionary Algorithms in Theory and Practice",
source: "Oxford University Press (a = 20, b = 0.2, c = 2π, domain [−32.768, 32.768]ⁿ)",
doi: None,
url: None,
},
],
description: "Nearly-flat outer region around a deep central funnel to the \
global minimum at x = (0, …, 0), value 0, with a cosine \
lattice of shallow local minima. Constants a = 20, b = 0.2, \
c = 2π; standard domain [−32.768, 32.768]ⁿ. Non-differentiable \
at the origin (cusp), so cost-only for global solvers.",
};
impl<P> HasSpec for Ackley<P> {
const SPEC: &'static ProblemSpec = &ACKLEY_SPEC;
}
impl CostFunction for Ackley<Vec<f64>> {
type Param = Vec<f64>;
type Output = f64;
type Error = std::convert::Infallible;
fn cost(&self, x: &Vec<f64>) -> Result<f64, std::convert::Infallible> {
Ok(ackley(x))
}
}
#[cfg(feature = "nalgebra")]
mod nalgebra_impl {
use super::{ackley, Ackley};
use crate::CostFunction;
use nalgebra::DVector;
impl CostFunction for Ackley<DVector<f64>> {
type Param = DVector<f64>;
type Output = f64;
type Error = std::convert::Infallible;
fn cost(&self, x: &DVector<f64>) -> Result<f64, std::convert::Infallible> {
Ok(ackley(x.as_slice()))
}
}
}
#[cfg(feature = "ndarray")]
mod ndarray_impl {
use super::{ackley, Ackley};
use crate::CostFunction;
use ndarray::Array1;
impl CostFunction for Ackley<Array1<f64>> {
type Param = Array1<f64>;
type Output = f64;
type Error = std::convert::Infallible;
fn cost(&self, x: &Array1<f64>) -> Result<f64, std::convert::Infallible> {
Ok(ackley(x.as_slice().expect("Array1 is contiguous")))
}
}
}
#[cfg(feature = "faer")]
mod faer_impl {
use super::{Ackley, A, B};
use crate::CostFunction;
use faer::Col;
impl CostFunction for Ackley<Col<f64>> {
type Param = Col<f64>;
type Output = f64;
type Error = std::convert::Infallible;
fn cost(&self, x: &Col<f64>) -> Result<f64, std::convert::Infallible> {
let n = x.nrows();
let c = 2.0 * core::f64::consts::PI;
let mut sum_sq = 0.0;
let mut sum_cos = 0.0;
for i in 0..n {
let v = x[i];
sum_sq += v * v;
sum_cos += (c * v).cos();
}
let nf = n as f64;
Ok(
-A * (-B * (sum_sq / nf).sqrt()).exp() - (sum_cos / nf).exp()
+ A
+ core::f64::consts::E,
)
}
}
}
pub struct AckleyBoxed<P> {
lower: P,
upper: P,
}
impl<P> AckleyBoxed<P> {
pub fn new(lower: P, upper: P) -> Self {
Self { lower, upper }
}
}
impl<P> HasSpec for AckleyBoxed<P> {
const SPEC: &'static ProblemSpec = &ACKLEY_SPEC;
}
impl AckleyBoxed<Vec<f64>> {
pub fn with_standard_bounds(n: usize) -> Self {
Self {
lower: vec![STANDARD_LOWER; n],
upper: vec![STANDARD_UPPER; n],
}
}
}
impl CostFunction for AckleyBoxed<Vec<f64>> {
type Param = Vec<f64>;
type Output = f64;
type Error = std::convert::Infallible;
fn cost(&self, x: &Vec<f64>) -> Result<f64, std::convert::Infallible> {
Ok(ackley(x))
}
}
impl BoxConstraints for AckleyBoxed<Vec<f64>> {
fn lower(&self) -> &Vec<f64> {
&self.lower
}
fn upper(&self) -> &Vec<f64> {
&self.upper
}
}
#[cfg(feature = "nalgebra")]
mod nalgebra_boxed_impl {
use super::{ackley, AckleyBoxed, STANDARD_LOWER, STANDARD_UPPER};
use crate::{BoxConstraints, CostFunction};
use nalgebra::DVector;
impl AckleyBoxed<DVector<f64>> {
pub fn with_standard_bounds(n: usize) -> Self {
Self {
lower: DVector::from_element(n, STANDARD_LOWER),
upper: DVector::from_element(n, STANDARD_UPPER),
}
}
}
impl CostFunction for AckleyBoxed<DVector<f64>> {
type Param = DVector<f64>;
type Output = f64;
type Error = std::convert::Infallible;
fn cost(&self, x: &DVector<f64>) -> Result<f64, std::convert::Infallible> {
Ok(ackley(x.as_slice()))
}
}
impl BoxConstraints for AckleyBoxed<DVector<f64>> {
fn lower(&self) -> &DVector<f64> {
&self.lower
}
fn upper(&self) -> &DVector<f64> {
&self.upper
}
}
}
#[cfg(feature = "ndarray")]
mod ndarray_boxed_impl {
use super::{ackley, AckleyBoxed, STANDARD_LOWER, STANDARD_UPPER};
use crate::{BoxConstraints, CostFunction};
use ndarray::Array1;
impl AckleyBoxed<Array1<f64>> {
pub fn with_standard_bounds(n: usize) -> Self {
Self {
lower: Array1::from_elem(n, STANDARD_LOWER),
upper: Array1::from_elem(n, STANDARD_UPPER),
}
}
}
impl CostFunction for AckleyBoxed<Array1<f64>> {
type Param = Array1<f64>;
type Output = f64;
type Error = std::convert::Infallible;
fn cost(&self, x: &Array1<f64>) -> Result<f64, std::convert::Infallible> {
Ok(ackley(x.as_slice().expect("Array1 is contiguous")))
}
}
impl BoxConstraints for AckleyBoxed<Array1<f64>> {
fn lower(&self) -> &Array1<f64> {
&self.lower
}
fn upper(&self) -> &Array1<f64> {
&self.upper
}
}
}
#[cfg(feature = "faer")]
mod faer_boxed_impl {
use super::{AckleyBoxed, A, B, STANDARD_LOWER, STANDARD_UPPER};
use crate::{BoxConstraints, CostFunction};
use faer::Col;
impl AckleyBoxed<Col<f64>> {
pub fn with_standard_bounds(n: usize) -> Self {
Self {
lower: Col::<f64>::from_fn(n, |_| STANDARD_LOWER),
upper: Col::<f64>::from_fn(n, |_| STANDARD_UPPER),
}
}
}
impl CostFunction for AckleyBoxed<Col<f64>> {
type Param = Col<f64>;
type Output = f64;
type Error = std::convert::Infallible;
fn cost(&self, x: &Col<f64>) -> Result<f64, std::convert::Infallible> {
let n = x.nrows();
let c = 2.0 * core::f64::consts::PI;
let mut sum_sq = 0.0;
let mut sum_cos = 0.0;
for i in 0..n {
let v = x[i];
sum_sq += v * v;
sum_cos += (c * v).cos();
}
let nf = n as f64;
Ok(
-A * (-B * (sum_sq / nf).sqrt()).exp() - (sum_cos / nf).exp()
+ A
+ core::f64::consts::E,
)
}
}
impl BoxConstraints for AckleyBoxed<Col<f64>> {
fn lower(&self) -> &Col<f64> {
&self.lower
}
fn upper(&self) -> &Col<f64> {
&self.upper
}
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn minimum_is_zero_at_origin() {
assert!(ackley(&[0.0]).abs() < 1e-12);
assert!(ackley(&[0.0, 0.0]).abs() < 1e-12);
assert!(ackley(&[0.0; 10]).abs() < 1e-12);
}
#[test]
fn known_value_at_unit_point() {
let f = ackley(&[1.0, 1.0]);
assert!((f - 3.6253849384).abs() < 1e-9, "got {f}");
}
#[test]
fn spec_is_wired_up_via_has_spec_trait() {
let spec = <Ackley<Vec<f64>> as HasSpec>::SPEC;
assert_eq!(spec.name, "Ackley");
assert!(!spec.properties.smooth);
assert!(!spec.properties.differentiable);
assert!(spec.properties.scalable);
assert!(matches!(spec.dim, Dimensionality::NDimensional { min: 1 }));
assert!(!spec.references.is_empty());
}
#[test]
fn boxed_form_exposes_standard_bounds() {
let p = AckleyBoxed::<Vec<f64>>::with_standard_bounds(5);
let lo = <AckleyBoxed<Vec<f64>> as BoxConstraints>::lower(&p);
let hi = <AckleyBoxed<Vec<f64>> as BoxConstraints>::upper(&p);
assert_eq!(lo.len(), 5);
assert_eq!(hi.len(), 5);
for &v in lo {
assert_eq!(v, STANDARD_LOWER);
}
for &v in hi {
assert_eq!(v, STANDARD_UPPER);
}
}
#[test]
fn boxed_form_shares_cost_with_unboxed() {
let unboxed: Ackley<Vec<f64>> = Ackley::default();
let boxed = AckleyBoxed::<Vec<f64>>::with_standard_bounds(3);
let x = vec![0.3, -0.7, 1.2];
assert!((unboxed.cost(&x).unwrap() - boxed.cost(&x).unwrap()).abs() < 1e-12);
}
#[test]
fn boxed_form_reuses_ackley_spec() {
let spec = <AckleyBoxed<Vec<f64>> as HasSpec>::SPEC;
assert!(core::ptr::eq(spec, &ACKLEY_SPEC));
}
}