Skip to content

Commit ba6419b

Browse files
authored
Merge pull request #12 from RLado/generics
Generics support
2 parents 4e381bb + e036d24 commit ba6419b

File tree

8 files changed

+514
-252
lines changed

8 files changed

+514
-252
lines changed

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ keywords:
1919
- math
2020
- rust
2121
license: MIT
22-
version: 1.1.0
23-
date-released: '2025-02-20'
22+
version: 1.2.0
23+
date-released: '2025-03-16'

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rsparse"
3-
version = "1.1.0"
3+
version = "1.2.0"
44
authors = ["Ricard Lado"]
55

66
description = "A Rust library for solving sparse linear systems using direct methods."

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ A Rust library for solving sparse linear systems using direct methods.
1212
- Triplet matrix (`Trpl`)
1313

1414
## Features
15-
- Convert from dense `[Vec<f64>]` or `Vec<Vec<64>>` matrix to CSC sparse matrix `Sprs`
16-
- Convert from sparse to dense `Vec<Vec<f64>>`
15+
- Convert from dense `[Vec<T>]` or `Vec<Vec<T>>` matrix to CSC sparse matrix `Sprs`
16+
- Convert from sparse to dense `Vec<Vec<T>>`
1717
- Convert from a triplet format matrix `Trpl` to CSC `Sprs`
1818
- Sparse matrix addition [C=A+B]
1919
- Sparse matrix multiplication [C=A*B]

0 commit comments

Comments
 (0)