ka 0.1.3

Ka benchmarking functions to use for optimization algorithms
Documentation
1
2
3
4
5
6
7
8
9
// Import the benchmark library
use ka::*;

fn main() {
    // Print some info about the ackley function
    println!("Minmimum: {:?}", Ackley::MINIMUM);
    println!("Minmizer: {:?}", Ackley::minimizer(5));
    println!("Minmizer: {:?}", single::Ackley::BOUNDS);
}