This file is indexed.

/usr/include/libphylo/numRec.h is in rate4site 3.0.0-5.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
// $Id: numRec.h 9652 2011-07-12 13:59:26Z rubi $

// version 1.00
// last modified 2 Nov 2002

#ifndef ___NUM_REC
#define ___NUM_REC

#include <cmath>
#include <cassert>
#include <iostream>
using namespace std;
#include "definitions.h"
#include "errorMsg.h"
#include "uniformDistribution.h"
#include "logFile.h"

//#define VERBOS
#define SIGN(a,b) ((b) >= 0.0 ? fabs(a) : -fabs(a))

//========================== function brent =========================================
template <typename regF>
MDOUBLE brent(MDOUBLE ax, MDOUBLE bx, MDOUBLE cx, regF f, MDOUBLE tol,
	      MDOUBLE *xmin) {

    const int ITMAX  = 100;
    const MDOUBLE CGOLD = 0.3819660f;
    const MDOUBLE ZEPS = 1.0e-10f;

    int iter;
    MDOUBLE a,b,d=0.0,etemp,fu,fv,fw,fx,p,q,r,tol1,tol2,u,v,w,x,xm;
    MDOUBLE e=0.0;

    a=(ax < cx ? ax : cx);
    b=(ax > cx ? ax : cx);
    x=w=v=bx;
    fw=fv=fx=f(x);
	LOG(10,<<"brent, f("<<x<<")="<<fx<<endl);
    for (iter=1;iter<=ITMAX;iter++) {
	xm=0.5*(a+b);
	tol2=2.0*(tol1=tol*fabs(x)+ZEPS);
	if (fabs(x-xm) <= (tol2-0.5*(b-a))) {
	    *xmin=x;
	    return fx;
	}
	if (fabs(e) > tol1) {
	    r=(x-w)*(fx-fv);
	    q=(x-v)*(fx-fw);
	    p=(x-v)*q-(x-w)*r;
	    q=2.0*(q-r);
	    if (q > 0.0) p = -p;
	    q=fabs(q);
	    etemp=e;
	    e=d;
	    if (fabs(p) >= fabs(0.5*q*etemp) || p <= q*(a-x) || p >= q*(b-x))
		d=CGOLD*(e=(x >= xm ? a-x : b-x));
	    else {
		d=p/q;
		u=x+d;
		if (u-a < tol2 || b-u < tol2)
		    d=SIGN(tol1,xm-x);
	    }
	} else {
	    d=CGOLD*(e=(x >= xm ? a-x : b-x));
	}
	u=(fabs(d) >= tol1 ? x+d : x+SIGN(tol1,d));
	fu=f(u);
	LOG(10,<<"brent, f("<<u<<")="<<fu<<endl);
	if (fu <= fx) {
	    if (u >= x) a=x; else b=x;
	    v=w;w=x;x=u;
	    fv=fw;fw=fx; fx=fu;
	} else {
	    if (u < x) a=u; else b=u;
	    if (fu <= fw || w == x) {
		v=w;
		w=u;
		fv=fw;
		fw=fu;
	    } else if (fu <= fv || v == x || v == w) {
		v=u;
		fv=fu;
	    }
	}
    }
    errorMsg::reportError(" too many iterations in function, brent. "); // also quit the program
    return -1;
}

