Skip to content

Commit 10092df

Browse files
committed
Auto-generated commit
1 parent 5612f25 commit 10092df

File tree

5 files changed

+27
-26
lines changed

5 files changed

+27
-26
lines changed

Diff for: LICENSE

+27-22
Original file line numberDiff line numberDiff line change
@@ -260,6 +260,29 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
260260
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
261261
SOFTWARE.
262262

263+
* Faddeeva <http://ab-initio.mit.edu/wiki/index.php/Faddeeva_Package#License>
264+
265+
Copyright (c) 2012 Massachusetts Institute of Technology
266+
267+
Permission is hereby granted, free of charge, to any person obtaining
268+
a copy of this software and associated documentation files (the
269+
"Software"), to deal in the Software without restriction, including
270+
without limitation the rights to use, copy, modify, merge, publish,
271+
distribute, sublicense, and/or sell copies of the Software, and to
272+
permit persons to whom the Software is furnished to do so, subject to
273+
the following conditions:
274+
275+
The above copyright notice and this permission notice shall be
276+
included in all copies or substantial portions of the Software.
277+
278+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
279+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
280+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
281+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
282+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
283+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
284+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
285+
263286
* Go <https://raw.githubusercontent.com/golang/go/master/LICENSE>
264287

265288
Copyright (c) 2009 The Go Authors. All rights reserved.
@@ -294,28 +317,10 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
294317

295318
Public domain.
296319

297-
* Faddeeva <http://ab-initio.mit.edu/wiki/index.php/Faddeeva_Package#License>
298-
299-
Copyright (c) 2012 Massachusetts Institute of Technology
300-
301-
Permission is hereby granted, free of charge, to any person obtaining
302-
a copy of this software and associated documentation files (the
303-
"Software"), to deal in the Software without restriction, including
304-
without limitation the rights to use, copy, modify, merge, publish,
305-
distribute, sublicense, and/or sell copies of the Software, and to
306-
permit persons to whom the Software is furnished to do so, subject to
307-
the following conditions:
308-
309-
The above copyright notice and this permission notice shall be
310-
included in all copies or substantial portions of the Software.
311-
312-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
313-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
314-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
315-
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
316-
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
317-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
318-
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
320+
Developed at SunPro, a Sun Microsystems, Inc. business.
321+
Permission to use, copy, modify, and distribute this
322+
software is freely granted, provided that this notice
323+
is preserved.
319324
Apache License
320325
Version 2.0, January 2004
321326
http://www.apache.org/licenses/

Diff for: base/tools/evalpoly/lib/factory.js

-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ var evalpoly = require( './main.js' );
3535
*
3636
* [horners-method]: https://en.wikipedia.org/wiki/Horner%27s_method
3737
*
38-
*
3938
* @param {NumericArray} c - polynomial coefficients sorted in ascending degree
4039
* @returns {Function} function for evaluating a polynomial
4140
*

Diff for: base/tools/evalpoly/lib/main.js

-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
*
3030
* [horners-method]: https://en.wikipedia.org/wiki/Horner%27s_method
3131
*
32-
*
3332
* @param {NumericArray} c - polynomial coefficients sorted in ascending degree
3433
* @param {number} x - value at which to evaluate the polynomial
3534
* @returns {number} evaluated polynomial

Diff for: base/tools/evalrational/lib/factory.js

-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ var evalrational = require( './main.js' );
3535
*
3636
* [horners-method]: https://en.wikipedia.org/wiki/Horner%27s_method
3737
*
38-
*
3938
* @param {NumericArray} P - numerator polynomial coefficients sorted in ascending degree
4039
* @param {NumericArray} Q - denominator polynomial coefficients sorted in ascending degree
4140
* @returns {Function} function for evaluating a rational function

Diff for: base/tools/evalrational/lib/main.js

-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ var abs = require( './../../../../base/special/abs' );
4848
*
4949
* [horners-method]: https://en.wikipedia.org/wiki/Horner%27s_method
5050
*
51-
*
5251
* @param {NumericArray} P - numerator polynomial coefficients sorted in ascending degree
5352
* @param {NumericArray} Q - denominator polynomial coefficients sorted in ascending degree
5453
* @param {number} x - value at which to evaluate the rational function

0 commit comments

Comments
 (0)