1 /* -------------------------------------------------------------------------- */
2 /* Copyright (c) 2005-2012 by Timothy A. Davis, http://www.suitesparse.com.   */
3 /* All Rights Reserved.  See ../Doc/License.txt for License.                  */
4 /* -------------------------------------------------------------------------- */
5 
6 GLOBAL Int UMF_solve
7 (
8     Int sys,
9     const Int Ap [ ],
10     const Int Ai [ ],
11     const double Ax [ ],
12     double Xx [ ],
13     const double Bx [ ],
14 #ifdef COMPLEX
15     const double Az [ ],
16     double Xz [ ],
17     const double Bz [ ],
18 #endif
19     NumericType *Numeric,
20     Int irstep,
21     double Info [UMFPACK_INFO],
22     Int Pattern [ ],
23     double SolveWork [ ]
24 ) ;
25