#ifndef Tools_H #define Tools_H /* Last edited on 2007-01-25 11:38:07 by stolfi */ /* Procedures for tests and others util procedures. */ #define Tools_H_author \ "Created by L. P. Lozada, 1999" #include #include void PrtDFR(Place_t p); /* Print the Degree Wall Ring of {p}. */ void PrtDER(Place_t p); /* Print the Degree @{Edge->?} Ring of {p}. */ void PrtDOV(Place_t p); /* Print the Degree of the node that is origin of {p}. */ void PrtDFE(Place_t p); /* Print the Degree Wall @{Edge->?} Ring of {a}. */ void PrtNextE(Place_t p); void PrtNextF(Place_t p); void PrtOrgNum(Place_t p); void PrtWallNum(Place_t p); void PrtEdgeNum(Place_t p); void PrtPnegNum(Place_t p); void PrtPposNum(Place_t p); void PrtNextPneg(Place_t p); /* Print the 12 places with the same Negative Cell, i.e the places belong to the same tetrahedral cell iff exits. */ void PrtNextPpos(Place_t p); /* Print the 12 places with the same Positive Cell, i.e the places belong to the same tetrahedral cell iff exits. */ #endif