alglib 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (255) hide show
  1. data/History.txt +7 -0
  2. data/Manifest.txt +253 -0
  3. data/README.txt +33 -0
  4. data/Rakefile +27 -0
  5. data/ext/Rakefile +24 -0
  6. data/ext/alglib.i +24 -0
  7. data/ext/alglib/Makefile +157 -0
  8. data/ext/alglib/airyf.cpp +372 -0
  9. data/ext/alglib/airyf.h +81 -0
  10. data/ext/alglib/alglib.cpp +8558 -0
  11. data/ext/alglib/alglib_util.cpp +19 -0
  12. data/ext/alglib/alglib_util.h +14 -0
  13. data/ext/alglib/ap.cpp +877 -0
  14. data/ext/alglib/ap.english.html +364 -0
  15. data/ext/alglib/ap.h +666 -0
  16. data/ext/alglib/ap.russian.html +442 -0
  17. data/ext/alglib/apvt.h +754 -0
  18. data/ext/alglib/bdss.cpp +1500 -0
  19. data/ext/alglib/bdss.h +251 -0
  20. data/ext/alglib/bdsvd.cpp +1339 -0
  21. data/ext/alglib/bdsvd.h +164 -0
  22. data/ext/alglib/bessel.cpp +1226 -0
  23. data/ext/alglib/bessel.h +331 -0
  24. data/ext/alglib/betaf.cpp +105 -0
  25. data/ext/alglib/betaf.h +74 -0
  26. data/ext/alglib/bidiagonal.cpp +1328 -0
  27. data/ext/alglib/bidiagonal.h +350 -0
  28. data/ext/alglib/binomialdistr.cpp +247 -0
  29. data/ext/alglib/binomialdistr.h +153 -0
  30. data/ext/alglib/blas.cpp +576 -0
  31. data/ext/alglib/blas.h +132 -0
  32. data/ext/alglib/cblas.cpp +226 -0
  33. data/ext/alglib/cblas.h +57 -0
  34. data/ext/alglib/cdet.cpp +138 -0
  35. data/ext/alglib/cdet.h +92 -0
  36. data/ext/alglib/chebyshev.cpp +216 -0
  37. data/ext/alglib/chebyshev.h +76 -0
  38. data/ext/alglib/chisquaredistr.cpp +157 -0
  39. data/ext/alglib/chisquaredistr.h +144 -0
  40. data/ext/alglib/cholesky.cpp +285 -0
  41. data/ext/alglib/cholesky.h +86 -0
  42. data/ext/alglib/cinverse.cpp +298 -0
  43. data/ext/alglib/cinverse.h +111 -0
  44. data/ext/alglib/clu.cpp +337 -0
  45. data/ext/alglib/clu.h +120 -0
  46. data/ext/alglib/correlation.cpp +280 -0
  47. data/ext/alglib/correlation.h +77 -0
  48. data/ext/alglib/correlationtests.cpp +726 -0
  49. data/ext/alglib/correlationtests.h +134 -0
  50. data/ext/alglib/crcond.cpp +826 -0
  51. data/ext/alglib/crcond.h +148 -0
  52. data/ext/alglib/creflections.cpp +310 -0
  53. data/ext/alglib/creflections.h +165 -0
  54. data/ext/alglib/csolve.cpp +312 -0
  55. data/ext/alglib/csolve.h +99 -0
  56. data/ext/alglib/ctrinverse.cpp +387 -0
  57. data/ext/alglib/ctrinverse.h +98 -0
  58. data/ext/alglib/ctrlinsolve.cpp +297 -0
  59. data/ext/alglib/ctrlinsolve.h +81 -0
  60. data/ext/alglib/dawson.cpp +234 -0
  61. data/ext/alglib/dawson.h +74 -0
  62. data/ext/alglib/descriptivestatistics.cpp +436 -0
  63. data/ext/alglib/descriptivestatistics.h +112 -0
  64. data/ext/alglib/det.cpp +140 -0
  65. data/ext/alglib/det.h +94 -0
  66. data/ext/alglib/dforest.cpp +1819 -0
  67. data/ext/alglib/dforest.h +316 -0
  68. data/ext/alglib/elliptic.cpp +497 -0
  69. data/ext/alglib/elliptic.h +217 -0
  70. data/ext/alglib/estnorm.cpp +429 -0
  71. data/ext/alglib/estnorm.h +107 -0
  72. data/ext/alglib/expintegrals.cpp +422 -0
  73. data/ext/alglib/expintegrals.h +108 -0
  74. data/ext/alglib/faq.english.html +258 -0
  75. data/ext/alglib/faq.russian.html +272 -0
  76. data/ext/alglib/fdistr.cpp +202 -0
  77. data/ext/alglib/fdistr.h +163 -0
  78. data/ext/alglib/fresnel.cpp +211 -0
  79. data/ext/alglib/fresnel.h +91 -0
  80. data/ext/alglib/gammaf.cpp +338 -0
  81. data/ext/alglib/gammaf.h +104 -0
  82. data/ext/alglib/gqgengauss.cpp +235 -0
  83. data/ext/alglib/gqgengauss.h +92 -0
  84. data/ext/alglib/gqgenhermite.cpp +268 -0
  85. data/ext/alglib/gqgenhermite.h +63 -0
  86. data/ext/alglib/gqgenjacobi.cpp +297 -0
  87. data/ext/alglib/gqgenjacobi.h +72 -0
  88. data/ext/alglib/gqgenlaguerre.cpp +265 -0
  89. data/ext/alglib/gqgenlaguerre.h +69 -0
  90. data/ext/alglib/gqgenlegendre.cpp +300 -0
  91. data/ext/alglib/gqgenlegendre.h +62 -0
  92. data/ext/alglib/gqgenlobatto.cpp +305 -0
  93. data/ext/alglib/gqgenlobatto.h +97 -0
  94. data/ext/alglib/gqgenradau.cpp +232 -0
  95. data/ext/alglib/gqgenradau.h +95 -0
  96. data/ext/alglib/hbisinv.cpp +480 -0
  97. data/ext/alglib/hbisinv.h +183 -0
  98. data/ext/alglib/hblas.cpp +228 -0
  99. data/ext/alglib/hblas.h +64 -0
  100. data/ext/alglib/hcholesky.cpp +339 -0
  101. data/ext/alglib/hcholesky.h +91 -0
  102. data/ext/alglib/hermite.cpp +114 -0
  103. data/ext/alglib/hermite.h +49 -0
  104. data/ext/alglib/hessenberg.cpp +370 -0
  105. data/ext/alglib/hessenberg.h +152 -0
  106. data/ext/alglib/hevd.cpp +247 -0
  107. data/ext/alglib/hevd.h +107 -0
  108. data/ext/alglib/hsschur.cpp +1316 -0
  109. data/ext/alglib/hsschur.h +108 -0
  110. data/ext/alglib/htridiagonal.cpp +734 -0
  111. data/ext/alglib/htridiagonal.h +180 -0
  112. data/ext/alglib/ialglib.cpp +6 -0
  113. data/ext/alglib/ialglib.h +9 -0
  114. data/ext/alglib/ibetaf.cpp +960 -0
  115. data/ext/alglib/ibetaf.h +125 -0
  116. data/ext/alglib/igammaf.cpp +430 -0
  117. data/ext/alglib/igammaf.h +157 -0
  118. data/ext/alglib/inv.cpp +274 -0
  119. data/ext/alglib/inv.h +115 -0
  120. data/ext/alglib/inverseupdate.cpp +480 -0
  121. data/ext/alglib/inverseupdate.h +185 -0
  122. data/ext/alglib/jacobianelliptic.cpp +164 -0
  123. data/ext/alglib/jacobianelliptic.h +94 -0
  124. data/ext/alglib/jarquebera.cpp +2271 -0
  125. data/ext/alglib/jarquebera.h +80 -0
  126. data/ext/alglib/kmeans.cpp +356 -0
  127. data/ext/alglib/kmeans.h +76 -0
  128. data/ext/alglib/laguerre.cpp +94 -0
  129. data/ext/alglib/laguerre.h +48 -0
  130. data/ext/alglib/lbfgs.cpp +1167 -0
  131. data/ext/alglib/lbfgs.h +218 -0
  132. data/ext/alglib/lda.cpp +434 -0
  133. data/ext/alglib/lda.h +133 -0
  134. data/ext/alglib/ldlt.cpp +1130 -0
  135. data/ext/alglib/ldlt.h +124 -0
  136. data/ext/alglib/leastsquares.cpp +1252 -0
  137. data/ext/alglib/leastsquares.h +290 -0
  138. data/ext/alglib/legendre.cpp +107 -0
  139. data/ext/alglib/legendre.h +49 -0
  140. data/ext/alglib/linreg.cpp +1185 -0
  141. data/ext/alglib/linreg.h +380 -0
  142. data/ext/alglib/logit.cpp +1523 -0
  143. data/ext/alglib/logit.h +333 -0
  144. data/ext/alglib/lq.cpp +399 -0
  145. data/ext/alglib/lq.h +160 -0
  146. data/ext/alglib/lu.cpp +462 -0
  147. data/ext/alglib/lu.h +119 -0
  148. data/ext/alglib/mannwhitneyu.cpp +4490 -0
  149. data/ext/alglib/mannwhitneyu.h +115 -0
  150. data/ext/alglib/minlm.cpp +918 -0
  151. data/ext/alglib/minlm.h +312 -0
  152. data/ext/alglib/mlpbase.cpp +3375 -0
  153. data/ext/alglib/mlpbase.h +589 -0
  154. data/ext/alglib/mlpe.cpp +1369 -0
  155. data/ext/alglib/mlpe.h +552 -0
  156. data/ext/alglib/mlptrain.cpp +1056 -0
  157. data/ext/alglib/mlptrain.h +283 -0
  158. data/ext/alglib/nearunityunit.cpp +91 -0
  159. data/ext/alglib/nearunityunit.h +17 -0
  160. data/ext/alglib/normaldistr.cpp +377 -0
  161. data/ext/alglib/normaldistr.h +175 -0
  162. data/ext/alglib/nsevd.cpp +1869 -0
  163. data/ext/alglib/nsevd.h +140 -0
  164. data/ext/alglib/pca.cpp +168 -0
  165. data/ext/alglib/pca.h +87 -0
  166. data/ext/alglib/poissondistr.cpp +143 -0
  167. data/ext/alglib/poissondistr.h +130 -0
  168. data/ext/alglib/polinterpolation.cpp +685 -0
  169. data/ext/alglib/polinterpolation.h +206 -0
  170. data/ext/alglib/psif.cpp +173 -0
  171. data/ext/alglib/psif.h +88 -0
  172. data/ext/alglib/qr.cpp +414 -0
  173. data/ext/alglib/qr.h +168 -0
  174. data/ext/alglib/ratinterpolation.cpp +134 -0
  175. data/ext/alglib/ratinterpolation.h +72 -0
  176. data/ext/alglib/rcond.cpp +705 -0
  177. data/ext/alglib/rcond.h +140 -0
  178. data/ext/alglib/reflections.cpp +504 -0
  179. data/ext/alglib/reflections.h +165 -0
  180. data/ext/alglib/rotations.cpp +473 -0
  181. data/ext/alglib/rotations.h +128 -0
  182. data/ext/alglib/rsolve.cpp +221 -0
  183. data/ext/alglib/rsolve.h +99 -0
  184. data/ext/alglib/sbisinv.cpp +217 -0
  185. data/ext/alglib/sbisinv.h +171 -0
  186. data/ext/alglib/sblas.cpp +185 -0
  187. data/ext/alglib/sblas.h +64 -0
  188. data/ext/alglib/schur.cpp +156 -0
  189. data/ext/alglib/schur.h +102 -0
  190. data/ext/alglib/sdet.cpp +193 -0
  191. data/ext/alglib/sdet.h +101 -0
  192. data/ext/alglib/sevd.cpp +116 -0
  193. data/ext/alglib/sevd.h +99 -0
  194. data/ext/alglib/sinverse.cpp +672 -0
  195. data/ext/alglib/sinverse.h +138 -0
  196. data/ext/alglib/spddet.cpp +138 -0
  197. data/ext/alglib/spddet.h +96 -0
  198. data/ext/alglib/spdgevd.cpp +842 -0
  199. data/ext/alglib/spdgevd.h +200 -0
  200. data/ext/alglib/spdinverse.cpp +509 -0
  201. data/ext/alglib/spdinverse.h +122 -0
  202. data/ext/alglib/spdrcond.cpp +421 -0
  203. data/ext/alglib/spdrcond.h +118 -0
  204. data/ext/alglib/spdsolve.cpp +275 -0
  205. data/ext/alglib/spdsolve.h +105 -0
  206. data/ext/alglib/spline2d.cpp +1192 -0
  207. data/ext/alglib/spline2d.h +301 -0
  208. data/ext/alglib/spline3.cpp +1264 -0
  209. data/ext/alglib/spline3.h +290 -0
  210. data/ext/alglib/srcond.cpp +595 -0
  211. data/ext/alglib/srcond.h +127 -0
  212. data/ext/alglib/ssolve.cpp +895 -0
  213. data/ext/alglib/ssolve.h +139 -0
  214. data/ext/alglib/stdafx.h +0 -0
  215. data/ext/alglib/stest.cpp +131 -0
  216. data/ext/alglib/stest.h +94 -0
  217. data/ext/alglib/studenttdistr.cpp +222 -0
  218. data/ext/alglib/studenttdistr.h +115 -0
  219. data/ext/alglib/studentttests.cpp +377 -0
  220. data/ext/alglib/studentttests.h +178 -0
  221. data/ext/alglib/svd.cpp +620 -0
  222. data/ext/alglib/svd.h +126 -0
  223. data/ext/alglib/tdbisinv.cpp +2608 -0
  224. data/ext/alglib/tdbisinv.h +228 -0
  225. data/ext/alglib/tdevd.cpp +1229 -0
  226. data/ext/alglib/tdevd.h +115 -0
  227. data/ext/alglib/tridiagonal.cpp +594 -0
  228. data/ext/alglib/tridiagonal.h +171 -0
  229. data/ext/alglib/trigintegrals.cpp +490 -0
  230. data/ext/alglib/trigintegrals.h +131 -0
  231. data/ext/alglib/trinverse.cpp +345 -0
  232. data/ext/alglib/trinverse.h +98 -0
  233. data/ext/alglib/trlinsolve.cpp +926 -0
  234. data/ext/alglib/trlinsolve.h +73 -0
  235. data/ext/alglib/tsort.cpp +405 -0
  236. data/ext/alglib/tsort.h +54 -0
  237. data/ext/alglib/variancetests.cpp +245 -0
  238. data/ext/alglib/variancetests.h +134 -0
  239. data/ext/alglib/wsr.cpp +6285 -0
  240. data/ext/alglib/wsr.h +96 -0
  241. data/ext/ap.i +97 -0
  242. data/ext/correlation.i +24 -0
  243. data/ext/extconf.rb +6 -0
  244. data/ext/logit.i +89 -0
  245. data/lib/alglib.rb +71 -0
  246. data/lib/alglib/correlation.rb +26 -0
  247. data/lib/alglib/linearregression.rb +63 -0
  248. data/lib/alglib/logit.rb +42 -0
  249. data/test/test_alglib.rb +52 -0
  250. data/test/test_correlation.rb +44 -0
  251. data/test/test_correlationtest.rb +45 -0
  252. data/test/test_linreg.rb +35 -0
  253. data/test/test_logit.rb +43 -0
  254. data/test/test_pca.rb +27 -0
  255. metadata +326 -0
