You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This can be a bit problematic, since scale_cost could also be traced, so we cannot throw an error at compile-time and I don't wanna introduce runtime value checks, unless necessary.
The cleanest way would be to:
pass scale_cost=1.0 always to the parent as kwargs['scale_cost'] = 1.0
refactor the geometry and removing scale_cost altogether from Geodesic
The 1st is easily doable, wanna take a stab at it @MUCDK ? Ultimately, I want to do 2., but it will take much longer.
Is your feature request related to a problem? Please describe.
In
Geodesic
, thescale_cost
argument has no effect.Describe the solution you'd like
To prevent misunderstandings, I suggest to throw an error if
scale_cost!=1.0
ingeometry.Geodesic.from_graph
.Describe alternatives you've considered
None
Additional context
None
The text was updated successfully, but these errors were encountered: