- Some hard-coded page sizing code.

This commit is contained in:
ccremers 2004-07-12 14:47:43 +00:00
parent cd3025e04e
commit 4b4c934b9c

View File

@ -496,8 +496,15 @@ void graphInit (System sys)
{ {
Termlist tl; Termlist tl;
/* drawing state space. start with initial node 0 */ /* drawing state space. */
printf ("digraph Statespace {\n"); printf ("digraph Statespace {\n");
/* fit stuff onto the page */
printf ("\trankdir=LR;\n");
printf ("\tsize=\"11,17\";\n");
printf ("\torientation=landscape;\n");
/* start with initial node 0 */
printf ("\tn0 [shape=box,label=\"M0: "); printf ("\tn0 [shape=box,label=\"M0: ");
tl = knowledgeSet (sys->know); tl = knowledgeSet (sys->know);
termlistPrint (tl); termlistPrint (tl);