From 809e65f43c41047a34e0731e11e2f3639e7e0b8a Mon Sep 17 00:00:00 2001 From: Scott Worley Date: Thu, 3 Nov 2011 16:20:33 -0700 Subject: [PATCH] Implement --end --- planeteer.go | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/planeteer.go b/planeteer.go index 85b07a1..d17c5a5 100644 --- a/planeteer.go +++ b/planeteer.go @@ -77,7 +77,7 @@ func end() map[string]bool { return nil } m := make(map[string]bool) - for _, p := range strings.Split(*flight_plan_string, ",") { + for _, p := range strings.Split(*end_string, ",") { m[p] = true } return m @@ -484,10 +484,12 @@ func FindBestState(data planet_data, dims []int, table []State) int { max_index := -1 max_value := 0 for addr[Location] = 0; addr[Location] < dims[Location]; addr[Location]++ { - index := EncodeIndex(dims, addr) - if table[index].value > max_value { - max_value = table[index].value - max_index = index + if len(end()) == 0 || end()[data.i2p[addr[Location]]] { + index := EncodeIndex(dims, addr) + if table[index].value > max_value { + max_value = table[index].value + max_index = index + } } } return max_index -- 2.44.1