[][src]Struct pso::PSO

pub struct PSO { /* fields omitted */ }

Particle Swarm Optimizer

Implementations

impl PSO[src]

pub fn from_swarm_configs(
    verbose: bool,
    swarm_configs: Vec<SwarmConfig>
) -> Self
[src]

Generate a PSO from a list of Swarm Configuartions

pub fn from_swarm_config(
    num_swarms: usize,
    verbose: bool,
    swarm_config: &SwarmConfig
) -> Self
[src]

Generate a PSO with num_swarms swarms with a the given Swarm Configuration

pub fn default(num_swarms: usize, verbose: bool) -> Self[src]

Generate a PSO with num_swarms swarms with the default Swarm Configuration

pub fn show_progress(&mut self, console_update_rate: usize)[src]

Set the PSO to update the console with progress every console_update_rate iterations

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

Run an optimization with the given Job Configuration and Objective Funciton

Returns a tuple with the minimum cost and corresponding location in the search space The Objective Function is cloned for each swarm

Trait Implementations

impl Clone for PSO[src]

impl Debug for PSO[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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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>,