Skip to content

Tags: gmolluso/swift-numerics

Tags

0.1.0

Toggle 0.1.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request apple#172 from stephentyrone/float16-availability

Adjust Float16 availability for Swift 5.4 toolchains.

0.0.8

Toggle 0.0.8's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request apple#157 from stephentyrone/float16-availability-…

…redux

Swap availability for #if check on Float16.

0.0.7

Toggle 0.0.7's commit message
Re-tag 0.0.7 after removing f16 muladd.

0.0.6

Toggle 0.0.6's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request apple#105 from compnerd/cmake

build: add initial CMake based build system

0.0.5

Toggle 0.0.5's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request apple#97 from stephentyrone/prefix-modules

Enable name lookup for modules by suffixing `Module` when needed to break ambiguity.

In particular, the following module renames are applied:

- Real -> RealModule
- Complex -> ComplexModule

This is a source-breaking change, if you currently directly import these modules. (sorry!)
The fix is to either import Numerics instead, or to use the new, suffixed, names. The good news is that fixing this should require only a straightforward search-and-replace for anyone affected.

0.0.4

Toggle 0.0.4's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request apple#96 from benrimmington/complex-unkeyed

[Complex] Encode and decode using unkeyedContainer

0.0.3

Toggle 0.0.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request apple#83 from stephentyrone/pown

Initial pass at pow(Self, Int) for Float and Double

0.0.2

Toggle 0.0.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request apple#78 from stephentyrone/lengthSquared

Rename unsafeLengthSquared -> lengthSquared

0.0.1

Toggle 0.0.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request apple#74 from ole/delete-alltests

Delete RealTests.allTests

0.0.0

Toggle 0.0.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request apple#69 from stephentyrone/cbrt

Defer to libm cbrt for root(x,3).