diff options
| author | Sebastiano Tronto <sebastiano@tronto.net> | 2023-10-05 15:28:45 +0200 |
|---|---|---|
| committer | Sebastiano Tronto <sebastiano@tronto.net> | 2023-10-05 15:30:21 +0200 |
| commit | ffb67c9dcd22c4c3258b9ef78301e404e7d9a796 (patch) | |
| tree | 67f90a2c988a08a14fc31de1731bf9fcc7439816 /src/cube.h | |
| parent | 9e698917cb5b332cdbf1969ddfe3840239106c8d (diff) | |
| download | nissy-core-ffb67c9dcd22c4c3258b9ef78301e404e7d9a796.tar.gz nissy-core-ffb67c9dcd22c4c3258b9ef78301e404e7d9a796.zip | |
Split isconsistent() and issolvable()
Diffstat (limited to 'src/cube.h')
| -rw-r--r-- | src/cube.h | 5 |
1 files changed, 4 insertions, 1 deletions
| @@ -11,7 +11,10 @@ extern cube_t solvedcube; | |||
| 11 | cube_t readcube(char *); | 11 | cube_t readcube(char *); |
| 12 | void writecube(cube_t, char *); | 12 | void writecube(cube_t, char *); |
| 13 | 13 | ||
| 14 | bool isconsistent(cube_t); | 14 | /* Writes a cube in C source code format */ |
| 15 | void writecubesrc(cube_t, char *); | ||
| 16 | |||
| 17 | bool issolvable(cube_t); | ||
| 15 | bool equal(cube_t, cube_t); | 18 | bool equal(cube_t, cube_t); |
| 16 | bool issolved(cube_t); | 19 | bool issolved(cube_t); |
| 17 | bool iserror(cube_t); | 20 | bool iserror(cube_t); |
