|  |  D.15.33.22 printGraphG Procedure from libraryschubert.lib(see  schubert_lib).
 
Example:Usage:
printGraphG(G); G graph
Assume:
G is a graph.
Theory:
This is the print function used by Singular to print a graph.
 |  | 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
==> 
 | 
 
 |