math NOTICE.txt 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. Apache Commons Math
  2. Copyright 2001-2014 The Apache Software Foundation
  3. This product includes software developed at
  4. The Apache Software Foundation (http://www.apache.org/).
  5. ===============================================================================
  6. The inverse error function implementation in the Erf class is based on CUDA
  7. code developed by Mike Giles, Oxford-Man Institute of Quantitative Finance,
  8. and published in GPU Computing Gems, volume 2, 2010.
  9. ===============================================================================
  10. The BracketFinder (package org.apache.commons.math3.optimization.univariate)
  11. and PowellOptimizer (package org.apache.commons.math3.optimization.general)
  12. classes are based on the Python code in module "optimize.py" (version 0.5)
  13. developed by Travis E. Oliphant for the SciPy library (http://www.scipy.org/)
  14. Copyright © 2003-2009 SciPy Developers.
  15. ===============================================================================
  16. The LinearConstraint, LinearObjectiveFunction, LinearOptimizer,
  17. RelationShip, SimplexSolver and SimplexTableau classes in package
  18. org.apache.commons.math3.optimization.linear include software developed by
  19. Benjamin McCann (http://www.benmccann.com) and distributed with
  20. the following copyright: Copyright 2009 Google Inc.
  21. ===============================================================================
  22. This product includes software developed by the
  23. University of Chicago, as Operator of Argonne National
  24. Laboratory.
  25. The LevenbergMarquardtOptimizer class in package
  26. org.apache.commons.math3.optimization.general includes software
  27. translated from the lmder, lmpar and qrsolv Fortran routines
  28. from the Minpack package
  29. Minpack Copyright Notice (1999) University of Chicago. All rights reserved
  30. ===============================================================================
  31. The GraggBulirschStoerIntegrator class in package
  32. org.apache.commons.math3.ode.nonstiff includes software translated
  33. from the odex Fortran routine developed by E. Hairer and G. Wanner.
  34. Original source copyright:
  35. Copyright (c) 2004, Ernst Hairer
  36. ===============================================================================
  37. The EigenDecompositionImpl class in package
  38. org.apache.commons.math3.linear includes software translated
  39. from some LAPACK Fortran routines. Original source copyright:
  40. Copyright (c) 1992-2008 The University of Tennessee. All rights reserved.
  41. ===============================================================================
  42. The MersenneTwister class in package org.apache.commons.math3.random
  43. includes software translated from the 2002-01-26 version of
  44. the Mersenne-Twister generator written in C by Makoto Matsumoto and Takuji
  45. Nishimura. Original source copyright:
  46. Copyright (C) 1997 - 2002, Makoto Matsumoto and Takuji Nishimura,
  47. All rights reserved
  48. ===============================================================================
  49. The LocalizedFormatsTest class in the unit tests is an adapted version of
  50. the OrekitMessagesTest class from the orekit library distributed under the
  51. terms of the Apache 2 licence. Original source copyright:
  52. Copyright 2010 CS Systèmes d'Information
  53. ===============================================================================
  54. The HermiteInterpolator class and its corresponding test have been imported from
  55. the orekit library distributed under the terms of the Apache 2 licence. Original
  56. source copyright:
  57. Copyright 2010-2012 CS Systèmes d'Information
  58. ===============================================================================
  59. The creation of the package "o.a.c.m.analysis.integration.gauss" was inspired
  60. by an original code donated by Sébastien Brisard.
  61. ===============================================================================
  62. The direction numbers in the resource file for Sobol generation was created
  63. by Frances Y. Kuo and Stephen Joe. Original source copyright:
  64. Copyright (c) 2008, Frances Y. Kuo and Stephen Joe
  65. All rights reserved.
  66. ===============================================================================
  67. The complete text of licenses and disclaimers associated with the the original
  68. sources enumerated above at the time of code translation are in the LICENSE.txt
  69. file.