Because my original version of the algorithm was wrong, that's why! :) I've fixed it. I don't know if it is any clearer. The basic idea is that the tests for points and quota are not independent; they follow the form:

$points > 2000*X && $quota < 15+X
for some integer 0 < X < 10. One can eliminate the redundancy between these two tests. Algebraically, the above is equivalent to
$points/2000 > X && X > $quota-15
...which can be further reduced to
$points/2000 + 15 > $quota
...except that there are edge cases (basically, X must be an integer strictly between 0 and 10) which make the algorithm a bit more complex.

Specifically, the last pair of inequalities can be written as

ceil( $points/2000 ) > X && X > $quota - 15
but since X is an integer, we can write
ceil( $points/2000 ) - 1 >= X && X > $quota - 15
Now we can eliminate the X:
( ceil( $points/2000 ) - 1 ) + 15 > $quota
This manipulation takes care of enforcing the constraint that X must be an integer.

Lastly, to take care of the limits on X, we use min and max. The final test is then:

max( min( 24, ( ceil( $points/2000 ) - 1 ) + 15 ), 15 ) > $quota

the lowliest monk


In reply to Re^3: alternatives to if and series of elsif by tlm
in thread alternatives to if and series of elsif by kiat

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.