Cascade Posted May 11, 2014 Report Share Posted May 11, 2014 Hi Does anyone know if I can do double dummy analysis for multiple hands from one file. I am using something like bridge -dq hand.txt Where hand.txt has a hand in the following format: w q.qj74.t4.aqjt94 n t63.9832.q8.8765 e ak9754.t.aj732.3 s j82.ak65.k965.k2 w s hq However when I add a second hand to the file it does not work. Is this a limitation? Thanks Quote Link to comment Share on other sites More sharing options...
hotShot Posted May 11, 2014 Report Share Posted May 11, 2014 Years ago I did not find a way to do it when building a database of simulated deals with DD results, so that I could use database request instead of calculation power. Quote Link to comment Share on other sites More sharing options...
barmar Posted May 12, 2014 Report Share Posted May 12, 2014 I don't think you can do it with GIB by itself, but you can easily write a shell script to do it: #!/bin/sh while read line1 && read line2 && read line3 && read line4 && read line5 && read line6; do printf "%s\n%s\n%s\n%s\n%s\n%s\n" line1 line2 line3 line4 line5 line6 | bridge -dq done < hand.txt Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.