From: fred Date: Thu, 31 Jul 1997 11:46:47 +0000 (+0000) Subject: lilypond-0.0.78 X-Git-Tag: release/1.5.59~6103 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=8bd64cbab64cb2f9f6055f4cad8e519cbaf5fcb0;p=lilypond.git lilypond-0.0.78 --- 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