pub struct FireflyAlgorithm {
pub population_size: usize,
pub max_iterations: usize,
pub alpha: f64,
pub beta0: f64,
pub gamma: f64,
}Fields§
§population_size: usize§max_iterations: usize§alpha: f64§beta0: f64§gamma: f64Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FireflyAlgorithm
impl RefUnwindSafe for FireflyAlgorithm
impl Send for FireflyAlgorithm
impl Sync for FireflyAlgorithm
impl Unpin for FireflyAlgorithm
impl UnwindSafe for FireflyAlgorithm
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more