Back to home page

EIC code displayed by LXR

 
 

    


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

0001 #ifndef MAD_MATCH_H
0002 #define MAD_MATCH_H
0003 
0004 // types
0005 
0006 struct in_cmd;
0007 
0008 // constants
0009 
0010 enum Match_Mode{ kMatch_NoMatch = 0, kMatch_Std, kMatch_UseMacro, kMatch_PTCknobs };
0011 
0012 // interface
0013 
0014 void pro_match(struct in_cmd* cmd);
0015 
0016 // used by match.f90
0017 void mtcond(int* print_flag, int* nf, double* fun_vec, int* stab_flag);
0018 
0019 // used by matchjc.f90
0020 int mtputconsname(char* noden, int* nodei , char* consn, int* consi);
0021 
0022 // used by match.f90, matchjc.f90, matchsa.f90
0023 int next_vary(char* name, int* name_l, double* lower, double* upper, double* step, int* slope, double* opt);
0024 
0025 #endif // MAD_MATCH_H
0026 
0027