From: Robert Feldt Date: 2006-04-04T18:22:16+09:00 Subject: Re: [QUIZ] Testing DiGraph (#73) On 4/4/06, Himadri Choudhury 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