You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/math/base/special/expf/lib/expmulti.js
+6-35Lines changed: 6 additions & 35 deletions
Original file line number
Diff line number
Diff line change
@@ -18,46 +18,17 @@
18
18
*
19
19
* ## Notice
20
20
*
21
-
* The following copyrights, licenses, and long comment were part of the original implementation available as part of [Go]{@link https://github.com/golang/go/blob/cb07765045aed5104a3df31507564ac99e6ddce8/src/math/exp.go}, which in turn was based on an implementation available as part of [FreeBSD]{@link https://svnweb.freebsd.org/base/release/9.3.0/lib/msun/src/e_exp.c}. The implementation follows the original, but has been modified for JavaScript.
22
-
*
23
-
* ```text
24
-
* Copyright (c) 2009 The Go Authors. All rights reserved.
25
-
*
26
-
* Redistribution and use in source and binary forms, with or without
27
-
* modification, are permitted provided that the following conditions are
28
-
* met:
29
-
*
30
-
* * Redistributions of source code must retain the above copyright
31
-
* notice, this list of conditions and the following disclaimer.
32
-
* * Redistributions in binary form must reproduce the above
33
-
* copyright notice, this list of conditions and the following disclaimer
34
-
* in the documentation and/or other materials provided with the
35
-
* distribution.
36
-
* * Neither the name of Google Inc. nor the names of its
37
-
* contributors may be used to endorse or promote products derived from
38
-
* this software without specific prior written permission.
39
-
*
40
-
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
41
-
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
42
-
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
43
-
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
44
-
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
45
-
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
46
-
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
47
-
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
48
-
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
49
-
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
50
-
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
51
-
* ```
52
-
*
53
-
* ```text
54
-
* Copyright (C) 2004 by Sun Microsystems, Inc. All rights reserved.
21
+
* The following copyrights, licenses, and long comment were part of the original implementation available as part of{@link https://svnweb.freebsd.org/base/release/12.2.0/lib/msun/src/e_expf.c?view=markup}, The implementation follows the original, but has been modified for JavaScript.
55
22
*
23
+
* e_expf.c -- float version of e_exp.c.
24
+
* Conversion to float by Ian Lance Taylor, Cygnus Support, [email protected].
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/math/base/special/expf/lib/main.js
+10-39Lines changed: 10 additions & 39 deletions
Original file line number
Diff line number
Diff line change
@@ -18,46 +18,17 @@
18
18
*
19
19
* ## Notice
20
20
*
21
-
* The following copyrights, licenses, and long comment were part of the original implementation available as part of [Go]{@link https://github.com/golang/go/blob/cb07765045aed5104a3df31507564ac99e6ddce8/src/math/exp.go}, which in turn was based on an implementation available as part of [FreeBSD]{@link https://svnweb.freebsd.org/base/release/9.3.0/lib/msun/src/e_exp.c}. The implementation follows the original, but has been modified for JavaScript.
22
-
*
23
-
* ```text
24
-
* Copyright (c) 2009 The Go Authors. All rights reserved.
25
-
*
26
-
* Redistribution and use in source and binary forms, with or without
27
-
* modification, are permitted provided that the following conditions are
28
-
* met:
29
-
*
30
-
* * Redistributions of source code must retain the above copyright
31
-
* notice, this list of conditions and the following disclaimer.
32
-
* * Redistributions in binary form must reproduce the above
33
-
* copyright notice, this list of conditions and the following disclaimer
34
-
* in the documentation and/or other materials provided with the
35
-
* distribution.
36
-
* * Neither the name of Google Inc. nor the names of its
37
-
* contributors may be used to endorse or promote products derived from
38
-
* this software without specific prior written permission.
39
-
*
40
-
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
41
-
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
42
-
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
43
-
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
44
-
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
45
-
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
46
-
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
47
-
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
48
-
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
49
-
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
50
-
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
51
-
* ```
52
-
*
53
-
* ```text
54
-
* Copyright (C) 2004 by Sun Microsystems, Inc. All rights reserved.
21
+
* The following copyrights, licenses, and long comment were part of the original implementation available as part of{@link https://svnweb.freebsd.org/base/release/12.2.0/lib/msun/src/e_expf.c?view=markup}, The implementation follows the original, but has been modified for JavaScript.
55
22
*
23
+
* e_expf.c -- float version of e_exp.c.
24
+
* Conversion to float by Ian Lance Taylor, Cygnus Support, [email protected].
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/math/base/special/expf/src/main.c
+58-81Lines changed: 58 additions & 81 deletions
Original file line number
Diff line number
Diff line change
@@ -18,63 +18,35 @@
18
18
*
19
19
* ## Notice
20
20
*
21
-
* * The following copyrights, licenses, and long comment were part of the original implementation available as part of [Go]{@link https://github.com/golang/go/blob/cb07765045aed5104a3df31507564ac99e6ddce8/src/math/exp.go}, which in turn was based on an implementation available as part of [FreeBSD]{@link https://svnweb.freebsd.org/base/release/9.3.0/lib/msun/src/e_exp.c}. The implementation follows the original, but has been modified according to project conventions.
22
-
*
23
-
* ```text
24
-
* Copyright (c) 2009 The Go Authors. All rights reserved.
25
-
*
26
-
* Redistribution and use in source and binary forms, with or without
27
-
* modification, are permitted provided that the following conditions are
28
-
* met:
29
-
*
30
-
* * Redistributions of source code must retain the above copyright
31
-
* notice, this list of conditions and the following disclaimer.
32
-
* * Redistributions in binary form must reproduce the above
33
-
* copyright notice, this list of conditions and the following disclaimer
34
-
* in the documentation and/or other materials provided with the
35
-
* distribution.
36
-
* * Neither the name of Google Inc. nor the names of its
37
-
* contributors may be used to endorse or promote products derived from
38
-
* this software without specific prior written permission.
39
-
*
40
-
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
41
-
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
42
-
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
43
-
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
44
-
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
45
-
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
46
-
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
47
-
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
48
-
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
49
-
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
50
-
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
51
-
* ```
52
-
*
53
-
* ```text
54
-
* Copyright (C) 2004 by Sun Microsystems, Inc. All rights reserved.
21
+
* The following copyrights, licenses, and long comment were part of the original implementation available as part of{@link https://svnweb.freebsd.org/base/release/12.2.0/lib/msun/src/e_expf.c?view=markup}, The implementation follows the original, but has been modified for JavaScript.
55
22
*
23
+
* e_expf.c -- float version of e_exp.c.
24
+
* Conversion to float by Ian Lance Taylor, Cygnus Support, [email protected].
0 commit comments