|
| template<typename T > |
| void | det_row_update (T *restrict pinv, const T *restrict tv, int m, int rowchanged, T c_ratio, T *restrict temp, T *restrict rcopy) |
| |
| template<typename T > |
| void | det_col_update (T *restrict pinv, const T *restrict tv, int m, int colchanged, T c_ratio, T *restrict temp, T *restrict rcopy) |
| |
| template<typename T > |
| void | getRatiosByRowSubstitution (const T *restrict tm_new, const T *restrict r_replaced, T *restrict ratios, int m, int howmany) |
| |
| template<typename T , typename INDARRAY > |
| void | getRatiosByRowSubstitution (const T *restrict tm_new, const T *restrict r_replaced, T *restrict ratios, int m, const INDARRAY &ind) |
| |
| template<typename T > |
| void | getRatiosByRowSubstitution_dummy (const T *restrict tm_new, const T *restrict r_replaced, T *restrict ratios, int m, int howmany) |
| |
| template<typename T > |
| T | getRatioByColSubstitution (const T *restrict pinv, const T *restrict tc, int m, int colchanged) |
| | evaluate the determinant ratio with a column substitution More...
|
| |
| template<typename MAT , typename VV > |
| MAT::value_type | getRatioByColSubstitution (const MAT &pinv, const VV &tc, int colchanged) |
| |
| template<typename MAT , typename VV , typename IV > |
| MAT::value_type | getRatioByColSubstitution (const MAT &refinv, const VV &tcm, VV &ratios, int m, int colchanged, int r_replaced, IV &ind) |
| | evaluate the ratio with a column substitution and multiple row substitutions More...
|
| |