Complex ABLASSplitLength -- ALGLIB routine -- 15.12.2009 Bochkanov Sergey *************************************************************************/
| 164 | Bochkanov Sergey |
| 165 | *************************************************************************/ |
| 166 | void ablascomplexsplitlength(const ap::complex_2d_array& a, |
| 167 | int n, |
| 168 | int& n1, |
| 169 | int& n2) |
| 170 | { |
| 171 | |
| 172 | if( n>ablascomplexblocksize(a) ) |
| 173 | { |
| 174 | ablasinternalsplitlength(n, ablascomplexblocksize(a), n1, n2); |
| 175 | } |
| 176 | else |
| 177 | { |
| 178 | ablasinternalsplitlength(n, ablasmicroblocksize(), n1, n2); |
| 179 | } |
| 180 | } |
| 181 | |
| 182 | |
| 183 | /************************************************************************* |
no test coverage detected