aboutsummaryrefslogtreecommitdiff
path: root/src/solvers/h48/solve.h
diff options
context:
space:
mode:
authorSebastiano Tronto <sebastiano@tronto.net>2025-07-29 12:12:43 +0200
committerSebastiano Tronto <sebastiano@tronto.net>2025-07-29 12:12:43 +0200
commitea0387796a349c91032fbcb10f50c6ad8607b0f6 (patch)
treeaed484690d24c0c28c7695d4b5389f2e3c341b96 /src/solvers/h48/solve.h
parent52c21640508c3fc668107778ae027ff4428ebd89 (diff)
downloadnissy-core-ea0387796a349c91032fbcb10f50c6ad8607b0f6.tar.gz
nissy-core-ea0387796a349c91032fbcb10f50c6ad8607b0f6.zip
All coordinates unsigned
Diffstat (limited to 'src/solvers/h48/solve.h')
-rw-r--r--src/solvers/h48/solve.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/solvers/h48/solve.h b/src/solvers/h48/solve.h
index 6026ec7..50e4f99 100644
--- a/src/solvers/h48/solve.h
+++ b/src/solvers/h48/solve.h
@@ -36,9 +36,9 @@ typedef struct {
36 const unsigned char *h48data_fallback_eoesep; 36 const unsigned char *h48data_fallback_eoesep;
37 uint64_t movemask_normal; 37 uint64_t movemask_normal;
38 uint64_t movemask_inverse; 38 uint64_t movemask_inverse;
39 int64_t nodes_visited; 39 uint64_t nodes_visited;
40 int64_t table_fallbacks; 40 uint64_t table_fallbacks;
41 int64_t table_lookups; 41 uint64_t table_lookups;
42 int8_t threads; 42 int8_t threads;
43 int ntasks; 43 int ntasks;
44 solve_h48_task_t *tasks; 44 solve_h48_task_t *tasks;
@@ -463,7 +463,7 @@ solve_h48(
463 dfsarg_solve_h48_maketasks_t maketasks_arg; 463 dfsarg_solve_h48_maketasks_t maketasks_arg;
464 long double fallback_rate, lookups_per_node; 464 long double fallback_rate, lookups_per_node;
465 uint64_t offset; 465 uint64_t offset;
466 int64_t nodes_visited, table_lookups, table_fallbacks; 466 uint64_t nodes_visited, table_lookups, table_fallbacks;
467 tableinfo_t info, fbinfo, fbinfo2; 467 tableinfo_t info, fbinfo, fbinfo2;
468 const uint32_t *cocsepdata; 468 const uint32_t *cocsepdata;
469 const unsigned char *fallback, *h48data; 469 const unsigned char *fallback, *h48data;
@@ -579,7 +579,7 @@ solve_h48(
579 d++ 579 d++
580 ) { 580 ) {
581 if (d >= H48_LOG_PROGRESS_MIN_DEPTH) { 581 if (d >= H48_LOG_PROGRESS_MIN_DEPTH) {
582 LOG("[H48 solve] Found %" PRId64 " solutions, " 582 LOG("[H48 solve] Found %" PRIu64 " solutions, "
583 "searching at depth %" PRId8 "\n", 583 "searching at depth %" PRId8 "\n",
584 sollist.nsols, d); 584 sollist.nsols, d);
585 } 585 }

Generated with cgit - Back to sebastiano.tronto.net