Module:ET: Difference between revisions
mNo edit summary |
mNo edit summary |
||
Line 91: | Line 91: | ||
end | end | ||
-- determine whether the temperament is highly | -- determine whether the temperament is highly composite | ||
function p. | function p.is_highly_composite(et) | ||
et.highly_composite = et.highly_composite or rat.is_highly_composite(et.size) | et.highly_composite = et.highly_composite or rat.is_highly_composite(et.size) | ||
et.superabundant = et.superabundant or rat.is_superabundant(et.size) | et.superabundant = et.superabundant or rat.is_superabundant(et.size) | ||
return et.highly_composite or et.superabundant | return et.highly_composite or et.superabundant | ||
end | end | ||
p.is_highly_melodic = p.is_highly_composite | |||
-- describe why | -- describe why |