in reply to Contemplating some set comparison tasks

Hello,

I have no idea how efficient data bases are wrt set covering, but if you want to try within Perl, there is a CPAN module using the 'greedy algorithm' (which does a pretty good approximation of the optimal set cover).

  • Comment on Re: Contemplating some set comparison tasks

Replies are listed 'Best First'.
Re^2: Contemplating some set comparison tasks
by dwhite20899 (Friar) on Aug 11, 2014 at 15:55 UTC
    Interesting. I may use this on a subset and see if it can scale up. Thank you.