| 188 | return compatibility_->parameters(); |
| 189 | } |
| 190 | void PairwisePotential::setParameters( const VectorXf & v ) { |
| 191 | compatibility_->setParameters( v ); |
| 192 | } |
| 193 | VectorXf PairwisePotential::gradient( const MatrixXf & b, const MatrixXf & Q ) const { |
| 194 | MatrixXf filtered_Q = 0*Q; |
| 195 | // You could reuse the filtered_b from applyTranspose |