Rename the distance measures...in case I ever decide to use them

This commit is contained in:
James P. Howard, II
2020-12-14 15:02:04 -05:00
parent 213d60f4b3
commit 6e3f814ce2

View File

@@ -27,8 +27,8 @@ enum LIBKAMI_EXPORT GridNeighborhoodType {
};
/// \brief Distance types for orthogonal grid domains
enum LIBKAMI_EXPORT GridDistanceType { Linear,
Taxicab };
enum LIBKAMI_EXPORT GridDistanceType { Euclidean,
Manhattan };
/// \brief An abstract domain based on a grid with integer steps
class LIBKAMI_EXPORT GridDomain : public Domain {