A Rust project integrating Copper for real-time control and Totsu for convex optimization.
- Real-time control with Copper
- Convex optimization using Totsu
- Written in safe, modern Rust
- Rust toolchain (stable)
cargo
package manager
Add to your Cargo.toml
:
[dependencies]
copper = "0.7"
totsu = "0.7"
cargo build --release
cargo run --release
use copper::prelude::*;
use totsu::prelude::*;
// Your real-time control and optimization logic here
MIT