Temporary data structures. More...
#include <clufactor.h>
Public Member Functions | |
Temp () | |
constructor More... | |
~Temp () | |
destructor More... | |
void | init (int p_dim) |
initialization More... | |
void | clear () |
clears the structure More... | |
Public Attributes | |
int * | s_mark |
marker More... | |
std::vector< R > | s_max |
maximum absolute value per row (or -1) More... | |
int * | s_cact |
lengths of columns of active submatrix More... | |
int | stage |
stage of the structure More... | |
Pring | pivots |
ring of selected pivot rows More... | |
Pring * | pivot_col |
column index handlers for R linked list More... | |
Pring * | pivot_colNZ |
lists for columns to number of nonzeros More... | |
Pring * | pivot_row |
row index handlers for R linked list More... | |
Pring * | pivot_rowNZ |
lists for rows to number of nonzeros More... | |
Private Member Functions | |
Temp (const Temp &) | |
blocked copy constructor More... | |
Temp & | operator= (const Temp &) |
blocked assignment operator More... | |
Temporary data structures.
Definition at line 86 of file clufactor.h.
Temp | ( | ) |
constructor
~Temp | ( | ) |
destructor
void clear | ( | ) |
clears the structure
void init | ( | int | p_dim | ) |
initialization
Pring* pivot_col |
column index handlers for R linked list
Definition at line 94 of file clufactor.h.
Pring* pivot_colNZ |
lists for columns to number of nonzeros
Definition at line 95 of file clufactor.h.
Pring* pivot_row |
row index handlers for R linked list
Definition at line 96 of file clufactor.h.
Pring* pivot_rowNZ |
lists for rows to number of nonzeros
Definition at line 97 of file clufactor.h.
Pring pivots |
ring of selected pivot rows
Definition at line 93 of file clufactor.h.
int* s_cact |
lengths of columns of active submatrix
Definition at line 91 of file clufactor.h.
int* s_mark |
marker
Definition at line 89 of file clufactor.h.
std::vector<R> s_max |
maximum absolute value per row (or -1)
Definition at line 90 of file clufactor.h.
int stage |
stage of the structure
Definition at line 92 of file clufactor.h.