test_sample.w
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:10k
源码类别:

通讯编程

开发平台:

Visual C++

  1. % This file is part of the Stanford GraphBase (c) Stanford University 1993
  2. @i boilerplate.w %<< legal stuff: PLEASE READ IT BEFORE MAKING ANY CHANGES!
  3. @i gb_types.w
  4. deftitle{TEST_,SAMPLE}
  5. @* Introduction. This GraphBase program is intended to be used only
  6. when the Stanford GraphBase is being installed. It invokes the
  7. most critical subroutines and creates a file that can be checked
  8. against the correct output.
  9. The testing is not exhaustive by any means, but it is designed to detect
  10. errors of portability---cases where different results might occur
  11. on different systems. Thus, if nothing goes wrong, one can assume that
  12. the GraphBase routines are probably installed satisfactorily.
  13. The basic idea of {sc TEST_,SAMPLE} is quite simple: We generate a graph,
  14. then print out a few of its salient characteristics. Then we recycle
  15. the graph and generate another, etc. The test is passed if the output
  16. file matches a ``correct'' output file generated at Stanford by the author.
  17. Actually there are two output files. The main one, containing samples of
  18. graph characteristics, is the standard output. The other, called .{test.gb},
  19. is a graph that has been saved in ASCII format with |save_graph|.
  20. @p
  21. #include "gb_graph.h" /* we use the {sc GB_,GRAPH} data structures */
  22. #include "gb_io.h" /* and the GraphBase input/output routines */
  23. @<Include headers for all of the GraphBase generation modules@>@;
  24. @#
  25. @<Private variables@>@;
  26. @<Procedures@>@;
  27. @t4@>int main()
  28. {@+Graph *g,*gg;@+long i;@+Vertex *v; /* temporary registers */
  29.   printf("GraphBase samples generated by test_sample:n");
  30.   @<Save a graph to be restored later@>;
  31.   @<Print samples of generated graphs@>;
  32.   return 0; /* normal exit */
  33. }
  34. @ @<Include headers for all of the GraphBase generation modules@>=
  35. #include "gb_basic.h" /* we test the basic graph operations */
  36. #include "gb_books.h" /* and the graphs based on literature */
  37. #include "gb_econ.h" /* and the graphs based on economic data */
  38. #include "gb_games.h" /* and the graphs based on football scores */
  39. #include "gb_gates.h" /* and the graphs based on logic circuits */
  40. #include "gb_lisa.h" /* and the graphs based on Mona Lisa */
  41. #include "gb_miles.h" /* and the graphs based on mileage data */
  42. #include "gb_plane.h" /* and the planar graphs */
  43. #include "gb_raman.h" /* and the Ramanujan graphs */
  44. #include "gb_rand.h" /* and the random graphs */
  45. #include "gb_roget.h" /* and the graphs based on Roget's Thesaurus */
  46. #include "gb_save.h" /* and we save results in ASCII format */
  47. #include "gb_words.h" /* and we also test five-letter-word graphs */
  48. @ The subroutine |print_sample(g,n)| will be specified later. It prints global
  49. characteristics of |g| and local characteristics of the |n|th vertex.
  50. We begin the test cautiously by generating a graph that requires no input data
  51. and no pseudo-random numbers. If this test fails, the fault must lie either in
  52. {sc GB_,GRAPH} or {sc GB_,RAMAN}.
  53. @<Print samples of generated graphs@>=
  54. print_sample(raman(31L,3L,0L,4L),4);
  55. @ Next we test part of {sc GB_,BASIC} that relies on a particular
  56. interpretation of the operation `|w>>=1|'. If this part of the test
  57. fails, please look up `system dependencies' in the index to {sc
  58. GB_,BASIC}, and correct the problem on your system by making a change file
  59. .{gb_basic.ch}. (See .{queen_wrap.ch} for an example of a change file.)
  60. On the other hand, if {sc TEST_,SAMPLE} fails only in this particular test
  61. while passing all those that follow, chances are excellent that
  62. you have a pretty good implementation of the GraphBase anyway,
  63. because the bug detected here will rarely show up in practice. Ask
  64. yourself: Can I live comfortably with such a bug?
  65. @<Print samples of generated graphs@>=
  66. print_sample(board(1L,1L,2L,-33L,1L,-0x40000000L-0x40000000L,1L),2000);
  67.   /* coordinates 32 and 33 (only) should wrap around */
  68. @ Another system-dependent part of {sc GB_,BASIC} is tested here,
  69. this time involving character codes.
  70. @<Print samples of generated graphs@>=
  71. print_sample(subsets(32L,18L,16L,0L,999L,-999L,0x80000000L,1L),1);
  72. @ If .{test.gb} fails to match .{test.correct}, the most likely culprit
  73. is |vert_offset|, a ``pointer hack'' in {sc GB_,BASIC}. That macro
  74. absolutely must be made to work properly, because it is used heavily.
  75. In particular, it is used in the |complement| routine tested here,
  76. and in the |gunion| routine tested below.
  77. @<Save a graph to be restored later@>=
  78.   g=random_graph(3L,10L,1L,1L,0L,NULL,dst,1L,2L,1L);
  79.     /* a random multigraph with 3 vertices, 10 edges */
  80.   gg=complement(g,1L,1L,0L); /* a copy of |g|, without multiple edges */
  81.   v=gb_typed_alloc(1,Vertex,gg->data); /* we create a stray vertex too */
  82.   v->name=gb_save_string("Testing");
  83.   gg->util_types[10]='V';
  84.   gg->ww.V=v; /* the stray vertex is now part of |gg| */
  85.   save_graph(gg,"test.gb"); /* so it will appear in .{test.gb} (we hope) */
  86.   gb_recycle(g);@+gb_recycle(gg);
  87. @ @<Private...@>=
  88. static long dst[]={0x20000000,0x10000000,0x10000000};
  89.  /* a probability distribution with frequencies 50%, 25%, 25% */
  90. @ Now we try to reconstruct the graph we saved before, and we also randomize
  91. its lengths.
  92. @<Print samples...@>=
  93. g=restore_graph("test.gb");
  94. if (i=random_lengths(g,0L,10L,12L,dst,2L))
  95.   printf("nFailure code %ld returned by random_lengths!n",i);
  96. else {
  97.   gg=random_graph(3L,10L,1L,1L,0L,NULL,dst,1L,2L,1L); /* same as before */
  98.   print_sample(gunion(g,gg,1L,0L),2);
  99.   gb_recycle(g);@+gb_recycle(gg);
  100. }
  101. @ Partial evaluation of a RISC circuit involves fairly intricate pointer
  102. manipulation, so this step should help to test the portability of the author's
  103. favorite programming tricks.
  104. @<Print samples...@>=
  105. print_sample(partial_gates(risc(0L),1L,43210L,98765L,NULL),79);
  106. @ Now we're ready to test the mechanics of reading data files,
  107. sorting with {sc GB_,SORT}, and heavy randomization. Lots of computation
  108. takes place in this section.
  109. @<Print samp...@>=
  110. print_sample(book("homer",500L,400L,2L,12L,10000L,-123456L,789L),81);
  111. print_sample(econ(40L,0L,400L,-111L),11);
  112. print_sample(games(60L,70L,80L,-90L,-101L,60L,0L,999999999L),14);
  113. print_sample(miles(50L,-500L,100L,1L,500L,5L,314159L),20);
  114. print_sample(plane_lisa(100L,100L,50L,1L,300L,1L,200L,
  115.               50L*299L*199L,200L*299L*199L),1294);
  116. print_sample(plane_miles(50L,500L,-100L,1L,1L,40000L,271818L),14);
  117. print_sample(random_bigraph(300L,3L,1000L,-1L,0L,dst,-500L,500L,666L),3);
  118. print_sample(roget(1000L,3L,1009L,1009L),40);
  119. @ Finally, here's a picky, picky test that is supposed to fail the first time,
  120. succeed the second. (The weight vector just barely exceeds
  121. the maximum weight threshold allowed by {sc GB_WORDS}. That test is
  122. ultraconservative, but eminently reasonable nevertheless.)
  123. @<Print samples...@>=
  124. print_sample(words(100L,wt_vector,70000000L,69L),5);
  125. wt_vector[1]++;
  126. print_sample(words(100L,wt_vector,70000000L,69L),5);
  127. print_sample(words(0L,NULL,0L,69L),5555);
  128. @ @<Private...@>=
  129. static long wt_vector[]=
  130.   {100,-80589,50000,18935,-18935,18935,18935,18935,18935};
  131. @* Printing the sample data. Given a graph |g| in GraphBase format and
  132. an integer~|n|, the subroutine |print_sample(g,n)| will output
  133. global characteristics of~|g|, such as its name and size, together with
  134. detailed information about its |n|th vertex. Then |g| will be shredded
  135. and recycled; the calling routine should not refer to it again.
  136. @<Procedures@>=
  137. static void pr_vert();
  138.    /* a subroutine for printing a vertex is declared below */
  139. static void pr_arc(); /* likewise for arcs */
  140. static void pr_util(); /* and for utility fields in general */
  141. static void print_sample(g,n)
  142.   Graph *g; /* graph to be sampled and destroyed */
  143.   int n; /* index to the sampled vertex */
  144. {
  145.   printf("n");
  146.   if (g==NULL) {
  147.     printf("Ooops, we just ran into panic code %ld!n",panic_code);
  148.     if (io_errors)
  149.       printf("(The I/O error code is 0x%lx)n",(unsigned long)io_errors);
  150.   }@+else {
  151.     @<Print global characteristics of |g|@>;
  152.     @<Print information about the |n|th vertex@>;
  153.     gb_recycle(g);
  154.   }
  155. }
  156. @ The graph's |util_types| are used to determine how much information
  157. should be printed. A level parameter also helps control the verbosity of
  158. printout. In the most verbose mode, each utility field that points to a
  159. vertex or arc, or contains integer or string data, will be printed.
  160. @<Procedures@>=
  161. static void pr_vert(v,l,s)
  162.   Vertex *v; /* vertex to be printed */
  163.   int l; /* |<=0| if the output should be terse */
  164.   char *s; /* format for graph utility fields */
  165. {
  166.   if (v==NULL) printf("NULL");
  167.   else if (is_boolean(v)) printf("ONE"); /* see {sc GB_,GATES} */
  168.   else {
  169.     printf(""%s"",v->name);
  170.     pr_util(v->u,s[0],l-1,s);
  171.     pr_util(v->v,s[1],l-1,s);
  172.     pr_util(v->w,s[2],l-1,s);
  173.     pr_util(v->x,s[3],l-1,s);
  174.     pr_util(v->y,s[4],l-1,s);
  175.     pr_util(v->z,s[5],l-1,s);
  176.     if (l>0) {@+register Arc *a;
  177.       for (a=v->arcs;a;a=a->next) {
  178.         printf("n   ");
  179.         pr_arc(a,1,s);
  180.       }
  181.     }
  182.   }
  183. }
  184. @ @<Pro...@>=
  185. static void pr_arc(a,l,s)
  186.   Arc *a; /* non-null arc to be printed */
  187.   int l; /* |<=0| if the output should be terse */
  188.   char *s; /* format for graph utility fields */
  189. {
  190.   printf("->");
  191.   pr_vert(a->tip,0,s);
  192.   if (l>0) {
  193.     printf( ", %ld",a->len);
  194.     pr_util(a->a,s[6],l-1,s);
  195.     pr_util(a->b,s[7],l-1,s);
  196.   }
  197. }
  198. @ @<Procedures@>=
  199. static void pr_util(u,c,l,s)
  200.   util u; /* a utility field to be printed */
  201.   char c; /* its type code */
  202.   int l; /* 0 if output should be terse, |-1| if pointers omitted */
  203.   char *s; /* utility types for overall graph */
  204. {
  205.   switch (c) {
  206.   case 'I': printf("[%ld]",u.I);@+break;
  207.   case 'S': printf("["%s"]",u.S?u.S:"(null)");@+break;
  208.   case 'A': if (l<0) break;
  209.     printf("[");
  210.     if (u.A==NULL) printf("NULL");
  211.     else pr_arc(u.A,l,s);
  212.     printf("]");
  213.     break;
  214.   case 'V': if (l<0) break; /* avoid infinite recursion */
  215.     printf("[");
  216.     pr_vert(u.V,l,s);
  217.     printf("]");
  218.   default: break; /* case |'Z'| does nothing, other cases won't occur */
  219.   }
  220. }
  221. @ @<Print information about the |n|th vertex@>=
  222. printf("V%d: ",n);
  223. if (n>=g->n || n<0) printf("index is out of range!n");
  224. else {
  225.   pr_vert(g->vertices+n,1,g->util_types);
  226.   printf("n");
  227. }
  228. @ @<Print global characteristics of |g|@>=
  229. printf(""%s"n%ld vertices, %ld arcs, util_types %s",
  230.       g->id,g->n,g->m,g->util_types);
  231. pr_util(g->uu,g->util_types[8],0,g->util_types);
  232. pr_util(g->vv,g->util_types[9],0,g->util_types);
  233. pr_util(g->ww,g->util_types[10],0,g->util_types);
  234. pr_util(g->xx,g->util_types[11],0,g->util_types);
  235. pr_util(g->yy,g->util_types[12],0,g->util_types);
  236. pr_util(g->zz,g->util_types[13],0,g->util_types);
  237. printf("n");
  238. @* Index. We end with the customary list of identifiers, showing where
  239. they are used and where they are defined.