diff options
author | Steinar H. Gunderson <sgunderson@bigfoot.com> | 2014-04-11 01:05:15 +0200 |
---|---|---|
committer | Steinar H. Gunderson <sgunderson@bigfoot.com> | 2014-04-11 01:05:15 +0200 |
commit | 89bb676fde520e69c3c10b6f03f90690cc96db82 (patch) | |
tree | 29f233306747e1a7335e96643dd35cd20e587d61 | |
parent | bc44bd99d4d9ae9fc92c43232ff4b95bb8f7e2a9 (diff) |
Adjust gaps based on new information.
-rw-r--r-- | planning/planning.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/planning/planning.cpp b/planning/planning.cpp index 358bbf5..e3ce2ff 100644 --- a/planning/planning.cpp +++ b/planning/planning.cpp @@ -126,11 +126,11 @@ struct VerticalGap { unsigned after_row_num; unsigned extra_cost; }; -// 3.5m, 4m, 5m, 4m gaps (1.1m, 1.6m, 2.6m, 1.6m extra). +// 3, 4m, 4m, 4m gaps (0.6m, 1.6m, 1.6m, 1.6m extra). vector<VerticalGap> vertical_gaps = { - { 5, 11 }, + { 5, 6 }, { 13, 16 }, - { 21, 26 }, + { 21, 16 }, { 30, 16 }, }; |