| 81 | } |
| 82 | |
| 83 | FluxMatchers::FluxMatchers( |
| 84 | const std::initializer_list<const FluxMatcher*> matchers): |
| 85 | _matchers(matchers) |
| 86 | { |
| 87 | _intervals = 0; |
| 88 | for (const auto* matcher : matchers) |
| 89 | _intervals = std::max(_intervals, matcher->intervals()); |
| 90 | } |
| 91 | |
| 92 | bool FluxMatchers::matches(const unsigned* intervals, FluxMatch& match) const |
| 93 | { |