From ad4de13f9695527db4337f61bc3397d34d04c7f6 Mon Sep 17 00:00:00 2001 From: Scott Worley Date: Wed, 2 Nov 2011 10:41:05 -0700 Subject: [PATCH] FindBestState(). This can now emit an answer. It is a factor 80x off in a simple test. :) --- planeteer.go | 25 +++++++++++++++++++++++-- 1 file changed, 23 insertions(+), 2 deletions(-) diff --git a/planeteer.go b/planeteer.go index 7f343b9..7e915d2 100644 --- a/planeteer.go +++ b/planeteer.go @@ -436,6 +436,26 @@ func FillStateTable1(data planet_data, dims []int, table []State) { print("\n") } +func FindBestState(data planet_data, dims []int, table []State) int { + addr := make([]int, NumDimensions) + addr[Edens] = *end_edens + addr[Cloaks] = dims[Cloaks] - 1 + addr[NeedFighters] = dims[NeedFighters] - 1 + addr[NeedShields] = dims[NeedShields] - 1 + addr[Visit] = dims[Visit] - 1 + // Fuel, Hold, UnusedCargo left at 0 + var max_index int + 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 + } + } + return max_index +} + // (Example of a use case for generics in Go) func IndexPlanets(m *map[string]Planet, start_at int) (map[string]int, []string) { e2i := make(map[string]int, len(*m)+start_at) @@ -468,6 +488,7 @@ func main() { dims := DimensionSizes(data) table := InitializeStateTable(data, dims) FillStateTable1(data, dims, table) - print("Going to print state table...") - fmt.Printf("%v", table) + best := FindBestState(data, dims, table) + fmt.Printf("Best state: %v (%v) with $%v\n", + best, DecodeIndex(dims, best), table[best].value) } -- 2.44.1