]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/least-squares.hh
Run `make grand-replace'.
[lilypond.git] / lily / include / least-squares.hh
1 /*
2   leastsquare.hh -- part of GNU LilyPond
3
4   (c) 1996--2008 Han-Wen Nienhuys
5 */
6
7 #ifndef LEASTSQUARE_HH
8 #define LEASTSQUARE_HH
9 #include "std-vector.hh"
10 #include "offset.hh"
11
12 /**
13    Least squares minimisation in 2 variables.
14 */
15 void minimise_least_squares (Real *coef, Real *offset, vector<Offset> const &);
16
17 #endif // LEASTSQUARE_HH
18