From f8d247c53c3c3bd94fed645b5b47a9096cadc123 Mon Sep 17 00:00:00 2001 From: Sebastiano Tronto Date: Thu, 10 Oct 2024 14:30:39 +0200 Subject: Removed "options" from solver selection Now the solver name fully determines the solver (and options) to be used. For example, now one must specify "h48h0k4" as the name of the solver. This PR also fixes a couple of things in tools. --- tools/expected_distributions.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools/expected_distributions.h') diff --git a/tools/expected_distributions.h b/tools/expected_distributions.h index 202edf9..1b97166 100644 --- a/tools/expected_distributions.h +++ b/tools/expected_distributions.h @@ -155,7 +155,7 @@ check_distribution(const char *solver, const void *data) { tableinfo_t info = {0}; - if (!strcmp(solver, "h48")) { + if (!strncmp(solver, "h48", 3)) { readtableinfo(data, &info); if (!distribution_equal( expected_cocsep, info.distribution, info.maxvalue)) { -- cgit v1.3