Skip to content

Commit c3730c6

Browse files
committed
release/0.10.1
1 parent 577c6ba commit c3730c6

6 files changed

Lines changed: 566 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# changelog
22

3+
## 0.10.1 (2025-01-31)
4+
5+
### added
6+
- extend qm test suite
7+
38
## 0.10.0 (2025-12-10)
49

510
### changed

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "geonum"
3-
version = "0.10.0"
3+
version = "0.10.1"
44
edition = "2021"
55
repository = "https://github.com/mxfactorial/geonum"
66
description = "geometric number library supporting unlimited dimensions with O(1) complexity"

tests/arithmetic_test.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ fn it_demonstrates_interference_pattern_for_various_angles() {
200200
// opposite: θ = π, cos(π) = -1 (destructive)
201201
let b_opp = Geonum::new(4.0, 1.0, 1.0); // π
202202
let opp_result = a + b_opp;
203-
let opp_expected = (3.0_f64.powi(2) + 4.0_f64.powi(2) + 2.0 * 3.0 * 4.0 * (-1.0)).sqrt();
203+
let opp_expected = (3.0_f64.powi(2) + 4.0_f64.powi(2) - 2.0 * 3.0 * 4.0).sqrt();
204204
assert!(
205205
(opp_result.mag - opp_expected).abs() < EPSILON,
206206
"θ=π: cos(π)=-1, destructive: |3-4|=1, got {}",

tests/economics_test.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -545,7 +545,7 @@ fn it_analyzes_small_business_cashflow_after_rate_change() {
545545
let rate_increase = 0.02; // 2% rate increase
546546

547547
// create sample business data for analysis
548-
let business_data = vec![
548+
let business_data = [
549549
// (size, industry, cash_reserves, debt_ratio, monthly_cashflow)
550550
("micro", "retail", "limited", "high", 15000.0),
551551
("micro", "services", "critical", "high", 8000.0),

0 commit comments

Comments
 (0)