From bf44088d4373a9520e860152c56a958332819c4b Mon Sep 17 00:00:00 2001 From: Sebastiano Tronto Date: Mon, 1 May 2023 16:33:51 +0200 Subject: Split nissy in other repos, see README.md --- src/alg.h | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 src/alg.h (limited to 'src/alg.h') diff --git a/src/alg.h b/src/alg.h deleted file mode 100644 index 967cd92..0000000 --- a/src/alg.h +++ /dev/null @@ -1,35 +0,0 @@ -#ifndef ALG_H -#define ALG_H - -#include -#include -#include - -#include "cubetypes.h" -#include "utils.h" - -void append_alg(AlgList *l, Alg *alg); -void append_move(Alg *alg, Move m, bool inverse); -Move base_move(Move m); -int compare(Move m1, Move m2); /* Return 1 (m1m2) */ -int compare_last(Alg *alg, Move m, bool inverse); -void compose_alg(Alg *alg1, Alg *alg2); -bool commute(Move m1, Move m2); -void copy_alg(Alg *src, Alg *dst); -void free_alg(Alg *alg); -void free_alglist(AlgList *l); -Alg * inverse_alg(Alg *alg); -Move inverse_move(Move m); -char * move_string(Move m); -Alg * new_alg(char *str); -AlgList * new_alglist(); -Alg * on_inverse(Alg *alg); -void print_alg(Alg *alg, bool l); -void print_alglist(AlgList *al, bool l); -void remove_last_move(Alg *alg); -void swapmove(Move *m1, Move *m2); -char * trans_string(Trans t); /* Here because similar to move_string, move? */ -Alg * unniss(Alg *alg); - -#endif - -- cgit v1.3