AdjacencyGraph[{{1, 1, 0}, {0, 0, 1}, {0, 0, 1}},
DirectedEdges -> True]
If you look very closely at the resulting visual display in a notebook (below), you can see narrowing where the arrow heads might be. Many adjacency graphs display without problem. What is causing this display problem? Is there a general but not complex approach (i.e., an approach suitable to real-time classroom display) to avoiding this problem? (Mma version 10.2 on Win 7.)


EdgeStyle -> Arrowheads[Medium]which forces an absolute measurement independent of the image size. Related: http://mathematica.stackexchange.com/q/788/12 You can also consider complaining to Wolfram Support, maybe they'll give this more priority then ... – Szabolcs Oct 28 '15 at 15:47PathGraph[Range[3], DirectedEdges -> True, GraphLayout -> "LayeredDigraphEmbedding"]does. The arrowheads are invisible in 10.2 and look fine in 10.3 – Szabolcs Oct 28 '15 at 16:05