Module:ET: Difference between revisions
m Parsing improvements |
is_highly_melodic() implemented |
||
Line 88: | Line 88: | ||
return math.floor(exact + 0.5) | return math.floor(exact + 0.5) | ||
end | end | ||
end | |||
-- determine whether the temperament is highly melodic | |||
function p.is_highly_melodic(et) | |||
return rat.is_highly_composite(et.size) and rat.is_superabundant(et.size) | |||
end | end | ||
return p | return p |