1 | /*************************************************************************
|
---|
2 | AP library
|
---|
3 | Copyright (c) 2003-2009 Sergey Bochkanov (ALGLIB project).
|
---|
4 |
|
---|
5 | >>> SOURCE LICENSE >>>
|
---|
6 | This program is free software; you can redistribute it and/or modify
|
---|
7 | it under the terms of the GNU General Public License as published by
|
---|
8 | the Free Software Foundation (www.fsf.org); either version 2 of the
|
---|
9 | License, or (at your option) any later version.
|
---|
10 |
|
---|
11 | This program is distributed in the hope that it will be useful,
|
---|
12 | but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
14 | GNU General Public License for more details.
|
---|
15 |
|
---|
16 | A copy of the GNU General Public License is available at
|
---|
17 | http://www.fsf.org/licensing/licenses
|
---|
18 | >>> END OF LICENSE >>>
|
---|
19 | *************************************************************************/
|
---|
20 | using System;
|
---|
21 | public partial class alglib {
|
---|
22 | /********************************************************************
|
---|
23 | Callback definitions for optimizers/fitters/solvers.
|
---|
24 |
|
---|
25 | Callbacks for unparameterized (general) functions:
|
---|
26 | * ndimensional_func calculates f(arg), stores result to func
|
---|
27 | * ndimensional_grad calculates func = f(arg),
|
---|
28 | grad[i] = df(arg)/d(arg[i])
|
---|
29 | * ndimensional_hess calculates func = f(arg),
|
---|
30 | grad[i] = df(arg)/d(arg[i]),
|
---|
31 | hess[i,j] = d2f(arg)/(d(arg[i])*d(arg[j]))
|
---|
32 |
|
---|
33 | Callbacks for systems of functions:
|
---|
34 | * ndimensional_fvec calculates vector function f(arg),
|
---|
35 | stores result to fi
|
---|
36 | * ndimensional_jac calculates f[i] = fi(arg)
|
---|
37 | jac[i,j] = df[i](arg)/d(arg[j])
|
---|
38 |
|
---|
39 | Callbacks for parameterized functions, i.e. for functions which
|
---|
40 | depend on two vectors: P and Q. Gradient and Hessian are calculated
|
---|
41 | with respect to P only.
|
---|
42 | * ndimensional_pfunc calculates f(p,q),
|
---|
43 | stores result to func
|
---|
44 | * ndimensional_pgrad calculates func = f(p,q),
|
---|
45 | grad[i] = df(p,q)/d(p[i])
|
---|
46 | * ndimensional_phess calculates func = f(p,q),
|
---|
47 | grad[i] = df(p,q)/d(p[i]),
|
---|
48 | hess[i,j] = d2f(p,q)/(d(p[i])*d(p[j]))
|
---|
49 |
|
---|
50 | Callbacks for progress reports:
|
---|
51 | * ndimensional_rep reports current position of optimization algo
|
---|
52 |
|
---|
53 | Callbacks for ODE solvers:
|
---|
54 | * ndimensional_ode_rp calculates dy/dx for given y[] and x
|
---|
55 |
|
---|
56 | Callbacks for integrators:
|
---|
57 | * integrator1_func calculates f(x) for given x
|
---|
58 | (additional parameters xminusa and bminusx
|
---|
59 | contain x-a and b-x)
|
---|
60 | ********************************************************************/
|
---|
61 | public delegate void ndimensional_func(double[] arg, ref double func, object obj);
|
---|
62 | public delegate void ndimensional_grad(double[] arg, ref double func, double[] grad, object obj);
|
---|
63 | public delegate void ndimensional_hess(double[] arg, ref double func, double[] grad, double[,] hess, object obj);
|
---|
64 |
|
---|
65 | public delegate void ndimensional_fvec(double[] arg, double[] fi, object obj);
|
---|
66 | public delegate void ndimensional_jac(double[] arg, double[] fi, double[,] jac, object obj);
|
---|
67 |
|
---|
68 | public delegate void ndimensional_pfunc(double[] p, double[] q, ref double func, object obj);
|
---|
69 | public delegate void ndimensional_pgrad(double[] p, double[] q, ref double func, double[] grad, object obj);
|
---|
70 | public delegate void ndimensional_phess(double[] p, double[] q, ref double func, double[] grad, double[,] hess, object obj);
|
---|
71 |
|
---|
72 | public delegate void ndimensional_rep(double[] arg, double func, object obj);
|
---|
73 |
|
---|
74 | public delegate void ndimensional_ode_rp(double[] y, double x, double[] dy, object obj);
|
---|
75 |
|
---|
76 | public delegate void integrator1_func(double x, double xminusa, double bminusx, ref double f, object obj);
|
---|
77 |
|
---|
78 | /********************************************************************
|
---|
79 | Class defining a complex number with double precision.
|
---|
80 | ********************************************************************/
|
---|
81 | public struct complex {
|
---|
82 | public double x;
|
---|
83 | public double y;
|
---|
84 |
|
---|
85 | public complex(double _x) {
|
---|
86 | x = _x;
|
---|
87 | y = 0;
|
---|
88 | }
|
---|
89 | public complex(double _x, double _y) {
|
---|
90 | x = _x;
|
---|
91 | y = _y;
|
---|
92 | }
|
---|
93 | public static implicit operator complex(double _x) {
|
---|
94 | return new complex(_x);
|
---|
95 | }
|
---|
96 | public static bool operator ==(complex lhs, complex rhs) {
|
---|
97 | return ((double)lhs.x == (double)rhs.x) & ((double)lhs.y == (double)rhs.y);
|
---|
98 | }
|
---|
99 | public static bool operator !=(complex lhs, complex rhs) {
|
---|
100 | return ((double)lhs.x != (double)rhs.x) | ((double)lhs.y != (double)rhs.y);
|
---|
101 | }
|
---|
102 | public static complex operator +(complex lhs) {
|
---|
103 | return lhs;
|
---|
104 | }
|
---|
105 | public static complex operator -(complex lhs) {
|
---|
106 | return new complex(-lhs.x, -lhs.y);
|
---|
107 | }
|
---|
108 | public static complex operator +(complex lhs, complex rhs) {
|
---|
109 | return new complex(lhs.x + rhs.x, lhs.y + rhs.y);
|
---|
110 | }
|
---|
111 | public static complex operator -(complex lhs, complex rhs) {
|
---|
112 | return new complex(lhs.x - rhs.x, lhs.y - rhs.y);
|
---|
113 | }
|
---|
114 | public static complex operator *(complex lhs, complex rhs) {
|
---|
115 | return new complex(lhs.x * rhs.x - lhs.y * rhs.y, lhs.x * rhs.y + lhs.y * rhs.x);
|
---|
116 | }
|
---|
117 | public static complex operator /(complex lhs, complex rhs) {
|
---|
118 | complex result;
|
---|
119 | double e;
|
---|
120 | double f;
|
---|
121 | if (System.Math.Abs(rhs.y) < System.Math.Abs(rhs.x)) {
|
---|
122 | e = rhs.y / rhs.x;
|
---|
123 | f = rhs.x + rhs.y * e;
|
---|
124 | result.x = (lhs.x + lhs.y * e) / f;
|
---|
125 | result.y = (lhs.y - lhs.x * e) / f;
|
---|
126 | } else {
|
---|
127 | e = rhs.x / rhs.y;
|
---|
128 | f = rhs.y + rhs.x * e;
|
---|
129 | result.x = (lhs.y + lhs.x * e) / f;
|
---|
130 | result.y = (-lhs.x + lhs.y * e) / f;
|
---|
131 | }
|
---|
132 | return result;
|
---|
133 | }
|
---|
134 | public override int GetHashCode() {
|
---|
135 | return x.GetHashCode() ^ y.GetHashCode();
|
---|
136 | }
|
---|
137 | public override bool Equals(object obj) {
|
---|
138 | if (obj is byte)
|
---|
139 | return Equals(new complex((byte)obj));
|
---|
140 | if (obj is sbyte)
|
---|
141 | return Equals(new complex((sbyte)obj));
|
---|
142 | if (obj is short)
|
---|
143 | return Equals(new complex((short)obj));
|
---|
144 | if (obj is ushort)
|
---|
145 | return Equals(new complex((ushort)obj));
|
---|
146 | if (obj is int)
|
---|
147 | return Equals(new complex((int)obj));
|
---|
148 | if (obj is uint)
|
---|
149 | return Equals(new complex((uint)obj));
|
---|
150 | if (obj is long)
|
---|
151 | return Equals(new complex((long)obj));
|
---|
152 | if (obj is ulong)
|
---|
153 | return Equals(new complex((ulong)obj));
|
---|
154 | if (obj is float)
|
---|
155 | return Equals(new complex((float)obj));
|
---|
156 | if (obj is double)
|
---|
157 | return Equals(new complex((double)obj));
|
---|
158 | if (obj is decimal)
|
---|
159 | return Equals(new complex((double)(decimal)obj));
|
---|
160 | return base.Equals(obj);
|
---|
161 | }
|
---|
162 | }
|
---|
163 |
|
---|
164 | /********************************************************************
|
---|
165 | Class defining an ALGLIB exception
|
---|
166 | ********************************************************************/
|
---|
167 | public class alglibexception : System.Exception {
|
---|
168 | public string msg;
|
---|
169 | public alglibexception(string s) {
|
---|
170 | msg = s;
|
---|
171 | }
|
---|
172 |
|
---|
173 | }
|
---|
174 |
|
---|
175 | /********************************************************************
|
---|
176 | reverse communication structure
|
---|
177 | ********************************************************************/
|
---|
178 | public class rcommstate {
|
---|
179 | public rcommstate() {
|
---|
180 | stage = -1;
|
---|
181 | ia = new int[0];
|
---|
182 | ba = new bool[0];
|
---|
183 | ra = new double[0];
|
---|
184 | ca = new alglib.complex[0];
|
---|
185 | }
|
---|
186 | public int stage;
|
---|
187 | public int[] ia;
|
---|
188 | public bool[] ba;
|
---|
189 | public double[] ra;
|
---|
190 | public alglib.complex[] ca;
|
---|
191 | };
|
---|
192 |
|
---|
193 | /********************************************************************
|
---|
194 | internal functions
|
---|
195 | ********************************************************************/
|
---|
196 | public class ap {
|
---|
197 | public static int len<T>(T[] a) { return a.Length; }
|
---|
198 | public static int rows<T>(T[,] a) { return a.GetLength(0); }
|
---|
199 | public static int cols<T>(T[,] a) { return a.GetLength(1); }
|
---|
200 | public static void swap<T>(ref T a, ref T b) {
|
---|
201 | T t = a;
|
---|
202 | a = b;
|
---|
203 | b = t;
|
---|
204 | }
|
---|
205 |
|
---|
206 | public static void assert(bool cond, string s) {
|
---|
207 | if (!cond)
|
---|
208 | throw new alglibexception(s);
|
---|
209 | }
|
---|
210 |
|
---|
211 | public static void assert(bool cond) {
|
---|
212 | assert(cond, "ALGLIB: assertion failed");
|
---|
213 | }
|
---|
214 |
|
---|
215 | /****************************************************************
|
---|
216 | returns dps (digits-of-precision) value corresponding to threshold.
|
---|
217 | dps(0.9) = dps(0.5) = dps(0.1) = 0
|
---|
218 | dps(0.09) = dps(0.05) = dps(0.01) = 1
|
---|
219 | and so on
|
---|
220 | ****************************************************************/
|
---|
221 | public static int threshold2dps(double threshold) {
|
---|
222 | int result = 0;
|
---|
223 | double t;
|
---|
224 | for (result = 0, t = 1; t / 10 > threshold * (1 + 1E-10); result++, t /= 10) ;
|
---|
225 | return result;
|
---|
226 | }
|
---|
227 |
|
---|
228 | /****************************************************************
|
---|
229 | prints formatted complex
|
---|
230 | ****************************************************************/
|
---|
231 | public static string format(complex a, int _dps) {
|
---|
232 | int dps = Math.Abs(_dps);
|
---|
233 | string fmt = _dps >= 0 ? "F" : "E";
|
---|
234 | string fmtx = String.Format("{{0:" + fmt + "{0}}}", dps);
|
---|
235 | string fmty = String.Format("{{0:" + fmt + "{0}}}", dps);
|
---|
236 | string result = String.Format(fmtx, a.x) + (a.y >= 0 ? "+" : "-") + String.Format(fmty, Math.Abs(a.y)) + "i";
|
---|
237 | result = result.Replace(',', '.');
|
---|
238 | return result;
|
---|
239 | }
|
---|
240 |
|
---|
241 | /****************************************************************
|
---|
242 | prints formatted array
|
---|
243 | ****************************************************************/
|
---|
244 | public static string format(bool[] a) {
|
---|
245 | string[] result = new string[len(a)];
|
---|
246 | int i;
|
---|
247 | for (i = 0; i < len(a); i++)
|
---|
248 | if (a[i])
|
---|
249 | result[i] = "true";
|
---|
250 | else
|
---|
251 | result[i] = "false";
|
---|
252 | return "{" + String.Join(",", result) + "}";
|
---|
253 | }
|
---|
254 |
|
---|
255 | /****************************************************************
|
---|
256 | prints formatted array
|
---|
257 | ****************************************************************/
|
---|
258 | public static string format(int[] a) {
|
---|
259 | string[] result = new string[len(a)];
|
---|
260 | int i;
|
---|
261 | for (i = 0; i < len(a); i++)
|
---|
262 | result[i] = a[i].ToString();
|
---|
263 | return "{" + String.Join(",", result) + "}";
|
---|
264 | }
|
---|
265 |
|
---|
266 | /****************************************************************
|
---|
267 | prints formatted array
|
---|
268 | ****************************************************************/
|
---|
269 | public static string format(double[] a, int _dps) {
|
---|
270 | int dps = Math.Abs(_dps);
|
---|
271 | string sfmt = _dps >= 0 ? "F" : "E";
|
---|
272 | string fmt = String.Format("{{0:" + sfmt + "{0}}}", dps);
|
---|
273 | string[] result = new string[len(a)];
|
---|
274 | int i;
|
---|
275 | for (i = 0; i < len(a); i++) {
|
---|
276 | result[i] = String.Format(fmt, a[i]);
|
---|
277 | result[i] = result[i].Replace(',', '.');
|
---|
278 | }
|
---|
279 | return "{" + String.Join(",", result) + "}";
|
---|
280 | }
|
---|
281 |
|
---|
282 | /****************************************************************
|
---|
283 | prints formatted array
|
---|
284 | ****************************************************************/
|
---|
285 | public static string format(complex[] a, int _dps) {
|
---|
286 | int dps = Math.Abs(_dps);
|
---|
287 | string fmt = _dps >= 0 ? "F" : "E";
|
---|
288 | string fmtx = String.Format("{{0:" + fmt + "{0}}}", dps);
|
---|
289 | string fmty = String.Format("{{0:" + fmt + "{0}}}", dps);
|
---|
290 | string[] result = new string[len(a)];
|
---|
291 | int i;
|
---|
292 | for (i = 0; i < len(a); i++) {
|
---|
293 | result[i] = String.Format(fmtx, a[i].x) + (a[i].y >= 0 ? "+" : "-") + String.Format(fmty, Math.Abs(a[i].y)) + "i";
|
---|
294 | result[i] = result[i].Replace(',', '.');
|
---|
295 | }
|
---|
296 | return "{" + String.Join(",", result) + "}";
|
---|
297 | }
|
---|
298 |
|
---|
299 | /****************************************************************
|
---|
300 | prints formatted matrix
|
---|
301 | ****************************************************************/
|
---|
302 | public static string format(bool[,] a) {
|
---|
303 | int i, j, m, n;
|
---|
304 | n = cols(a);
|
---|
305 | m = rows(a);
|
---|
306 | bool[] line = new bool[n];
|
---|
307 | string[] result = new string[m];
|
---|
308 | for (i = 0; i < m; i++) {
|
---|
309 | for (j = 0; j < n; j++)
|
---|
310 | line[j] = a[i, j];
|
---|
311 | result[i] = format(line);
|
---|
312 | }
|
---|
313 | return "{" + String.Join(",", result) + "}";
|
---|
314 | }
|
---|
315 |
|
---|
316 | /****************************************************************
|
---|
317 | prints formatted matrix
|
---|
318 | ****************************************************************/
|
---|
319 | public static string format(int[,] a) {
|
---|
320 | int i, j, m, n;
|
---|
321 | n = cols(a);
|
---|
322 | m = rows(a);
|
---|
323 | int[] line = new int[n];
|
---|
324 | string[] result = new string[m];
|
---|
325 | for (i = 0; i < m; i++) {
|
---|
326 | for (j = 0; j < n; j++)
|
---|
327 | line[j] = a[i, j];
|
---|
328 | result[i] = format(line);
|
---|
329 | }
|
---|
330 | return "{" + String.Join(",", result) + "}";
|
---|
331 | }
|
---|
332 |
|
---|
333 | /****************************************************************
|
---|
334 | prints formatted matrix
|
---|
335 | ****************************************************************/
|
---|
336 | public static string format(double[,] a, int dps) {
|
---|
337 | int i, j, m, n;
|
---|
338 | n = cols(a);
|
---|
339 | m = rows(a);
|
---|
340 | double[] line = new double[n];
|
---|
341 | string[] result = new string[m];
|
---|
342 | for (i = 0; i < m; i++) {
|
---|
343 | for (j = 0; j < n; j++)
|
---|
344 | line[j] = a[i, j];
|
---|
345 | result[i] = format(line, dps);
|
---|
346 | }
|
---|
347 | return "{" + String.Join(",", result) + "}";
|
---|
348 | }
|
---|
349 |
|
---|
350 | /****************************************************************
|
---|
351 | prints formatted matrix
|
---|
352 | ****************************************************************/
|
---|
353 | public static string format(complex[,] a, int dps) {
|
---|
354 | int i, j, m, n;
|
---|
355 | n = cols(a);
|
---|
356 | m = rows(a);
|
---|
357 | complex[] line = new complex[n];
|
---|
358 | string[] result = new string[m];
|
---|
359 | for (i = 0; i < m; i++) {
|
---|
360 | for (j = 0; j < n; j++)
|
---|
361 | line[j] = a[i, j];
|
---|
362 | result[i] = format(line, dps);
|
---|
363 | }
|
---|
364 | return "{" + String.Join(",", result) + "}";
|
---|
365 | }
|
---|
366 |
|
---|
367 | /****************************************************************
|
---|
368 | checks that matrix is symmetric.
|
---|
369 | max|A-A^T| is calculated; if it is within 1.0E-14 of max|A|,
|
---|
370 | matrix is considered symmetric
|
---|
371 | ****************************************************************/
|
---|
372 | public static bool issymmetric(double[,] a) {
|
---|
373 | int i, j, n;
|
---|
374 | double err, mx, v1, v2;
|
---|
375 | if (rows(a) != cols(a))
|
---|
376 | return false;
|
---|
377 | n = rows(a);
|
---|
378 | if (n == 0)
|
---|
379 | return true;
|
---|
380 | mx = 0;
|
---|
381 | err = 0;
|
---|
382 | for (i = 0; i < n; i++) {
|
---|
383 | for (j = i + 1; j < n; j++) {
|
---|
384 | v1 = a[i, j];
|
---|
385 | v2 = a[j, i];
|
---|
386 | if (!math.isfinite(v1))
|
---|
387 | return false;
|
---|
388 | if (!math.isfinite(v2))
|
---|
389 | return false;
|
---|
390 | err = Math.Max(err, Math.Abs(v1 - v2));
|
---|
391 | mx = Math.Max(mx, Math.Abs(v1));
|
---|
392 | mx = Math.Max(mx, Math.Abs(v2));
|
---|
393 | }
|
---|
394 | v1 = a[i, i];
|
---|
395 | if (!math.isfinite(v1))
|
---|
396 | return false;
|
---|
397 | mx = Math.Max(mx, Math.Abs(v1));
|
---|
398 | }
|
---|
399 | if (mx == 0)
|
---|
400 | return true;
|
---|
401 | return err / mx <= 1.0E-14;
|
---|
402 | }
|
---|
403 |
|
---|
404 | /****************************************************************
|
---|
405 | checks that matrix is Hermitian.
|
---|
406 | max|A-A^H| is calculated; if it is within 1.0E-14 of max|A|,
|
---|
407 | matrix is considered Hermitian
|
---|
408 | ****************************************************************/
|
---|
409 | public static bool ishermitian(complex[,] a) {
|
---|
410 | int i, j, n;
|
---|
411 | double err, mx;
|
---|
412 | complex v1, v2, vt;
|
---|
413 | if (rows(a) != cols(a))
|
---|
414 | return false;
|
---|
415 | n = rows(a);
|
---|
416 | if (n == 0)
|
---|
417 | return true;
|
---|
418 | mx = 0;
|
---|
419 | err = 0;
|
---|
420 | for (i = 0; i < n; i++) {
|
---|
421 | for (j = i + 1; j < n; j++) {
|
---|
422 | v1 = a[i, j];
|
---|
423 | v2 = a[j, i];
|
---|
424 | if (!math.isfinite(v1.x))
|
---|
425 | return false;
|
---|
426 | if (!math.isfinite(v1.y))
|
---|
427 | return false;
|
---|
428 | if (!math.isfinite(v2.x))
|
---|
429 | return false;
|
---|
430 | if (!math.isfinite(v2.y))
|
---|
431 | return false;
|
---|
432 | vt.x = v1.x - v2.x;
|
---|
433 | vt.y = v1.y + v2.y;
|
---|
434 | err = Math.Max(err, math.abscomplex(vt));
|
---|
435 | mx = Math.Max(mx, math.abscomplex(v1));
|
---|
436 | mx = Math.Max(mx, math.abscomplex(v2));
|
---|
437 | }
|
---|
438 | v1 = a[i, i];
|
---|
439 | if (!math.isfinite(v1.x))
|
---|
440 | return false;
|
---|
441 | if (!math.isfinite(v1.y))
|
---|
442 | return false;
|
---|
443 | err = Math.Max(err, Math.Abs(v1.y));
|
---|
444 | mx = Math.Max(mx, math.abscomplex(v1));
|
---|
445 | }
|
---|
446 | if (mx == 0)
|
---|
447 | return true;
|
---|
448 | return err / mx <= 1.0E-14;
|
---|
449 | }
|
---|
450 |
|
---|
451 |
|
---|
452 | /****************************************************************
|
---|
453 | Forces symmetricity by copying upper half of A to the lower one
|
---|
454 | ****************************************************************/
|
---|
455 | public static bool forcesymmetric(double[,] a) {
|
---|
456 | int i, j, n;
|
---|
457 | if (rows(a) != cols(a))
|
---|
458 | return false;
|
---|
459 | n = rows(a);
|
---|
460 | if (n == 0)
|
---|
461 | return true;
|
---|
462 | for (i = 0; i < n; i++)
|
---|
463 | for (j = i + 1; j < n; j++)
|
---|
464 | a[i, j] = a[j, i];
|
---|
465 | return true;
|
---|
466 | }
|
---|
467 |
|
---|
468 | /****************************************************************
|
---|
469 | Forces Hermiticity by copying upper half of A to the lower one
|
---|
470 | ****************************************************************/
|
---|
471 | public static bool forcehermitian(complex[,] a) {
|
---|
472 | int i, j, n;
|
---|
473 | complex v;
|
---|
474 | if (rows(a) != cols(a))
|
---|
475 | return false;
|
---|
476 | n = rows(a);
|
---|
477 | if (n == 0)
|
---|
478 | return true;
|
---|
479 | for (i = 0; i < n; i++)
|
---|
480 | for (j = i + 1; j < n; j++) {
|
---|
481 | v = a[j, i];
|
---|
482 | a[i, j].x = v.x;
|
---|
483 | a[i, j].y = -v.y;
|
---|
484 | }
|
---|
485 | return true;
|
---|
486 | }
|
---|
487 | };
|
---|
488 |
|
---|
489 | /********************************************************************
|
---|
490 | math functions
|
---|
491 | ********************************************************************/
|
---|
492 | public class math {
|
---|
493 | //public static System.Random RndObject = new System.Random(System.DateTime.Now.Millisecond);
|
---|
494 | [ThreadStatic] //mkommend: added thread static attribute to RNG to have a separate instance per thread and allow modification of the seed
|
---|
495 | public static System.Random rndobject;
|
---|
496 |
|
---|
497 | public const double machineepsilon = 5E-16;
|
---|
498 | public const double maxrealnumber = 1E300;
|
---|
499 | public const double minrealnumber = 1E-300;
|
---|
500 |
|
---|
501 | public static bool isfinite(double d) {
|
---|
502 | return !System.Double.IsNaN(d) && !System.Double.IsInfinity(d);
|
---|
503 | }
|
---|
504 |
|
---|
505 | public static double randomreal() {
|
---|
506 | double r = 0;
|
---|
507 | if (rndobject == null) rndobject = new System.Random(System.DateTime.Now.Millisecond + 1000 * System.DateTime.Now.Second + 60 * 1000 * System.DateTime.Now.Minute);
|
---|
508 | lock (rndobject) { r = rndobject.NextDouble(); }
|
---|
509 | return r;
|
---|
510 | }
|
---|
511 | public static int randominteger(int N) {
|
---|
512 | int r = 0;
|
---|
513 | if (rndobject == null) rndobject = new System.Random(System.DateTime.Now.Millisecond + 1000 * System.DateTime.Now.Second + 60 * 1000 * System.DateTime.Now.Minute);
|
---|
514 | lock (rndobject) { r = rndobject.Next(N); }
|
---|
515 | return r;
|
---|
516 | }
|
---|
517 | public static double sqr(double X) {
|
---|
518 | return X * X;
|
---|
519 | }
|
---|
520 | public static double abscomplex(complex z) {
|
---|
521 | double w;
|
---|
522 | double xabs;
|
---|
523 | double yabs;
|
---|
524 | double v;
|
---|
525 |
|
---|
526 | xabs = System.Math.Abs(z.x);
|
---|
527 | yabs = System.Math.Abs(z.y);
|
---|
528 | w = xabs > yabs ? xabs : yabs;
|
---|
529 | v = xabs < yabs ? xabs : yabs;
|
---|
530 | if (v == 0)
|
---|
531 | return w;
|
---|
532 | else {
|
---|
533 | double t = v / w;
|
---|
534 | return w * System.Math.Sqrt(1 + t * t);
|
---|
535 | }
|
---|
536 | }
|
---|
537 | public static complex conj(complex z) {
|
---|
538 | return new complex(z.x, -z.y);
|
---|
539 | }
|
---|
540 | public static complex csqr(complex z) {
|
---|
541 | return new complex(z.x * z.x - z.y * z.y, 2 * z.x * z.y);
|
---|
542 | }
|
---|
543 |
|
---|
544 | }
|
---|
545 |
|
---|
546 | /********************************************************************
|
---|
547 | serializer object (should not be used directly)
|
---|
548 | ********************************************************************/
|
---|
549 | public class serializer {
|
---|
550 | enum SMODE { DEFAULT, ALLOC, TO_STRING, FROM_STRING };
|
---|
551 | private const int SER_ENTRIES_PER_ROW = 5;
|
---|
552 | private const int SER_ENTRY_LENGTH = 11;
|
---|
553 |
|
---|
554 | private SMODE mode;
|
---|
555 | private int entries_needed;
|
---|
556 | private int entries_saved;
|
---|
557 | private int bytes_asked;
|
---|
558 | private int bytes_written;
|
---|
559 | private int bytes_read;
|
---|
560 | private char[] out_str;
|
---|
561 | private char[] in_str;
|
---|
562 |
|
---|
563 | public serializer() {
|
---|
564 | mode = SMODE.DEFAULT;
|
---|
565 | entries_needed = 0;
|
---|
566 | bytes_asked = 0;
|
---|
567 | }
|
---|
568 |
|
---|
569 | public void alloc_start() {
|
---|
570 | entries_needed = 0;
|
---|
571 | bytes_asked = 0;
|
---|
572 | mode = SMODE.ALLOC;
|
---|
573 | }
|
---|
574 |
|
---|
575 | public void alloc_entry() {
|
---|
576 | if (mode != SMODE.ALLOC)
|
---|
577 | throw new alglib.alglibexception("ALGLIB: internal error during (un)serialization");
|
---|
578 | entries_needed++;
|
---|
579 | }
|
---|
580 |
|
---|
581 | private int get_alloc_size() {
|
---|
582 | int rows, lastrowsize, result;
|
---|
583 |
|
---|
584 | // check and change mode
|
---|
585 | if (mode != SMODE.ALLOC)
|
---|
586 | throw new alglib.alglibexception("ALGLIB: internal error during (un)serialization");
|
---|
587 |
|
---|
588 | // if no entries needes (degenerate case)
|
---|
589 | if (entries_needed == 0) {
|
---|
590 | bytes_asked = 1;
|
---|
591 | return bytes_asked;
|
---|
592 | }
|
---|
593 |
|
---|
594 | // non-degenerate case
|
---|
595 | rows = entries_needed / SER_ENTRIES_PER_ROW;
|
---|
596 | lastrowsize = SER_ENTRIES_PER_ROW;
|
---|
597 | if (entries_needed % SER_ENTRIES_PER_ROW != 0) {
|
---|
598 | lastrowsize = entries_needed % SER_ENTRIES_PER_ROW;
|
---|
599 | rows++;
|
---|
600 | }
|
---|
601 |
|
---|
602 | // calculate result size
|
---|
603 | result = ((rows - 1) * SER_ENTRIES_PER_ROW + lastrowsize) * SER_ENTRY_LENGTH;
|
---|
604 | result += (rows - 1) * (SER_ENTRIES_PER_ROW - 1) + (lastrowsize - 1);
|
---|
605 | result += rows * 2;
|
---|
606 | bytes_asked = result;
|
---|
607 | return result;
|
---|
608 | }
|
---|
609 |
|
---|
610 | public void sstart_str() {
|
---|
611 | int allocsize = get_alloc_size();
|
---|
612 |
|
---|
613 | // check and change mode
|
---|
614 | if (mode != SMODE.ALLOC)
|
---|
615 | throw new alglib.alglibexception("ALGLIB: internal error during (un)serialization");
|
---|
616 | mode = SMODE.TO_STRING;
|
---|
617 |
|
---|
618 | // other preparations
|
---|
619 | out_str = new char[allocsize];
|
---|
620 | entries_saved = 0;
|
---|
621 | bytes_written = 0;
|
---|
622 | }
|
---|
623 |
|
---|
624 | public void ustart_str(string s) {
|
---|
625 | // check and change mode
|
---|
626 | if (mode != SMODE.DEFAULT)
|
---|
627 | throw new alglib.alglibexception("ALGLIB: internal error during (un)serialization");
|
---|
628 | mode = SMODE.FROM_STRING;
|
---|
629 |
|
---|
630 | in_str = s.ToCharArray();
|
---|
631 | bytes_read = 0;
|
---|
632 | }
|
---|
633 |
|
---|
634 | public void serialize_bool(bool v) {
|
---|
635 | if (mode != SMODE.TO_STRING)
|
---|
636 | throw new alglib.alglibexception("ALGLIB: internal error during (un)serialization");
|
---|
637 | bool2str(v, out_str, ref bytes_written);
|
---|
638 | entries_saved++;
|
---|
639 | if (entries_saved % SER_ENTRIES_PER_ROW != 0) {
|
---|
640 | out_str[bytes_written] = ' ';
|
---|
641 | bytes_written++;
|
---|
642 | } else {
|
---|
643 | out_str[bytes_written + 0] = '\r';
|
---|
644 | out_str[bytes_written + 1] = '\n';
|
---|
645 | bytes_written += 2;
|
---|
646 | }
|
---|
647 | }
|
---|
648 |
|
---|
649 | public void serialize_int(int v) {
|
---|
650 | if (mode != SMODE.TO_STRING)
|
---|
651 | throw new alglib.alglibexception("ALGLIB: internal error during (un)serialization");
|
---|
652 | int2str(v, out_str, ref bytes_written);
|
---|
653 | entries_saved++;
|
---|
654 | if (entries_saved % SER_ENTRIES_PER_ROW != 0) {
|
---|
655 | out_str[bytes_written] = ' ';
|
---|
656 | bytes_written++;
|
---|
657 | } else {
|
---|
658 | out_str[bytes_written + 0] = '\r';
|
---|
659 | out_str[bytes_written + 1] = '\n';
|
---|
660 | bytes_written += 2;
|
---|
661 | }
|
---|
662 | }
|
---|
663 |
|
---|
664 | public void serialize_double(double v) {
|
---|
665 | if (mode != SMODE.TO_STRING)
|
---|
666 | throw new alglib.alglibexception("ALGLIB: internal error during (un)serialization");
|
---|
667 | double2str(v, out_str, ref bytes_written);
|
---|
668 | entries_saved++;
|
---|
669 | if (entries_saved % SER_ENTRIES_PER_ROW != 0) {
|
---|
670 | out_str[bytes_written] = ' ';
|
---|
671 | bytes_written++;
|
---|
672 | } else {
|
---|
673 | out_str[bytes_written + 0] = '\r';
|
---|
674 | out_str[bytes_written + 1] = '\n';
|
---|
675 | bytes_written += 2;
|
---|
676 | }
|
---|
677 | }
|
---|
678 |
|
---|
679 | public bool unserialize_bool() {
|
---|
680 | if (mode != SMODE.FROM_STRING)
|
---|
681 | throw new alglib.alglibexception("ALGLIB: internal error during (un)serialization");
|
---|
682 | return str2bool(in_str, ref bytes_read);
|
---|
683 | }
|
---|
684 |
|
---|
685 | public int unserialize_int() {
|
---|
686 | if (mode != SMODE.FROM_STRING)
|
---|
687 | throw new alglib.alglibexception("ALGLIB: internal error during (un)serialization");
|
---|
688 | return str2int(in_str, ref bytes_read);
|
---|
689 | }
|
---|
690 |
|
---|
691 | public double unserialize_double() {
|
---|
692 | if (mode != SMODE.FROM_STRING)
|
---|
693 | throw new alglib.alglibexception("ALGLIB: internal error during (un)serialization");
|
---|
694 | return str2double(in_str, ref bytes_read);
|
---|
695 | }
|
---|
696 |
|
---|
697 | public void stop() {
|
---|
698 | }
|
---|
699 |
|
---|
700 | public string get_string() {
|
---|
701 | return new string(out_str, 0, bytes_written);
|
---|
702 | }
|
---|
703 |
|
---|
704 |
|
---|
705 | /************************************************************************
|
---|
706 | This function converts six-bit value (from 0 to 63) to character (only
|
---|
707 | digits, lowercase and uppercase letters, minus and underscore are used).
|
---|
708 |
|
---|
709 | If v is negative or greater than 63, this function returns '?'.
|
---|
710 | ************************************************************************/
|
---|
711 | private static char[] _sixbits2char_tbl = new char[64]{
|
---|
712 | '0', '1', '2', '3', '4', '5', '6', '7',
|
---|
713 | '8', '9', 'A', 'B', 'C', 'D', 'E', 'F',
|
---|
714 | 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N',
|
---|
715 | 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V',
|
---|
716 | 'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd',
|
---|
717 | 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l',
|
---|
718 | 'm', 'n', 'o', 'p', 'q', 'r', 's', 't',
|
---|
719 | 'u', 'v', 'w', 'x', 'y', 'z', '-', '_' };
|
---|
720 | private static char sixbits2char(int v) {
|
---|
721 | if (v < 0 || v > 63)
|
---|
722 | return '?';
|
---|
723 | return _sixbits2char_tbl[v];
|
---|
724 | }
|
---|
725 |
|
---|
726 | /************************************************************************
|
---|
727 | This function converts character to six-bit value (from 0 to 63).
|
---|
728 |
|
---|
729 | This function is inverse of ae_sixbits2char()
|
---|
730 | If c is not correct character, this function returns -1.
|
---|
731 | ************************************************************************/
|
---|
732 | private static int[] _char2sixbits_tbl = new int[128] {
|
---|
733 | -1, -1, -1, -1, -1, -1, -1, -1,
|
---|
734 | -1, -1, -1, -1, -1, -1, -1, -1,
|
---|
735 | -1, -1, -1, -1, -1, -1, -1, -1,
|
---|
736 | -1, -1, -1, -1, -1, -1, -1, -1,
|
---|
737 | -1, -1, -1, -1, -1, -1, -1, -1,
|
---|
738 | -1, -1, -1, -1, -1, 62, -1, -1,
|
---|
739 | 0, 1, 2, 3, 4, 5, 6, 7,
|
---|
740 | 8, 9, -1, -1, -1, -1, -1, -1,
|
---|
741 | -1, 10, 11, 12, 13, 14, 15, 16,
|
---|
742 | 17, 18, 19, 20, 21, 22, 23, 24,
|
---|
743 | 25, 26, 27, 28, 29, 30, 31, 32,
|
---|
744 | 33, 34, 35, -1, -1, -1, -1, 63,
|
---|
745 | -1, 36, 37, 38, 39, 40, 41, 42,
|
---|
746 | 43, 44, 45, 46, 47, 48, 49, 50,
|
---|
747 | 51, 52, 53, 54, 55, 56, 57, 58,
|
---|
748 | 59, 60, 61, -1, -1, -1, -1, -1 };
|
---|
749 | private static int char2sixbits(char c) {
|
---|
750 | return (c >= 0 && c < 127) ? _char2sixbits_tbl[c] : -1;
|
---|
751 | }
|
---|
752 |
|
---|
753 | /************************************************************************
|
---|
754 | This function converts three bytes (24 bits) to four six-bit values
|
---|
755 | (24 bits again).
|
---|
756 |
|
---|
757 | src array
|
---|
758 | src_offs offset of three-bytes chunk
|
---|
759 | dst array for ints
|
---|
760 | dst_offs offset of four-ints chunk
|
---|
761 | ************************************************************************/
|
---|
762 | private static void threebytes2foursixbits(byte[] src, int src_offs, int[] dst, int dst_offs) {
|
---|
763 | dst[dst_offs + 0] = src[src_offs + 0] & 0x3F;
|
---|
764 | dst[dst_offs + 1] = (src[src_offs + 0] >> 6) | ((src[src_offs + 1] & 0x0F) << 2);
|
---|
765 | dst[dst_offs + 2] = (src[src_offs + 1] >> 4) | ((src[src_offs + 2] & 0x03) << 4);
|
---|
766 | dst[dst_offs + 3] = src[src_offs + 2] >> 2;
|
---|
767 | }
|
---|
768 |
|
---|
769 | /************************************************************************
|
---|
770 | This function converts four six-bit values (24 bits) to three bytes
|
---|
771 | (24 bits again).
|
---|
772 |
|
---|
773 | src pointer to four ints
|
---|
774 | src_offs offset of the chunk
|
---|
775 | dst pointer to three bytes
|
---|
776 | dst_offs offset of the chunk
|
---|
777 | ************************************************************************/
|
---|
778 | private static void foursixbits2threebytes(int[] src, int src_offs, byte[] dst, int dst_offs) {
|
---|
779 | dst[dst_offs + 0] = (byte)(src[src_offs + 0] | ((src[src_offs + 1] & 0x03) << 6));
|
---|
780 | dst[dst_offs + 1] = (byte)((src[src_offs + 1] >> 2) | ((src[src_offs + 2] & 0x0F) << 4));
|
---|
781 | dst[dst_offs + 2] = (byte)((src[src_offs + 2] >> 4) | (src[src_offs + 3] << 2));
|
---|
782 | }
|
---|
783 |
|
---|
784 | /************************************************************************
|
---|
785 | This function serializes boolean value into buffer
|
---|
786 |
|
---|
787 | v boolean value to be serialized
|
---|
788 | buf buffer, at least 11 characters wide
|
---|
789 | offs offset in the buffer
|
---|
790 |
|
---|
791 | after return from this function, offs points to the char's past the value
|
---|
792 | being read.
|
---|
793 | ************************************************************************/
|
---|
794 | private static void bool2str(bool v, char[] buf, ref int offs) {
|
---|
795 | char c = v ? '1' : '0';
|
---|
796 | int i;
|
---|
797 | for (i = 0; i < SER_ENTRY_LENGTH; i++)
|
---|
798 | buf[offs + i] = c;
|
---|
799 | offs += SER_ENTRY_LENGTH;
|
---|
800 | }
|
---|
801 |
|
---|
802 | /************************************************************************
|
---|
803 | This function unserializes boolean value from buffer
|
---|
804 |
|
---|
805 | buf buffer which contains value; leading spaces/tabs/newlines are
|
---|
806 | ignored, traling spaces/tabs/newlines are treated as end of
|
---|
807 | the boolean value.
|
---|
808 | offs offset in the buffer
|
---|
809 |
|
---|
810 | after return from this function, offs points to the char's past the value
|
---|
811 | being read.
|
---|
812 |
|
---|
813 | This function raises an error in case unexpected symbol is found
|
---|
814 | ************************************************************************/
|
---|
815 | private static bool str2bool(char[] buf, ref int offs) {
|
---|
816 | bool was0, was1;
|
---|
817 | string emsg = "ALGLIB: unable to read boolean value from stream";
|
---|
818 |
|
---|
819 | was0 = false;
|
---|
820 | was1 = false;
|
---|
821 | while (buf[offs] == ' ' || buf[offs] == '\t' || buf[offs] == '\n' || buf[offs] == '\r')
|
---|
822 | offs++;
|
---|
823 | while (buf[offs] != ' ' && buf[offs] != '\t' && buf[offs] != '\n' && buf[offs] != '\r' && buf[offs] != 0) {
|
---|
824 | if (buf[offs] == '0') {
|
---|
825 | was0 = true;
|
---|
826 | offs++;
|
---|
827 | continue;
|
---|
828 | }
|
---|
829 | if (buf[offs] == '1') {
|
---|
830 | was1 = true;
|
---|
831 | offs++;
|
---|
832 | continue;
|
---|
833 | }
|
---|
834 | throw new alglib.alglibexception(emsg);
|
---|
835 | }
|
---|
836 | if ((!was0) && (!was1))
|
---|
837 | throw new alglib.alglibexception(emsg);
|
---|
838 | if (was0 && was1)
|
---|
839 | throw new alglib.alglibexception(emsg);
|
---|
840 | return was1 ? true : false;
|
---|
841 | }
|
---|
842 |
|
---|
843 | /************************************************************************
|
---|
844 | This function serializes integer value into buffer
|
---|
845 |
|
---|
846 | v integer value to be serialized
|
---|
847 | buf buffer, at least 11 characters wide
|
---|
848 | offs offset in the buffer
|
---|
849 |
|
---|
850 | after return from this function, offs points to the char's past the value
|
---|
851 | being read.
|
---|
852 |
|
---|
853 | This function raises an error in case unexpected symbol is found
|
---|
854 | ************************************************************************/
|
---|
855 | private static void int2str(int v, char[] buf, ref int offs) {
|
---|
856 | int i;
|
---|
857 | byte[] _bytes = System.BitConverter.GetBytes((int)v);
|
---|
858 | byte[] bytes = new byte[9];
|
---|
859 | int[] sixbits = new int[12];
|
---|
860 | byte c;
|
---|
861 |
|
---|
862 | //
|
---|
863 | // copy v to array of bytes, sign extending it and
|
---|
864 | // converting to little endian order. Additionally,
|
---|
865 | // we set 9th byte to zero in order to simplify
|
---|
866 | // conversion to six-bit representation
|
---|
867 | //
|
---|
868 | if (!System.BitConverter.IsLittleEndian)
|
---|
869 | System.Array.Reverse(_bytes);
|
---|
870 | c = v < 0 ? (byte)0xFF : (byte)0x00;
|
---|
871 | for (i = 0; i < sizeof(int); i++)
|
---|
872 | bytes[i] = _bytes[i];
|
---|
873 | for (i = sizeof(int); i < 8; i++)
|
---|
874 | bytes[i] = c;
|
---|
875 | bytes[8] = 0;
|
---|
876 |
|
---|
877 | //
|
---|
878 | // convert to six-bit representation, output
|
---|
879 | //
|
---|
880 | // NOTE: last 12th element of sixbits is always zero, we do not output it
|
---|
881 | //
|
---|
882 | threebytes2foursixbits(bytes, 0, sixbits, 0);
|
---|
883 | threebytes2foursixbits(bytes, 3, sixbits, 4);
|
---|
884 | threebytes2foursixbits(bytes, 6, sixbits, 8);
|
---|
885 | for (i = 0; i < SER_ENTRY_LENGTH; i++)
|
---|
886 | buf[offs + i] = sixbits2char(sixbits[i]);
|
---|
887 | offs += SER_ENTRY_LENGTH;
|
---|
888 | }
|
---|
889 |
|
---|
890 | /************************************************************************
|
---|
891 | This function unserializes integer value from string
|
---|
892 |
|
---|
893 | buf buffer which contains value; leading spaces/tabs/newlines are
|
---|
894 | ignored, traling spaces/tabs/newlines are treated as end of
|
---|
895 | the integer value.
|
---|
896 | offs offset in the buffer
|
---|
897 |
|
---|
898 | after return from this function, offs points to the char's past the value
|
---|
899 | being read.
|
---|
900 |
|
---|
901 | This function raises an error in case unexpected symbol is found
|
---|
902 | ************************************************************************/
|
---|
903 | private static int str2int(char[] buf, ref int offs) {
|
---|
904 | string emsg = "ALGLIB: unable to read integer value from stream";
|
---|
905 | string emsg3264 = "ALGLIB: unable to read integer value from stream (value does not fit into 32 bits)";
|
---|
906 | int[] sixbits = new int[12];
|
---|
907 | byte[] bytes = new byte[9];
|
---|
908 | byte[] _bytes = new byte[sizeof(int)];
|
---|
909 | int sixbitsread, i;
|
---|
910 | byte c;
|
---|
911 |
|
---|
912 | //
|
---|
913 | // 1. skip leading spaces
|
---|
914 | // 2. read and decode six-bit digits
|
---|
915 | // 3. set trailing digits to zeros
|
---|
916 | // 4. convert to little endian 64-bit integer representation
|
---|
917 | // 5. check that we fit into int
|
---|
918 | // 6. convert to big endian representation, if needed
|
---|
919 | //
|
---|
920 | sixbitsread = 0;
|
---|
921 | while (buf[offs] == ' ' || buf[offs] == '\t' || buf[offs] == '\n' || buf[offs] == '\r')
|
---|
922 | offs++;
|
---|
923 | while (buf[offs] != ' ' && buf[offs] != '\t' && buf[offs] != '\n' && buf[offs] != '\r' && buf[offs] != 0) {
|
---|
924 | int d;
|
---|
925 | d = char2sixbits(buf[offs]);
|
---|
926 | if (d < 0 || sixbitsread >= SER_ENTRY_LENGTH)
|
---|
927 | throw new alglib.alglibexception(emsg);
|
---|
928 | sixbits[sixbitsread] = d;
|
---|
929 | sixbitsread++;
|
---|
930 | offs++;
|
---|
931 | }
|
---|
932 | if (sixbitsread == 0)
|
---|
933 | throw new alglib.alglibexception(emsg);
|
---|
934 | for (i = sixbitsread; i < 12; i++)
|
---|
935 | sixbits[i] = 0;
|
---|
936 | foursixbits2threebytes(sixbits, 0, bytes, 0);
|
---|
937 | foursixbits2threebytes(sixbits, 4, bytes, 3);
|
---|
938 | foursixbits2threebytes(sixbits, 8, bytes, 6);
|
---|
939 | c = (bytes[sizeof(int) - 1] & 0x80) != 0 ? (byte)0xFF : (byte)0x00;
|
---|
940 | for (i = sizeof(int); i < 8; i++)
|
---|
941 | if (bytes[i] != c)
|
---|
942 | throw new alglib.alglibexception(emsg3264);
|
---|
943 | for (i = 0; i < sizeof(int); i++)
|
---|
944 | _bytes[i] = bytes[i];
|
---|
945 | if (!System.BitConverter.IsLittleEndian)
|
---|
946 | System.Array.Reverse(_bytes);
|
---|
947 | return System.BitConverter.ToInt32(_bytes, 0);
|
---|
948 | }
|
---|
949 |
|
---|
950 |
|
---|
951 | /************************************************************************
|
---|
952 | This function serializes double value into buffer
|
---|
953 |
|
---|
954 | v double value to be serialized
|
---|
955 | buf buffer, at least 11 characters wide
|
---|
956 | offs offset in the buffer
|
---|
957 |
|
---|
958 | after return from this function, offs points to the char's past the value
|
---|
959 | being read.
|
---|
960 | ************************************************************************/
|
---|
961 | private static void double2str(double v, char[] buf, ref int offs) {
|
---|
962 | int i;
|
---|
963 | int[] sixbits = new int[12];
|
---|
964 | byte[] bytes = new byte[9];
|
---|
965 |
|
---|
966 | //
|
---|
967 | // handle special quantities
|
---|
968 | //
|
---|
969 | if (System.Double.IsNaN(v)) {
|
---|
970 | buf[offs + 0] = '.';
|
---|
971 | buf[offs + 1] = 'n';
|
---|
972 | buf[offs + 2] = 'a';
|
---|
973 | buf[offs + 3] = 'n';
|
---|
974 | buf[offs + 4] = '_';
|
---|
975 | buf[offs + 5] = '_';
|
---|
976 | buf[offs + 6] = '_';
|
---|
977 | buf[offs + 7] = '_';
|
---|
978 | buf[offs + 8] = '_';
|
---|
979 | buf[offs + 9] = '_';
|
---|
980 | buf[offs + 10] = '_';
|
---|
981 | offs += SER_ENTRY_LENGTH;
|
---|
982 | return;
|
---|
983 | }
|
---|
984 | if (System.Double.IsPositiveInfinity(v)) {
|
---|
985 | buf[offs + 0] = '.';
|
---|
986 | buf[offs + 1] = 'p';
|
---|
987 | buf[offs + 2] = 'o';
|
---|
988 | buf[offs + 3] = 's';
|
---|
989 | buf[offs + 4] = 'i';
|
---|
990 | buf[offs + 5] = 'n';
|
---|
991 | buf[offs + 6] = 'f';
|
---|
992 | buf[offs + 7] = '_';
|
---|
993 | buf[offs + 8] = '_';
|
---|
994 | buf[offs + 9] = '_';
|
---|
995 | buf[offs + 10] = '_';
|
---|
996 | offs += SER_ENTRY_LENGTH;
|
---|
997 | return;
|
---|
998 | }
|
---|
999 | if (System.Double.IsNegativeInfinity(v)) {
|
---|
1000 | buf[offs + 0] = '.';
|
---|
1001 | buf[offs + 1] = 'n';
|
---|
1002 | buf[offs + 2] = 'e';
|
---|
1003 | buf[offs + 3] = 'g';
|
---|
1004 | buf[offs + 4] = 'i';
|
---|
1005 | buf[offs + 5] = 'n';
|
---|
1006 | buf[offs + 6] = 'f';
|
---|
1007 | buf[offs + 7] = '_';
|
---|
1008 | buf[offs + 8] = '_';
|
---|
1009 | buf[offs + 9] = '_';
|
---|
1010 | buf[offs + 10] = '_';
|
---|
1011 | offs += SER_ENTRY_LENGTH;
|
---|
1012 | return;
|
---|
1013 | }
|
---|
1014 |
|
---|
1015 | //
|
---|
1016 | // process general case:
|
---|
1017 | // 1. copy v to array of chars
|
---|
1018 | // 2. set 9th byte to zero in order to simplify conversion to six-bit representation
|
---|
1019 | // 3. convert to little endian (if needed)
|
---|
1020 | // 4. convert to six-bit representation
|
---|
1021 | // (last 12th element of sixbits is always zero, we do not output it)
|
---|
1022 | //
|
---|
1023 | byte[] _bytes = System.BitConverter.GetBytes((double)v);
|
---|
1024 | if (!System.BitConverter.IsLittleEndian)
|
---|
1025 | System.Array.Reverse(_bytes);
|
---|
1026 | for (i = 0; i < sizeof(double); i++)
|
---|
1027 | bytes[i] = _bytes[i];
|
---|
1028 | for (i = sizeof(double); i < 9; i++)
|
---|
1029 | bytes[i] = 0;
|
---|
1030 | threebytes2foursixbits(bytes, 0, sixbits, 0);
|
---|
1031 | threebytes2foursixbits(bytes, 3, sixbits, 4);
|
---|
1032 | threebytes2foursixbits(bytes, 6, sixbits, 8);
|
---|
1033 | for (i = 0; i < SER_ENTRY_LENGTH; i++)
|
---|
1034 | buf[offs + i] = sixbits2char(sixbits[i]);
|
---|
1035 | offs += SER_ENTRY_LENGTH;
|
---|
1036 | }
|
---|
1037 |
|
---|
1038 | /************************************************************************
|
---|
1039 | This function unserializes double value from string
|
---|
1040 |
|
---|
1041 | buf buffer which contains value; leading spaces/tabs/newlines are
|
---|
1042 | ignored, traling spaces/tabs/newlines are treated as end of
|
---|
1043 | the double value.
|
---|
1044 | offs offset in the buffer
|
---|
1045 |
|
---|
1046 | after return from this function, offs points to the char's past the value
|
---|
1047 | being read.
|
---|
1048 |
|
---|
1049 | This function raises an error in case unexpected symbol is found
|
---|
1050 | ************************************************************************/
|
---|
1051 | private static double str2double(char[] buf, ref int offs) {
|
---|
1052 | string emsg = "ALGLIB: unable to read double value from stream";
|
---|
1053 | int[] sixbits = new int[12];
|
---|
1054 | byte[] bytes = new byte[9];
|
---|
1055 | byte[] _bytes = new byte[sizeof(double)];
|
---|
1056 | int sixbitsread, i;
|
---|
1057 |
|
---|
1058 |
|
---|
1059 | //
|
---|
1060 | // skip leading spaces
|
---|
1061 | //
|
---|
1062 | while (buf[offs] == ' ' || buf[offs] == '\t' || buf[offs] == '\n' || buf[offs] == '\r')
|
---|
1063 | offs++;
|
---|
1064 |
|
---|
1065 |
|
---|
1066 | //
|
---|
1067 | // Handle special cases
|
---|
1068 | //
|
---|
1069 | if (buf[offs] == '.') {
|
---|
1070 | string s = new string(buf, offs, SER_ENTRY_LENGTH);
|
---|
1071 | if (s == ".nan_______") {
|
---|
1072 | offs += SER_ENTRY_LENGTH;
|
---|
1073 | return System.Double.NaN;
|
---|
1074 | }
|
---|
1075 | if (s == ".posinf____") {
|
---|
1076 | offs += SER_ENTRY_LENGTH;
|
---|
1077 | return System.Double.PositiveInfinity;
|
---|
1078 | }
|
---|
1079 | if (s == ".neginf____") {
|
---|
1080 | offs += SER_ENTRY_LENGTH;
|
---|
1081 | return System.Double.NegativeInfinity;
|
---|
1082 | }
|
---|
1083 | throw new alglib.alglibexception(emsg);
|
---|
1084 | }
|
---|
1085 |
|
---|
1086 | //
|
---|
1087 | // General case:
|
---|
1088 | // 1. read and decode six-bit digits
|
---|
1089 | // 2. check that all 11 digits were read
|
---|
1090 | // 3. set last 12th digit to zero (needed for simplicity of conversion)
|
---|
1091 | // 4. convert to 8 bytes
|
---|
1092 | // 5. convert to big endian representation, if needed
|
---|
1093 | //
|
---|
1094 | sixbitsread = 0;
|
---|
1095 | while (buf[offs] != ' ' && buf[offs] != '\t' && buf[offs] != '\n' && buf[offs] != '\r' && buf[offs] != 0) {
|
---|
1096 | int d;
|
---|
1097 | d = char2sixbits(buf[offs]);
|
---|
1098 | if (d < 0 || sixbitsread >= SER_ENTRY_LENGTH)
|
---|
1099 | throw new alglib.alglibexception(emsg);
|
---|
1100 | sixbits[sixbitsread] = d;
|
---|
1101 | sixbitsread++;
|
---|
1102 | offs++;
|
---|
1103 | }
|
---|
1104 | if (sixbitsread != SER_ENTRY_LENGTH)
|
---|
1105 | throw new alglib.alglibexception(emsg);
|
---|
1106 | sixbits[SER_ENTRY_LENGTH] = 0;
|
---|
1107 | foursixbits2threebytes(sixbits, 0, bytes, 0);
|
---|
1108 | foursixbits2threebytes(sixbits, 4, bytes, 3);
|
---|
1109 | foursixbits2threebytes(sixbits, 8, bytes, 6);
|
---|
1110 | for (i = 0; i < sizeof(double); i++)
|
---|
1111 | _bytes[i] = bytes[i];
|
---|
1112 | if (!System.BitConverter.IsLittleEndian)
|
---|
1113 | System.Array.Reverse(_bytes);
|
---|
1114 | return System.BitConverter.ToDouble(_bytes, 0);
|
---|
1115 | }
|
---|
1116 | }
|
---|
1117 | }
|
---|