//////////////////////// Alloc / Dealloc ///// ////////////////////////
| 42 | ///// Alloc / Dealloc ///// |
| 43 | ///////////////////////////// |
| 44 | DenseCRF::DenseCRF(int N, int M) : N_(N), M_(M), unary_(0) { |
| 45 | } |
| 46 | DenseCRF::~DenseCRF() { |
| 47 | if (unary_) |
| 48 | delete unary_; |
nothing calls this directly
no outgoing calls
no test coverage detected