Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 10:02:04

0001 #ifndef MAD_INTER_H
0002 #define MAD_INTER_H
0003 
0004 struct command;
0005 
0006 // interface
0007 
0008 /* Warning:
0009    these functions must be called close to each other
0010    they backup some states of the current node in global variables (side effects)
0011    that must be restored. Hence, node iteration are forbidden between their call.
0012 */
0013 int interpolate_node(int *nint);
0014 int reset_interpolation(void);
0015 
0016 int start_interp_node(int* i);
0017 int fetch_interp_node(int* i, double* dl);
0018 
0019 void select_interp(struct command*);
0020 
0021 #endif // MAD_INTER_H
0022