Peter Occil
Peter Occil
With respect to hash tables, hash functions, and security, I am aware of Reini Urban's (@rurban) comments at the [`rurban/smhasher` repository](https://github.com/rurban/smhasher#security), which may be relevant.
Thank you for your comment. In the meantime, you can also do `cbor.Untag().IsNumber()` to determine whether a CBOR object stores a number (or `cbor.Type == CBORType.Integer || cbor.Type==CBORType.FloatingPoint`). You can...
`EContext`s store precisions in digits without specifying the base (such as binary or decimal). The predetermined `Decimal` contexts should not be used in `EFloat` methods (except those that return an...
`ERounding.None` hasn't been deprecated and is still a supported rounding mode.
It appears that yours is a common issue: EDecimal's Divide method with EContext.None behaves like [EDecimal's Divide method with no context](https://github.com/peteroupc/Numbers/blob/master/Numbers/PeterO/Numbers/EDecimal.cs#L2821); see https://peteroupc.github.io/Numbers/docs/PeterO.Numbers.EDecimal.html. It returns NaN "if the result can't...
Repeating this issue. > This library includes an ERational class for arbitrary-precision rational numbers, but [as of Jan. 18, 2016] doesn't include a way to create an ERational from a...
I would do so, but I don't know whether and how I should do so, in the case of EDecimal; see these issues for more information: - https://github.com/MicrosoftDocs/visualstudio-docs/issues/3728 - https://github.com/dotnet/dotnet-api-docs/issues/2937
I have made numerous updates to this document recently, with more algorithms and discussion. Letting them know: @lmendo.
I have added the following open questions to the Bernoulli Factory Algorithms page. Any answers to these questions will greatly improve the article. - Is there a simple Bernoulli factory...
Thank you for your response. In the meantime, I found a rational interval arithmetic described in Daumas, M., Lester, D., Muñoz, C., "Verified Real Number Calculations: A Library for Interval...