File indexing completed on 2025-01-18 10:02:04
0001 #ifndef MAD_MATCH_H
0002 #define MAD_MATCH_H
0003
0004
0005
0006 struct in_cmd;
0007
0008
0009
0010 enum Match_Mode{ kMatch_NoMatch = 0, kMatch_Std, kMatch_UseMacro, kMatch_PTCknobs };
0011
0012
0013
0014 void pro_match(struct in_cmd* cmd);
0015
0016
0017 void mtcond(int* print_flag, int* nf, double* fun_vec, int* stab_flag);
0018
0019
0020 int mtputconsname(char* noden, int* nodei , char* consn, int* consi);
0021
0022
0023 int next_vary(char* name, int* name_l, double* lower, double* upper, double* step, int* slope, double* opt);
0024
0025 #endif
0026
0027