aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoger Peppe <rogpeppe@gmail.com>2009-12-07 10:06:51 -0800
committerRuss Cox <rsc@golang.org>2009-12-07 10:06:51 -0800
commitea98e4b5e99a55d4161ca61b16f401974566ae4a (patch)
treeea7f1209cbcd8b00072227522f01a198cf60a2d3
parentf91cd44736d18b9191097121020727719c219479 (diff)
downloadgo-ea98e4b5e99a55d4161ca61b16f401974566ae4a.tar.gz
go-ea98e4b5e99a55d4161ca61b16f401974566ae4a.zip
changes necessary to get the new chameneosredux onto shootout.alioth.debian.org .
it's now there: http://shootout.alioth.debian.org/u32q/benchmark.php?test=chameneosredux&lang=all&box=1! R=r, rsc CC=golang-dev https://golang.org/cl/167043
-rw-r--r--test/bench/chameneosredux.go6
-rw-r--r--test/bench/chameneosredux.txt1
2 files changed, 4 insertions, 3 deletions
diff --git a/test/bench/chameneosredux.go b/test/bench/chameneosredux.go
index 6fa89e49cf..ce464dc2bc 100644
--- a/test/bench/chameneosredux.go
+++ b/test/bench/chameneosredux.go
@@ -101,13 +101,13 @@ func main() {
fmt.Printf("%s + %s -> %s\n", colname[c0], colname[c1], colname[complement[c0|c1<<2]])
}
}
+ fmt.Print("\n");
pallmall([]int{blue, red, yellow});
pallmall([]int{blue, red, yellow, red, yellow, blue, red, yellow, red, blue});
}
func pallmall(cols []int) {
- fmt.Print("\n");
// invariant: meetingplace always contains a value unless a creature
// is currently dealing with it (whereupon it must put it back).
@@ -126,9 +126,9 @@ func pallmall(cols []int) {
for _ = range (cols) {
result := <-ended;
tot += result.met;
- fmt.Println(result.met, spell(result.same, true));
+ fmt.Printf("%v%v\n", result.met, spell(result.same, true));
}
- fmt.Println(spell(tot, true));
+ fmt.Printf("%v\n\n", spell(tot, true));
}
// in this function, variables ending in 0 refer to the local creature,
diff --git a/test/bench/chameneosredux.txt b/test/bench/chameneosredux.txt
index cf7147723b..6016d59a8c 100644
--- a/test/bench/chameneosredux.txt
+++ b/test/bench/chameneosredux.txt
@@ -26,3 +26,4 @@ yellow + yellow -> yellow
120 zero
120 zero
one two zero zero
+