Module:ET: Difference between revisions
mNo edit summary |
mNo edit summary |
||
Line 91: | Line 91: | ||
end | end | ||
-- determine whether | -- determine whether ET is highly composite | ||
function p.is_highly_composite(et) | function p.is_highly_composite(et) | ||
et.highly_composite = et.highly_composite or rat.is_highly_composite(et.size) | |||
return et.highly_composite | |||
end | |||
function p.is_highly_melodic(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 | ||
-- describe why | -- describe why |