File: adaptiveinterface.h

package info (click to toggle)
psignifit 2.5.6-8
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 608 kB
  • sloc: ansic: 5,317; sh: 109; makefile: 41
file content (18 lines) | stat: -rwxr-xr-x 626 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef __ADAPTIVEINTERFACE_H__
#define __ADAPTIVEINTERFACE_H__


extern void * gAdaptPtr;
extern matrix gAdaptiveOutput, gAdaptiveTarget;

void CAdaptiveCleanup(void);
int CAdaptiveFitCore(double *pIn, double *pOut, boolean *pFree);
void CDoAdaptive(DataSetPtr uncollated, DataSetPtr collated);
void CReportAdaptiveProcedure(void);
void *CSetUpAdaptiveProcedure(char *method, unsigned short nParams, double *params, double *lims);
void CSetAdaptiveGeneratingFunction(PsychDistribFuncPtr shape,  double *params);
void CSetUpAdaptiveOutput(unsigned short nRuns);

#define ADAPTIVE_ENABLED

#endif /* __ADAPTIVEINTERFACE_H__ */