Crates.io | mccga |
lib.rs | mccga |
version | 0.1.5 |
source | src |
created_at | 2023-08-15 20:04:56.475206 |
updated_at | 2023-09-28 16:45:50.581111 |
description | Implements the machine-coded compact genetic algorithm (MCCGA) |
homepage | |
repository | https://github.com/jbytecode/mccga.rs |
max_upload_size | |
id | 945268 |
size | 20,445 |
Machine-coded compact genetic algorithm in Rust
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
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));