From 90547112e250cea1e14736adfda4d78b0b50baec Mon Sep 17 00:00:00 2001 From: nick_m Date: Tue, 18 Jul 2017 03:00:37 +1000 Subject: [PATCH] TempoMap : Remove old solve_map debugging code --- libs/ardour/tempo.cc | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/libs/ardour/tempo.cc b/libs/ardour/tempo.cc index aa8f46dd6c..d1275dc98c 100644 --- a/libs/ardour/tempo.cc +++ b/libs/ardour/tempo.cc @@ -2684,16 +2684,6 @@ TempoMap::solve_map_minute (Metrics& imaginary, TempoSection* section, const dou } } -#if (0) - recompute_tempi (imaginary); - - if (check_solved (imaginary)) { - return true; - } else { - dunp (imaginary, std::cout); - } -#endif - MetricSectionFrameSorter fcmp; imaginary.sort (fcmp); @@ -2751,16 +2741,6 @@ TempoMap::solve_map_pulse (Metrics& imaginary, TempoSection* section, const doub section->set_minute (section_prev->minute_at_ntpm (section_prev->end_note_types_per_minute(), pulse)); } -#if (0) - recompute_tempi (imaginary); - - if (check_solved (imaginary)) { - return true; - } else { - dunp (imaginary, std::cout); - } -#endif - MetricSectionSorter cmp; imaginary.sort (cmp);