| 46 | } |
| 47 | |
| 48 | double penalty( const double v ) |
| 49 | { |
| 50 | if( v > tol ) |
| 51 | { |
| 52 | con_notmet++; |
| 53 | return( v - tol ); |
| 54 | } |
| 55 | |
| 56 | return( 0.0 ); |
| 57 | } |
| 58 | |
| 59 | virtual double optcost( const double* const p0 ) |
| 60 | { |
nothing calls this directly
no outgoing calls
no test coverage detected