Module:ET: Difference between revisions

Plumtree (talk | contribs)
m More sequence detection
Plumtree (talk | contribs)
mNo edit summary
Line 113: Line 113:
end
end


-- determine whether ET's size is in one of zeta function-related sequences
-- determine whether ET's size could be within one of zeta function-related sequences
function p.is_zeta(et)
function p.is_zeta(et)
return seq.contains(seq.zeta_peak, et.size) or seq.contains(seq.integral_zeta, et.size) or seq.contains(seq.zeta_gap, et.size)
return seq.contains(seq.zeta_peak, et.size) ~= false
or seq.contains(seq.integral_zeta, et.size) ~= false
or seq.contains(seq.zeta_gap, et.size) ~= false
end
end