Moved a debug print further to reduce clutter

This commit is contained in:
jpekkila
2019-10-15 17:38:29 +03:00
parent fd9dc7ca98
commit b11ef143eb

View File

@@ -142,7 +142,6 @@ is_acceptable(const Error error)
static void static void
print_error_to_screen(const Error error) print_error_to_screen(const Error error)
{ {
printf("WARNING: is_acceptable() not yet complete\n");
printf("\t%-15s... ", vtxbuf_names[error.handle]); printf("\t%-15s... ", vtxbuf_names[error.handle]);
if (is_acceptable(error)) { if (is_acceptable(error)) {
printf(GRN "OK! " RESET); printf(GRN "OK! " RESET);
@@ -163,5 +162,6 @@ acVerifyMesh(const AcMesh model, const AcMesh candidate)
Error field_error = get_max_abs_error(i, model, candidate); Error field_error = get_max_abs_error(i, model, candidate);
print_error_to_screen(field_error); print_error_to_screen(field_error);
} }
printf("WARNING: is_acceptable() not yet complete\n");
return true; return true;
} }