| 92 | } |
| 93 | |
| 94 | PiecewiseLinearConstraint *LeakyReluConstraint::duplicateConstraint() const |
| 95 | { |
| 96 | LeakyReluConstraint *clone = new LeakyReluConstraint( _b, _f, _slope ); |
| 97 | *clone = *this; |
| 98 | this->initializeDuplicateCDOs( clone ); |
| 99 | return clone; |
| 100 | } |
| 101 | |
| 102 | void LeakyReluConstraint::restoreState( const PiecewiseLinearConstraint *state ) |
| 103 | { |
nothing calls this directly
no test coverage detected