|
void | delete_item (Item *item) |
|
void | linkitem (Item *item, Item *ii) |
|
void | insert (SparseObj *so, Item *item) |
|
void | increase_order (SparseObj *so, unsigned row) |
|
template<enabled_code code_to_enable = enabled_code::all> |
Elm * | getelm (SparseObj *so, unsigned row, unsigned col, Elm *new_elem) |
| Return pointer to (row, col) element maintaining order in rows. More...
|
|
List * | newlist () |
| The following routines support the concept of a list. More...
|
|
void | freelist (List *list) |
|
void | check_assert (SparseObj *so) |
|
void | re_link (SparseObj *so, unsigned i) |
|
void | free_elm (SparseObj *so) |
|
void | init_minorder (SparseObj *so) |
|
void | reduce_order (SparseObj *so, unsigned row) |
|
void | get_next_pivot (SparseObj *so, unsigned i) |
|
void | initeqn (SparseObj *so, unsigned maxeqn) |
|
void | spar_minorder (SparseObj *so) |
| Minimum ordering algorithm to determine the order that the matrix should be solved. More...
|
|
void | init_coef_list (SparseObj *so, int _iml) |
|
void | subrow (SparseObj *so, Elm *pivot, Elm *rowsub, int _iml) |
|
void | bksub (SparseObj *so, int _iml) |
|
int | matsol (SparseObj *so, int _iml) |
|
template<typename SPFUN > |
void | create_coef_list (SparseObj *so, int n, SPFUN fun, _threadargsproto_) |
|
template<enabled_code code_to_enable = enabled_code::all> |
double * | thread_getelm (SparseObj *so, int row, int col, int _iml) |
|
template<enabled_code code_to_enable = enabled_code::all>
Elm* coreneuron::scopmath::sparse::getelm |
( |
SparseObj * |
so, |
|
|
unsigned |
row, |
|
|
unsigned |
col, |
|
|
Elm * |
new_elem |
|
) |
| |
Return pointer to (row, col) element maintaining order in rows.
See check_assert in minorder for info about how this matrix is supposed to look. If new_elem is nonzero and an element would otherwise be created, new is used instead. This is because linking an element is highly nontrivial. The biggest difference is that elements are no longer removed and this saves much time allocating and freeing during the solve phase.
Definition at line 71 of file sparse_thread.hpp.
List* coreneuron::scopmath::sparse::newlist |
( |
| ) |
|
|
inline |
The following routines support the concept of a list.
Modified from modl. The list is a doubly linked list. A special item with element 0 is always at the tail of the list and is denoted as the List pointer itself. list->next point to the first item in the list and list->prev points to the last item in the list. i.e. the list is circular. Note that in an empty list next and prev points to itself.
It is intended that this implementation be hidden from the user via the following function calls.
Definition at line 188 of file sparse_thread.hpp.