(a: &Array<f32>)
| 7 | } |
| 8 | |
| 9 | fn normalise(a: &Array<f32>) -> Array<f32> { |
| 10 | a / (max_all(&abs(a)).0 as f32) |
| 11 | } |
| 12 | |
| 13 | fn conways_game_of_life() { |
| 14 | let h_kernel = [1.0, 1.0, 1.0, 1.0, 0.0, 1.0, 1.0, 1.0, 1.0]; |
no outgoing calls
no test coverage detected