Do we need Graph::Clique module?
From: Edward Wijaya (ewijaya_at_singnet.com.sg.removethis)
Date: 11/10/04
- Next message: Jim Keenan: "Re: Modules for Postal Mailing Addresses"
- Previous message: boyd: "Re: Telnet Module or stopping processing"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Date: Wed, 10 Nov 2004 13:58:42 +0800
Hi,
I am planning to implement an extension to Greg Bacon's
implementation on clique reduction in a graph:
http://home.hiwaay.net/~gbacon/perl/clique.html
The main idea of this module is to take
input of edges and vertices from a graph,
and return all the k-cliques.
e.g:
@Vertices = (1, 2, 3, 4);
@Edges = ([1,2], [1,3], [2,3], [2,4], [3,4]);
Would return
123
234
I wonder if this kind of implementation already exist in CPAN,
and if this is useful to general CPAN audience?
As far as I know, Jarkko's Graph module doesn't support that.
Any comment and insight is very much expected.
Thanks so much for your time.
Regards,
Edward WIJAYA
SINGAPORE
- Next message: Jim Keenan: "Re: Modules for Postal Mailing Addresses"
- Previous message: boyd: "Re: Telnet Module or stopping processing"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Relevant Pages
|
|