From: draq Date: 2005-11-01T03:22:06+09:00 Subject: Re: City and Connection Thank you for your tip. Though I am not going to implement as you told me, I appreciate the approach to use a class Map. My thought is following: class City without any references to the connections. class Connection @city1, @city2 end class Map map = Hash.new # key == city # value == Array.new which contains the connections referring to that city. What do you think about this? draq