
daVinci_draw_graph(+Graph)

   Draw a graph in lib(graph_algorithms) format

Arguments
   Graph               a graph description

Type
   library(daVinci)

Description

This predicate takes a graph in the format defined by the
library lib(graph_algorithms), and draws it.


Examples
   
:- lib(graph_algorithms).
:- lib(daVinci).

top :-
	make_random_graph(10,20,true,true,true,Graph),
	daVinci_draw_graph(Graph).



