summaryrefslogtreecommitdiff
path: root/modules/umfpack/includes/gw_umfpack.h
blob: 4302eb6a1d143f0f6b88a1ce10946cf90ee57557 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/*
 * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
 * Copyright (C) 2008 - INRIA - Sylvestre LEDRU
 *
 * This file must be used under the terms of the CeCILL.
 * This source file is licensed as described in the file COPYING, which
 * you should have received as part of this distribution.  The terms
 * are also available at
 * http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt
 *
 */

#ifndef __GW_UMFPACK__
#define __GW_UMFPACK__
/*--------------------------------------------------------------------------*/
#include "dynlib_umfpack.h"
/*--------------------------------------------------------------------------*/
UMFPACK_IMPEXP int gw_umfpack(void);
/*--------------------------------------------------------------------------*/
UMFPACK_IMPEXP int sci_umfpack(char* fname, unsigned long l);
UMFPACK_IMPEXP int sci_umf_lufact(char* fname, unsigned long l);
UMFPACK_IMPEXP int sci_umf_lusolve(char* fname, unsigned long l);
UMFPACK_IMPEXP int sci_umf_ludel(char* fname, unsigned long l);
UMFPACK_IMPEXP int sci_umf_luinfo(char* fname, unsigned long l);
UMFPACK_IMPEXP int sci_umf_luget(char* fname, unsigned long l);
UMFPACK_IMPEXP int sci_taucs_chfact(char* fname, unsigned long l);
UMFPACK_IMPEXP int sci_taucs_chsolve(char* fname, unsigned long l);
UMFPACK_IMPEXP int sci_taucs_chdel(char* fname, unsigned long l);
UMFPACK_IMPEXP int sci_taucs_chinfo(char* fname, unsigned long l);
UMFPACK_IMPEXP int sci_taucs_chget(char* fname, unsigned long l);
UMFPACK_IMPEXP int sci_res_with_prec(char* fname, unsigned long l);
/*--------------------------------------------------------------------------*/
#endif /*  __GW_UMFPACK__ */
/*--------------------------------------------------------------------------*/