[epicurus:~/C/ep2]$ ls -al total 12 drwxr-xr-x 2 yoshi prof 1024 May 18 10:25 ./ drwxr-xr-x 4 yoshi prof 1024 May 18 10:20 ../ -rw-r--r-- 1 yoshi prof 1081 May 18 10:21 Makefile -rw-r--r-- 1 yoshi prof 863 May 18 10:21 ep2exemplo.c -rw-r--r-- 1 yoshi prof 1423 May 18 10:21 gb_flip.c -rw-r--r-- 1 yoshi prof 170 May 18 10:21 gb_flip.h -rw-r--r-- 1 yoshi prof 1444 May 18 10:21 grafo_aleat.c -rw-r--r-- 1 yoshi prof 1115 May 18 10:21 grafo_aleat.h [epicurus:~/C/ep2]$ make ep2exemplo gcc -g -Wall -I. -I/home/prof/yoshi/Roberts/libraries/standard -c gb_flip.c gcc -g -Wall -I. -I/home/prof/yoshi/Roberts/libraries/standard -c grafo_aleat.c gcc -g -Wall -I. -I/home/prof/yoshi/Roberts/libraries/standard -c ep2exemplo.c gcc -L. -o ep2exemplo gb_flip.o grafo_aleat.o ep2exemplo.o /home/prof/yoshi/Roberts/libraries/standard/cslib.a -lm [epicurus:~/C/ep2]$ ep2exemplo Entre M: 7 Entre N: 5 Entre p: .5 Entre seed: 57707 Os parametros do grafo sao (M, N, p, seed) = (7, 5, 0.5, 57707) Este grafo tem 35 vertices e 29 arestas. [epicurus:~/C/ep2]$ ep2exemplo Entre M: 300 Entre N: 300 Entre p: .5 Entre seed: 62342 Os parametros do grafo sao (M, N, p, seed) = (300, 300, 0.5, 62342) Este grafo tem 90000 vertices e 89708 arestas. [epicurus:~/C/ep2]$ ls -al total 60 drwxr-xr-x 2 yoshi prof 1024 May 18 10:25 ./ drwxr-xr-x 4 yoshi prof 1024 May 18 10:20 ../ -rw-r--r-- 1 yoshi prof 1081 May 18 10:21 Makefile -rwxr-xr-x 1 yoshi prof 28546 May 18 10:25 ep2exemplo* -rw-r--r-- 1 yoshi prof 863 May 18 10:21 ep2exemplo.c -rw-r--r-- 1 yoshi prof 6836 May 18 10:25 ep2exemplo.o -rw-r--r-- 1 yoshi prof 1423 May 18 10:21 gb_flip.c -rw-r--r-- 1 yoshi prof 170 May 18 10:21 gb_flip.h -rw-r--r-- 1 yoshi prof 3792 May 18 10:25 gb_flip.o -rw-r--r-- 1 yoshi prof 1444 May 18 10:21 grafo_aleat.c -rw-r--r-- 1 yoshi prof 1115 May 18 10:21 grafo_aleat.h -rw-r--r-- 1 yoshi prof 8160 May 18 10:25 grafo_aleat.o [epicurus:~/C/ep2]$ make clean /bin/rm -f *~ \#~ .\#* *.o *.log *.dvi *.toc core a.out [epicurus:~/C/ep2]$