READ_ME.TXT 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. Praats/external/glpk/READ_ME.TXT
  2. Paul Boersma, 26 June 2010
  3. This file describes the adaptations to the glpk 4.44 sources
  4. that are needed to make them compatible with Praat.
  5. The .c and .h files are put into the single glpk directory.
  6. The #include statements are flattened, e.g.
  7. #include amd/amd.h becomes #include amd.h.
  8. The redefinition of SIZE_T_MAX in amd_internal.h is ifndef'ed out.
  9. In glpios09.c, char is changed to unsigned char in line 197.
  10. GLPK is a heavy namespace polluter.
  11. Because of a name clash with the C library in CodeWarrior
  12. ("error" is a member of the FILE structure),
  13. I replaced the "error" macro with "mpl_error" in all glpmpl* files.
  14. ########################################################################
  15. NOTE 1: The files named amd* are NOT part of the GLPK package, but
  16. are used with GLPK.
  17. The original code was modified according to GLPK requirements by
  18. Andrew Makhorin <mao@gnu.org>.
  19. ************************************************************************
  20. AMD Version 2.2, Copyright (C) 2007 by Timothy A. Davis,
  21. Patrick R. Amestoy, and Iain S. Duff. All Rights Reserved.
  22. Description:
  23. AMD is a set of routines for pre-ordering sparse matrices prior to
  24. Cholesky or LU factorization, using the approximate minimum degree
  25. ordering algorithm. Written in ANSI/ISO C with a MATLAB interface,
  26. and in Fortran 77.
  27. Authors:
  28. Timothy A. Davis (davis at cise.ufl.edu), University of Florida.
  29. Patrick R. Amestoy, ENSEEIHT, Toulouse, France.
  30. Iain S. Duff, Rutherford Appleton Laboratory, UK.
  31. AMD License:
  32. Your use or distribution of AMD or any modified version of AMD
  33. implies that you agree to this License.
  34. This library is free software; you can redistribute it and/or
  35. modify it under the terms of the GNU Lesser General Public License
  36. as published by the Free Software Foundation; either version 2.1 of
  37. the License, or (at your option) any later version.
  38. This library is distributed in the hope that it will be useful,
  39. but WITHOUT ANY WARRANTY; without even the implied warranty of
  40. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  41. Lesser General Public License for more details.
  42. You should have received a copy of the GNU Lesser General Public
  43. License along with this library; if not, write to the Free Software
  44. Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301
  45. USA.
  46. Permission is hereby granted to use or copy this program under the
  47. terms of the GNU LGPL, provided that the Copyright, this License,
  48. and the Availability of the original version is retained on all
  49. copies. User documentation of any code that uses this code or any
  50. modified version of this code must cite the Copyright, this License,
  51. the Availability note, and "Used by permission." Permission to
  52. modify the code and to distribute modified code is granted, provided
  53. the Copyright, this License, and the Availability note are retained,
  54. and a notice that the code was modified is included.
  55. AMD is available under alternate licences; contact T. Davis for
  56. details.
  57. Availability:
  58. http://www.cise.ufl.edu/research/sparse/amd
  59. ########################################################################
  60. NOTE 2: The files named colamd* are NOT part of the GLPK package, but
  61. are used with GLPK.
  62. The original code was modified according to GLPK requirements by
  63. Andrew Makhorin <mao@gnu.org>.
  64. ************************************************************************
  65. COLAMD/SYMAMD Version 2.7, Copyright (C) 1998-2007, Timothy A. Davis,
  66. All Rights Reserved.
  67. Description:
  68. colamd: an approximate minimum degree column ordering algorithm,
  69. for LU factorization of symmetric or unsymmetric matrices,
  70. QR factorization, least squares, interior point methods for
  71. linear programming problems, and other related problems.
  72. symamd: an approximate minimum degree ordering algorithm for
  73. Cholesky factorization of symmetric matrices.
  74. Purpose:
  75. Colamd computes a permutation Q such that the Cholesky factorization
  76. of (AQ)'(AQ) has less fill-in and requires fewer floating point
  77. operations than A'A. This also provides a good ordering for sparse
  78. partial pivoting methods, P(AQ) = LU, where Q is computed prior to
  79. numerical factorization, and P is computed during numerical
  80. factorization via conventional partial pivoting with row
  81. interchanges. Colamd is the column ordering method used in SuperLU,
  82. part of the ScaLAPACK library. It is also available as built-in
  83. function in MATLAB Version 6, available from MathWorks, Inc.
  84. (http://www.mathworks.com). This routine can be used in place of
  85. colmmd in MATLAB.
  86. Symamd computes a permutation P of a symmetric matrix A such that
  87. the Cholesky factorization of PAP' has less fill-in and requires
  88. fewer floating point operations than A. Symamd constructs a matrix
  89. M such that M'M has the same nonzero pattern of A, and then orders
  90. the columns of M using colmmd. The column ordering of M is then
  91. returned as the row and column ordering P of A.
  92. Authors:
  93. The authors of the code itself are Stefan I. Larimore and Timothy A.
  94. Davis (davis at cise.ufl.edu), University of Florida. The algorithm
  95. was developed in collaboration with John Gilbert, Xerox PARC, and
  96. Esmond Ng, Oak Ridge National Laboratory.
  97. Acknowledgements:
  98. This work was supported by the National Science Foundation, under
  99. grants DMS-9504974 and DMS-9803599.
  100. License:
  101. This library is free software; you can redistribute it and/or
  102. modify it under the terms of the GNU Lesser General Public License
  103. as published by the Free Software Foundation; either version 2.1 of
  104. the License, or (at your option) any later version.
  105. This library is distributed in the hope that it will be useful,
  106. but WITHOUT ANY WARRANTY; without even the implied warranty of
  107. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  108. Lesser General Public License for more details.
  109. You should have received a copy of the GNU Lesser General Public
  110. License along with this library; if not, write to the Free Software
  111. Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301
  112. USA.
  113. Permission is hereby granted to use or copy this program under the
  114. terms of the GNU LGPL, provided that the Copyright, this License,
  115. and the Availability of the original version is retained on all
  116. copies. User documentation of any code that uses this code or any
  117. modified version of this code must cite the Copyright, this License,
  118. the Availability note, and "Used by permission." Permission to
  119. modify the code and to distribute modified code is granted, provided
  120. the Copyright, this License, and the Availability note are retained,
  121. and a notice that the code was modified is included.
  122. COLAMD is also available under alternate licenses, contact T. Davis
  123. for details.
  124. Availability:
  125. The colamd/symamd library is available at:
  126. http://www.cise.ufl.edu/research/sparse/colamd/
  127. References:
  128. T. A. Davis, J. R. Gilbert, S. Larimore, E. Ng, An approximate
  129. column minimum degree ordering algorithm, ACM Transactions on
  130. Mathematical Software, vol. 30, no. 3., pp. 353-376, 2004.
  131. T. A. Davis, J. R. Gilbert, S. Larimore, E. Ng, Algorithm 836:
  132. COLAMD, an approximate column minimum degree ordering algorithm, ACM
  133. Transactions on Mathematical Software, vol. 30, no. 3., pp. 377-380,
  134. 2004.