@@ -0,0 +1,108 @@
1
+ /*************************************************************************
2
+ Cephes Math Library Release 2.8: June, 2000
3
+ Copyright by Stephen L. Moshier
4
+
5
+ Contributors:
6
+ * Sergey Bochkanov (ALGLIB project). Translation from C to
7
+ pseudocode.
8
+
9
+ See subroutines comments for additional copyrights.
10
+
11
+ Redistribution and use in source and binary forms, with or without
12
+ modification, are permitted provided that the following conditions are
13
+ met:
14
+
15
+ - Redistributions of source code must retain the above copyright
16
+ notice, this list of conditions and the following disclaimer.
17
+
18
+ - Redistributions in binary form must reproduce the above copyright
19
+ notice, this list of conditions and the following disclaimer listed
20
+ in this license in the documentation and/or other materials
21
+ provided with the distribution.
22
+
23
+ - Neither the name of the copyright holders nor the names of its
24
+ contributors may be used to endorse or promote products derived from
25
+ this software without specific prior written permission.
26
+
27
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
28
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
29
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
30
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
31
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
32
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
33
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
34
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
35
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
36
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
37
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
38
+ *************************************************************************/
39
+
40
+ #ifndef _expintegrals_h
41
+ #define _expintegrals_h
42
+
43
+ #include "ap.h"
44
+ #include "ialglib.h"
45
+
46
+ /*************************************************************************
47
+ Exponential integral Ei(x)
48
+
49
+ x
50
+ - t
51
+ | | e
52
+ Ei(x) = -|- --- dt .
53
+ | | t
54
+ -
55
+ -inf
56
+
57
+ Not defined for x <= 0.
58
+ See also expn.c.
59
+
60
+
61
+
62
+ ACCURACY:
63
+
64
+ Relative error:
65
+ arithmetic domain # trials peak rms
66
+ IEEE 0,100 50000 8.6e-16 1.3e-16
67
+
68
+ Cephes Math Library Release 2.8: May, 1999
69
+ Copyright 1999 by Stephen L. Moshier
70
+ *************************************************************************/
71
+ double exponentialintegralei(double x);
72
+
73
+
74
+ /*************************************************************************
75
+ Exponential integral En(x)
76
+
77
+ Evaluates the exponential integral
78
+
79
+ inf.
80
+ -
81
+ | | -xt
82
+ | e
83
+ E (x) = | ---- dt.
84
+ n | n
85
+ | | t
86
+ -
87
+ 1
88
+
89
+
90
+ Both n and x must be nonnegative.
91
+
92
+ The routine employs either a power series, a continued
93
+ fraction, or an asymptotic formula depending on the
94
+ relative values of n and x.
95
+
96
+ ACCURACY:
97
+
98
+ Relative error:
99
+ arithmetic domain # trials peak rms
100
+ IEEE 0, 30 10000 1.7e-15 3.6e-16
101
+
102
+ Cephes Math Library Release 2.8: June, 2000
103
+ Copyright 1985, 2000 by Stephen L. Moshier
104
+ *************************************************************************/
105
+ double exponentialintegralen(double x, int n);
106
+
107
+
108
+ #endif
@@ -0,0 +1,258 @@
1
+ <html>
2
+ <head>
3
+
4
+ <title>ALGLIB FAQ</title>
5
+ <style type="text/css">
6
+ <!--
7
+ h1 { font-family: Tahoma,sans-serif; font-size : larger; }
8
+ h2 { font-family: Arial,sans-serif; font-size : 11pt; }
9
+ h3 { font-family: Arial,sans-serif; font-size : 9pt; }
10
+ .cond { color:blue; }
11
+ .const { color:#222222; }
12
+ .func { color:#111111; }
13
+ .smalltext { font-size : 10pt; }
14
+ -->
15
+ </style>
16
+ </head>
17
+ <body>
18
+
19
+ <p align=justify>
20
+ <b>C++</b><br>
21
+ <span class=smalltext>
22
+ <a href="#stdafx">What is the blank file <code>stdafx.h</code> here for?</a><br>
23
+ <a href="#cpparrays">How is the array operations organized in C++?</a><br>
24
+ <a href="#cpparrays2">Why are round brackets used when addressing arrays, not square brackets?</a><br>
25
+ <a href="#cpp64">Will the ALGLIB package work in 64-bit environment?</a><br>
26
+ </span><br>
27
+
28
+ <b>Delphi</b><br>
29
+
30
+ <span class=smalltext>
31
+ <a href="#forwhile">Why is <i>while</i> cycle used instead of the <i>for</i> cycle?</a><br>
32
+ <a href="#dac">What is the purpose of the <code>DynamicArrayCopy</code> function?</a><br>
33
+ </span><br>
34
+
35
+ <b>Visual Basic</b><br>
36
+
37
+ <span class=smalltext>
38
+ <a href="#vbver">What version of Visual Basic are the algorithms translated into?</a><br>
39
+ <a href="#vbnet">Will the programs from the site work in VB.NET?</a><br>
40
+ <a href="#vbgoto">Why is the <i>goto</i> operator used in some programs?</a><br>
41
+ </span><br>
42
+
43
+ <b>General Questions on source codes</b><br>
44
+
45
+ <span class=smalltext>
46
+ <a href="#reliability">How reliable is the ALGLIB package?</a><br>
47
+ <a href="#ap">What is the AP library?</a><br>
48
+ <a href="#ablas">What is the ABLAS library?</a><br>
49
+ <a href="#statuses">What do module statuses (experimental, development, stable, obsolete) mean?</a><br>
50
+ <a href="#stablevsfull">What is the difference between alglib.stable and alglib.full archives?</a><br>
51
+ <a href="#rcomm">Why do some algorithms (for instance, optimization methods) use reverse communication instead of function pointers, delegates and other means of my programming language?</a><br>
52
+ </span><br>
53
+
54
+ <b>General questions</b><br>
55
+
56
+ <span class=smalltext>
57
+ <a href="#project">What is ALGLIB aimed at?</a><br>
58
+ <a href="#diff">What is the difference between ALGLIB and other similar projects?</a><br>
59
+ <a href="#authors">Who are the authors of the ALGLIB?</a><br>
60
+ <a href="#rus">What relation does the website have to Russia?</a><br>
61
+ <a href="#algopascal">What is AlgoPascal?</a><br>
62
+ <a href="#other">Where can I find the algorithms for the work with files, drawing pictures in OpenGL, etc?</a><br>
63
+ </span><br>
64
+ </p>
65
+
66
+ <hr width=80% size=1>
67
+
68
+ <h1>C++</h1>
69
+ <a name=stdafx><h2>What is the blank file <code>stdafx.h</code> here for?</h2></a>
70
+
71
+ <p align=justify>
72
+ MSVC and some other compilers require the <code>#include &lt;stdafx.h&gt;</code> directive in the program code to manage precompiled headers, and create the stfafx.h file when generating a new project. However, some compilers (e.g. BCB) use other tools to manage precompiled headers. In this case the <code>#include &lt;stdafx.h&gt;</code> directive as such doesn't hinder their operation, however if the file with this name is absent, a compilation error occurs. The blank file called <code>stfafx.h</code> is created to avoid this error. If your development environment already created the file, leave it unchanged.
73
+ </p>
74
+
75
+ <a name=cpparrays><h2>How is the array operations organized in C++?</h2></a>
76
+
77
+ <p align=justify>
78
+ As there is no dynamic array support in C++ (<b>update:</b> <i>I know about pointers and dynamic memory allocation, but this is not exactly the thing we need here</i>), template classes were developed to work with one- and two-dimensional arrays. The necessary source code and description can be found in the standard AP library, which is supplied with ALGLIB sources. Please note that the array numeration in this library begins from any number the programmer chooses rather than from 0.
79
+ </p>
80
+
81
+ <a name=cpparrays2><h2>Why are round brackets used when addressing arrays, not square brackets?</h2></a>
82
+
83
+ <p align=justify>
84
+ Imagine you are addressing the a matrix element in the common notation: <code>a[x][y]</code> instead of <code>a(x,y)</code>. Actually there are two index operators called here instead of one. The first is indexing of a matrix by <code>x</code>, that returns a reference to a temporary structure that describes the matrix row. The second is indexing that temporary structure by <code>y</code>, which returns the reference to the needed element. Addressing through overloading the round brackets is much more effective, as no temporary structures are required.
85
+ </p>
86
+
87
+ <a name=cpp64><h2>Will the ALGLIB package work in 64-bit environment?</h2></a>
88
+
89
+ <p align=justify>
90
+ The ALGLIB package was not tested in 64-bit environment.
91
+ </p>
92
+
93
+ <p align=justify>
94
+ However, the package itself and the AP/C++ library it uses don't contain any code that explicitly points out the environment it should work in. Thus, in theory compiling and usage of ALGLIB package in a 64-bit environment should not cause any trouble when not using additional libraries (like ABLAS, which is at the moment intended to work only in 32-bit environments).
95
+ </p>
96
+
97
+ <h1>Delphi</h1>
98
+
99
+ <a name=forwhile><h2>Why is <i>while</i> cycle used instead of the <i>for</i> cycle?</h2></a>
100
+
101
+ <p align=justify>
102
+ The reason for that is some peculiarities of the <b>for</b> cycle in Delphi. If the cycle has not been executed yet, in many programming languages the control variable of the cycle contains the initial value. In Delphi, if the cycle has not been executed, the control variable of the cycle doesn't change. Once I have seen a source code, in which this difference played a major role. That's why decided to replace the <b>for</b> cycle in Delphi with <b>while</b> cycle, whose behavior is the same as in any other language.
103
+ </p>
104
+
105
+ <a name=dac><h2>What is the purpose of the <code>DynamicArrayCopy</code> function?</h2></a>
106
+
107
+ <p align=justify>
108
+ In Delphi dynamic arrays are reference types, i.e. if the array parameter is passed by value, no copying of the array occurs. To emulate the transfer of the array parameter by value we use the <code>DynamicArrayCopy</code> function. It requires a dynamic array as an argument and returns a copy of this array. Assignment of the type <code>A:=DynamicArrayCopy(A)</code> replaces the reference to the original array with a reference to its copy.
109
+ </p>
110
+
111
+ <h1>Visual Basic</h1>
112
+
113
+ <a name=vbver><h2>What version of Visual Basic are the algorithms translated into?</h2></a>
114
+
115
+ <p align=justify>
116
+ The algorithms are translated into VBA, but in general are compatible with VB6.
117
+ </p>
118
+
119
+ <a name=vbnet><h2>Will the programs from the site work in VB.NET?</h2></a>
120
+
121
+ <p align=justify>
122
+ Not unless they are manually ported.
123
+ </p>
124
+
125
+ <a name=vbgoto><h2>Why is the <i>goto</i> operator used in some programs?</h2></a>
126
+
127
+ <p align=justify>
128
+ In many programming languages there is control operator <b>continue</b>, but it is absent in VB. In AlgoPascal, this operator appears from time to time. The <b>goto</b> operator is used to replace it and go to the next iteration of the cycle.
129
+ </p>
130
+
131
+ <h1>General Questions on source codes</h1>
132
+
133
+ <a name=reliability><h2>How reliable is the ALGLIB package?</h2></a>
134
+
135
+ <p align=justify>
136
+ The following measures are taken to ensure the reliability of the ALGLIB package:
137
+ </p>
138
+
139
+ <ul>
140
+ <li>
141
+ testing of package algorithms. All modules that have 'development' or 'stable' status have unit tests. Testing of ALGLIB for C#, C++, C++ (multiple precision) and Delphi is carried out automatically. Unfortunately the VBA version is tested manually and not completely, as VBA programs cannot be launched from command line. To compensate for this, the VBA version is actively used to develop new programs, which allows for counting on its stability.
142
+ </li>
143
+ <li>
144
+ a clear specification of modules limitations.
145
+ </li>
146
+ <li>
147
+ a clear differentiation between stably working modules tested by unit tests and time and experimental modules, where the stability is not tested adequately.
148
+ </li>
149
+ <li>
150
+ transparent bug registration and correction processes.
151
+ </li>
152
+ </ul>
153
+
154
+ <a name=ap><h2>What is the AP library?</h2></a>
155
+
156
+ <p align=justify>
157
+ AP library is a generic name for a set of libraries in several programming languages performing low-level tasks depending on specific programming languages. The AP library carries out tasks such as working with dynamic one- and multidimensional arrays in languages which do not support this data type, contains implementation of basic linear algebra algorithms, etc. The library is distributed as source codes under BSD license. The library is attached to each algorithm package available for downloading from the web-site. The latest library version is available for downloading from <a href="http://alglib.sources.ru/translator/aplib.zip">http://alglib.sources.ru/translator/aplib.zip</a>
158
+ </p>
159
+
160
+ <a name=ablas><h2>What is the ABLAS library?</h2></a>
161
+
162
+ <p align=justify>
163
+ ABLAS is an optimized implementation of basic linear algebra subroutines written in assembler. To use ABLAS it is necessary to copy the DLL file to one of the system folders or in the program folder and turn on ABLAS support (as described in ABLAS manual). When launching a program that is using the ALGLIB package, the ABLAS library is automatically detected and loaded. If ABLAS is absent, the program uses the standard implementation of linear algebra operations, written in a high-level language. At <a href="http://www,alglib.net/projects/ablas/">http://www,alglib.net/projects/ablas/</a> (or <a href="http://alglib.sources.ru/projects/ablas/">http://alglib.sources.ru/projects/ablas/</a> in Russian) there is library description, the list of the supported platforms and programming languages as well as source code and precompiled binary files.
164
+ </p>
165
+
166
+ <a name=stablevsfull><h2>What is the difference between alglib.stable and alglib.full archives?</h2></a>
167
+
168
+ <p align=justify>
169
+ A 'stable' archive contains only 'stable' modules . A 'full' archive also contains modules with 'experimental' and 'development' status.
170
+ </p>
171
+
172
+ <a name=statuses><h2>What do module statuses (experimental, development, stable, obsolete) mean?</h2></a>
173
+
174
+ <p align=justify>
175
+ Modules included into ALGLIB can have a different status depending on the lifecycle stage they are in:
176
+ </p>
177
+
178
+ <ul>
179
+ <li>
180
+ <B>experimental</B> - the module is experimental and its stability is not guaranteed. It cannot be used in the programs where high level of reliability is a requirement, but still can be useful for library users. You can use it at your own discretion - for instance, for educational purposes. This status is assigned very rarely and only when an unstable module is still better than no module at all.
181
+ </li>
182
+ <li>
183
+ <B>development</B> - the module is usable, there are no stability issues, but the API that is offered is not yet a hundred per cent completed. It is possible that in future versions of ALGLIB the module will be changed in the manner not compatible with the previous version. This status is assigned pretty seldom and only to new modules.
184
+ </li>
185
+ <li>
186
+ <B>stable</B> - the module is usable, there are no stability issues, the API that is offered is absolutely done and will not change. Most often the modules are openly published only after they are assigned 'stable' status.
187
+ </li>
188
+ <li>
189
+ <B>obsolete</B> - the module is not supported anymore and not included in the ALGLIB releases.
190
+ </li>
191
+ </ul>
192
+
193
+ <a name=rcomm><h2>Why do some algorithms (for instance, optimization methods) use reverse communication instead of function pointers, delegates and other means of my programming language?</h2></a>
194
+
195
+ <p align=justify>
196
+ Optimization, integration and other similar methods are united by one common trait. They need to have a way of calculating the meaning of a function defined by the <I>user</I> at a point defined by the <I>method</I>.
197
+ </p>
198
+
199
+ <p align=justify>
200
+ The most convenient way of solving this problem is transferring a function pointer into the module. However bear in mind that ALGLIB package is written using pseudo code that is automatically translated into different programming languages. While each language has its own function pointer analog that is often different from other languages. When the ALGLIB pseudo code was developed, at some point is became clear that adding function pointers in it will be very complex as this feature is implemented differently in every language. This is why reverse communication was chosen as a different kind of solution.
201
+ </p>
202
+
203
+ <h1>General questions</h1>
204
+
205
+ <a name=project><h2>What is ALGLIB aimed at?</h2></a>
206
+
207
+ <p align=justify>
208
+ It is mostly aimed at creating a convenient and efficient multilingual scientific software library.
209
+ </p>
210
+
211
+ <a name=diff><h2>What is the difference between ALGLIB and other similar projects?</h2></a>
212
+
213
+ <p align=justify>
214
+ The ALGLIB package:
215
+ </p>
216
+
217
+ <ul>
218
+ <li>is a multilingual project. The main feature of the project is that each algorithm is represented by programs in several languages and the language list is the same for every algorithm. This is the main advantage of the site before other similar collections - one algorithm, several languages, identical functionality in each language.</li>
219
+ <li>is a collection of programs. Sometimes visitors complain that there are practically no algorithm descriptions at the site. Yes, that's true - just because ALGLIB is a collection of programs, not the used algorithm descriptions. Unfortunately we cannot do everything.</li>
220
+ <li>is focused on numerical analysis. There are some other directions in the project (for instance, there are algorithms for sorting and graphics) but numerical analysis is a priority.</li>
221
+ <li>is easy to use. To use the ALGLIB package you don't need to learn an unknown programming language, attach additional external libraries or work with an extensive and inconvenient interface to a code written in another programming language.</li>
222
+ </ul>
223
+
224
+ <p align=justify>
225
+ Now on what ALGLIB is not and is not going to be. ALGLIB doesn't:
226
+ </p>
227
+
228
+ <ul>
229
+ <li>compete with specialized projects. This is not the goal. And, however hard I try, the project won't get as fast as MKL or have as wide a functionality as LAPACK.</li>
230
+ <li>go out of the boundaries of the project. For instance, parallel calculations are very interesting, but the solution of this problem is usually tightly connected to a certain platform, programming environment or language, which doesn't align with the main idea of the project.</li>
231
+ </ul>
232
+
233
+ <a name=authors><h2>Who are the authors of the ALGLIB?</h2></a>
234
+
235
+ <p align=justify>
236
+ The first version of ALGLIB was made by Vladimir Bystritsky. He spent a number of years on the maintenance of the website by himself. Eventually, he lost his interest in the website, so I (Sergey Bochkanov) took over the work on its maintenance, by common agreement.
237
+ </p>
238
+
239
+ <a name=rus><h2>What relation does the website have to Russia?</h2></a>
240
+
241
+ <p align=justify>
242
+ Originally, ALGLIB was a Russian-language website. Later on, a part of the website was translated into English. At present, there are two versions of the site - Russian and English.
243
+ </p>
244
+
245
+ <a name=algopascal><h2>What is AlgoPascal?</h2></a>
246
+
247
+ <p align=justify>
248
+ AlgoPascal is a programming language, designed particularly for this project. The programs, written in this language, are processed by a server-side automatic translator and translated into other programming languages by the computer. More detailed information is provided in section <a href="http://www.alglib.net/aboutsite.php">"About the site"</a>.
249
+ </p>
250
+
251
+ <a name=other><h2>Where can I find the algorithms for the work with files, drawing pictures in OpenGL, etc?</h2></a>
252
+
253
+ <p align=justify>
254
+ As we noted before, the main goal of ALGLIB is to create a multilingual library of algorithms in the area of numerical analysis. The problems, related to those enumerated in the question, do not fall into this category. Exceptions are made for a number of problems, though the project can be characterized by a clear-cut specialization.
255
+ </p>
256
+
257
+ </body>
258
+ </html>
@@ -0,0 +1,272 @@
1
+ <html>
2
+ <head>
3
+
4
+ <title>ALGLIB FAQ</title>
5
+ <style type="text/css">
6
+ <!--
7
+ h1 { font-family: Tahoma,sans-serif; font-size : larger; }
8
+ h2 { font-family: Arial,sans-serif; font-size : 11pt; }
9
+ h3 { font-family: Arial,sans-serif; font-size : 9pt; }
10
+ .cond { color:blue; }
11
+ .const { color:#222222; }
12
+ .func { color:#111111; }
13
+ .smalltext { font-size : 10pt; }
14
+ -->
15
+ </style>
16
+ </head>
17
+ <body>
18
+
19
+ <p align=justify>
20
+ <b>C++</b><br>
21
+ <span class=smalltext>
22
+ <a href="#stdafx">��� ���� ������ ������ ���� <code>stdafx.h</code>?</a><br>
23
+ <a href="#cpparrays">��� ������������ ������ � ��������� � �++?</a><br>
24
+ <a href="#cpparrays2">������ ��� ��������� � �������� ������������ �� ���������� ������, � �������?</a><br>
25
+ <a href="#cpp64">����� �� ����� ALGLIB �������� � 64-������ �����?</a><br>
26
+ </span><br>
27
+
28
+ <b>Delphi</b><br>
29
+
30
+ <span class=smalltext>
31
+ <a href="#forwhile">������ ����� ������ ����� for ������������ ���� while?</a><br>
32
+ <a href="#dac">��� ���� ������ ������� <code>DynamicArrayCopy</code>?</a><br>
33
+ </span><br>
34
+
35
+ <b>������� �� ���������� �� Visual Basic</b><br>
36
+
37
+ <span class=smalltext>
38
+ <a href="#vbver">�� ����� ������ ������ ����� Visual Basic ������������� ���������?</a><br>
39
+ <a href="#vbnet">��������� � ����� ����� �������� � VB.NET?</a><br>
40
+ <a href="#vbgoto">������ � ��������� ���������� ������������ �������� goto?</a><br>
41
+ </span><br>
42
+
43
+ <b>����� ������� �� �������� �����</b><br>
44
+
45
+ <span class=smalltext>
46
+ <a href="#reliability">��������� ����� ALGLIB �������?</a><br>
47
+ <a href="#ap">��� ����� ���������� AP?</a><br>
48
+ <a href="#ablas">��� ����� ���������� ABLAS?</a><br>
49
+ <a href="#stablevsfull">��� ����� alglib.stable ���������� �� ������ alglib.full?</a><br>
50
+ <a href="#statuses">��� ���������� ������� ������� (experimental, development, stable, obsolete)?</a><br>
51
+ <a href="#rcomm">������ ��������� ��������� (��������, ������ �����������) ���������� �������� ������������ ������ ���������� �� �������, ��������� ��� ������ ������� ����� ����� ����������������?</a><br>
52
+ </span><br>
53
+
54
+ <b>����� ������� �� �������</b><br>
55
+
56
+ <span class=smalltext>
57
+ <a href="#project">� ��� ���� ������� ALGLIB?</a><br>
58
+ <a href="#diff">��� ������ ALGLIB ���������� �� ������ ����������� ��������?</a><br>
59
+ <a href="#authors">��� ������ �������?</a><br>
60
+ <a href="#old">����� ��������� ������ ����� � ������ alglib.chat.ru � alglib.dore.ru?</a><br>
61
+ <a href="#manual">����� ��������� ������ ����� � ������� MANUAL.RU?</a><br>
62
+ <a href="#algopascal">��� ����� "��������������� �������" (AlgoPascal)?</a><br>
63
+ <a href="#bls">��� ����� "�������� ����-����"?</a><br>
64
+ <a href="#other">� ��� ��������� ��� ����������, ��������� ��������, �������� � OpenGL � �.�.?</a><br>
65
+ </span><br>
66
+ </p>
67
+
68
+ <hr width=80% size=1>
69
+
70
+ <h1>C++</h1>
71
+ <a name=stdafx><h2>��� ���� ������ ������ ���� <code>stdafx.h</code>?</h2></a>
72
+
73
+ <p align=justify>
74
+ MSVC � ��������� ������ ����������� �������, ����� � ���� ��������� �������������� ��������� <code>#include &lt;stdafx.h&gt;</code>, �������� ��� ���������� ������������������� �����������, � ������������� ������� ���� <code>stfafx.h</code> ��� ��������� ������ �������. ������ ��������� ����������� (��������, BCB) ���������� ������ �������� ��� ���������� ������������������� �����������. ��� ���� ��������� <code>#include &lt;stdafx.h&gt;</code> ���� �� ���� �� ������ �� ������, ������ ���������� ����� � ����� ������ �������� � ������ ����������. ������ ���� <code>stfafx.h</code> ������ ��� ����, ����� �������� ���� ������. ���� ����� ������ ���������� ��� ������ ���� � ����� ������, �������� ��� ��� ���������.
75
+ </p>
76
+
77
+ <a name=cpparrays><h2>��� ������������ ������ � ��������� � �++?</h2></a>
78
+
79
+ <p align=justify>
80
+ ��������� ��������� ������������ �������� �� ������� ����� �++ ����������� (<b>update:</b> <i>� ���� ��� ��������� � ������������ ��������� ������, �� ��� �� ������ ��, ��� ����������</i>), �� ���� ����������� ������-������� ��� ������ � ����������� � ����������� ���������. ����������� �������� ��� � �������� ��������� � ����������� ���������� AP, ������� ����������� � ������� ������ � ����������� �� C++. �������� ��������, ��� ������� � ���� ���������� �������� ��������� ��������� �� � 0, � � ������������� ����� �� ������ ������������.
81
+ </p>
82
+
83
+ <a name=cpparrays2><h2>������ ��� ��������� � �������� ������������ �� ���������� ������, � �������?</h2></a>
84
+
85
+ <p align=justify>
86
+ ����������� ����, ��� �� ����������� � �������� ������� � � ��������� �������: <code>a[x][y]</code> ������ <code>a(x,y)</code>. �� ����� ���� ����� ������� �� ���� ����� ��������� �������, � ���. ������ �� ��� - ���������� ������� <code>a</code> �� <code>x</code>, ������� ���������� ������ �� �����-�� ��������� ���������, ����������� ������ �������. ������ - ���������� ��������� ��������� �� <code>y</code>, ������� ���������� ������ �� ��������� �������. ��������� ����� ���������� ������� ������ ����������� �����������, ��������� �� ��������� �������� ��������� ��������.
87
+ </p>
88
+
89
+ <a name=cpp64><h2>����� �� ����� ALGLIB �������� � 64-������ �����?</h2></a>
90
+
91
+ <p align=justify>
92
+ ����� ALGLIB �� ������������ � 64-������ �����.
93
+ </p>
94
+
95
+ <p align=justify>
96
+ ������ � ���, ��� ����� � ������������ �� ���������� AP/C++ �� �������� ����, � ������� ���� ����������� �� �����-�� ������������� ������������ ��������� �����, � ������� �������������� ������. ����� �������, ���������� � ������������� ������ ALGLIB � 64-������ ����� ������������ �� ������ �������� �������, ���� �� ������������ �������������� ���������� (�����, ��� ABLAS, ������� �� ������ ��������� ���� ����� ���������� ������ � 32-������ ��������).
97
+ </p>
98
+
99
+ <h1>Delphi</h1>
100
+
101
+ <a name=forwhile><h2>������ ����� ������ ����� <i>for</i> ������������ ���� <i>while</i>?</h2></a>
102
+
103
+ <p align=justify>
104
+ �������� ���� ��������� ����������� ���������� ����� <b>for</b> � Delphi. ���� ���� �� ���������� �� ����, �� �� ������ ������ ���������������� ����������� ���������� ����� �������� ��������� ��������. � Delphi ���� ���� �� ���������� �� ����, �� ����������� ���������� ����� �� ����������. ������� � �������� ��������, � ������� ��� ������� ������ ������� ����, � ����� �������� ���� <b>for</b> � ���������� �� Delphi ������ <b>while</b>, ������� ��������� ��������� �� ������ ��������� � ������� �������.
105
+ </p>
106
+
107
+ <a name=dac><h2>��� ���� ������ ������� <code>DynamicArrayCopy</code>?</h2></a>
108
+
109
+ <p align=justify>
110
+ � Delphi ������������ ������� �������� ���������� ������, �.�. ���� ��������-������ ���������� �� ��������, �� ��� ���� �� ���������� ����������� �������. ��� �������� �������� ���������-������� �� �������� ������������ ������� <code>DynamicArrayCopy</code>. ��� ��������� � �������� ��������� ������������ ������ � ���������� ����� ����� �������. ������������ ���� <code>A:=DynamicArrayCopy(A)</code> �������� ������ �� ������������ ������ ������� �� ��� �����.
111
+ </p>
112
+
113
+ <h1>������� �� ���������� �� Visual Basic</h1>
114
+
115
+ <a name=vbver><h2>�� ����� ������ ������ ����� Visual Basic ������������� ���������?</h2></a>
116
+
117
+ <p align=justify>
118
+ ��������� ������������� �� VBA, ������ � ����� ���������� � VB6.
119
+ </p>
120
+
121
+ <a name=vbnet><h2>��������� � ����� ����� �������� � VB.NET?</h2></a>
122
+
123
+ <p align=justify>
124
+ ��� ������������ - ���.
125
+ </p>
126
+
127
+ <a name=vbgoto><h2>������ � ��������� ���������� ������������ �������� goto?</h2></a>
128
+
129
+ <p align=justify>
130
+ �� ������ ������ ���������������� ���� ����������� �������� <b>continue</b>, �� � VB �� �����������. � �� ����, ��� ��������� ���� ����. ��� ���, � ���������� �� AlgoPascal ���� �������� ����� �� ������� ����������. �������� <b>goto</b> ������������ � �������� ������ ���, ����������� ��������� ������� � ��������� �������� �����.
131
+ </p>
132
+
133
+ <h1>����� ������� �� �������� �����</h1>
134
+
135
+ <a name=reliability><h2>��������� ����� ALGLIB �������?</h2></a>
136
+
137
+ <p align=justify>
138
+ ��� ����������� ���������� ������ ALGLIB ��������������� ��������� ����:
139
+ </p>
140
+
141
+ <ul>
142
+ <li>
143
+ ������������ ���������� ������. ��� ������, ������� ������ �development� ��� �stable�, �������� ����-�������. ������������ ALGLIB ��� C#, C++, C++ (multiple precision) � Delphi �������������� � �������������� ������. � ���������, ������������ ������ ��� VBA �������������� ������� � �� � ������ ������ � ��-�� ������������� ��������� VBA-��������� �� ��������� ������. ������ ��� ����������� ����� VBA-������ ������� ������������ ��� ���������� ����� ��������, ��� ��������� ������������ �� � ����������.
144
+ </li>
145
+ <li>
146
+ �������� ������ ������������ �������
147
+ </li>
148
+ <li>
149
+ ������ ���������� ��������� ���������� �������, ����������� ����-������� � ��������, � ����������������� �������, ��� ������������ ������������ ���������
150
+ </li>
151
+ <li>
152
+ ���������� �������� ����� � ����������� �����
153
+ </li>
154
+ </ul>
155
+
156
+ <a name=ap><h2>��� ����� ���������� AP?</h2></a>
157
+
158
+ <p align=justify>
159
+ ���������� AP - ��� ����� �������� ������ ��������� �� ���������� ������ ����������������, �������� �������������� ������, ����������� � ��������� ����������� ����� ����������������. ���������� ������ ����� ������, ��� ������ � ������������� ����������� � ������������ ��������� � ������, �� �������������� ���� ��� ������, �������� ���������� ������� ���������� �������� ������� � �.�. ���������� ���������������� � ���� �������� ����� ��� ��������� BSD. ���������� ������������� ������������� � ������� ������ � �����������, ���������� ��� ���������� � �����. ��������� ������ ���������� �������� ��� ���������� �� ������ <a href="http://alglib.sources.ru/translator/aplib.zip">http://alglib.sources.ru/translator/aplib.zip</a> ��� <a href="http://www.alglib.net/translator/aplib.zip">http://www.alglib.net/translator/aplib.zip</a>
160
+ </p>
161
+
162
+ <a name=ablas><h2>��� ����� ���������� ABLAS?</h2></a>
163
+
164
+ <p align=justify>
165
+ ABLAS - ��� ���������������� ���������� ������� ���������� �������� �������, ���������� �� ����������. ����� ������������ ABLAS, ���������� ����������� ����������� ����������� ���� ���������� � ���� �� ��������� ����� ��� � ����� � ����������, � ����� �������� ��������� ABLAS (��� ������� � ����������� � ����������). ��� ������� ���������, ������������ ����� ALGLIB, �������������� �������������� ����������� � ����������� ���������� ABLAS. � ������ ���������� ABLAS ������������ ����������� ���������� �������� �������� �������, ���������� �� ����� �������� ������. �� �������� <a href="http://www.alglib.net/projects/ablas/">http://www.alglib.net/projects/ablas/</a> (��� <a href="http://alglib.sources.ru/projects/ablas/">http://alglib.sources.ru/projects/ablas/</a> ��� ������� ������ �����) ��������� �������� ����������, ������ �������������� �������� � ������ ����������������, � ����� �������� ���� � ������������������ �������� �����.
166
+ </p>
167
+
168
+ <a name=stablevsfull><h2>��� ����� alglib.stable ���������� �� ������ alglib.full?</h2></a>
169
+
170
+ <p align=justify>
171
+ �����, ����������, ��� �stable�, �������� ������ ���������� ������ (������ �stable�). �����, ����������, ��� �full�, ������������� �������� experimental- � development-������.
172
+ </p>
173
+
174
+ <a name=statuses><h2>��� ���������� ������� ������� (experimental, development, stable, obsolete)?</h2></a>
175
+
176
+ <p align=justify>
177
+ ������, �������� � ������ ALGLIB, ����� ����� ��������� ������ � ����������� �� ����, � ����� ������ ���������� ����� ��� ���������:
178
+ </p>
179
+
180
+ <ul>
181
+ <li>
182
+ <B>experimental</B> - ������ �������� ����������������� � ��� ������������ �� ����� ���� �������������. �� �� ����� �������������� � ����������, ��������� ������� ����������, �� �� �� ����� ���� ������� ��� ������������� ����������. ����������� ��� �� ���� ����� � ���� � �������� ��� ������� �����. ���� ������ ������������� ����� ����� � ������ � ��� �������, ����� ���� ����������� ���������� ������ �����, ��� ��� ����������.
183
+ </li>
184
+ <li>
185
+ <B>development</B> - ������ ��������������, ��������� � ��������� ������������ �����������, �� ������������ API ��� �� ��������. ��������, ��� � ������� ������� ALGLIB � ������ ����� ������� ������������� � ���������� ������� ���������. ���� ������ ������������� ������� � ������������� ����� �������.
186
+ </li>
187
+ <li>
188
+ <B>stable</B> - ��� ��������������, ������������ �� API �������� � �� ����� ��������. ���� ����� ������ ������������� � �������� ������ ������ ����� ���������� ������� 'stable'.
189
+ </li>
190
+ <li>
191
+ <B>obsolete</B> - ������ ������ �� �������������� � �� ���������� � ����� ������ ������ ALGLIB.
192
+ </li>
193
+ </ul>
194
+
195
+ <a name=rcomm><h2>������ ��������� ��������� (��������, ������ �����������) ���������� �������� ������������ ������ ���������� �� �������, ��������� ��� ������ ������� ����� ����� ����������������?</h2></a>
196
+
197
+ <p align=justify>
198
+ ������ �����������, �������������� � ������ �������� ������ ���������� ���� ����� �����. ��� ��������� � �����-�� ������� ��������� �������� ������������ <I>�������������</I> ������� � ������������ <I>�������</I> �����.
199
+ </p>
200
+
201
+ <p align=justify>
202
+ ����� ������� �������� ������ ��� ������ �������� �������� � ������ ��������� �� �������. ������ ��������, ��� ����� ALGLIB ������� �� ����������, ������������� ����������� �� ������ ����� ����������������. � � ������ ����� ���������������� ���� ���� ������ ��������� �� �������, ����� ������������ �� �������, �������������� � ������ ������. ��� ���������� ����������, ��������������� � ALGLIB, � �����-�� ������ ����� ����, ��� ���������� � ���� ���������� �� ������� ����� ����� �������������� � ������ ��-�� ����, ��� ������ ���� ��-������� ��������� ��� �����������. ��-�� ����� ����� ��� ������ � ������ ������� ������� � �������� ������������.
203
+ </p>
204
+
205
+ <h1>����� ������� �� �������</h1>
206
+
207
+ <a name=project><h2>� ��� ���� ������� ALGLIB?</h2></a>
208
+
209
+ <p align=justify>
210
+ ������� ������� � ������������� ������������� ��������� ���������� ��� ������� ������� � ������� ���������� ������� (� ��������) � ��������� ������ �����.
211
+ </p>
212
+
213
+ <a name=diff><h2>��� ������ ALGLIB ���������� �� ������ ����������� ��������?</h2></a>
214
+
215
+ <p align=justify>
216
+ ����� ALGLIB:
217
+ </p>
218
+
219
+ <ul>
220
+ <li>��� ������������� ������. ����������� ������� - ��, ��� ������ �������� ����������� ����������� �� ���������� ������, � ������ ������ ���� � ��� �� ��� ���� ����������. ��� ������� ������������ ����� ����� ������� ��������� ����������� - ���� ��������, ��������� ������, ���������� ���������������� �� ������ �����.</li>
221
+ <li>��� ��������� ��������. ������ ���������� �������� �� ��, ��� �� ����� ����� ��� �������� ������������ ����������. ��, �� ����� ��� - �� ������ ��� ALGLIB �������� ���������� ������ ��������, � �� �������� ������������ ����������. �� �� ��� �� ������, ���.</li>
222
+ <li>���������������� �� ��������� �������. � ������ ������� ������������ � ��������� ������ ����������� (��������, ���� ��������� ���������� � ������ � ��������), �� ����������� �������� ������ ��������� ������.</li>
223
+ <li>����� ������������. ��� ������������� ������ ALGLIB �� ���� ������� ���������� ���� ����������������, ���������� �������������� ������� ����������, ��� �������� ����� ���������� � ��������� ��������� � ����, ����������� �� ������ ����� ����������������.</li>
224
+ </ul>
225
+
226
+ <p align=justify>
227
+ ������ � ���, ��� ALGLIB �� �������� � �� ��������� ����. ALGLIB:
228
+ </p>
229
+
230
+ <ul>
231
+ <li>�� ����������� �� ������������������� ��������. ���� ������� �� � ����. � ��� �� � �� ��������, ��� �� �������� �� �������� MKL � �� �������� ��� �� ������� ����������������, ��� � � LAPACK.</li>
232
+ <li>�� ������� �� ����� ��������� �������. ��������, ������������ ���������� - ��� ����� ���������, �� ������� ���� �������� ������ ����� ��������� � �����-�� ���������� ���������, ����������� ����� � �����, ��� ���� ������� � ������� ����� �������.</li>
233
+ </ul>
234
+
235
+ <a name=authors><h2>��� ������ �������?</h2></a>
236
+
237
+ <p align=justify>
238
+ ������ ������ ���������� ���������� ���� ������� ���������� ����������, � �� ���������� ���������� ��� �� � �������� �������� ����. ������������ �� ������� ������� � �����, � ��� ��������� �� ������ �������� ������� � - ������ ��������.
239
+ </p>
240
+
241
+ <a name=old><h2>����� ��������� ������ ����� � ������ alglib.chat.ru � alglib.dore.ru?</h2></a>
242
+
243
+ <p align=justify>
244
+ ��� ������� ������ ������ �������, ������� ������ �������.
245
+ </p>
246
+
247
+ <a name=manual><h2>����� ��������� ������ ����� � ������� MANUAL.RU?</h2></a>
248
+
249
+ <p align=justify>
250
+ ���� ������ ����� ���������� ���������� �� ����� �� �������� ������ ��������, ����������� ������������ ���������� ������� �, ��� ����� �����, PHP-��� ��� ������ ������ �����, � ����� ������ �� ���� ������ ��������.
251
+ </p>
252
+
253
+ <a name=algopascal><h2>��� ����� "��������������� �������" (AlgoPascal)?</h2></a>
254
+
255
+ <p align=justify>
256
+ AlgoPascal - ��� ������������� ���������� ��� ������� ������� ���� ����������������. ��������� �� ���� ����� �������������� ����������-������������, � ����� �� �� ������ �������� ��������� �� ��������� ���������� ����� ����������������. ����� ��������� �� ���� ����� ������ � ������� <a href="http://alglib.sources.ru/aboutsite.php">"� �����"</a>.
257
+ </p>
258
+
259
+ <a name=bls><h2>��� ����� "�������� ����-����"?</h2></a>
260
+
261
+ <p align=justify>
262
+ ��� ���������, ������� ������ ��� ��������� � �������������� ����-����. ������������� ��� ��������� �� ����� ��������� � ���� ����-����, �� ����� � �������� ��������� ������� ������������� ��� ������ AlgoPascal, �� ������� ���� ���������� ����-�����. ��� �� �����, ������ ����-����� �������� �� ������� ������ �����, ���� �� ��������� ���� ����������, �� � ��� �������� ����� ��������� �������� �����������. ����� ��������� �� ���� ����� ������ � ������� <a href="http://alglib.sources.ru/aboutsite.php">"� �����"</a> � �� <a href="http://alglib.sources.ru/aboutbls.php">��������� ��������� ����-����</a>.
263
+ </p>
264
+
265
+ <a name=other><h2>� ��� ��������� ��� ����������, ��������� ��������, �������� � OpenGL � �.�.?</h2></a>
266
+
267
+ <p align=justify>
268
+ ��� ��� ����������, ���� ���������� ���������� - ������� ������������� ���������� ���������� � ������� ���������� �������. ������ ����� ��������� � ���������� ��� ��� ������������� �� ��������. ��� ��������� ����� �������� ����������, �� � ����� � ������� ���� ���������� �������������.
269
+ </p>
270
+
271
+ </body>
272
+ </html>