Skip to content

Commit 083288e

Browse files
author
Ian
committed
added statistics part from single-algebra
1 parent 84c092f commit 083288e

13 files changed

Lines changed: 1556 additions & 16 deletions

File tree

Cargo.lock

Lines changed: 396 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
[package]
2-
name = "single-utilities"
2+
name = "single-statistics"
33
version = "0.1.0"
44
edition = "2024"
55

66
[dependencies]
7+
anyhow = "1.0.98"
8+
nalgebra-sparse = "0.10.0"
9+
num-traits = "0.2.19"
10+
rayon = "1.10.0"
11+
single-utilities = "0.3.0"
12+
statrs = "0.18.0"
13+
14+
[dev-dependencies]
15+
approx = "0.5.1"

LICENSE.md

Whitespace-only changes.

README.md

Whitespace-only changes.

src/lib.rs

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1 @@
1-
pub fn add(left: u64, right: u64) -> u64 {
2-
left + right
3-
}
4-
5-
#[cfg(test)]
6-
mod tests {
7-
use super::*;
8-
9-
#[test]
10-
fn it_works() {
11-
let result = add(2, 2);
12-
assert_eq!(result, 4);
13-
}
14-
}
1+
pub mod testing;

0 commit comments

Comments
 (0)