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 4bb6a53 commit 90c2c35Copy full SHA for 90c2c35
Cargo.toml
@@ -28,6 +28,7 @@ num-traits = "0.2"
28
cauchy = "0.2.1"
29
num-complex = "0.2.1"
30
rand = "0.5"
31
+ndarray-rand = "0.11"
32
33
[dependencies.ndarray]
34
version = "0.13"
@@ -51,7 +52,6 @@ optional = true
51
52
[dev-dependencies]
53
paste = "0.1"
54
criterion = "0.3"
-ndarray-rand = "0.11"
55
56
[[bench]]
57
name = "eigh"
src/lobpcg/lobpcg.rs
@@ -11,6 +11,7 @@ use ndarray::OwnedRepr;
11
use num_traits::NumCast;
12
13
/// Find largest or smallest eigenvalues
14
+#[derive(Debug, Clone)]
15
pub enum Order {
16
Largest,
17
Smallest,
0 commit comments