http://qs321.pair.com?node_id=928843


in reply to Re: Anonymous function called in forbidden scalar context
in thread Anonymous function called in forbidden scalar context

No
  • Comment on Re^2: Anonymous function called in forbidden scalar context

Replies are listed 'Best First'.
Re^3: Anonymous function called in forbidden scalar context
by kennethk (Abbot) on Sep 30, 2011 at 15:59 UTC
    Are you sure? From the source:

    package Lingua::EN::Tagger; our $VERSION = '0.16'; use warnings; use strict; use Carp; use File::Spec; use FileHandle; use HTML::TokeParser; use Lingua::Stem::En; use Memoize; use Storable;
      That's right. I just notices Memoise. Couple of functions are memoised and when I commented this id did not work.

      Is Memoize really useful for computations? How it works?
        Is Memoize really useful for computations?

        For many expensive calculations that are called many times it can be very useful.

        The following benchmark compares Ack1() which does no memoisation with Ack2() which is identical, but has been memoised. The results at the bottom show that Ack2() is over 5,448 times faster than Ack1():

        #! perl -slw use strict; use Benchmark qw[ cmpthese ]; use Memoize; no warnings 'recursion'; sub Ack1 { my( $M, $N ) = @_; return $N + 1 if $M == 0; return Ack1( $M - 1, 1 ) if $N == 0; return Ack1( $M - 1, Ack1( $M, $N - 1 ) ); } sub Ack2 { my( $M, $N ) = @_; return $N + 1 if $M == 0; return Ack2( $M - 1, 1 ) if $N == 0; return Ack2( $M - 1, Ack2( $M, $N - 1 ) ); } memoize( 'Ack2' ); my %memo; sub Ack3 { my( $M, $N ) = @_; return $memo{ "$M:$N" } //= $N + 1 if $M == 0; return $memo{ "$M:$N" } //= Ack3( $M - 1, 1 ) if $N == 0; return $memo{ "$M:$N" } //= Ack3( $M - 1, Ack3( $M, $N - 1 ) ); } our( $M, $N ) = @ARGV; cmpthese -1, { nomemo => q[ Ack1( $M, $N ) ], Memoise => q[ Ack2( $M, $N ) ], Homebrew => q[ Ack3( $M, $N ) ], }; __END__ C:\test>ack 3 5 Rate nomemo Memoise Homebrew nomemo 34.8/s -- -100% -100% Memoise 189639/s 544863% -- -79% Homebrew 889629/s 2556412% 369% --

        However, all is not lost if you cannot use Memoize, as it is not very difficult to do the memoisation yourself. Ack3() does this using a simple hash and it runs nearly 4 times faster than Ack2() and 25,000 time faster than the non-memoised version.


        Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
        "Science is about questioning the status quo. Questioning authority".
        In the absence of evidence, opinion is indistinguishable from prejudice.