Skip to content

Commit

Permalink
Further README adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
tsutomi committed Jul 7, 2024
1 parent 8e965cb commit d2611aa
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
[![NuGet](https://img.shields.io/nuget/v/dmath.svg?label=dmath&logo=nuget)](https://www.nuget.org/packages/dmath/) ![NuGet Downloads](https://img.shields.io/nuget/dt/dmath?logo=nuget&label=downloads)
[![NuGet](https://img.shields.io/nuget/v/dmath.svg?label=dmath&logo=nuget)](https://www.nuget.org/packages/dmath/) ![NuGet Downloads](https://img.shields.io/nuget/dt/dmath?logo=nuget&label=downloads) ![Coverage](https://img.shields.io/codecov/c/github/deveel/deveel-math?logo=codecov)



# Deveel Math
Expand Down Expand Up @@ -81,6 +82,18 @@ If you want to contribute to the development of this library, you can fork the r

Please make sure to follow the coding style and conventions used in the project, and to provide a clear description of the changes you are proposing.

### Future Development

#### BigInteger Porting

When the library was first ported from Java, the `BigInteger` class was not included in the porting process, as the `System.Numerics.BigInteger` class was not available in the .NET framework yet, and thus we had to port also the `BigInteger` class from the Harmony framework.

Now that the `System.Numerics.BigInteger` class is available in the .NET framework, we can consider to remove the `BigInteger` class from the library, and to use the native class instead.

#### Performance Benchmarks

We should consider to add performance benchmarks to the library, to measure the performance of the arithmetic operations on big numbers and decimals, and to compare the performance of the library with the native .NET classes.

## License

The library is released under the terms of the [Apache License 2.0](LICENSE), and it is provided as-is without any warranty or support.

0 comments on commit d2611aa

Please sign in to comment.