aboutsummaryrefslogtreecommitdiff
path: root/src/survive_cal_lhfind.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/survive_cal_lhfind.c')
-rw-r--r--src/survive_cal_lhfind.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/survive_cal_lhfind.c b/src/survive_cal_lhfind.c
new file mode 100644
index 0000000..d879f30
--- /dev/null
+++ b/src/survive_cal_lhfind.c
@@ -0,0 +1,22 @@
+#include "survive_cal.h"
+
+//Stub file for doing lhfind (this doesn't work)
+
+//Return
+int survive_cal_lhfind( struct SurviveCalData * cd )
+{
+ struct SurviveContext * ctx = cd->ctx;
+
+ //Use the following:
+ // FLT avgsweeps[MAX_CAL_PT_DAT];
+ // FLT avglens[MAX_CAL_PT_DAT];
+ // FLT stdsweeps[MAX_CAL_PT_DAT];
+ // FLT stdlens[MAX_CAL_PT_DAT];
+ // int ctsweeps[MAX_CAL_PT_DAT];
+ //
+ // Check your solution against point: senid_of_checkpt's data.
+
+ return -1; //Return 0 if success.
+}
+
+