| 180 | compatibility_->apply( out, out ); |
| 181 | } |
| 182 | void PairwisePotential::applyTranspose(MatrixXf & out, const MatrixXf & Q) const { |
| 183 | kernel_->applyTranspose( out, Q ); |
| 184 | // Apply the compatibility |
| 185 | compatibility_->applyTranspose( out, out ); |
| 186 | } |
| 187 | VectorXf PairwisePotential::parameters() const { |
| 188 | return compatibility_->parameters(); |
| 189 | } |