| 42 | ConstUnaryEnergy::ConstUnaryEnergy( const MatrixXf & u ):unary_(u) { |
| 43 | } |
| 44 | MatrixXf ConstUnaryEnergy::get() const { |
| 45 | return unary_; |
| 46 | } |
| 47 | |
| 48 | LogisticUnaryEnergy::LogisticUnaryEnergy( const MatrixXf & L, const MatrixXf & f ):L_(L),f_(f) { |
| 49 | } |
no outgoing calls
no test coverage detected