Ian Jauslin
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/init.h')
-rw-r--r--src/init.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/init.h b/src/init.h
new file mode 100644
index 0000000..8631b38
--- /dev/null
+++ b/src/init.h
@@ -0,0 +1,10 @@
+#ifndef INIT_H
+#define INIT_H
+
+// random initial condition
+int init_random(_Complex double* u0, int K1, int K2, int seed);
+
+// Gaussian initial condition
+int init_gaussian(_Complex double* u0, int K1, int K2);
+
+#endif