Add graph references

This commit is contained in:
Abdelrahman Said
2026-06-28 13:49:01 +01:00
parent 0a9807e448
commit a11edf0c53
2578 changed files with 868045 additions and 0 deletions
@@ -0,0 +1,9 @@
No edges:
row-wise order: ( )
column-wise order: ( )
Directed graph with loops and multiple edges:
row-wise order: ( 0 1 0 2 1 1 1 3 2 0 2 3 4 3 4 3 )
column-wise order: ( 0 0 1 1 2 2 4 4 1 2 1 3 0 3 3 3 )
Undirected graph with loops and multiple edges:
row-wise order: ( 0 1 0 2 1 1 1 3 0 2 2 3 3 4 3 4 )
column-wise order: ( 0 0 1 1 0 2 3 3 1 2 1 3 2 3 4 4 )