| 30 | } |
| 31 | |
| 32 | double penalty( const double v ) |
| 33 | { |
| 34 | if( v > tol ) |
| 35 | { |
| 36 | con_notmet++; |
| 37 | return( v - tol ); |
| 38 | } |
| 39 | |
| 40 | return( 0.0 ); |
| 41 | } |
| 42 | |
| 43 | double penalty0( double v ) |
| 44 | { |
nothing calls this directly
no outgoing calls
no test coverage detected