| 57 | } |
| 58 | |
| 59 | double penalty( double v ) |
| 60 | { |
| 61 | if( v > tol ) |
| 62 | { |
| 63 | con_notmet++; |
| 64 | return( v - tol ); |
| 65 | } |
| 66 | |
| 67 | return( 0.0 ); |
| 68 | } |
| 69 | |
| 70 | virtual double optcost( const double* const p ) |
| 71 | { |
nothing calls this directly
no outgoing calls
no test coverage detected