~ubuntu-branches/ubuntu/natty/suitesparse/natty

« back to all changes in this revision

Viewing changes to CXSparse/Demo/cs_demo.h

  • Committer: Bazaar Package Importer
  • Author(s): Christophe Prud'homme
  • Date: 2006-12-22 10:16:15 UTC
  • Revision ID: james.westby@ubuntu.com-20061222101615-2ohaj8902oix2rnk
Tags: upstream-2.3.1
ImportĀ upstreamĀ versionĀ 2.3.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include "cs.h"
 
2
typedef struct problem_struct
 
3
{
 
4
    cs *A ;
 
5
    cs *C ;
 
6
    int sym ;
 
7
    double *x ;
 
8
    double *b ;
 
9
    double *resid ;
 
10
} problem ;
 
11
 
 
12
problem *get_problem (FILE *f, double tol) ;
 
13
int demo2 (problem *Prob) ;
 
14
int demo3 (problem *Prob) ;
 
15
problem *free_problem (problem *Prob) ;