aboutsummaryrefslogtreecommitdiff
path: root/src/survive_cal_lhfind.c
blob: d879f3043c2fe36db7a82aec05a338e13bf0d54e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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.
}