Module:Infobox interval: Difference between revisions

Plumtree (talk | contribs)
m Now that commas are only classified when requested, large commas may be >250c
Plumtree (talk | contribs)
mNo edit summary
Line 184: Line 184:
if rational and regular and small then
if rational and regular and small then
table.insert(infobox_data, {
table.insert(infobox_data, {
'Norms',
'[[Tenney height]]<br/>(log<sub>2</sub> n⋅d)',
'[[Tenney height|log<sub>2</sub> n⋅d]]: ' .. u._round(rat.tenney_height(ratio), 6) .. '<br/>'
u._round(rat.tenney_height(ratio), 6)
.. '[[Weil height|max(n, d)]]: ' .. u._round(rat.weil_height(ratio), 6) .. '<br/>'
})
.. '[[Benedetti height|n⋅d]]: ' .. u._round(rat.benedetti_height(ratio), 6)
table.insert(infobox_data, {
'[[Weil height]]<br/>(max(n, d))',
u._round(rat.tenney_height(ratio), 6)
})
table.insert(infobox_data, {
'[[Benedetti height]]<br/>(n⋅d)',
u._round(rat.tenney_height(ratio), 6)
})
})
end
end