++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
| 161 | |
| 162 | /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ |
| 163 | int snoptProblem::getIntParameter(const char *stropt, int &opt) { |
| 164 | assert(initCalled == 1); |
| 165 | |
| 166 | int errors, stropt_len = strlen(stropt); |
| 167 | f_sngeti(stropt, stropt_len, &opt, &errors, |
| 168 | iw, leniw, rw, lenrw); |
| 169 | return errors; |
| 170 | } |
| 171 | |
| 172 | /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ |
| 173 | int snoptProblem::setRealParameter(const char *stropt, double opt) { |