Fast kernel -- ALGLIB routine -- 19.01.2010 Bochkanov Sergey *************************************************************************/
| 165 | Bochkanov Sergey |
| 166 | *************************************************************************/ |
| 167 | bool cmatrixlefttrsmf(int m, |
| 168 | int n, |
| 169 | const ap::complex_2d_array& a, |
| 170 | int i1, |
| 171 | int j1, |
| 172 | bool isupper, |
| 173 | bool isunit, |
| 174 | int optype, |
| 175 | ap::complex_2d_array& x, |
| 176 | int i2, |
| 177 | int j2) |
| 178 | { |
| 179 | #ifndef ALGLIB_INTERCEPTS_ABLAS |
| 180 | bool result; |
| 181 | |
| 182 | result = false; |
| 183 | return result; |
| 184 | #else |
| 185 | return ialglib::_i_cmatrixlefttrsmf(m, n, a, i1, j1, isupper, isunit, optype, x, i2, j2); |
| 186 | #endif |
| 187 | } |
| 188 | |
| 189 | |
| 190 | /************************************************************************* |