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 106 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 114 of file clufactor.h.
Pring* pivot_colNZ |
lists for columns to number of nonzeros
Definition at line 115 of file clufactor.h.
Pring* pivot_row |
row index handlers for R linked list
Definition at line 116 of file clufactor.h.
Pring* pivot_rowNZ |
lists for rows to number of nonzeros
Definition at line 117 of file clufactor.h.
Pring pivots |
ring of selected pivot rows
Definition at line 113 of file clufactor.h.
int* s_cact |
lengths of columns of active submatrix
Definition at line 111 of file clufactor.h.
int* s_mark |
marker
Definition at line 109 of file clufactor.h.
std::vector<R> s_max |
maximum absolute value per row (or -1)
Definition at line 110 of file clufactor.h.
int stage |
stage of the structure
Definition at line 112 of file clufactor.h.