/* survey3debug.h routines to help debug the survey3d package. * (C) Copyright 1999 by John Halleck, All rights reserved. */ /* Version of August 16th, 1999 */ #ifndef SURVEY3DEBUG #define SURVEY3DEBUG 1 #include "errors.h" /* Common error codes */ #include "survey3d.h" /* Types specific to 3d surveys */ /* --------------------- Printing ----------------------------------- */ /* Print a coordinate */ extern error coordprint (char *text, coordinate given); /* Print a weight matrix */ extern error weightprint (char *text, weight given); /* Print a covariance matrix */ extern error covarprint (char *text, covariance given); #endif