We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47f309a commit 7d3c6e3Copy full SHA for 7d3c6e3
Cargo.toml
@@ -48,7 +48,6 @@ defmac = "0.2"
48
quickcheck = { version = "0.7.2", default-features = false }
49
rawpointer = "0.1"
50
approx = "0.3"
51
-noisy_float = "0.1.8"
52
53
[features]
54
# Enable blas usage
tests/numeric.rs
@@ -17,12 +17,6 @@ fn test_mean_with_empty_array_of_floats() {
17
assert!(a.mean().is_none());
18
}
19
20
-#[test]
21
-fn test_mean_with_empty_array_of_noisy_floats() {
22
- let a: Array1<N64> = array![];
23
- assert!(a.mean().is_none());
24
-}
25
-
26
#[test]
27
fn test_mean_with_array_of_floats() {
28
let a: Array1<f64> = array![
0 commit comments