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
extern crate optima;

use optima::robot_modules::robot_preprocessing_module::RobotPreprocessingModule;

fn main() {
    RobotPreprocessingModule::preprocess_all_robots_from_console_input().expect("error");
}