# HG changeset patch # User Mikael Berthe # Date 1473456538 -7200 # Node ID 733df0275d7844228b4d8426e48d2ad619352f0d # Parent 4ad659431711d88f1ccbf52f0e75370c71f43a83 Dump result board string even if the resolution fails (with --out) diff -r 4ad659431711 -r 733df0275d78 gotak/gotak.go --- a/gotak/gotak.go Thu Sep 08 21:57:30 2016 +0200 +++ b/gotak/gotak.go Fri Sep 09 23:28:58 2016 +0200 @@ -142,6 +142,10 @@ } if !full { tak.DumpBoard() + fmt.Println() + if *out { + tak.DumpString() + } log.Println("The takuzu could not be completed using trivial methods.") os.Exit(2) }