Skip to content

Commit 3c84adb

Browse files
committed
Add LICENSE.md
1 parent 0ed21cf commit 3c84adb

File tree

2 files changed

+42
-20
lines changed

2 files changed

+42
-20
lines changed

LICENSE.md

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
Copyright (c) 2003-2024 Ed Schofield
2+
All rights reserved.
3+
4+
Redistribution and use in source and binary forms, with or without
5+
modification, are permitted provided that the following conditions are met:
6+
7+
a. Redistributions of source code must retain the above copyright notice,
8+
this list of conditions and the following disclaimer.
9+
b. Redistributions in binary form must reproduce the above copyright
10+
notice, this list of conditions and the following disclaimer in the
11+
documentation and/or other materials provided with the distribution.
12+
c. Neither the name of the Enthought nor the names of its contributors
13+
may be used to endorse or promote products derived from this software
14+
without specific prior written permission.
15+
16+
17+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
18+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20+
ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR
21+
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
23+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
24+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25+
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26+
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
27+
DAMAGE.
28+

tests/test_maxentropy.py

+14-20
Original file line numberDiff line numberDiff line change
@@ -4,31 +4,25 @@
44
Test functions for maximum entropy module.
55
"""
66

7-
from numpy.testing import assert_almost_equal, TestCase, run_module_suite
8-
from numpy import arange, log, exp, ones
9-
from scipy.maxentropy.maxentropy import logsumexp
7+
from numpy import arange, log, exp, ones, isclose
8+
from scipy_maxentropy import logsumexp
109

1110

12-
class TestMaxentropy(TestCase):
11+
def test_logsumexp(self):
1312
"""Test whether logsumexp() function correctly handles large
1413
inputs.
1514
"""
1615

17-
def test_logsumexp(self):
18-
a = arange(200)
19-
desired = log(sum(exp(a)))
20-
assert_almost_equal(logsumexp(a), desired)
16+
a = arange(200)
17+
desired = log(sum(exp(a)))
18+
assert isclose(logsumexp(a), desired)
2119

22-
# Now test with large numbers
23-
b = [1000, 1000]
24-
desired = 1000.0 + log(2.0)
25-
assert_almost_equal(logsumexp(b), desired)
20+
# Now test with large numbers
21+
b = [1000, 1000]
22+
desired = 1000.0 + log(2.0)
23+
assert isclose(logsumexp(b), desired)
2624

27-
n = 1000
28-
b = ones(n) * 10000
29-
desired = 10000.0 + log(n)
30-
assert_almost_equal(logsumexp(b), desired)
31-
32-
33-
if __name__ == "__main__":
34-
run_module_suite()
25+
n = 1000
26+
b = ones(n) * 10000
27+
desired = 10000.0 + log(n)
28+
assert isclose(logsumexp(b), desired)

0 commit comments

Comments
 (0)