Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ fn main() raises:
print(area) # 28.2743334
```

The Github repo of the project is at [https://github.com/forFudan/DeciMojo](https://github.com/forFudan/DeciMojo).
The Github repo of the project is at [https://github.com/forFudan/decimojo](https://github.com/forFudan/decimojo).

## Examples

Expand Down Expand Up @@ -250,7 +250,7 @@ Rome wasn't built in a day. DeciMojo is currently under active development, posi

### Make it Fast ⏳ (IN PROGRESS & FUTURE WORK)

- Core arithmetic operations (+, -, *, /) have been optimized for performance, with comprehensive benchmarking reports available comparing performance against Python's built-in decimal module ([PR#16](https://github.com/forFudan/DeciMojo/pull/16), [PR#20](https://github.com/forFudan/DeciMojo/pull/20), [PR#21](https://github.com/forFudan/DeciMojo/pull/21)).
- Core arithmetic operations (+, -, *, /) have been optimized for performance, with comprehensive benchmarking reports available comparing performance against Python's built-in decimal module ([PR#16](https://github.com/forFudan/decimojo/pull/16), [PR#20](https://github.com/forFudan/decimojo/pull/20), [PR#21](https://github.com/forFudan/decimojo/pull/21)).
- Regular benchmarking against Python's `decimal` module (see `bench/` folder)
- Performance optimization for other functions is progressing gradually but is not currently a priority

Expand All @@ -270,7 +270,7 @@ If you find DeciMojo useful for your research, consider listing it in your citat
author = {Zhu, Yuhao},
year = {2025},
title = {DeciMojo: A fixed-point decimal arithmetic library in Mojo},
url = {https://github.com/forFudan/DeciMojo},
url = {https://github.com/forFudan/decimojo},
version = {0.1.0},
note = {Computer Software}
}
Expand Down
6 changes: 3 additions & 3 deletions docs/readme_zht.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ fn main() raises:
print(area) # 3622.7141989037464
```

此項目的 Github 倉庫位於 [https://github.com/forFudan/DeciMojo](https://github.com/forFudan/DeciMojo)。
此項目的 Github 倉庫位於 [https://github.com/forFudan/decimojo](https://github.com/forFudan/decimojo)。

## 示例

Expand Down Expand Up @@ -254,7 +254,7 @@ DeciMojo 結合了 "Decimal" 和 "Mojo" 兩詞,反映了其目的(小數算

### 讓它快速 ⏳(進行中 & 未來工作)

- 核心算術運算(+, -, *, /)已針對性能進行了優化,並提供了與 Python 内置 decimal 模塊進行比較的全面基準測試報告([PR#16](https://github.com/forFudan/DeciMojo/pull/16)、[PR#20](https://github.com/forFudan/DeciMojo/pull/20)、[PR#21](https://github.com/forFudan/DeciMojo/pull/21))。
- 核心算術運算(+, -, *, /)已針對性能進行了優化,並提供了與 Python 内置 decimal 模塊進行比較的全面基準測試報告([PR#16](https://github.com/forFudan/decimojo/pull/16)、[PR#20](https://github.com/forFudan/decimojo/pull/20)、[PR#21](https://github.com/forFudan/decimojo/pull/21))。
- 定期對比 Python 的 `decimal` 模塊進行基準測試(見 `bench/` 文件夾)
- 其他函數的性能優化正緩步進行,但不是當前優先事項

Expand All @@ -274,7 +274,7 @@ DeciMojo 結合了 "Decimal" 和 "Mojo" 兩詞,反映了其目的(小數算
author = {Zhu, Yuhao},
year = {2025},
title = {DeciMojo: A fixed-point decimal arithmetic library in Mojo},
url = {https://github.com/forFudan/DeciMojo},
url = {https://github.com/forFudan/decimojo},
version = {0.1.0},
note = {Computer Software}
}
Expand Down
2 changes: 1 addition & 1 deletion src/decimojo/__init__.mojo
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ===----------------------------------------------------------------------=== #
# DeciMojo: A fixed-point decimal arithmetic library in Mojo
# https://github.com/forFudan/DeciMojo
# https://github.com/forFudan/decimojo
#
# Copyright 2025 Yuhao Zhu
#
Expand Down
2 changes: 1 addition & 1 deletion src/decimojo/arithmetics.mojo
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ===----------------------------------------------------------------------=== #
# DeciMojo: A fixed-point decimal arithmetic library in Mojo
# https://github.com/forFudan/DeciMojo
# https://github.com/forFudan/decimojo
#
# Copyright 2025 Yuhao Zhu
#
Expand Down
2 changes: 1 addition & 1 deletion src/decimojo/comparison.mojo
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ===----------------------------------------------------------------------=== #
# DeciMojo: A fixed-point decimal arithmetic library in Mojo
# https://github.com/forFudan/DeciMojo
# https://github.com/forFudan/decimojo
#
# Copyright 2025 Yuhao Zhu
#
Expand Down
2 changes: 1 addition & 1 deletion src/decimojo/decimal.mojo
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ===----------------------------------------------------------------------=== #
# DeciMojo: A fixed-point decimal arithmetic library in Mojo
# https://github.com/forFudan/DeciMojo
# https://github.com/forFudan/decimojo
#
# Copyright 2025 Yuhao Zhu
#
Expand Down
2 changes: 1 addition & 1 deletion src/decimojo/exponential.mojo
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ===----------------------------------------------------------------------=== #
# DeciMojo: A fixed-point decimal arithmetic library in Mojo
# https://github.com/forFudan/DeciMojo
# https://github.com/forFudan/decimojo
#
# Copyright 2025 Yuhao Zhu
#
Expand Down
2 changes: 1 addition & 1 deletion src/decimojo/prelude.mojo
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ===----------------------------------------------------------------------=== #
# DeciMojo: A fixed-point decimal arithmetic library in Mojo
# https://github.com/forFudan/DeciMojo
# https://github.com/forFudan/decimojo
#
# Copyright 2025 Yuhao Zhu
#
Expand Down
2 changes: 1 addition & 1 deletion src/decimojo/rounding.mojo
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ===----------------------------------------------------------------------=== #
# DeciMojo: A fixed-point decimal arithmetic library in Mojo
# https://github.com/forFudan/DeciMojo
# https://github.com/forFudan/decimojo
#
# Copyright 2025 Yuhao Zhu
#
Expand Down
2 changes: 1 addition & 1 deletion src/decimojo/rounding_mode.mojo
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ===----------------------------------------------------------------------=== #
# DeciMojo: A fixed-point decimal arithmetic library in Mojo
# https://github.com/forFudan/DeciMojo
# https://github.com/forFudan/decimojo
#
# Copyright 2025 Yuhao Zhu
#
Expand Down
2 changes: 1 addition & 1 deletion src/decimojo/special.mojo
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ===----------------------------------------------------------------------=== #
# DeciMojo: A fixed-point decimal arithmetic library in Mojo
# https://github.com/forFudan/DeciMojo
# https://github.com/forFudan/decimojo
#
# Copyright 2025 Yuhao Zhu
#
Expand Down
2 changes: 1 addition & 1 deletion src/decimojo/utility.mojo
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ===----------------------------------------------------------------------=== #
# DeciMojo: A fixed-point decimal arithmetic library in Mojo
# https://github.com/forFudan/DeciMojo
# https://github.com/forFudan/decimojo
#
# Copyright 2025 Yuhao Zhu
#
Expand Down
Loading