Skip to content

Commit

Permalink
optimized center naming, update pybind
Browse files Browse the repository at this point in the history
  • Loading branch information
Dennis Rohde committed Jan 26, 2023
1 parent 917a012 commit 29fd6f0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Fred/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def _optimize_centers(self, curves, consecutive_call=False):
all_balls = self.compute_center_enclosing_balls(curves, False)
for i, center_balls in enumerate(all_balls):
path, _ = _stabbing_path(center_balls)
self[i] = Curve(path, "center {}".format(i))
self[i] = Curve(path, "{} (optimized)".format(self[i].name))

Clustering_Result.optimize_centers = _optimize_centers

Expand Down
2 changes: 1 addition & 1 deletion pybind11
Submodule pybind11 updated 117 files
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def build_extension(self, ext):

setup(
name='Fred-Frechet',
version='1.10.6',
version='1.10.7',
author='Dennis Rohde',
author_email='[email protected]',
description='A fast, scalable and light-weight C++ Fréchet distance library, exposed to python and focused on (k,l)-clustering of polygonal curves.',
Expand Down

0 comments on commit 29fd6f0

Please sign in to comment.