UnickSoft / graphonline

This is source code of graphonline service. Graphonline helps visualize graph and applies a lot of algorithms.
http://graphonline.ru/en/
MIT License
367 stars 67 forks source link

adjacency matrix should support directed graphs #47

Open tcurdt opened 1 year ago

tcurdt commented 1 year ago

I would be super useful if the adjacency matrix input would have a checkbox that is enabled for a square matrix that allows to enable directed graph support.

UnickSoft commented 1 year ago

Hello, In fact it supports directed graphs. You may try this matrix: 0, 1, 0, 0, 0, 0, 0, 1, 0, If element in matrix does't have symmetric element in matrix, it creates directed edge.

But you idea is great. We will add it.