123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- #ifndef LIN_SYS_H
- # define LIN_SYS_H
- # ifdef __cplusplus
- extern "C" {
- # endif
- # include "types.h"
- c_int load_linsys_solver(enum linsys_solver_type linsys_solver);
- c_int unload_linsys_solver(enum linsys_solver_type linsys_solver);
- c_int init_linsys_solver(LinSysSolver **s,
- const csc *P,
- const csc *A,
- c_float sigma,
- const c_float *rho_vec,
- enum linsys_solver_type linsys_solver,
- c_int polish);
- # ifdef __cplusplus
- }
- # endif
- #endif
|