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,57 @@
No vertices, should give error for impossible starting vertex.
One vertex.
0
All vertices of a graph, IGRAPH_OUT:
0 1 2 3 4
1 3 4
0 1 2 3 4
3 4
4
5
All vertices of a graph, IGRAPH_IN:
0 2
0 1 2
0 2
0 1 2 3
0 1 2 3 4
5
All vertices of a graph, IGRAPH_ALL:
0 1 2 3 4
0 1 2 3 4
0 1 2 3 4
0 1 2 3 4
0 1 2 3 4
5
All vertices of a graph, undirected:
0 1 2 3 4
0 1 2 3 4
0 1 2 3 4
0 1 2 3 4
0 1 2 3 4
5
Check for invalid mode error handling.