Help for this page

Select Code to Download


  1. or download this
                 Rate         OP while_shift     regex      ike2 chromatic
    +      ike1
    OP          245/s         --        -17%      -28%      -38%      -48%
    +      -50%
    ...
    ike2        398/s        63%         34%       17%        --      -15%
    +      -19%
    chromatic   467/s        91%         57%       37%       17%        --
    +       -5%
    ike1        490/s       100%         65%       44%       23%        5%
    +        --
    
  2. or download this
                 Rate         OP while_shift     regex      ike2 chromatic
    +      ike1
    OP          117/s         --        -22%      -28%      -42%      -52%
    +      -54%
    ...
    ike2        202/s        72%         33%       24%        --      -18%
    +      -21%
    chromatic   244/s       109%         62%       50%       21%        --
    +       -4%
    ike1        254/s       117%         68%       56%       26%        4%
    +        --
    
  3. or download this
    ike1 => sub {
       my @poly = map [ (split /,/, $_)[0, 1] ], split ' ', $coords;
    ...
    ike2 => sub {
       my @poly = map [ /([^,]*),([^,]*)/ ], split ' ', $coords;
    },