/*
//A doubleRep implementation of brent cause return type function overloading is forbidden in c++
template <typename regF>
doubleRep brentDoubleRep(doubleRep ax, doubleRep bx, doubleRep cx, regF f, doubleRep tol,
	      MDOUBLE *xmin) {

    const int ITMAX  = 100;
    const doubleRep CGOLD(0.3819660f);
    const doubleRep ZEPS(1.0e-10f);
	doubleRep minusOne(-1.0);
    int iter;
    doubleRep fu,fv,fw,fx,a,b,etemp,p,q,r,u,v,w,x;
	doubleRep d(0.0);
    doubleRep e(0.0);
	doubleRep half(0.5);
	doubleRep two(2.0);
	doubleRep zero(0.0);

    a=(ax < cx ? ax : cx);
    b=(ax > cx ? ax : cx);
    x=w=v=bx;
    fw=fv=fx=f(convert(x));
	LOG(10,<<"brent, f("<<x<<")="<<fx<<endl);
    for (iter=1;iter<=ITMAX;iter++) {
	doubleRep xm(0.5*convert(a+b));
	doubleRep tol1(convert(tol)*fabs(convert(x)));
	doubleRep tol2(2.0*convert((tol1+ZEPS)));
	if (fabs(convert(x+minusOne*xm)) <= convert(tol2+minusOne*half*(b+minusOne*a))) {
	    *xmin=convert(x);
	    return fx;
	}
	if (fabs(convert(e)) > convert(tol1)) {
	    r=(x+minusOne*w)*(fx+minusOne*fv);
	    q=(x+minusOne*v)*(fx+minusOne*fw);
	    p=(x+minusOne*v)*q+minusOne*(x+minusOne*w)*r;
	    q=two*(q+minusOne*r);
	    if (q > zero) p = minusOne*p;
		doubleRep newQ(fabs(convert(q)));
	    q=newQ;
	    etemp=e;
	    e=d;
	    if (fabs(convert(p)) >= fabs(convert(half*q*etemp)) || p <= q*(a+minusOne*x) || p >= q*(b+minusOne*x))
		d=CGOLD*(e=(x >= xm ? a+minusOne*x : b+minusOne*x));
	    else {
		d=p/q;
		u=x+d;
		if (u+minusOne*a < tol2 || b+minusOne*u < tol2){
			doubleRep newD(SIGN(convert(tol1),convert(xm+minusOne*x)));
		    d=newD;
		}
	    }
	} else {
	    d=CGOLD*(e=(x >= xm ? a+minusOne*x : b+minusOne*x));
	}
	u=(fabs(convert(d)) >= convert(tol1) ? x+d : x+SIGN(convert(tol1),convert(d)));
	fu=f(convert(u));
	LOG(10,<<"brent, f("<<u<<")="<<fu<<endl);
	if (fu <= fx) {
	    if (u >= x) a=x; else b=x;
	    v=w;w=x;x=u;
	    fv=fw;fw=fx; fx=fu;
	} else {
	    if (u < x) a=u; else b=u;
	    if (fu <= fw || w == x) {
		v=w;
		w=u;
		fv=fw;
		fw=fu;
	    } else if (fu <= fv || v == x || v == w) {
		v=u;
		fv=fu;
	    }
	}
    }
    errorMsg::reportError(" too many iterations in function, brentDoubleRep. "); // also quit the program
    return minusOne;
}
*/
// ===================================== function dbrent ========================================
/* The efficiency of this function for likelihood computations can be improved by replacing 
   functors regF f and dF df with one objects that preforms the likelihood computation once 
   and produces both L(t) and dL(t)/dt.  This object will provide methods:
   MDOUBLE f(MDOUBLE x)
   MDOUBLE df(MDOUBLE x)
*/	

#define ITMAX 100
#define ZEPS 1.0e-10
#define MOV3(a,b,c, d,e,f) (a)=(d);(b)=(e);(c)=(f);

template <typename regF, typename dF>
MDOUBLE dbrent(MDOUBLE ax, MDOUBLE bx, MDOUBLE cx, regF f,
	       dF df, MDOUBLE tol, MDOUBLE *xmin) {

    int iter,ok1,ok2;
    MDOUBLE a,b,d=0.0,d1,d2,du,dv,dw,dx,e=0.0;
    MDOUBLE fu,fv,fw,fx,olde,tol1,tol2,u,u1,u2,v,w,x,xm;

    a=(ax < cx ? ax : cx);
    b=(ax > cx ? ax : cx);
    //ensuring x is between a and b
    if (bx>b) { x=w=v=b;b=bx;}
    else if (bx<a) {x=w=v=a; a=bx;}
    else x=w=v=bx;
	
    fw=fv=fx=f(x);
    assert(fv==fv);// throw an exception if answer is nan = not a number.
    dw=dv=dx=df(x);

    for (iter=1;iter<=ITMAX;iter++) {
	xm=0.5*(a+b);
#ifdef VERBOS
	//if (iter>10) cout<<"iteration: "<<iter<<" xm = "<<xm<<" x= "<<x<<" a= "<<a<<" b= "<<b<<" fx= "<<fx<<endl;
#endif
	tol1=tol*fabs(x)+ZEPS;
	tol2=2.0*tol1;

	if (fabs(x-xm) <= (tol2-0.5*(b-a))) {
	    *xmin=x;
	    return fx;
	}
	if (fabs(e) > tol1) { 
	    d1=2.0*(b-a);
	    d2=d1;
	    if (dw != dx) d1=(w-x)*dx/(dx-dw);
	    if (dv != dx) d2=(v-x)*dx/(dx-dv);
	    u1=x+d1;
	    u2=x+d2;
	    ok1 = (a-u1)*(u1-b) > 0.0 && dx*d1 <= 0.0;
	    ok2 = (a-u2)*(u2-b) > 0.0 && dx*d2 <= 0.0;
	    olde=e;
	    e=d;
	    if (ok1 || ok2) { 
		if (ok1 && ok2)
		    d=(fabs(d1) < fabs(d2) ? d1 : d2);
		else if (ok1)
		    d=d1;
		else
		    d=d2;
		if (fabs(d) <= fabs(0.5*olde)) {
		    u=x+d;
		    if (u-a < tol2 || b-u < tol2)
			d=SIGN(tol1,xm-x);
		} else {
		    d=0.5*(e=(dx >= 0.0 ? a-x : b-x));
		}
	    } else {
		d=0.5*(e=(dx >= 0.0 ? a-x : b-x));
	    }
	} else {
	    d=0.5*(e=(dx >= 0.0 ? a-x : b-x));
	}
	if (fabs(d) >= tol1) {
	    u=x+d;
	    fu=f(u);
	} else {
	    u=x+SIGN(tol1,d); 
	    if (u<ax) u=x; // MY LATEST ADDITION!
	    fu=f(u);
	    if (fu > fx) {
		*xmin=x;
		return fx;
	    }
	}
	du=df(u);
	if (fu <= fx) {
	    if (u >= x) a=x; else b=x;
	    MOV3(v,fv,dv, w,fw,dw)
		MOV3(w,fw,dw, x,fx,dx)
		MOV3(x,fx,dx, u,fu,du)
		} else {
		    if (u < x) a=u; else b=u; 
		    if (fu <= fw || w == x) {
			MOV3(v,fv,dv, w,fw,dw)
			    MOV3(w,fw,dw, u,fu,du)
			    } else if (fu < fv || v == x || v == w) {
				MOV3(v,fv,dv, u,fu,du)
				    }
		}

    }
    errorMsg::reportError("Too many iterations in routine dbrent"); // also quit the program
    return -1;
}

