[computer-go] opening book structure

2009-06-17 Thread Willemien
I was puzzeling what is the best way to organise an opening book? i am writing a program to be very strong on 7x7 go program (as prelimary for writing a very strong 9x9 program ) and am wondering what is the best structure for an opening book. Where i am at the moment is: There are about 4

Re: [computer-go] opening book structure

2009-06-17 Thread Andrés Domínguez
2009/6/17 Willemien wilem...@googlemail.com: I was puzzeling what is the best way to organise an opening book? It depends of how you program will play. i am writing a program to be very strong on 7x7 go program (as prelimary for writing a very strong 9x9 program ) and am wondering what is

Re: [computer-go] opening book structure

2009-06-17 Thread Christian Nentwich
Are you asking about in-memory storage, or on disk? On disk, you probably want to make sure that it's as easy as possible to maintain - up to your taste. Some people like a single SGF file with variations. You can do mirrorring and transpositions when you load the book. Christian Willemien