|
D.5.17.22 printGraphG
Procedure from library schubert.lib (see schubert_lib).
- Usage:
- printGraphG(G); G graph
- Assume:
- G is a graph.
- Theory:
- This is the print function used by Singular to print a graph.
Example:
| LIB "schubert.lib";
ring r = 0,x,dp;
graph G = makeGraphVE(list(list(0,1,list(0,1,2)),list(1,1,list(1,0,2))),
list(list(0,1,2)));
G;
==> A graph with 2 vertices and 1 edges
==>
|
|