#genetic-algorithm #compact #optimization #parameters #real #problem #machine-coded

mccga

Implements the machine-coded compact genetic algorithm (MCCGA)

6 releases

0.1.5 Sep 28, 2023
0.1.4 Aug 17, 2023

#802 in Algorithms

39 downloads per month

MIT license

19KB
417 lines

mccga.rs

Machine-coded compact genetic algorithm in Rust

In-short

The package implements the Machine-coded compact genetic algorithm defined in

Satman, M. H. & Akadal, E. (2020). Machine Coded Compact Genetic Algorithms for Real Parameter Optimization Problems . Alphanumeric Journal , 8 (1) , 43-58 . DOI: 10.17093/alphanumeric.576919 Link

Example

Suppose that the objective function is to minimize

fn f(x: &Vec<f64>) -> f64 {
    return (x[0] - 3.14159265).powf(2.0) + (x[1] - 2.71828).powf(2.0);
}

so the package allows to type

let mins: Vec<f64> = vec![-10000.0_f64; 2];
let maxs: Vec<f64> = vec![10000.0_f64; 2];

let result = mccga(f, &mins, &maxs, 0.001, 100000);

to minimize the objective function where result is a 2-element vector. One can test the result using

assert!(isequal(&result[0], 3.14159265, 0.001));
assert!(isequal(&result[1], 2.71828, 0.001)); 

Other implementations

Dependencies

~310KB