Skip to content

Commit 06d8b27

Browse files
authored
Merge pull request #26 from SingleRust/feature-dev-random-svd
Version bump & additional svdlib export
2 parents 08367c6 + 5d0e0fb commit 06d8b27

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "single_algebra"
3-
version = "0.3.0-alpha.0"
3+
version = "0.3.0-alpha.1"
44
edition = "2021"
55
license-file = "LICENSE.md"
66
description = "A linear algebra convenience library for the single-rust library. Can be used externally as well."

src/dimred/pca/mod.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,11 @@ mod sparse;
33

44
mod sparse_masked;
55

6-
use single_svdlib::randomized::PowerIterationNormalizer;
76
pub use sparse::SparsePCA;
87
pub use sparse::SparsePCABuilder;
98
pub use sparse_masked::MaskedSparsePCA;
109
pub use sparse_masked::MaskedSparsePCABuilder;
11-
10+
pub use single_svdlib::randomized::PowerIterationNormalizer;
1211

1312
#[derive(Debug, Clone, Copy, PartialEq)]
1413
pub enum SVDMethod {

0 commit comments

Comments
 (0)