#include "ladel_types.h"
#include "ladel_constants.h"
#include "ladel_transpose.h"
#include "ladel_global.h"
#include "ladel_debug_print.h"
Go to the source code of this file.
Macros | |
#define | FIRST_LEAF 1 |
#define | SUBSEQUENT_LEAF 2 |
#define | NOT_A_LEAF -1 |
Functions | |
ladel_int | ladel_least_common_ancestor (ladel_int subtree_root, ladel_int node, ladel_int *first_descendant, ladel_int *max_first_descendant, ladel_int *prev_leaf, ladel_int *ancestor, ladel_int *node_type_of_leaf) |
ladel_int | ladel_col_counts (ladel_sparse_matrix *M, ladel_symbolics *sym, ladel_work *work) |
Computes the column counts of the factor. More... | |
#define FIRST_LEAF 1 |
Definition at line 7 of file ladel_col_counts.c.
#define NOT_A_LEAF -1 |
Definition at line 9 of file ladel_col_counts.c.
#define SUBSEQUENT_LEAF 2 |
Definition at line 8 of file ladel_col_counts.c.
ladel_int ladel_col_counts | ( | ladel_sparse_matrix * | M, |
ladel_symbolics * | sym, | ||
ladel_work * | work | ||
) |
Computes the column counts of the factor.
This routine should only be called after the etree and postorder routines.
M | Sparse matrix to be analyzed |
sym | Struct holding symbolic information |
work | LADEL workspace |
Definition at line 48 of file ladel_col_counts.c.