You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat!: expose exact determinant value (det_exact, det_exact_f64)
- Add `det_exact()` returning `BigRational` via Bareiss elimination
- Add `det_exact_f64()` converting exact result to f64
- Add `LaError::Overflow` for f64 conversion overflow
- Add `#[non_exhaustive]` to `LaError` for future extensibility
- Add shared `validate_finite()` helper; refactor `det_sign_exact()`
- Add `exact_det_3x3` example
- Macro-generate exact tests for D=2..5
- Update README, AGENTS.md, REFERENCES.md, typos.toml
BREAKING CHANGE: `LaError` is now `#[non_exhaustive]` and has a new
`Overflow` variant. Exhaustive matches on `LaError` must add a wildcard arm.
Copy file name to clipboardExpand all lines: CHANGELOG.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
8
+
## [Unreleased]
9
+
10
+
### Added
11
+
12
+
- Expose exact determinant value (det_exact, det_exact_f64) [`b1a676c`](https://github.com/acgetchell/la-stack/commit/b1a676c8bd8fde98eb9915a9d2e528f1225f46bf)
13
+
8
14
## [0.2.2] - 2026-03-11
9
15
10
16
### Added
@@ -16,6 +22,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
16
22
17
23
- Bump actions/setup-node from 6.2.0 to 6.3.0 [`0f2fc34`](https://github.com/acgetchell/la-stack/commit/0f2fc348b06d72476610821c77945c265207ad05)
18
24
- Bump taiki-e/install-action from 2.68.20 to 2.68.22 [`c3e49bd`](https://github.com/acgetchell/la-stack/commit/c3e49bdd75e3ca26117942da243dac1ee59eb7a1)
0 commit comments