remove script/cargo.py
[liba.git] / tests / pid_neuro.rs
blob7d2ce02d759fa02e2e018b89f215acfed4fa72bf
1 #[test]
2 fn pid_neuro() {
3     let mut pid = liba::pid_neuro::new();
4     pid.set_kpid(10.0, 1.0, 0.1, 1.0).set_wpid(1.0, 0.0, 0.0);
5     std::println!("{}", pid.inc(1.0, 0.0));
6     pid.zero();