summaryrefslogtreecommitdiff
path: root/score.cc
diff options
context:
space:
mode:
Diffstat (limited to 'score.cc')
-rw-r--r--score.cc7
1 files changed, 6 insertions, 1 deletions
diff --git a/score.cc b/score.cc
index 097e2aa50d..1df13365f2 100644
--- a/score.cc
+++ b/score.cc
@@ -13,6 +13,7 @@ Score::set(Paperdef*p)
delete paper_;
paper_ = p;
}
+
void
Score::output(String s)
{
@@ -29,7 +30,7 @@ Score::output(String s)
void
Score::process()
{
- *mlog << "Processing ...";
+ *mlog << "Processing ... ";
set(commands_->parse(last()));
commands_->print();
@@ -53,8 +54,12 @@ Score::process()
clean_cols();
OK();
// print();
+
+ pscore_->preprocess();
*mlog << "Calculating ... ";
pscore_->calc_breaking();
+ pscore_->postprocess();
+
// TODO: calculate vertical structs
// TODO: calculate mixed structs.
*mlog << "\n";