Changeset 171
- Timestamp:
- 08/18/05 21:58:41 (3 years ago)
- Files:
-
- 06/devel/algosPY.py (modified) (1 diff)
- 06/devel/ktest.py (added)
- 06/devel/patternPY.py (modified) (2 diffs)
- 06/devel/searchPY.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
06/devel/algosPY.py
r168 r171 1 1 # File: algosPY.py 2 2 3 ## Copyright (C) 2001- 4Ulrich Goertz (u@g0ertz.de)3 ## Copyright (C) 2001-5 Ulrich Goertz (u@g0ertz.de) 4 4 5 5 ## This file is part of Kombilo 0.6, a go database program. 06/devel/patternPY.py
r167 r171 1 1 # File: patternPY.py 2 2 3 ## Copyright (C) 2001- 4Ulrich Goertz (u@g0ertz.de)3 ## Copyright (C) 2001-5 Ulrich Goertz (u@g0ertz.de) 4 4 5 5 ## This file is part of Kombilo 0.6, a go database program. … … 29 29 { 'X', 'O', '.', '*', 'x', 'o' } (black, white, empty, wildcards), plus an 'anchor 30 30 rectangle', given by the top left and bottom right points. 31 31 32 left, right, top, bottom: "anchor rectangle" 33 sizeX, sizeY: size of pattern 32 34 initialData: initial position FIXME 33 contList: move sequence data 35 contList, lenContList: move sequence data in the following format: ...! 36 moveOne: ? 34 37 """ 35 38 06/devel/searchPY.py
r169 r171 276 276 277 277 # now we will go through the game ... 278 # ---------------- this should be done in C++ 278 279 279 280 for algo in algolist: algo.newgame_process() … … 389 390 else: 390 391 break 391 392 # ---------------- end of C++ part 393 392 394 except SGFError: 393 395 messages.insert('end', 'File '+f+iColl+': SGF error in node '+`counter+3`+'.\n')
