Module:Infobox ET: Difference between revisions
Most restrictions removed for consistency limits |
Raising max_n to 43 for consistency limit computation |
||
Line 120: | Line 120: | ||
local consistency = tonumber(frame.args['Consistency']) | local consistency = tonumber(frame.args['Consistency']) | ||
if consistency == nil then | if consistency == nil then | ||
consistency = l.consistency_limit(size, equave, false, | consistency = l.consistency_limit(size, equave, false, 43) | ||
end | end | ||
if consistency == nil then | if consistency == nil then | ||
consistency = 'at least | consistency = 'at least 43' | ||
end | end | ||
if consistency ~= nil then | if consistency ~= nil then | ||
Line 133: | Line 133: | ||
local distinct_consistency = tonumber(frame.args['Distinct consistency']) | local distinct_consistency = tonumber(frame.args['Distinct consistency']) | ||
if distinct_consistency == nil then | if distinct_consistency == nil then | ||
distinct_consistency = l.consistency_limit(size, equave, true, | distinct_consistency = l.consistency_limit(size, equave, true, 43) | ||
end | end | ||
if distinct_consistency == nil then | if distinct_consistency == nil then | ||
distinct_consistency = 'at least | distinct_consistency = 'at least 43' | ||
end | end | ||
if distinct_consistency ~= nil then | if distinct_consistency ~= nil then |