++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
| 75 | |
| 76 | /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ |
| 77 | void snoptProblem::allocR(int alenrw) { |
| 78 | // Reset work array lengths. |
| 79 | // Allocate new memory for work arrays. |
| 80 | assert(alenrw >= 500); |
| 81 | lenrw = alenrw; |
| 82 | rw = new double[lenrw]; |
| 83 | } |
| 84 | |
| 85 | /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ |
| 86 | void snoptProblem::reallocI(int aleniw) { |
nothing calls this directly
no outgoing calls
no test coverage detected