()
| 22 | |
| 23 | #[test] |
| 24 | fn test_get_weights_ffd() { |
| 25 | let weights = get_weights_ffd(0.9, 1e-3, 100); |
| 26 | assert_eq!(weights.len(), 12); |
| 27 | assert_eq!(*weights.last().unwrap(), 1.0); |
| 28 | } |
| 29 | |
| 30 | #[test] |
| 31 | fn test_frac_diff() { |
nothing calls this directly
no test coverage detected