From ce8be022db1e5a127d4be71e99e1f6e2eb68038d Mon Sep 17 00:00:00 2001 From: Alex Stivala Date: Wed, 1 Sep 2021 04:40:58 +0200 Subject: [PATCH] WARNING messages for skippe structures --- nvcc_src_current/parsetableaux.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nvcc_src_current/parsetableaux.c b/nvcc_src_current/parsetableaux.c index 011e7d7..38efc99 100644 --- a/nvcc_src_current/parsetableaux.c +++ b/nvcc_src_current/parsetableaux.c @@ -456,6 +456,8 @@ int read_database(FILE *fp, char **tableaux, float **distmatrices, if (read_order < -1) /* tableau too large*/ { + fprintf(stderr, "WARNING: excluded database structure %s as it is too large\n", + name); parse_distmatrix(fp, order <= MAXDIM_GPU ? MAXDIM_GPU : MAXDIM, -(read_order), NULL, 1); /* read+discard the distmatrix */ num_skipped++; @@ -598,6 +600,7 @@ int read_queries(FILE *fp, char **tableaux, float **distmatrices, if (read_order < -1) /* tableau too large*/ { + fprintf(stderr, "WARNING: excluded query structure %s as it is too large\n", name); parse_distmatrix(fp, MAXDIM, -(read_order), NULL, 1); /* read+discard the distmatrix */ num_skipped++;