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