I am performing the following commands:
MI =
{{-1,0,0,0,0,0,0}, {1,-1,1,0,0,0,0}, {0,1,-1,0,0,-1,0},
{0,0,0,-1,-1,1,0}, {0,0,0,1,1,0,-1},{0,0,0,0,0,0,1}};
Graf =
IncidenceGraph[MI,
EdgeWeight->{a,b,c,d,e,f,g},
EdgeLabels->"EdgeWeight",
VertexLabels->"Name"];
Print[Graf];
The printed graph, Graf, does not show one edge with weight e. Instead, it shows the edge with repeated weight d. Does anybody know why? Sorry if it is an obvious question. I simply don't see what is wrong. Is this a bug in Mathematica?