Skip to content

Commit

Permalink
# bug changes
Browse files Browse the repository at this point in the history
  • Loading branch information
udayRage committed Dec 4, 2024
1 parent 680cb88 commit aa2e8db
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 130 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
import re
from math import sqrt

class createNeighborhoodFileUsingEuclideanDistance:
class findNeighboursUsingEuclidean:
"""
This class create a neighbourhood file using euclid distance.
Expand Down Expand Up @@ -114,4 +114,4 @@ def getFileName(self) -> str:
return self.oFile

if __name__ == "__main__":
obj = createNeighborhoodFileUsingEuclideanDistance(sys.argv[1], sys.argv[2], sys.argv[3], sys.argv[4])
obj = findNeighboursUsingEuclidean(sys.argv[1], sys.argv[2], sys.argv[3], sys.argv[4])
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
from geopy.distance import geodesic


class createNeighborhoodFileUsingGeodesicDistance:
class FindNeighboursUsingGeodesic:
"""
This class create a neighbourhood file using Geodesic distance.
Expand Down Expand Up @@ -115,4 +115,4 @@ def getFileName(self):


if __name__ == "__main__":
obj = createNeighborhoodFileUsingGeodesicDistance(sys.argv[1], sys.argv[2], sys.argv[4])
obj = FindNeighboursUsingGeodesic(sys.argv[1], sys.argv[2], sys.argv[4])

This file was deleted.

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name='pami',
version='2024.12.4.4',
version='2024.12.4.5',
author='Rage Uday Kiran',
author_email='[email protected]',
description='This software is being developed at the University of Aizu, Aizu-Wakamatsu, Fukushima, Japan',
Expand Down

0 comments on commit aa2e8db

Please sign in to comment.