optima 0.0.4

An easy to set up and easy optimization and planning toolbox, particularly for robotics.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
extern crate optima;

use std::env;
use optima::robot_modules::robot_preprocessing_module::RobotPreprocessingModule;

fn main () {
    let args: Vec<String> = env::args().collect();
    assert_eq!(args.len(), 2, "Argument must be the given robot's name");

    let robot_name = args[1].as_str();

    RobotPreprocessingModule::preprocess_robot_from_console_input(robot_name).expect("error");
}