Currently the octomap::OcTree prune operation leverages the compare operator on the OcTreeNode to determine if they contain the same value. This checks if two floats are equal here. The OcTreeNode uses template type float which using the 'a==b' for floats is not good, should this be changed such that the class implementing the Node must implement an equal operator for this node type?