From 8bd64cbab64cb2f9f6055f4cad8e519cbaf5fcb0 Mon Sep 17 00:00:00 2001 From: fred Date: Thu, 31 Jul 1997 11:46:47 +0000 Subject: [PATCH] lilypond-0.0.78 --- flower/include/choleski.hh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/flower/include/choleski.hh b/flower/include/choleski.hh index f5e9fb4f5a..a3a02a11e0 100644 --- a/flower/include/choleski.hh +++ b/flower/include/choleski.hh @@ -24,7 +24,7 @@ struct Choleski_decomposition { P needs to be symmetric positive definite */ - Choleski_decomposition(Matrix P); + Choleski_decomposition(Matrix const &P); /** solve Px = rhs @@ -40,7 +40,9 @@ struct Choleski_decomposition { return P, calc'ed from L and D */ Matrix original() const; - +private: + void full_matrix_decompose(Matrix const & P); + void band_matrix_decompose(Matrix const &P); }; #endif -- 2.39.5