Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re: bigint == horrible performance?

by HAL9000 (Initiate)
on Jun 12, 2017 at 04:50 UTC ( [id://1192558]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
            # Now recursively generate the ternary tree.
            # (Note that the terms are the same in each branch except for 
    +sign.)
    ...
            $j = -2*$a +   $b + 2*$h;
            $k = -2*$a + 2*$b + 3*$h;
            &generate($i,$j,$k);
    
  2. or download this
            # Now recursively generate the ternary tree.
            # (Note that the terms are the same in each branch except for 
    +sign.)
    ...
            $j = -$a2 + $b  + $h2;
            $k = -$a2 + $b2 + $h3;
            &generate($i,$j,$k);
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1192558]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others browsing the Monastery: (3)
As of 2024-04-20 09:19 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found