diff options
| author | Sebastiano Tronto <sebastiano.tronto@gmail.com> | 2021-12-12 12:13:42 +0100 |
|---|---|---|
| committer | Sebastiano Tronto <sebastiano.tronto@gmail.com> | 2021-12-12 12:13:42 +0100 |
| commit | 490d6b168d29b46e55c48c59b5bdde281eebe67e (patch) | |
| tree | f9ca5c3e9e26de580240cc9af22e06d3b7989bfe /src/cube.h | |
| parent | 9725570d740041b51d6bdfbc8416498ddad77666 (diff) | |
| download | nissy-490d6b168d29b46e55c48c59b5bdde281eebe67e.tar.gz nissy-490d6b168d29b46e55c48c59b5bdde281eebe67e.zip | |
Faster inverse cube; makes optimal solving about 30% faster
Diffstat (limited to '')
| -rw-r--r-- | src/cube.h | 3 |
1 files changed, 3 insertions, 0 deletions
| @@ -4,6 +4,7 @@ | |||
| 4 | #include <stdio.h> | 4 | #include <stdio.h> |
| 5 | #include <time.h> | 5 | #include <time.h> |
| 6 | 6 | ||
| 7 | #include "env.h" | ||
| 7 | #include "pf.h" | 8 | #include "pf.h" |
| 8 | #include "utils.h" | 9 | #include "utils.h" |
| 9 | 10 | ||
| @@ -37,5 +38,7 @@ Center where_is_center(Cube cube, Center c); | |||
| 37 | Corner where_is_corner(Cube cube, Corner c); | 38 | Corner where_is_corner(Cube cube, Corner c); |
| 38 | Edge where_is_edge(Cube cube, Edge e); | 39 | Edge where_is_edge(Cube cube, Edge e); |
| 39 | 40 | ||
| 41 | void init_cube(); | ||
| 42 | |||
| 40 | #endif | 43 | #endif |
| 41 | 44 | ||
