in reply to Re: Re: AoA data merging
in thread AoA data merging

I've tweaked the code a bit (the fixes you point out, and a change to keep the current node under consideration until such point as it gets sent to @final). But I don't think that my tweaks will solve the problems you describe. Have you created a test application with reasonable data that you could send to me to run myself? Something minimalist, like in the original node?

If so, feel free to email it to me at "rjray at blackperl.com".

--rjray

Replies are listed 'Best First'.
Re{4}: AoA data merging
by jasonk (Parson) on Mar 11, 2003 at 23:50 UTC

    The code contained in the original node is my test application, if you take the @data declaration, the merge sub, and the Point package, and put them in a file, all you need to add to get it to run is:

    #!/usr/bin/perl -w use strict; use Data::Dumper; # @data declaration here splice(@data,7,1); print Dumper(merge(@data)); # merge sub here # point class declaration here

    But see the node I just posted for a working implementation.