package commons.graph.model;
public class EdgeInfo
{

public double distance;
public int    type;

public EdgeInfo(double distance, int type)
{
   this.distance = distance;
   this.type = type;
}

public String toString ()
{
   return "d(" + distance + ")" + "t(" + type + ")";
}
}
