Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
reinterpretcat committed Nov 10, 2024
1 parent 939ea81 commit 60a1f26
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vrp-core/examples/common/routing.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ pub fn define_routing_data() -> GenericResult<impl TransportCost> {
// define distance/duration matrix (use the same data for both)
// as we have five locations, we need to define 5x5 matrix, flatten to 1 dimension:
#[rustfmt::skip]
let routing_data = vec![
// 0 1 2 3 4
let routing_data = vec![
// 0 1 2 3 4
0., 500., 520., 530., 540., // 0
500., 0., 30., 40., 50., // 1
520., 30., 0., 20., 25., // 2
Expand Down

0 comments on commit 60a1f26

Please sign in to comment.