++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
| 171 | |
| 172 | /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ |
| 173 | int snoptProblem::setRealParameter(const char *stropt, double opt) { |
| 174 | assert(initCalled == 1); |
| 175 | |
| 176 | int errors, stropt_len = strlen(stropt); |
| 177 | f_snsetr(stropt, stropt_len, opt, &errors, |
| 178 | iw, leniw, rw, lenrw); |
| 179 | return errors; |
| 180 | } |
| 181 | |
| 182 | /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ |
| 183 | int snoptProblem::getRealParameter(const char *stropt, double &opt) { |