Skip to content

Commit d0ebe15

Browse files
authoredSep 6, 2021
Merge pull request #90 from locusrobotics/kernel-cost-type
Changing cost type for calculateKernel
2 parents 2064cc6 + 770fd37 commit d0ebe15

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎dlux_global_planner/include/dlux_global_planner/kernel_function.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ inline bool operator &(CardinalDirection a, CardinalDirection b)
8080
* @param upstream[out] Direction of cells used in computation (if not null initially)
8181
* @return potential for this cell
8282
*/
83-
static float calculateKernel(const PotentialGrid& potential_grid, unsigned char cost, unsigned int x, unsigned int y,
83+
static float calculateKernel(const PotentialGrid& potential_grid, float cost, unsigned int x, unsigned int y,
8484
CardinalDirection* upstream = nullptr)
8585
{
8686
// See README.md for more about this calculation

0 commit comments

Comments
 (0)
Please sign in to comment.