/*
//A doubleRep implementation of dbrent cause return type function overloading is forbidden in c++
template <typename regF, typename dF>
doubleRep dbrentDoubleRep(doubleRep ax, doubleRep bx, doubleRep cx, regF f,
	       dF df, doubleRep tol, MDOUBLE *xmin) {

    int iter,ok1,ok2;
    doubleRep a,b,d1,d2;
	doubleRep d(0.0);
	doubleRep e(0.0);
    doubleRep olde,u,u1,u2,v,w,x,xm;
	doubleRep fu,fv,fw,fx,du,dv,dw,dx;
	doubleRep minusOne(-1.0);
	doubleRep half(0.5);
	doubleRep two(2.0);
	doubleRep zero(0.0);
    a=(ax < cx ? ax : cx);
    b=(ax > cx ? ax : cx);
    //ensuring x is between a and b
    if (bx>b) { x=w=v=b;b=bx;}
    else if (bx<a) {x=w=v=a; a=bx;}
    else x=w=v=bx;
	
    fw=fv=fx=f(convert(x));
    assert(fv==fv);// throw an exception if answer is nan = not a number.
    dw=dv=dx=df(convert(x));

    for (iter=1;iter<=ITMAX;iter++) {
	xm=half*(a+b);
#ifdef VERBOS
	//if (iter>10) cout<<"iteration: "<<iter<<" xm = "<<xm<<" x= "<<x<<" a= "<<a<<" b= "<<b<<" fx= "<<fx<<endl;
#endif
	doubleRep tol1(convert(tol)*fabs(convert(x)));
	doubleRep tol2(2.0*(convert(tol1)+ZEPS));

	if (fabs(convert(x+minusOne*xm)) <= convert((tol2+minusOne*half*(b+minusOne*a)))) {
	    *xmin=convert(x);
	    return fx;
	}
	if (fabs(convert(e)) > convert(tol1)) { 
	    d1=two*(b+minusOne*a);
	    d2=d1;
	    if (dw != dx) d1=(w+minusOne*x)*dx/(dx+minusOne*dw);
	    if (dv != dx) d2=(v+minusOne*x)*dx/(dx+minusOne*dv);
	    u1=x+d1;
	    u2=x+d2;
	    ok1 = (a+minusOne*u1)*(u1+minusOne*b) > zero && dx*d1 <= zero;
	    ok2 = (a+minusOne*u2)*(u2+minusOne*b) > zero && dx*d2 <= zero;
	    olde=e;
	    e=d;
	    if (ok1 || ok2) { 
		if (ok1 && ok2)
		    d=(fabs(convert(d1)) < fabs(convert(d2)) ? d1 : d2);
		else if (ok1)
		    d=d1;
		else
		    d=d2;
		if (fabs(convert(d)) <= fabs(convert(half*olde))) {
		    u=x+d;
			if (u+minusOne*a < tol2 || b+minusOne*u < tol2){
				doubleRep sign(SIGN(convert(tol1),convert(xm+minusOne*x)));
				d=sign;
			}
		} else {
		    d=half*(e=(dx >= zero ? a+minusOne*x : b+minusOne*x));
		}
	    } else {
		d=half*(e=(dx >= zero ? a+minusOne*x : b+minusOne*x));
	    }
	} else {
	    d=half*(e=(dx >= zero ? a+minusOne*x : b+minusOne*x));
	}
	if (fabs(convert(d)) >= convert(tol1)) {
	    u=x+d;
	    fu=f(convert(u));
	} else {
		doubleRep sign(SIGN(convert(tol1),convert(d)));
	    u=x+sign; 
	    if (u<ax) u=x; // MY LATEST ADDITION!
	    fu=f(convert(u));
	    if (fu > fx) {
		*xmin=convert(x);
		return fx;
	    }
	}
	du=df(convert(u));
	if (fu <= fx) {
	    if (u >= x) a=x; else b=x;
	    MOV3(v,fv,dv, w,fw,dw)
		MOV3(w,fw,dw, x,fx,dx)
		MOV3(x,fx,dx, u,fu,du)
		} else {
		    if (u < x) a=u; else b=u; 
		    if (fu <= fw || w == x) {
			MOV3(v,fv,dv, w,fw,dw)
			    MOV3(w,fw,dw, u,fu,du)
			    } else if (fu < fv || v == x || v == w) {
				MOV3(v,fv,dv, u,fu,du)
				    }
		}

    }
    errorMsg::reportError("Too many iterations in routine dbrentDoubleRep"); // also quit the program
    return minusOne;
}
*/
/*================================== function rtbis =========================================
//Using bisection, find the root of the function func known to lie between 
x1 and x2. The return value is the root will be refined until its accuracy is +- xacc 
*/
template <typename regF>
MDOUBLE rtbis(regF func,MDOUBLE x1, MDOUBLE x2, MDOUBLE xacc) {
    const int max_number_of_iter = 100;
	
    MDOUBLE f = func(x1);
    MDOUBLE fmid = func(x2);
    if (f*fmid >=0.0) {
	errorMsg::reportError(" error in function rtbis, root must be bracketed for bisection in rtbis ");
	// also quit the program
    }

    MDOUBLE dx, rtb;
    if (f<0.0) {
	dx = x2-x1;
	rtb = x1;
    }
    else {
	dx = x1-x2;
	rtb = x2;
    }


    for (int j=1; j <= max_number_of_iter; ++j) {
	dx *= 0.5;
	MDOUBLE xmid = rtb+dx; 
	MDOUBLE fmid = func(xmid);
	if (fmid <= 0.0) rtb = xmid;
	if ((fabs(dx) < xacc) || (fmid == 0.0)) return rtb;
    }
    errorMsg::reportError("Error in function rtbis..."); // also quit the program...
    return -1.0;
}

