aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteinar H. Gunderson <sgunderson@bigfoot.com>2014-04-11 09:16:18 +0200
committerSteinar H. Gunderson <sgunderson@bigfoot.com>2014-04-11 09:16:18 +0200
commitb7d4b92aeddca6e4e6d7745d2cfd346488e349a0 (patch)
tree00dfe9ac6a9e849238c3cb377451ccae1c27c1d0
parentaaba8c0bc7482ebb1da1601d9cf312353a08e740 (diff)
Some obviousness.
-rw-r--r--planning/planning.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/planning/planning.cpp b/planning/planning.cpp
index a715a63..3a81b36 100644
--- a/planning/planning.cpp
+++ b/planning/planning.cpp
@@ -700,7 +700,8 @@ int main(int argc, char **argv)
return 0;
#else
int best_cost = _INF * 1000;
- plan_recursively(distro_placements, 0, 1, NUM_ROWS, &best_cost);
+ distro_placements[0] = -3; // obvious
+ plan_recursively(distro_placements, 1, 6, NUM_ROWS, &best_cost);
return 0;
#endif
}