diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2025-11-04 13:53:13 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-11-04 13:53:13 +0000 |
| commit | e5153a937b95f4583dfac2c22d010a764bf2f1a8 (patch) | |
| tree | c9dc3a80eeff8216f42d9760393e1753cf037820 /core/math | |
| parent | fd995050dd80df6bea156ce59b594c8a6d1e677a (diff) | |
| parent | 4bdce9bf0aba062d39e838bdf945bca5984f3c85 (diff) | |
Merge pull request #5859 from odin-lang/bill/change-licensedev-2025-11
Change Odin's LICENSE to zlib from BSD 3-clause
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. |