Fix faulty logic in checks for mh_tune_jscale
1 open thread
Closes #46 (closed)
Merge request reports
Activity
added bug label
1219 1219 exit(EXIT_FAILURE); 1220 1220 } 1221 1221 1222 if (options_list.num_options.find("mh_tune_jscale.target") != options_list.num_options.end() 1223 && options_list.num_options.find("mh_jscale") != options_list.num_options.end()) 1222 if (auto it = options_list.num_options.find("mh_tune_jscale.status"); 1223 it != options_list.num_options.end() && it->second == "true") 1224 1224 { 1225 cerr << "ERROR: The mh_tune_jscale and mh_jscale options of the estimation statement are incompatible." << endl; 1226 exit(EXIT_FAILURE); 1225 if (options_list.num_options.find("mh_jscale") != options_list.num_options.end()) - Resolved by Johannes Pfeifer
enabled an automatic merge when the pipeline for eb464665 succeeds
mentioned in commit f2f60977
Please register or sign in to reply