[][src]Struct pos_pso::PSO

pub struct PSO { /* fields omitted */ }

Implementations

impl PSO[src]

pub fn new(config: PSOConfig) -> Self[src]

pub fn minimize_collaborative<F>(
    &self,
    job_config: JobConfig,
    cost_func: F
) -> (f64, Vec<f64>) where
    F: Fn(&[f64]) -> f64 + Sync + Send + 'static, 
[src]

pub fn minimize_independant<F>(
    &self,
    job_config: JobConfig,
    cost_func: F
) -> (f64, Vec<f64>) where
    F: Fn(&[f64]) -> f64 + Sync + Send + 'static, 
[src]

pub fn minimize<F>(
    &self,
    job_config: JobConfig,
    swarm_config: SwarmConfig,
    cost_func: F
) -> (f64, Vec<f64>) where
    F: Fn(&[f64]) -> f64 + Sync + Send + 'static, 
[src]

pub fn minimize_distributed<F>(
    &self,
    job_config: JobConfig,
    swarm_config_dist: SwarmConfigDistribution,
    cost_func: F
) -> (f64, Vec<f64>) where
    F: Fn(&[f64]) -> f64 + Sync + Send + 'static, 
[src]

pub fn minimize_specific<F>(
    &self,
    job_config: JobConfig,
    swarm_configs: Vec<SwarmConfig>,
    cost_func: F
) -> (f64, Vec<f64>) where
    F: Fn(&[f64]) -> f64 + Sync + Send + 'static, 
[src]

Auto Trait Implementations

impl RefUnwindSafe for PSO

impl Send for PSO

impl Sync for PSO

impl Unpin for PSO

impl UnwindSafe for PSO

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,