- Removed obsolete debugging output.

This commit is contained in:
ccremers 2004-07-12 13:57:59 +00:00
parent ac4efcd63a
commit 363f95977a

View File

@ -859,8 +859,8 @@ compute_prec_sets (const System sys)
/* /*
* Phase 1: Allocate structures and map to labels * Phase 1: Allocate structures and map to labels
*/ */
printf ("Rolecount: %i\n", sys->rolecount); //printf ("Rolecount: %i\n", sys->rolecount);
printf ("Maxevent : %i\n", sys->roleeventmax); //printf ("Maxevent : %i\n", sys->roleeventmax);
size = sys->rolecount * sys->roleeventmax; size = sys->rolecount * sys->roleeventmax;
eventlabels = memAlloc (size * sizeof(Term)); eventlabels = memAlloc (size * sizeof(Term));
prec = memAlloc (size * size * sizeof(int)); prec = memAlloc (size * size * sizeof(int));
@ -888,12 +888,12 @@ compute_prec_sets (const System sys)
while (rd != NULL) while (rd != NULL)
{ {
eventlabels[index(r1,ev1)] = rd->label; eventlabels[index(r1,ev1)] = rd->label;
termPrint (rd->label); //termPrint (rd->label);
printf ("\t"); //printf ("\t");
ev1++; ev1++;
rd = rd->next; rd = rd->next;
} }
printf ("\n"); //printf ("\n");
r1++; r1++;
} }
// Set simple precedence (progress within a role) // Set simple precedence (progress within a role)
@ -1050,9 +1050,9 @@ compute_prec_sets (const System sys)
} }
else else
{ {
printf ("Preceding label set for r:%i, ev:%i = ", r1,ev1); // printf ("Preceding label set for r:%i, ev:%i = ", r1,ev1);
termlistPrint (cl->prec); // termlistPrint (cl->prec);
printf ("\n"); // printf ("\n");
} }
// Proceed to next claim // Proceed to next claim