-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathICFS.h
executable file
·51 lines (37 loc) · 1.75 KB
/
ICFS.h
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/*****************************************************************
COPYRIGHT NOTIFICATION
This program discloses material protectable under copyright laws of
the United States. Permission to copy and modify this software and its
documentation for internal research use is hereby granted, provided
that this notice is retained thereon and on all copies or modifications.
The University of Chicago makes no representations as to the suitability
and operability of this software for any purpose.
It is provided "as is" without express or implied warranty.
Use of this software for commercial purposes is expressly prohibited
without contacting
Jorge J. More'
Mathematics and Computer Science Division
Argonne National Laboratory
9700 S. Cass Ave.
Argonne, Illinois 60439-4844
e-mail: [email protected]
Argonne National Laboratory with facilities in the states of
Illinois and Idaho, is owned by The United States Government, and
operated by the University of Chicago under provision of a contract
with the Department of Energy.
*****************************************************************/
#ifndef ICFS_H
#define ICFS_H
int dicfs_(int *n, int *nnz, double *a, double *adiag, int *acol_ptr__,
int *arow_ind__, double *l, double *ldiag, int *lcol_ptr__,
int * lrow_ind__, int *p, double *alpha, int *iwa, double * wa1,
double *wa2);
int dicf_(int *n, int *nnz, double *a, double *diag, int *col_ptr__,
int *row_ind__, int *p, int *info, int *indr, int *indf, int *list,
double *w);
int dsel2_(int *n, double *x, int *keys, int *k);
int insort_(int *n, int *keys);
int ihsort_(int *n, int *keys);
int dstrsol_(int *n, double *l, double *ldiag, int *jptr, int *indr,
double *r__, char *task);
#endif