]> git.donarmstrong.com Git - lilypond.git/blob - lily/column-x-positions.cc
release: 1.3.0
[lilypond.git] / lily / column-x-positions.cc
1 /*
2   colhpos.cc -- implement Column_x_positions
3
4   source file of the GNU LilyPond music typesetter
5
6   (c)  1997--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9 #include "column-x-positions.hh"
10 #include "real.hh"
11 #include "debug.hh"
12
13 Column_x_positions::Column_x_positions()
14 {
15   energy_f_ = infinity_f;
16   satisfies_constraints_b_ = false;
17   force_f_ = 0;
18 }
19
20 Column_x_positions::~Column_x_positions()
21 {
22 }
23
24
25 void
26 Column_x_positions::print() const
27 {
28 #ifndef NPRINT
29   DEBUG_OUT << "energy : " << energy_f_ << '\n';
30   DEBUG_OUT << "line of " << config_.size() << " cols\n";
31 #endif
32 }
33
34
35
36
37
38
39
40