Skip to content

Commit

Permalink
changlog and foratting
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathf committed Mar 11, 2023
1 parent bc374de commit d750749
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## [v1.13.1] - 2023-03-11

### Added

- Exposed internal variables to get feature parity for pyvroom (#901)

## [v1.13.0] - 2023-01-31

### Added
Expand Down
8 changes: 6 additions & 2 deletions src/structures/vroom/cost_wrapper.h
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,13 @@ class CostWrapper {
static_cast<Cost>(cost_data[i * cost_matrix_size + j]);
}

double get_speed_factor() const { return _speed_factor;};
double get_speed_factor() const {
return _speed_factor;
}

double get_per_hour() const { return _per_hour;};
double get_per_hour() const {
return _per_hour;
}

UserCost user_cost_from_user_duration(UserDuration d) const;
};
Expand Down

0 comments on commit d750749

Please sign in to comment.