Beefy Boxes and Bandwidth Generously Provided by pair Networks Russ
Don't ask to ask, just ask
 
PerlMonks  

Re^2: optimizing the miller-rabin algorithm

by punklrokk (Scribe)
on May 15, 2006 at 21:57 UTC ( [id://549647]=note: print w/replies, xml ) Need Help??

This is an archived low-energy page for bots and other anonmyous visitors. Please sign up if you are a human and want to interact.


in reply to Re: optimizing the miller-rabin algorithm
in thread optimizing the miller-rabin algorithm

If I use your version of a For Loop, how do I tell it to iterate two steps instead of one?

JP Bourget (punklrokk) MS Information and Security Rochester Institute of Technology Rochester, NY
  • Comment on Re^2: optimizing the miller-rabin algorithm

Replies are listed 'Best First'.
Re^3: optimizing the miller-rabin algorithm
by GrandFather (Saint) on May 15, 2006 at 22:09 UTC

    Either use the C style for loop in that case or, if appropriate, do something like for ($start/2..$end/2) with $start and $end both even (but that's rather clunky!).

    The Perl style for is very good for iterating over lists so you can do something like for (1.5, 2..4, @moreNumbers). Generally you should think Perl style for first, then C style if you really need it.


    DWIM is Perl's answer to Gödel
Re^3: optimizing the miller-rabin algorithm
by ikegami (Patriarch) on May 16, 2006 at 13:07 UTC

    You could do

    for (0..(5-1)/2) { # 1..5, step 2 my $i = $_*2 + 1; ... }

    but you're probably better off falling back to a C-style loop in that case.

    As an aside, the above trick is particularly useful when dealing with floats.

    >perl -le "for (my $i=0; $i<10; $i+=0.1) { print $i }" ... 8.79999999999998 8.89999999999998 8.99999999999998 9.09999999999998 9.19999999999998 9.29999999999998 9.39999999999998 9.49999999999998 9.59999999999998 9.69999999999998 9.79999999999998 9.89999999999998 9.99999999999998 >perl -le "for (0..99) { my $i = $_ / 10; print $i }" ... 8.8 8.9 9 9.1 9.2 9.3 9.4 9.5 9.6 9.7 9.8 9.9

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://549647]
help
Sections?
Information?
Find Nodes?
Leftovers?
    Notices?
    hippoepoptai's answer Re: how do I set a cookie and redirect was blessed by hippo!
    erzuuliAnonymous Monks are no longer allowed to use Super Search, due to an excessive use of this resource by robots.