From 1fc3e5f6bd49d56f3c3ec9584a29aaa1467c7096 Mon Sep 17 00:00:00 2001 From: Scott Worley Date: Thu, 21 Jun 2012 21:51:42 -0700 Subject: [PATCH] Cost of --end --- planeteer.go | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/planeteer.go b/planeteer.go index a6272f8..a3fb84c 100644 --- a/planeteer.go +++ b/planeteer.go @@ -734,7 +734,7 @@ func main() { final_state[BuyShields] = 1 } - // Use extra eden warps + // Use extra eden warps / cost of --end_edends if *end_edens > 0 { fmt.Println() } @@ -761,4 +761,15 @@ func main() { } final_state[Visit] = dims[Visit] - 1 + // Cost of --end + if len(end()) > 0 { + save_end_string := *end_string + *end_string = "" + end_cache = nil + alt_best := FindBestState(data, dims, table, final_state) + cost := table[alt_best].value - table[best].value + fmt.Printf("\r\n%11v Cost of --end %v\n", Commas(cost), save_end_string) + *end_string = save_end_string + } + } -- 2.44.1