++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
| 66 | |
| 67 | /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ |
| 68 | void snoptProblem::allocI(int aleniw) { |
| 69 | // Reset work array lengths. |
| 70 | // Allocate new memory for work arrays. |
| 71 | assert(aleniw >= 500); |
| 72 | leniw = aleniw; |
| 73 | iw = new int[leniw]; |
| 74 | } |
| 75 | |
| 76 | /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ |
| 77 | void snoptProblem::allocR(int alenrw) { |
nothing calls this directly
no outgoing calls
no test coverage detected