/* Author: G. Jungman * RCS: $Id: tridiag.h,v 1.3 1998/11/14 02:10:55 bjg Exp $ */ #ifndef _TRIDIAG_H_ #define _TRIDIAG_H_ int solve_tridiag(const double diag[], const double offdiag[], const double b[], double * x, size_t N ); int solve_cyctridiag(const double diag[], const double offdiag[], const double b[], double * x, size_t N ); #endif /* !_TRIDIAG_H_ */