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

Re: Optimization Help

by choroba (Cardinal)
on Aug 01, 2013 at 23:25 UTC ( [id://1047515]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    for (0 .. $#mapping) {
        return 0 if $self->{Matrix}[$row_index][$_]
                 != $other->{Matrix}[$mapping->[$row_index]][$mapping->[$_
    +]];
    }
    return 1;
    
  2. or download this
    my $self_row  = $self->{Matrix}[$row_index];
    my $other_row = $other->{Matrix}[$mapping->[$row_index]];
    ...
        return 0 if $self_row->[$_] != $other_row->[$mapping->[$_]];
    }
    return 1;
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others pondering the Monastery: (4)
As of 2024-03-29 06:22 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found