~logan/ubuntu/trusty/suitesparse/4.2.1-3ubuntu1

« back to all changes in this revision

Viewing changes to LDL/ldl.h

  • Committer: Bazaar Package Importer
  • Author(s): Christophe Prud'homme
  • Date: 2007-05-29 09:36:29 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20070529093629-zowquo0b7slkk6nc
Tags: 3.0.0-2
* suitesparse builds properly twice in a row
* Bug fix: "suitesparse - FTBFS: Broken build depens: libgfortran1-dev",
  thanks to Bastian Blank (Closes: #426349).
* Bug fix: "suitesparse_3.0.0-1: FTBFS: build-depends on
  libgfortran1-dev", thanks to Steve Langasek (Closes: #426354).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* ========================================================================== */
2
 
/* === ldl.h:  include file for the LDL package ============================= */
3
 
/* ========================================================================== */
4
 
 
5
 
/* LDL Version 1.3, Copyright (c) 2006 by Timothy A Davis,
6
 
 * University of Florida.  All Rights Reserved.  See README for the License.
7
 
 */
8
 
 
9
 
void ldl_symbolic (int n, int Ap [ ], int Ai [ ], int Lp [ ],
10
 
    int Parent [ ], int Lnz [ ], int Flag [ ], int P [ ], int Pinv [ ]) ;
11
 
 
12
 
int ldl_numeric (int n, int Ap [ ], int Ai [ ], double Ax [ ],
13
 
    int Lp [ ], int Parent [ ], int Lnz [ ], int Li [ ], double Lx [ ],
14
 
    double D [ ], double Y [ ], int Pattern [ ], int Flag [ ],
15
 
    int P [ ], int Pinv [ ]) ;
16
 
 
17
 
void ldl_lsolve (int n, double X [ ], int Lp [ ], int Li [ ],
18
 
    double Lx [ ]) ;
19
 
 
20
 
void ldl_dsolve (int n, double X [ ], double D [ ]) ;
21
 
 
22
 
void ldl_ltsolve (int n, double X [ ], int Lp [ ], int Li [ ],
23
 
    double Lx [ ]) ;
24
 
 
25
 
void ldl_perm  (int n, double X [ ], double B [ ], int P [ ]) ;
26
 
void ldl_permt (int n, double X [ ], double B [ ], int P [ ]) ;
27
 
 
28
 
int ldl_valid_perm (int n, int P [ ], int Flag [ ]) ;
29
 
int ldl_valid_matrix ( int n, int Ap [ ], int Ai [ ]) ;