optimization_engine 0.4.0-alpha

A pure Rust framework for embedded nonconvex optimization. Ideal for robotics!
Documentation
#! /bin/bash
set -euxo pipefail

main() {
    # Run Rust tests
    # ------------------------------------
    cargo test --target $TARGET



    # Run Python tests
    # ------------------------------------

    # Create virtual environment
    cd open-codegen
    export PYTHONPATH=.
    virtualenv -p python$PYTHON_VERSION venv
    
    # activate venv
    source venv/bin/activate
    
    # install opengen
    python setup.py install
    
    # run opengen main.py
    cd opengen
    export PYTHONPATH=.
    python -W ignore test/test.py -v
}

main