* @brief Returns the exact number of bottom blobs required by the layer, * or -1 if no exact number is required. * * This method should be overridden to return a non-negative value if your * layer expects some exact number of bottom blobs. */
| 198 | * layer expects some exact number of bottom blobs. |
| 199 | */ |
| 200 | virtual inline int ExactNumBottomBlobs() const { return -1; } |
| 201 | /** |
| 202 | * @brief Returns the minimum number of bottom blobs required by the layer, |
| 203 | * or -1 if no minimum number is required. |
nothing calls this directly
no outgoing calls
no test coverage detected