CSE505/Assignment2/A/data5.P
2024-03-09 17:30:02 -05:00

21 lines
310 B
OpenEdge ABL

edge(a, b, 10).
edge(a, c, 15).
edge(a, d, 2).
edge(a, e, 6).
edge(b, a, 12).
edge(b, c, 17).
edge(b, d, 5).
edge(b, e, 3).
edge(c, a, 9).
edge(c, b, 5).
edge(c, d, 16).
edge(c, e, 7).
edge(d, a, 7).
edge(d, b, 18).
edge(d, c, 19).
edge(d, e, 5).
edge(e, a, 17).
edge(e, b, 7).
edge(e, c, 15).
edge(e, d, 15).