Show
Ignore:
Timestamp:
06/09/10 14:00:40 (14 years ago)
Author:
mido
Message:

astyle applied all over the library

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • library/bdm/itpp_ext.cpp

    r996 r1064  
    1919 
    2020extern "C" {  /* QR factorization of a general matrix A  */ 
    21         void dgeqrf_ ( int *m, int *n, double *a, int *lda, double *tau, double *work, 
    22         int *lwork, int *info ); 
     21    void dgeqrf_ ( int *m, int *n, double *a, int *lda, double *tau, double *work, 
     22                   int *lwork, int *info ); 
    2323}; 
    2424 
     
    2727 
    2828Array<int> to_Arr ( const ivec &indices ) { 
    29         Array<int> a ( indices.size() ); 
    30         for ( int i = 0; i < a.size(); i++ ) { 
    31                 a ( i ) = indices ( i ); 
    32         } 
    33         return a; 
     29    Array<int> a ( indices.size() ); 
     30    for ( int i = 0; i < a.size(); i++ ) { 
     31        a ( i ) = indices ( i ); 
     32    } 
     33    return a; 
    3434} 
    3535 
    3636ivec linspace ( int from, int to ) { 
    37         int n = to - from + 1; 
    38         int i; 
    39         it_assert_debug ( n > 0, "wrong linspace" ); 
    40         ivec iv ( n ); 
    41         for ( i = 0; i < n; i++ ) iv ( i ) = from + i; 
    42         return iv; 
     37    int n = to - from + 1; 
     38    int i; 
     39    it_assert_debug ( n > 0, "wrong linspace" ); 
     40    ivec iv ( n ); 
     41    for ( i = 0; i < n; i++ ) iv ( i ) = from + i; 
     42    return iv; 
    4343}; 
    4444 
    4545void set_subvector ( vec &ov, const ivec &iv, const vec &v ) { 
    46         it_assert_debug ( ( iv.length() <= v.length() ), 
    47                           "Vec<>::set_subvector(ivec, vec<Num_T>): Indexing out " 
    48                           "of range of v" ); 
    49         for ( int i = 0; i < iv.length(); i++ ) { 
    50                 it_assert_debug ( iv ( i ) < ov.length(), 
    51                                   "Vec<>::set_subvector(ivec, vec<Num_T>): Indexing out " 
    52                                   "of range of v" ); 
    53                 ov ( iv ( i ) ) = v ( i ); 
    54         } 
     46    it_assert_debug ( ( iv.length() <= v.length() ), 
     47                      "Vec<>::set_subvector(ivec, vec<Num_T>): Indexing out " 
     48                      "of range of v" ); 
     49    for ( int i = 0; i < iv.length(); i++ ) { 
     50        it_assert_debug ( iv ( i ) < ov.length(), 
     51                          "Vec<>::set_subvector(ivec, vec<Num_T>): Indexing out " 
     52                          "of range of v" ); 
     53        ov ( iv ( i ) ) = v ( i ); 
     54    } 
    5555} 
    5656 
    5757//! return vector of elements at positions given by indexlist 
    5858vec get_vec ( const vec &v, const ivec &indexlist ) { 
    59         int size = indexlist.size(); 
    60         vec temp ( size ); 
    61         for ( int i = 0; i < size; ++i ) { 
    62                 temp ( i ) = v._data() [indexlist ( i ) ]; 
    63         } 
    64         return temp; 
     59    int size = indexlist.size(); 
     60    vec temp ( size ); 
     61    for ( int i = 0; i < size; ++i ) { 
     62        temp ( i ) = v._data() [indexlist ( i ) ]; 
     63    } 
     64    return temp; 
    6565} 
    6666 
     
    7272 
    7373bvec operator> ( const vec &t1, const vec &t2 ) { 
    74         it_assert_debug ( t1.length() == t2.length(), "Vec<>::operator>(): different size of vectors" ); 
    75         bvec temp ( t1.length() ); 
    76         for ( int i = 0; i < t1.length(); i++ ) 
    77                 temp ( i ) = ( t1[i] > t2[i] ); 
    78         return temp; 
     74    it_assert_debug ( t1.length() == t2.length(), "Vec<>::operator>(): different size of vectors" ); 
     75    bvec temp ( t1.length() ); 
     76    for ( int i = 0; i < t1.length(); i++ ) 
     77        temp ( i ) = ( t1[i] > t2[i] ); 
     78    return temp; 
    7979} 
    8080 
    8181bvec operator< ( const vec &t1, const vec &t2 ) { 
    82         it_assert_debug ( t1.length() == t2.length(), "Vec<>::operator>(): different size of vectors" ); 
    83         bvec temp ( t1.length() ); 
    84         for ( int i = 0; i < t1.length(); i++ ) 
    85                 temp ( i ) = ( t1[i] < t2[i] ); 
    86         return temp; 
     82    it_assert_debug ( t1.length() == t2.length(), "Vec<>::operator>(): different size of vectors" ); 
     83    bvec temp ( t1.length() ); 
     84    for ( int i = 0; i < t1.length(); i++ ) 
     85        temp ( i ) = ( t1[i] < t2[i] ); 
     86    return temp; 
    8787} 
    8888 
    8989 
    9090bvec operator& ( const bvec &a, const bvec &b ) { 
    91         it_assert_debug ( b.size() == a.size(), "operator&(): Vectors of different lengths" ); 
    92  
    93         bvec temp ( a.size() ); 
    94         for ( int i = 0; i < a.size(); i++ ) { 
    95                 temp ( i ) = a ( i ) & b ( i ); 
    96         } 
    97         return temp; 
     91    it_assert_debug ( b.size() == a.size(), "operator&(): Vectors of different lengths" ); 
     92 
     93    bvec temp ( a.size() ); 
     94    for ( int i = 0; i < a.size(); i++ ) { 
     95        temp ( i ) = a ( i ) & b ( i ); 
     96    } 
     97    return temp; 
    9898} 
    9999 
    100100bvec operator| ( const bvec &a, const bvec &b ) { 
    101         it_assert_debug ( b.size() == a.size(), "operator|(): Vectors of different lengths" ); 
    102  
    103         bvec temp ( a.size() ); 
    104         for ( int i = 0; i < a.size(); i++ ) { 
    105                 temp ( i ) = a ( i ) | b ( i ); 
    106         } 
    107         return temp; 
     101    it_assert_debug ( b.size() == a.size(), "operator|(): Vectors of different lengths" ); 
     102 
     103    bvec temp ( a.size() ); 
     104    for ( int i = 0; i < a.size(); i++ ) { 
     105        temp ( i ) = a ( i ) | b ( i ); 
     106    } 
     107    return temp; 
    108108} 
    109109 
    110110//! poor man's operator vec(bvec) - copied for svn version of itpp 
    111111ivec get_from_bvec ( const ivec &v, const bvec &binlist ) { 
    112         int size = binlist.size(); 
    113         it_assert_debug ( v.size() == size, "Vec<>::operator()(bvec &): " 
    114                           "Wrong size of binlist vector" ); 
    115         ivec temp ( size ); 
    116         int j = 0; 
    117         for ( int i = 0; i < size; ++i ) 
    118                 if ( binlist ( i ) == bin ( 1 ) ) 
    119                         temp ( j++ ) = v ( i ); 
    120         temp.set_size ( j, true ); 
    121         return temp; 
     112    int size = binlist.size(); 
     113    it_assert_debug ( v.size() == size, "Vec<>::operator()(bvec &): " 
     114                      "Wrong size of binlist vector" ); 
     115    ivec temp ( size ); 
     116    int j = 0; 
     117    for ( int i = 0; i < size; ++i ) 
     118        if ( binlist ( i ) == bin ( 1 ) ) 
     119            temp ( j++ ) = v ( i ); 
     120    temp.set_size ( j, true ); 
     121    return temp; 
    122122} 
    123123 
     
    125125//#if 0 
    126126Gamma_RNG::Gamma_RNG ( double a, double b ) { 
    127         setup ( a, b ); 
     127    setup ( a, b ); 
    128128} 
    129129double  Gamma_RNG::sample() { 
    130         //A copy of rgamma code from the R package!! 
    131         // 
    132  
    133         /* Constants : */ 
    134         const static double sqrt32 = 5.656854; 
    135         const static double exp_m1 = 0.36787944117144232159;/* exp(-1) = 1/e */ 
    136  
    137         /* Coefficients q[k] - for q0 = sum(q[k]*a^(-k)) 
    138         * Coefficients a[k] - for q = q0+(t*t/2)*sum(a[k]*v^k) 
    139         * Coefficients e[k] - for exp(q)-1 = sum(e[k]*q^k) 
    140         */ 
    141         const static double q1 = 0.04166669; 
    142         const static double q2 = 0.02083148; 
    143         const static double q3 = 0.00801191; 
    144         const static double q4 = 0.00144121; 
    145         const static double q5 = -7.388e-5; 
    146         const static double q6 = 2.4511e-4; 
    147         const static double q7 = 2.424e-4; 
    148  
    149         const static double a1 = 0.3333333; 
    150         const static double a2 = -0.250003; 
    151         const static double a3 = 0.2000062; 
    152         const static double a4 = -0.1662921; 
    153         const static double a5 = 0.1423657; 
    154         const static double a6 = -0.1367177; 
    155         const static double a7 = 0.1233795; 
    156  
    157         /* State variables [FIXME for threading!] :*/ 
    158         static double aa = 0.; 
    159         static double aaa = 0.; 
    160         static double s, s2, d;    /* no. 1 (step 1) */ 
    161         static double q0, b, si, c;/* no. 2 (step 4) */ 
    162  
    163         double e, p, q, r, t, u, v, w, x, ret_val; 
    164         double a = alpha; 
    165         double scale = 1.0 / beta; 
    166  
    167         if ( !R_FINITE ( a ) || !R_FINITE ( scale ) || a < 0.0 || scale <= 0.0 ) { 
    168                 it_error ( "Gamma_RNG wrong parameters" ); 
    169         } 
    170  
    171         if ( a < 1. ) { /* GS algorithm for parameters a < 1 */ 
    172                 if ( a == 0 ) 
    173                         return 0.; 
    174                 e = 1.0 + exp_m1 * a; 
    175                 for ( ;; ) {  //VS repeat 
    176                         p = e * unif_rand(); 
    177                         if ( p >= 1.0 ) { 
    178                                 x = -log ( ( e - p ) / a ); 
    179                                 if ( exp_rand() >= ( 1.0 - a ) * log ( x ) ) 
    180                                         break; 
    181                         } else { 
    182                                 x = exp ( log ( p ) / a ); 
    183                                 if ( exp_rand() >= x ) 
    184                                         break; 
    185                         } 
    186                 } 
    187                 return scale * x; 
    188         } 
    189  
    190         /* --- a >= 1 : GD algorithm --- */ 
    191  
    192         /* Step 1: Recalculations of s2, s, d if a has changed */ 
    193         if ( a != aa ) { 
    194                 aa = a; 
    195                 s2 = a - 0.5; 
    196                 s = sqrt ( s2 ); 
    197                 d = sqrt32 - s * 12.0; 
    198         } 
    199         /* Step 2: t = standard normal deviate, 
    200                    x = (s,1/2) -normal deviate. */ 
    201  
    202         /* immediate acceptance (i) */ 
    203         t = norm_rand(); 
    204         x = s + 0.5 * t; 
    205         ret_val = x * x; 
    206         if ( t >= 0.0 ) 
    207                 return scale * ret_val; 
    208  
    209         /* Step 3: u = 0,1 - uniform sample. squeeze acceptance (s) */ 
    210         u = unif_rand(); 
    211         if ( ( d * u ) <= ( t * t * t ) ) 
    212                 return scale * ret_val; 
    213  
    214         /* Step 4: recalculations of q0, b, si, c if necessary */ 
    215  
    216         if ( a != aaa ) { 
    217                 aaa = a; 
    218                 r = 1.0 / a; 
    219                 q0 = ( ( ( ( ( ( q7 * r + q6 ) * r + q5 ) * r + q4 ) * r + q3 ) * r 
    220                          + q2 ) * r + q1 ) * r; 
    221  
    222                 /* Approximation depending on size of parameter a */ 
    223                 /* The constants in the expressions for b, si and c */ 
    224                 /* were established by numerical experiments */ 
    225  
    226                 if ( a <= 3.686 ) { 
    227                         b = 0.463 + s + 0.178 * s2; 
    228                         si = 1.235; 
    229                         c = 0.195 / s - 0.079 + 0.16 * s; 
    230                 } else if ( a <= 13.022 ) { 
    231                         b = 1.654 + 0.0076 * s2; 
    232                         si = 1.68 / s + 0.275; 
    233                         c = 0.062 / s + 0.024; 
    234                 } else { 
    235                         b = 1.77; 
    236                         si = 0.75; 
    237                         c = 0.1515 / s; 
    238                 } 
    239         } 
    240         /* Step 5: no quotient test if x not positive */ 
    241  
    242         if ( x > 0.0 ) { 
    243                 /* Step 6: calculation of v and quotient q */ 
    244                 v = t / ( s + s ); 
    245                 if ( fabs ( v ) <= 0.25 ) 
    246                         q = q0 + 0.5 * t * t * ( ( ( ( ( ( a7 * v + a6 ) * v + a5 ) * v + a4 ) * v 
    247                                                      + a3 ) * v + a2 ) * v + a1 ) * v; 
    248                 else 
    249                         q = q0 - s * t + 0.25 * t * t + ( s2 + s2 ) * log ( 1.0 + v ); 
    250  
    251  
    252                 /* Step 7: quotient acceptance (q) */ 
    253                 if ( log ( 1.0 - u ) <= q ) 
    254                         return scale * ret_val; 
    255         } 
    256  
    257         for ( ;; ) { //VS repeat 
    258                 /* Step 8: e = standard exponential deviate 
    259                 *      u =  0,1 -uniform deviate 
    260                 *      t = (b,si)-double exponential (laplace) sample */ 
    261                 e = exp_rand(); 
    262                 u = unif_rand(); 
    263                 u = u + u - 1.0; 
    264                 if ( u < 0.0 ) 
    265                         t = b - si * e; 
    266                 else 
    267                         t = b + si * e; 
    268                 /* Step  9:  rejection if t < tau(1) = -0.71874483771719 */ 
    269                 if ( t >= -0.71874483771719 ) { 
    270                         /* Step 10:      calculation of v and quotient q */ 
    271                         v = t / ( s + s ); 
    272                         if ( fabs ( v ) <= 0.25 ) 
    273                                 q = q0 + 0.5 * t * t * 
    274                                     ( ( ( ( ( ( a7 * v + a6 ) * v + a5 ) * v + a4 ) * v + a3 ) * v 
    275                                         + a2 ) * v + a1 ) * v; 
    276                         else 
    277                                 q = q0 - s * t + 0.25 * t * t + ( s2 + s2 ) * log ( 1.0 + v ); 
    278                         /* Step 11:      hat acceptance (h) */ 
    279                         /* (if q not positive go to step 8) */ 
    280                         if ( q > 0.0 ) { 
    281                                 // TODO: w = expm1(q); 
    282                                 w = exp ( q ) - 1; 
    283                                 /*  ^^^^^ original code had approximation with rel.err < 2e-7 */ 
    284                                 /* if t is rejected sample again at step 8 */ 
    285                                 if ( ( c * fabs ( u ) ) <= ( w * exp ( e - 0.5 * t * t ) ) ) 
    286                                         break; 
    287                         } 
    288                 } 
    289         } /* repeat .. until  `t' is accepted */ 
    290         x = s + 0.5 * t; 
    291         return scale * x * x; 
     130    //A copy of rgamma code from the R package!! 
     131    // 
     132 
     133    /* Constants : */ 
     134    const static double sqrt32 = 5.656854; 
     135    const static double exp_m1 = 0.36787944117144232159;/* exp(-1) = 1/e */ 
     136 
     137    /* Coefficients q[k] - for q0 = sum(q[k]*a^(-k)) 
     138    * Coefficients a[k] - for q = q0+(t*t/2)*sum(a[k]*v^k) 
     139    * Coefficients e[k] - for exp(q)-1 = sum(e[k]*q^k) 
     140    */ 
     141    const static double q1 = 0.04166669; 
     142    const static double q2 = 0.02083148; 
     143    const static double q3 = 0.00801191; 
     144    const static double q4 = 0.00144121; 
     145    const static double q5 = -7.388e-5; 
     146    const static double q6 = 2.4511e-4; 
     147    const static double q7 = 2.424e-4; 
     148 
     149    const static double a1 = 0.3333333; 
     150    const static double a2 = -0.250003; 
     151    const static double a3 = 0.2000062; 
     152    const static double a4 = -0.1662921; 
     153    const static double a5 = 0.1423657; 
     154    const static double a6 = -0.1367177; 
     155    const static double a7 = 0.1233795; 
     156 
     157    /* State variables [FIXME for threading!] :*/ 
     158    static double aa = 0.; 
     159    static double aaa = 0.; 
     160    static double s, s2, d;    /* no. 1 (step 1) */ 
     161    static double q0, b, si, c;/* no. 2 (step 4) */ 
     162 
     163    double e, p, q, r, t, u, v, w, x, ret_val; 
     164    double a = alpha; 
     165    double scale = 1.0 / beta; 
     166 
     167    if ( !R_FINITE ( a ) || !R_FINITE ( scale ) || a < 0.0 || scale <= 0.0 ) { 
     168        it_error ( "Gamma_RNG wrong parameters" ); 
     169    } 
     170 
     171    if ( a < 1. ) { /* GS algorithm for parameters a < 1 */ 
     172        if ( a == 0 ) 
     173            return 0.; 
     174        e = 1.0 + exp_m1 * a; 
     175        for ( ;; ) {  //VS repeat 
     176            p = e * unif_rand(); 
     177            if ( p >= 1.0 ) { 
     178                x = -log ( ( e - p ) / a ); 
     179                if ( exp_rand() >= ( 1.0 - a ) * log ( x ) ) 
     180                    break; 
     181            } else { 
     182                x = exp ( log ( p ) / a ); 
     183                if ( exp_rand() >= x ) 
     184                    break; 
     185            } 
     186        } 
     187        return scale * x; 
     188    } 
     189 
     190    /* --- a >= 1 : GD algorithm --- */ 
     191 
     192    /* Step 1: Recalculations of s2, s, d if a has changed */ 
     193    if ( a != aa ) { 
     194        aa = a; 
     195        s2 = a - 0.5; 
     196        s = sqrt ( s2 ); 
     197        d = sqrt32 - s * 12.0; 
     198    } 
     199    /* Step 2: t = standard normal deviate, 
     200               x = (s,1/2) -normal deviate. */ 
     201 
     202    /* immediate acceptance (i) */ 
     203    t = norm_rand(); 
     204    x = s + 0.5 * t; 
     205    ret_val = x * x; 
     206    if ( t >= 0.0 ) 
     207        return scale * ret_val; 
     208 
     209    /* Step 3: u = 0,1 - uniform sample. squeeze acceptance (s) */ 
     210    u = unif_rand(); 
     211    if ( ( d * u ) <= ( t * t * t ) ) 
     212        return scale * ret_val; 
     213 
     214    /* Step 4: recalculations of q0, b, si, c if necessary */ 
     215 
     216    if ( a != aaa ) { 
     217        aaa = a; 
     218        r = 1.0 / a; 
     219        q0 = ( ( ( ( ( ( q7 * r + q6 ) * r + q5 ) * r + q4 ) * r + q3 ) * r 
     220                 + q2 ) * r + q1 ) * r; 
     221 
     222        /* Approximation depending on size of parameter a */ 
     223        /* The constants in the expressions for b, si and c */ 
     224        /* were established by numerical experiments */ 
     225 
     226        if ( a <= 3.686 ) { 
     227            b = 0.463 + s + 0.178 * s2; 
     228            si = 1.235; 
     229            c = 0.195 / s - 0.079 + 0.16 * s; 
     230        } else if ( a <= 13.022 ) { 
     231            b = 1.654 + 0.0076 * s2; 
     232            si = 1.68 / s + 0.275; 
     233            c = 0.062 / s + 0.024; 
     234        } else { 
     235            b = 1.77; 
     236            si = 0.75; 
     237            c = 0.1515 / s; 
     238        } 
     239    } 
     240    /* Step 5: no quotient test if x not positive */ 
     241 
     242    if ( x > 0.0 ) { 
     243        /* Step 6: calculation of v and quotient q */ 
     244        v = t / ( s + s ); 
     245        if ( fabs ( v ) <= 0.25 ) 
     246            q = q0 + 0.5 * t * t * ( ( ( ( ( ( a7 * v + a6 ) * v + a5 ) * v + a4 ) * v 
     247                                         + a3 ) * v + a2 ) * v + a1 ) * v; 
     248        else 
     249            q = q0 - s * t + 0.25 * t * t + ( s2 + s2 ) * log ( 1.0 + v ); 
     250 
     251 
     252        /* Step 7: quotient acceptance (q) */ 
     253        if ( log ( 1.0 - u ) <= q ) 
     254            return scale * ret_val; 
     255    } 
     256 
     257    for ( ;; ) { //VS repeat 
     258        /* Step 8: e = standard exponential deviate 
     259        *      u =  0,1 -uniform deviate 
     260        *      t = (b,si)-double exponential (laplace) sample */ 
     261        e = exp_rand(); 
     262        u = unif_rand(); 
     263        u = u + u - 1.0; 
     264        if ( u < 0.0 ) 
     265            t = b - si * e; 
     266        else 
     267            t = b + si * e; 
     268        /* Step  9:  rejection if t < tau(1) = -0.71874483771719 */ 
     269        if ( t >= -0.71874483771719 ) { 
     270            /* Step 10:  calculation of v and quotient q */ 
     271            v = t / ( s + s ); 
     272            if ( fabs ( v ) <= 0.25 ) 
     273                q = q0 + 0.5 * t * t * 
     274                    ( ( ( ( ( ( a7 * v + a6 ) * v + a5 ) * v + a4 ) * v + a3 ) * v 
     275                        + a2 ) * v + a1 ) * v; 
     276            else 
     277                q = q0 - s * t + 0.25 * t * t + ( s2 + s2 ) * log ( 1.0 + v ); 
     278            /* Step 11:  hat acceptance (h) */ 
     279            /* (if q not positive go to step 8) */ 
     280            if ( q > 0.0 ) { 
     281                // TODO: w = expm1(q); 
     282                w = exp ( q ) - 1; 
     283                /*  ^^^^^ original code had approximation with rel.err < 2e-7 */ 
     284                /* if t is rejected sample again at step 8 */ 
     285                if ( ( c * fabs ( u ) ) <= ( w * exp ( e - 0.5 * t * t ) ) ) 
     286                    break; 
     287            } 
     288        } 
     289    } /* repeat .. until  `t' is accepted */ 
     290    x = s + 0.5 * t; 
     291    return scale * x * x; 
    292292} 
    293293 
    294294 
    295295bool qr ( const mat &A, mat &R ) { 
    296         int info; 
    297         int m = A.rows(); 
    298         int n = A.cols(); 
    299         int lwork = n; 
    300         int k = std::min ( m, n ); 
    301         vec tau ( k ); 
    302         vec work ( lwork ); 
    303  
    304         R = A; 
    305  
    306         // perform workspace query for optimum lwork value 
    307         int lwork_tmp = -1; 
    308         dgeqrf_ ( &m, &n, R._data(), &m, tau._data(), work._data(), &lwork_tmp, 
    309                   &info ); 
    310         if ( info == 0 ) { 
    311                 lwork = static_cast<int> ( work ( 0 ) ); 
    312                 work.set_size ( lwork, false ); 
    313         } 
    314         dgeqrf_ ( &m, &n, R._data(), &m, tau._data(), work._data(), &lwork, &info ); 
    315  
    316         // construct R 
    317         for ( int i = 0; i < m; i++ ) 
    318                 for ( int j = 0; j < std::min ( i, n ); j++ ) 
    319                         R ( i, j ) = 0; 
    320  
    321         return ( info == 0 ); 
     296    int info; 
     297    int m = A.rows(); 
     298    int n = A.cols(); 
     299    int lwork = n; 
     300    int k = std::min ( m, n ); 
     301    vec tau ( k ); 
     302    vec work ( lwork ); 
     303 
     304    R = A; 
     305 
     306    // perform workspace query for optimum lwork value 
     307    int lwork_tmp = -1; 
     308    dgeqrf_ ( &m, &n, R._data(), &m, tau._data(), work._data(), &lwork_tmp, 
     309              &info ); 
     310    if ( info == 0 ) { 
     311        lwork = static_cast<int> ( work ( 0 ) ); 
     312        work.set_size ( lwork, false ); 
     313    } 
     314    dgeqrf_ ( &m, &n, R._data(), &m, tau._data(), work._data(), &lwork, &info ); 
     315 
     316    // construct R 
     317    for ( int i = 0; i < m; i++ ) 
     318        for ( int j = 0; j < std::min ( i, n ); j++ ) 
     319            R ( i, j ) = 0; 
     320 
     321    return ( info == 0 ); 
    322322} 
    323323 
    324324//#endif 
    325325std::string num2str ( double d ) { 
    326         char tmp[20];//that should do 
    327         sprintf ( tmp, "%f", d ); 
    328         return std::string ( tmp ); 
     326    char tmp[20];//that should do 
     327    sprintf ( tmp, "%f", d ); 
     328    return std::string ( tmp ); 
    329329}; 
    330330std::string num2str ( int i ) { 
    331         char tmp[10];//that should do 
    332         sprintf ( tmp, "%d", i ); 
    333         return std::string ( tmp ); 
     331    char tmp[10];//that should do 
     332    sprintf ( tmp, "%d", i ); 
     333    return std::string ( tmp ); 
    334334}; 
    335335 
     
    340340 
    341341double psi ( double x ) { 
    342         double s, ps, xa, x2; 
    343         int n, k; 
    344         static double a[] = { 
    345                 -0.8333333333333e-01, 
    346                 0.83333333333333333e-02, 
    347                 -0.39682539682539683e-02, 
    348                 0.41666666666666667e-02, 
    349                 -0.75757575757575758e-02, 
    350                 0.21092796092796093e-01, 
    351                 -0.83333333333333333e-01, 
    352                 0.4432598039215686 
    353         }; 
    354  
    355         xa = fabs ( x ); 
    356         s = 0.0; 
    357         if ( ( x == ( int ) x ) && ( x <= 0.0 ) ) { 
    358                 ps = 1e308; 
    359                 return ps; 
    360         } 
    361         if ( xa == ( int ) xa ) { 
    362                 n = (int) xa; 
    363                 for ( k = 1; k < n; k++ ) { 
    364                         s += 1.0 / k; 
    365                 } 
    366                 ps =  s - el; 
    367         } else if ( ( xa + 0.5 ) == ( ( int ) ( xa + 0.5 ) ) ) { 
    368                 n = (int) (xa - 0.5); 
    369                 for ( k = 1; k <= n; k++ ) { 
    370                         s += 1.0 / ( 2.0 * k - 1.0 ); 
    371                 } 
    372                 ps = 2.0 * s - el - 1.386294361119891; 
    373         } else { 
    374                 if ( xa < 10.0 ) { 
    375                         n = 10 - ( int ) xa; 
    376                         for ( k = 0; k < n; k++ ) { 
    377                                 s += 1.0 / ( xa + k ); 
    378                         } 
    379                         xa += n; 
    380                 } 
    381                 x2 = 1.0 / ( xa * xa ); 
    382                 ps = log ( xa ) - 0.5 / xa + x2 * ( ( ( ( ( ( ( a[7] * x2 + a[6] ) * x2 + a[5] ) * x2 + 
    383                                                         a[4] ) * x2 + a[3] ) * x2 + a[2] ) * x2 + a[1] ) * x2 + a[0] ); 
    384                 ps -= s; 
    385         } 
    386         if ( x < 0.0 ) 
    387                 ps = ps - M_PI * std::cos ( M_PI * x ) / std::sin ( M_PI * x ) - 1.0 / x; 
    388         return ps; 
     342    double s, ps, xa, x2; 
     343    int n, k; 
     344    static double a[] = { 
     345        -0.8333333333333e-01, 
     346        0.83333333333333333e-02, 
     347        -0.39682539682539683e-02, 
     348        0.41666666666666667e-02, 
     349        -0.75757575757575758e-02, 
     350        0.21092796092796093e-01, 
     351        -0.83333333333333333e-01, 
     352        0.4432598039215686 
     353    }; 
     354 
     355    xa = fabs ( x ); 
     356    s = 0.0; 
     357    if ( ( x == ( int ) x ) && ( x <= 0.0 ) ) { 
     358        ps = 1e308; 
     359        return ps; 
     360    } 
     361    if ( xa == ( int ) xa ) { 
     362        n = (int) xa; 
     363        for ( k = 1; k < n; k++ ) { 
     364            s += 1.0 / k; 
     365        } 
     366        ps =  s - el; 
     367    } else if ( ( xa + 0.5 ) == ( ( int ) ( xa + 0.5 ) ) ) { 
     368        n = (int) (xa - 0.5); 
     369        for ( k = 1; k <= n; k++ ) { 
     370            s += 1.0 / ( 2.0 * k - 1.0 ); 
     371        } 
     372        ps = 2.0 * s - el - 1.386294361119891; 
     373    } else { 
     374        if ( xa < 10.0 ) { 
     375            n = 10 - ( int ) xa; 
     376            for ( k = 0; k < n; k++ ) { 
     377                s += 1.0 / ( xa + k ); 
     378            } 
     379            xa += n; 
     380        } 
     381        x2 = 1.0 / ( xa * xa ); 
     382        ps = log ( xa ) - 0.5 / xa + x2 * ( ( ( ( ( ( ( a[7] * x2 + a[6] ) * x2 + a[5] ) * x2 + 
     383                                                a[4] ) * x2 + a[3] ) * x2 + a[2] ) * x2 + a[1] ) * x2 + a[0] ); 
     384        ps -= s; 
     385    } 
     386    if ( x < 0.0 ) 
     387        ps = ps - M_PI * std::cos ( M_PI * x ) / std::sin ( M_PI * x ) - 1.0 / x; 
     388    return ps; 
    389389} 
    390390 
    391391void triu ( mat &A ) { 
    392         for ( int i = 1; i < A.rows(); i++ ) { // row cycle 
    393                 for ( int j = 0; (j < i) && (j<A.cols()); j++ ) { 
    394                         A ( i, j ) = 0; 
    395                 } 
    396         } 
     392    for ( int i = 1; i < A.rows(); i++ ) { // row cycle 
     393        for ( int j = 0; (j < i) && (j<A.cols()); j++ ) { 
     394            A ( i, j ) = 0; 
     395        } 
     396    } 
    397397} 
    398398 
    399399//! Storage of randun() internals 
    400400class RandunStorage { 
    401         const int A; 
    402         const int M; 
    403         static double seed; 
    404         static int counter; 
     401    const int A; 
     402    const int M; 
     403    static double seed; 
     404    static int counter; 
    405405public: 
    406         RandunStorage() : A ( 16807 ), M ( 2147483647 ) {}; 
    407         //!set seed of the randun() generator 
    408         void set_seed ( double seed0 ) { 
    409                 seed = seed0; 
    410         } 
    411         //! generate randun() sample 
    412         double get() { 
    413                 long long tmp = (long long) (A * seed); 
    414                 tmp = tmp % M; 
    415                 seed = (double) tmp; 
    416                 counter++; 
    417                 return seed / M; 
    418         } 
     406    RandunStorage() : A ( 16807 ), M ( 2147483647 ) {}; 
     407    //!set seed of the randun() generator 
     408    void set_seed ( double seed0 ) { 
     409        seed = seed0; 
     410    } 
     411    //! generate randun() sample 
     412    double get() { 
     413        long long tmp = (long long) (A * seed); 
     414        tmp = tmp % M; 
     415        seed = (double) tmp; 
     416        counter++; 
     417        return seed / M; 
     418    } 
    419419}; 
    420420static RandunStorage randun_global_storage; 
     
    422422int RandunStorage::counter = 0; 
    423423double randun() { 
    424         return randun_global_storage.get(); 
     424    return randun_global_storage.get(); 
    425425}; 
    426426vec randun ( int n ) { 
    427         vec res ( n ); 
    428         for ( int i = 0; i < n; i++ ) { 
    429                 res ( i ) = randun(); 
    430         }; 
    431         return res; 
     427    vec res ( n ); 
     428    for ( int i = 0; i < n; i++ ) { 
     429        res ( i ) = randun(); 
     430    }; 
     431    return res; 
    432432}; 
    433433mat randun ( int n, int m ) { 
    434         mat res ( n, m ); 
    435         for ( int i = 0; i < n*m; i++ ) { 
    436                 res ( i ) = randun(); 
    437         }; 
    438         return res; 
     434    mat res ( n, m ); 
     435    for ( int i = 0; i < n*m; i++ ) { 
     436        res ( i ) = randun(); 
     437    }; 
     438    return res; 
    439439}; 
    440440 
    441441ivec unique ( const ivec &in ) { 
    442         ivec uniq ( 0 ); 
    443         int j = 0; 
    444         bool found = false; 
    445         for ( int i = 0; i < in.length(); i++ ) { 
    446                 found = false; 
    447                 j = 0; 
    448                 while ( ( !found ) && ( j < uniq.length() ) ) { 
    449                         if ( in ( i ) == uniq ( j ) ) found = true; 
    450                         j++; 
    451                 } 
    452                 if ( !found ) uniq = concat ( uniq, in ( i ) ); 
    453         } 
    454         return uniq; 
     442    ivec uniq ( 0 ); 
     443    int j = 0; 
     444    bool found = false; 
     445    for ( int i = 0; i < in.length(); i++ ) { 
     446        found = false; 
     447        j = 0; 
     448        while ( ( !found ) && ( j < uniq.length() ) ) { 
     449            if ( in ( i ) == uniq ( j ) ) found = true; 
     450            j++; 
     451        } 
     452        if ( !found ) uniq = concat ( uniq, in ( i ) ); 
     453    } 
     454    return uniq; 
    455455} 
    456456 
    457457ivec unique_complement ( const ivec &in, const ivec &base ) { 
    458         // almost a copy of unique 
    459         ivec uniq ( 0 ); 
    460         int j = 0; 
    461         bool found = false; 
    462         for ( int i = 0; i < in.length(); i++ ) { 
    463                 found = false; 
    464                 j = 0; 
    465                 while ( ( !found ) && ( j < uniq.length() ) ) { 
    466                         if ( in ( i ) == uniq ( j ) ) found = true; 
    467                         j++; 
    468                 } 
    469                 j = 0; 
    470                 while ( ( !found ) && ( j < base.length() ) ) { 
    471                         if ( in ( i ) == base ( j ) ) found = true; 
    472                         j++; 
    473                 } 
    474                 if ( !found ) uniq = concat ( uniq, in ( i ) ); 
    475         } 
    476         return uniq; 
    477 } 
    478  
    479 } 
     458    // almost a copy of unique 
     459    ivec uniq ( 0 ); 
     460    int j = 0; 
     461    bool found = false; 
     462    for ( int i = 0; i < in.length(); i++ ) { 
     463        found = false; 
     464        j = 0; 
     465        while ( ( !found ) && ( j < uniq.length() ) ) { 
     466            if ( in ( i ) == uniq ( j ) ) found = true; 
     467            j++; 
     468        } 
     469        j = 0; 
     470        while ( ( !found ) && ( j < base.length() ) ) { 
     471            if ( in ( i ) == base ( j ) ) found = true; 
     472            j++; 
     473        } 
     474        if ( !found ) uniq = concat ( uniq, in ( i ) ); 
     475    } 
     476    return uniq; 
     477} 
     478 
     479}