void
-Score_element::calcalute_dependencies (int final, int busy,
+Score_element::calculate_dependencies (int final, int busy,
Score_element_method_pointer funcptr)
{
if (status_i_ >= final)
status_i_= busy;
for (int i=0; i < dependency_size(); i++)
- dependency (i)->calcalute_dependencies (final, busy, funcptr);
+ dependency (i)->calculate_dependencies (final, busy, funcptr);
Link_array<Score_element> extra (get_extra_dependencies());
for (int i=0; i < extra.size(); i++)
- extra[i]->calcalute_dependencies (final, busy, funcptr);
+ extra[i]->calculate_dependencies (final, busy, funcptr);
invalidate_cache (X_AXIS);
invalidate_cache (Y_AXIS);
void
Super_element::pre_processing ()
{
- calcalute_dependencies (PRECALCING, PRECALCED, &Score_element::do_pre_processing);
+ calculate_dependencies (PRECALCING, PRECALCED, &Score_element::do_pre_processing);
}
void
Super_element::space_processing ()
{
- calcalute_dependencies (SPACING, SPACED, &Score_element::do_space_processing);
+ calculate_dependencies (SPACING, SPACED, &Score_element::do_space_processing);
}
/* for break processing, use only one status, because copies have to
void
Super_element::breakable_col_processing ()
{
- calcalute_dependencies (PREBROKEN, PREBROKEN, &Score_element::do_breakable_col_processing);
+ calculate_dependencies (PREBROKEN, PREBROKEN, &Score_element::do_breakable_col_processing);
}
void
Super_element::break_processing ()
{
- calcalute_dependencies (BROKEN, BROKEN, &Score_element::do_break_processing);
+ calculate_dependencies (BROKEN, BROKEN, &Score_element::do_break_processing);
}
void
Super_element::post_processing ()
{
- calcalute_dependencies (POSTCALCING, POSTCALCED, &Score_element::do_post_processing);
+ calculate_dependencies (POSTCALCING, POSTCALCED, &Score_element::do_post_processing);
}
void
Super_element::output_all ()
{
pscore_l_->outputter_l_->start_line ();
- calcalute_dependencies (BREWING, BREWED, &Score_element::do_brew_molecule);
+ calculate_dependencies (BREWING, BREWED, &Score_element::do_brew_molecule);
pscore_l_->outputter_l_->stop_line ();
}
void
Super_element::unlink_all ()
{
- calcalute_dependencies (UNLINKING, UNLINKED, &Score_element::junk_links);
+ calculate_dependencies (UNLINKING, UNLINKED, &Score_element::junk_links);
}