2 * KLU: a sparse LU factorization algorithm.
3 * Copyright (C) 2004-2009, Timothy A. Davis.
4 * Copyright (C) 2011, Richard W. Lincoln.
5 * http://www.cise.ufl.edu/research/sparse/klu
7 * -------------------------------------------------------------------------
9 * KLU is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
14 * KLU is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this Module; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25 package edu
.ufl
.cise
.klu
.common
;
28 * KLU control parameters and statistics.
32 public class KLU_l_common
35 double tol
, memgrow
, initmem_amd
, initmem
, maxwork
;
36 long btf
, ordering
, scale
;
37 // void *(*malloc_memory) (size_t);
38 // void *(*realloc_memory) (void *, size_t);
39 // void (*free_memory) (void *);
40 // void *(*calloc_memory) (size_t, size_t);
41 // UF_long (*user_order) (UF_long, UF_long *, UF_long *, UF_long *,
42 // struct klu_l_common_struct *);
44 long halt_if_singular
;
45 long status
, nrealloc
, structural_rank
, numerical_rank
, singular_col
,
47 double flops
, rcond
, condest
, rgrowth
, work
;
48 size_t memusage
, mempeak
;