]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/column-x-positions.hh
release: 1.2.15
[lilypond.git] / lily / include / column-x-positions.hh
1 /*
2   column-x-positions.hh -- part of GNU LilyPond
3
4   (c)  1997--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
5 */
6
7 #ifndef COLUMN_X_POSITIONS_HH
8 #define COLUMN_X_POSITIONS_HH
9
10 #include "parray.hh"
11 #include "lily-proto.hh"
12
13 typedef Link_array<Paper_column>  Line_of_cols;
14
15 struct Column_x_positions {
16
17   Line_of_cols cols_;
18   Array<Real> config_;
19   
20   Real force_f_;
21   Real energy_f_;
22   bool satisfies_constraints_b_;
23
24   ~Column_x_positions();
25   Column_x_positions();
26   void print() const;
27 };
28
29
30 #endif // COLUMN_X_POSITIONS_HH
31