Skip to content

Commit

Permalink
fix: saner default for vineyard (although slower in some situations)
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidLapous committed Sep 24, 2024
1 parent 2e05f33 commit c21c43d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion multipers/ml/point_clouds.py
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ def _define_sts(self):
f"Invalid complex \
{self.complex}. Possible choises are rips, delaunay, or alpha."
)
self._vineyard = self.output_type in ["slicer", "slicer_vine"]
self._vineyard = self.output_type is None or "novine" not in self.output_type
self._output_type = (
_pref_output
if self.output_type is None
Expand Down

0 comments on commit c21c43d

Please sign in to comment.