//////////////////////// Alloc / Dealloc ///// ////////////////////////
| 37 | ///// Alloc / Dealloc ///// |
| 38 | ///////////////////////////// |
| 39 | DenseCRF::DenseCRF(int N, int M) : N_(N), M_(M), unary_(0) { |
| 40 | } |
| 41 | DenseCRF::~DenseCRF() { |
| 42 | if (unary_) |
| 43 | delete unary_; |
nothing calls this directly
no outgoing calls
no test coverage detected