Fast kernel -- ALGLIB routine -- 19.01.2010 Bochkanov Sergey *************************************************************************/
| 135 | Bochkanov Sergey |
| 136 | *************************************************************************/ |
| 137 | bool cmatrixrighttrsmf(int m, |
| 138 | int n, |
| 139 | const ap::complex_2d_array& a, |
| 140 | int i1, |
| 141 | int j1, |
| 142 | bool isupper, |
| 143 | bool isunit, |
| 144 | int optype, |
| 145 | ap::complex_2d_array& x, |
| 146 | int i2, |
| 147 | int j2) |
| 148 | { |
| 149 | #ifndef ALGLIB_INTERCEPTS_ABLAS |
| 150 | bool result; |
| 151 | |
| 152 | result = false; |
| 153 | return result; |
| 154 | #else |
| 155 | return ialglib::_i_cmatrixrighttrsmf(m, n, a, i1, j1, isupper, isunit, optype, x, i2, j2); |
| 156 | #endif |
| 157 | } |
| 158 | |
| 159 | |
| 160 | /************************************************************************* |