aboutsummaryrefslogtreecommitdiff
path: root/utils/genmovecode.sh
diff options
context:
space:
mode:
Diffstat (limited to 'utils/genmovecode.sh')
-rwxr-xr-xutils/genmovecode.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/utils/genmovecode.sh b/utils/genmovecode.sh
index 688ee39..0857f31 100755
--- a/utils/genmovecode.sh
+++ b/utils/genmovecode.sh
@@ -7,11 +7,11 @@ gcc -DDEBUG h48_to_"$type".c ../cube.c -o h48_to_"$type"
7genfuncs() { 7genfuncs() {
8 for f in move_??_*.txt; do 8 for f in move_??_*.txt; do
9 move="$(echo $f | sed 's/.*_// ; s/\.txt//')" 9 move="$(echo $f | sed 's/.*_// ; s/\.txt//')"
10 printf 'static inline cube_t\n_move_%s' "$move" 10 printf 'static inline cube_fast_t\n_move_%s' "$move"
11 printf '(cube_t c)\n{\n' 11 printf '(cube_fast_t c)\n{\n'
12 printf '\tcube_t m = ' 12 printf '\tcube_fast_t m = '
13 ./h48_to_"$type" <"$f" | sed '2,4s/^/\t/' 13 ./h48_to_"$type" <"$f" | sed '2,4s/^/\t/'
14 printf ';\n\n\treturn _compose(c, m);\n}\n\n' 14 printf ';\n\n\treturn compose_fast(c, m);\n}\n\n'
15 done 15 done
16} 16}
17 17

Generated with cgit - Back to sebastiano.tronto.net