Revision 5371c917259900b4efeffd61260e9ab9f80f2249 authored by Ben Hermans on 25 June 2020, 08:45:07 UTC, committed by Ben Hermans on 25 June 2020, 08:45:07 UTC
1 parent 97025d4
ladel_ldl_symbolic.h
/**
* @file ladel_ldl_symbolic.h
* @author Ben Hermans
* @brief The symbolic part of the factorization.
*/
#ifndef LADEL_LDL_SYMBOLIC_H
#define LADEL_LDL_SYMBOLIC_H
#include "ladel_types.h"
/**
* Symbolic part of the factorization.
*
* @param M The matrix
* @param sym Symbolics of the factorization
* @param ordering_method Indicator to choose the ordering method: @a AMD, @a NO_ORDERING or @a GIVEN_ORDERING
* @param Mpp Output symmetric permutation of M if ordering is requested
* @param work LADEL workspace
* @return Status
*/
ladel_int ladel_ldl_symbolic( ladel_sparse_matrix *M,
ladel_symbolics *sym,
ladel_int ordering_method,
ladel_sparse_matrix *Mpp,
ladel_work *work);
#endif /*LADEL_LDL_SYMBOLIC_H*/

Computing file changes ...