Skip to content

Commit 5160d35

Browse files
committed
Add ndarray and nalgebra
1 parent 180417d commit 5160d35

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

Cargo.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,12 @@ regex = "=1.2.1"
7171
# staticアイテムの遅延初期化
7272
lazy_static = "=1.3.0"
7373

74+
# 多次元配列
75+
ndarray = "=0.12.1"
76+
77+
# 線形代数
78+
nalgebra = "=0.18.0"
79+
7480
# 代替ヒープアロケータ。条件によってはシステムアロケータより速いことも
7581
jemallocator = "=0.3.2"
7682
jemalloc-ctl = "=0.3.3"

src/main.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ fn main() -> UnitResult {
1919
// run_num();
2020
run_rand_family()?;
2121
run_regex()?;
22+
// run_ndarray();
23+
// run_nalgebra();
2224
Ok(())
2325
}
2426

0 commit comments

Comments
 (0)