summaryrefslogtreecommitdiff
path: root/lib/symmetric.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/symmetric.h')
-rw-r--r--lib/symmetric.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/symmetric.h b/lib/symmetric.h
new file mode 100644
index 0000000..6e00f52
--- /dev/null
+++ b/lib/symmetric.h
@@ -0,0 +1,13 @@
+
+#pragma once
+
+#include <stdlib.h>
+
+#include "types.h"
+
+q_t *symmetric_compose(q_t q, const q_t *g1, const q_t *g2);
+
+q_t symmetric_act(const q_t *g, q_t s);
+
+q_t *symmetric_invert(q_t q, const q_t *g);
+