aboutsummaryrefslogtreecommitdiff
path: root/src/coord.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/coord.c')
-rw-r--r--src/coord.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/coord.c b/src/coord.c
index a9df9fd..0d87ffa 100644
--- a/src/coord.c
+++ b/src/coord.c
@@ -30,12 +30,12 @@ static uint64_t move_htr_drud(Move m, uint64_t ind);
30static uint64_t move_htrfin(Move m, uint64_t ind); 30static uint64_t move_htrfin(Move m, uint64_t ind);
31static uint64_t move_cpud_separate(Move m, uint64_t ind); 31static uint64_t move_cpud_separate(Move m, uint64_t ind);
32 32
33static void init_cphtr_cosets(); 33static void init_cphtr_cosets(void);
34static void init_cphtr_left_cosets_bfs(int i, int c); 34static void init_cphtr_left_cosets_bfs(int i, int c);
35static void init_cphtr_right_cosets_color(int i, int c); 35static void init_cphtr_right_cosets_color(int i, int c);
36static void init_cpud_separate(); 36static void init_cpud_separate(void);
37static void init_cornershtrfin(); 37static void init_cornershtrfin(void);
38static void init_htr_eposs(); 38static void init_htr_eposs(void);
39 39
40 40
41/* All sorts of useful costants and tables **********************************/ 41/* All sorts of useful costants and tables **********************************/
@@ -463,7 +463,7 @@ move_cpud_separate(Move m, uint64_t ind)
463 * know how to do. 463 * know how to do.
464 */ 464 */
465static void 465static void
466init_cphtr_cosets() 466init_cphtr_cosets(void)
467{ 467{
468 unsigned int i; 468 unsigned int i;
469 int c = 0, d = 0; 469 int c = 0, d = 0;
@@ -531,7 +531,7 @@ init_cphtr_right_cosets_color(int i, int d)
531} 531}
532 532
533static void 533static void
534init_cpud_separate() 534init_cpud_separate(void)
535{ 535{
536 unsigned int ui; 536 unsigned int ui;
537 int i, co[8]; 537 int i, co[8];
@@ -545,7 +545,7 @@ init_cpud_separate()
545} 545}
546 546
547static void 547static void
548init_cornershtrfin() 548init_cornershtrfin(void)
549{ 549{
550 unsigned int i, j; 550 unsigned int i, j;
551 int n, c; 551 int n, c;
@@ -576,7 +576,7 @@ init_cornershtrfin()
576} 576}
577 577
578void 578void
579init_htr_eposs() 579init_htr_eposs(void)
580{ 580{
581 int ep[12], ep2[12]; 581 int ep[12], ep2[12];
582 int eps_solved[4] = {UL, UR, DL, DR}; 582 int eps_solved[4] = {UL, UR, DL, DR};
@@ -594,7 +594,7 @@ init_htr_eposs()
594} 594}
595 595
596void 596void
597init_coord() 597init_coord(void)
598{ 598{
599 static bool initialized = false; 599 static bool initialized = false;
600 if (initialized) 600 if (initialized)

Generated with cgit - Back to sebastiano.tronto.net