//Given a function func and an initial guessed range (x1,x2), the routine expands the range
//geometrically until a root is bracketed by the returned values x1 and x2 (in which case zbrac retruns true)
//or until the range becomes large unacceptably large (in which case zbrac return false).
template <typename regF>
bool zbrac(regF func, MDOUBLE &x1, MDOUBLE &x2) {
    const int NTRY=50;
    const MDOUBLE FACTOR= 1.6;
    int j;
    MDOUBLE f1,f2;

    if (x1 == x2) 
	errorMsg::reportError("Bad initial range in zbrac");
    f1 = func(x1);
    f2 = func(x2);
    for (j = 0; j < NTRY; j++) 
    {
	if (f1 * f2 < 0.0) 
	    return true;
	if (fabs(f1) < fabs(f2))
	    f1=func(x1 += FACTOR*(x1-x2));
	else
	    f2=func(x2 += FACTOR*(x2-x1));
    }
    return false;
}

// ================================ function brent new ======================================

int MyJacobi(VVdouble &Insym, VVdouble &RightEigenV, Vdouble &EigenValues);
MDOUBLE sign(MDOUBLE a,MDOUBLE b);
MDOUBLE pythag(const MDOUBLE a, const MDOUBLE b);
void houseHolder(VVdouble &mat,VVdouble &Q);
void tred2(VVdouble &a, Vdouble &d, Vdouble &e);
void QL(Vdouble &d, Vdouble &e, VVdouble &z);
void computeEigenSystem(VVdouble &symmetricMatrix,VVdouble &eigenVectros,Vdouble &diagonal);
MDOUBLE performKSTest(const uniformDistribution& empiricalDist, Vdouble& observedDist); // perform Kolomogorov-Smirnoff test
MDOUBLE computeProbForKS (const MDOUBLE QsParam); // function called only by performKSTest



#endif