aboutsummaryrefslogtreecommitdiff
path: root/src/solvers/h48/solve.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/solvers/h48/solve.h')
-rw-r--r--src/solvers/h48/solve.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/solvers/h48/solve.h b/src/solvers/h48/solve.h
index c2dce91..3948b15 100644
--- a/src/solvers/h48/solve.h
+++ b/src/solvers/h48/solve.h
@@ -8,8 +8,8 @@ typedef struct {
8 int64_t maxsolutions; 8 int64_t maxsolutions;
9 uint8_t h; 9 uint8_t h;
10 uint8_t k; 10 uint8_t k;
11 uint32_t *cocsepdata; 11 const uint32_t *cocsepdata;
12 uint8_t *h48data; 12 const uint8_t *h48data;
13 char **nextsol; 13 char **nextsol;
14 uint8_t nissbranch; 14 uint8_t nissbranch;
15 int8_t npremoves; 15 int8_t npremoves;
@@ -183,8 +183,8 @@ solve_h48(
183 .maxsolutions = maxsolutions, 183 .maxsolutions = maxsolutions,
184 .h = info.h48h, 184 .h = info.h48h,
185 .k = info.bits, 185 .k = info.bits,
186 .cocsepdata = get_cocsepdata_ptr(data), 186 .cocsepdata = get_cocsepdata_constptr(data),
187 .h48data = get_h48data_ptr(data), 187 .h48data = get_h48data_constptr(data),
188 .nextsol = &solutions 188 .nextsol = &solutions
189 }; 189 };
190 190

Generated with cgit - Back to sebastiano.tronto.net