?? csopiwh.c
字號:
/*# proc: csopiwh - checks for setting of parms in weights-file header.When there isan input weights-file, these parms will get their values set from itsheader, and they should not be set in the specfile. (Only warnings.If any of these parms are set in the specfile, those values will notbe used.) */#include <mlp/parms.h>voidcsopiwh(parms)PARMS *parms;{ char str[150]; if(parms->purpose.ssl.set_tried) { sprintf(str, "purpose has been set (line %d); that value \will not be used (the purpose will be read from the weights file).", parms->purpose.ssl.linenum); eb_cat_w(str); } if(parms->ninps.ssl.set_tried) { sprintf(str, "ninps has been set (line %d); that value \will not be used (ninps will be read from the weights file).", parms->ninps.ssl.linenum); eb_cat_w(str); } if(parms->nhids.ssl.set_tried) { sprintf(str, "nhids has been set (line %d); that value \will not be used (nhids will be read from the weights file).", parms->nhids.ssl.linenum); eb_cat_w(str); } if(parms->nouts.ssl.set_tried) { sprintf(str, "nouts has been set (line %d); that value \will not be used (nouts will be read from the weights file).", parms->nouts.ssl.linenum); eb_cat_w(str); } if(parms->acfunc_hids.ssl.set_tried) { sprintf(str, "acfunc_hids has been set (line %d); that value \will not be used (acfunc_hids will be read from the weights file).", parms->acfunc_hids.ssl.linenum); eb_cat_w(str); } if(parms->acfunc_outs.ssl.set_tried) { sprintf(str, "acfunc_outs has been set (line %d); that value \will not be used (acfunc_outs will be read from the weights file).", parms->acfunc_outs.ssl.linenum); eb_cat_w(str); }}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -