aboutsummaryrefslogtreecommitdiff
path: root/cube.h
diff options
context:
space:
mode:
Diffstat (limited to 'cube.h')
-rw-r--r--cube.h11
1 files changed, 4 insertions, 7 deletions
diff --git a/cube.h b/cube.h
index 3f2495d..6d701b4 100644
--- a/cube.h
+++ b/cube.h
@@ -83,13 +83,10 @@ Multiple representations of the cube as text are supported:
83 cube. A single whitespace character is added between pieces when writing. 83 cube. A single whitespace character is added between pieces when writing.
84 84
85- SRC: format used to generate code for internal use. 85- SRC: format used to generate code for internal use.
86 In cube.c, a type called cube_array_t is defined and used for basic, 86 If OUT is the output in SRC format, one can use `cube_t cube = OUT` to
87 non-performance-critical methods. If OUT is the output in SRC format, 87 declare a new cube object.
88 the following line can be used to declare a new cube object:
89 88
90cube_array_t cube = OUT 89- LST: similar to SRC, but only a list of comma-separated numbers is printed.
91
92- AVX: analogue to SRC, but for the AVX2 internal representation of the cube.
93 90
94Not all formats are supported for both reading and writing. More formats 91Not all formats are supported for both reading and writing. More formats
95may be supported in the future. 92may be supported in the future.
@@ -101,7 +98,7 @@ may be supported in the future.
101cube_t readcube(char *format, char *buf); 98cube_t readcube(char *format, char *buf);
102 99
103/* Write the given cube to buf in the specified format. 100/* Write the given cube to buf in the specified format.
104 * Supported formats: "H48", "SRC", "AVX". 101 * Supported formats: "H48", "SRC", "LST".
105 */ 102 */
106void writecube(char *format, cube_t cube, char *buf); 103void writecube(char *format, cube_t cube, char *buf);
107 104

Generated with cgit - Back to sebastiano.tronto.net