diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2025-10-28 14:38:25 +0000 |
|---|---|---|
| committer | gingerBill <gingerBill@users.noreply.github.com> | 2025-10-28 14:38:25 +0000 |
| commit | 842cfee0f3eacbef5fa5f0dbd392a500ebad93ae (patch) | |
| tree | 8400e8366c4f4456a52ab4f5519922038695890a /core/math | |
| parent | d390ae2f97fbfe7fd582574e6db923d6992e9c6a (diff) | |
Change Odin's LICENSE to zlib from BSD 3-clause
This change was made in order to allow things produced with Odin and using Odin's core library, to not require the LICENSE to also be distributed alongside the binary form.
Diffstat (limited to 'core/math')
| -rw-r--r-- | core/math/big/api.odin | 2 | ||||
| -rw-r--r-- | core/math/big/common.odin | 2 | ||||
| -rw-r--r-- | core/math/big/helpers.odin | 2 | ||||
| -rw-r--r-- | core/math/big/internal.odin | 2 | ||||
| -rw-r--r-- | core/math/big/logical.odin | 2 | ||||
| -rw-r--r-- | core/math/big/prime.odin | 2 | ||||
| -rw-r--r-- | core/math/big/private.odin | 2 | ||||
| -rw-r--r-- | core/math/big/public.odin | 2 | ||||
| -rw-r--r-- | core/math/big/radix.odin | 2 | ||||
| -rw-r--r-- | core/math/big/tune.odin | 2 |
10 files changed, 10 insertions, 10 deletions
diff --git a/core/math/big/api.odin b/core/math/big/api.odin index 668afa534..e18a40b30 100644 --- a/core/math/big/api.odin +++ b/core/math/big/api.odin @@ -2,7 +2,7 @@ package math_big /* Copyright 2021 Jeroen van Rijn <nom@duclavier.com>. - Made available under Odin's BSD-3 license. + Made available under Odin's license. This file collects public proc maps and their aliases. */ diff --git a/core/math/big/common.odin b/core/math/big/common.odin index 66a29e715..a1eb4a7fd 100644 --- a/core/math/big/common.odin +++ b/core/math/big/common.odin @@ -2,7 +2,7 @@ package math_big /* Copyright 2021 Jeroen van Rijn <nom@duclavier.com>. - Made available under Odin's BSD-3 license. + Made available under Odin's license. */ import "base:intrinsics" diff --git a/core/math/big/helpers.odin b/core/math/big/helpers.odin index e8dc792c6..b922881b4 100644 --- a/core/math/big/helpers.odin +++ b/core/math/big/helpers.odin @@ -2,7 +2,7 @@ package math_big /* Copyright 2021 Jeroen van Rijn <nom@duclavier.com>. - Made available under Odin's BSD-3 license. + Made available under Odin's license. */ import "base:intrinsics" diff --git a/core/math/big/internal.odin b/core/math/big/internal.odin index 4b76f3b2e..e22ea0ec7 100644 --- a/core/math/big/internal.odin +++ b/core/math/big/internal.odin @@ -2,7 +2,7 @@ package math_big /* Copyright 2021 Jeroen van Rijn <nom@duclavier.com>. - Made available under Odin's BSD-3 license. + Made available under Odin's license. ========================== Low-level routines ========================== diff --git a/core/math/big/logical.odin b/core/math/big/logical.odin index df7744a9a..a600ef823 100644 --- a/core/math/big/logical.odin +++ b/core/math/big/logical.odin @@ -2,7 +2,7 @@ package math_big /* Copyright 2021 Jeroen van Rijn <nom@duclavier.com>. - Made available under Odin's BSD-3 license. + Made available under Odin's license. An arbitrary precision mathematics implementation in Odin. For the theoretical underpinnings, see Knuth's The Art of Computer Programming, Volume 2, section 4.3. diff --git a/core/math/big/prime.odin b/core/math/big/prime.odin index 8efa97174..d7f902fa5 100644 --- a/core/math/big/prime.odin +++ b/core/math/big/prime.odin @@ -2,7 +2,7 @@ package math_big /* Copyright 2021 Jeroen van Rijn <nom@duclavier.com>. - Made available under Odin's BSD-3 license. + Made available under Odin's license. An arbitrary precision mathematics implementation in Odin. For the theoretical underpinnings, see Knuth's The Art of Computer Programming, Volume 2, section 4.3. diff --git a/core/math/big/private.odin b/core/math/big/private.odin index 692b1d088..fb517f0b7 100644 --- a/core/math/big/private.odin +++ b/core/math/big/private.odin @@ -2,7 +2,7 @@ package math_big /* Copyright 2021 Jeroen van Rijn <nom@duclavier.com>. - Made available under Odin's BSD-3 license. + Made available under Odin's license. An arbitrary precision mathematics implementation in Odin. For the theoretical underpinnings, see Knuth's The Art of Computer Programming, Volume 2, section 4.3. diff --git a/core/math/big/public.odin b/core/math/big/public.odin index dfefbc91a..723e2e04a 100644 --- a/core/math/big/public.odin +++ b/core/math/big/public.odin @@ -3,7 +3,7 @@ package math_big /*
Copyright 2021 Jeroen van Rijn <nom@duclavier.com>.
- Made available under Odin's BSD-3 license.
+ Made available under Odin's license.
An arbitrary precision mathematics implementation in Odin.
For the theoretical underpinnings, see Knuth's The Art of Computer Programming, Volume 2, section 4.3.
diff --git a/core/math/big/radix.odin b/core/math/big/radix.odin index bc9ae068d..2bbe593a2 100644 --- a/core/math/big/radix.odin +++ b/core/math/big/radix.odin @@ -2,7 +2,7 @@ package math_big /* Copyright 2021 Jeroen van Rijn <nom@duclavier.com>. - Made available under Odin's BSD-3 license. + Made available under Odin's license. An arbitrary precision mathematics implementation in Odin. For the theoretical underpinnings, see Knuth's The Art of Computer Programming, Volume 2, section 4.3. diff --git a/core/math/big/tune.odin b/core/math/big/tune.odin index 1d24a1325..b2dc9829c 100644 --- a/core/math/big/tune.odin +++ b/core/math/big/tune.odin @@ -3,7 +3,7 @@ package math_big /* Copyright 2021 Jeroen van Rijn <nom@duclavier.com>. - Made available under Odin's BSD-3 license. + Made available under Odin's license. A BigInt implementation in Odin. For the theoretical underpinnings, see Knuth's The Art of Computer Programming, Volume 2, section 4.3. |