On 4/4/06, Himadri Choudhury <hchoudh / gmail.com> wrote: > Perhaps I can ask this in another way. Is it possible to pass a variable > collection of paths to create a DiGraph? > I don't understand what you mean by "variable collection". DiGraph.new([1,2]) create a DiGraph like so 1 -> 2 and DiGraph.new([1,2], [2,3]) creates a DiGraph like so 1 -> 2 -> 3 Does this help? Regards, Robert