├── .gitignore ├── AUTHORS ├── CMakeLists.txt ├── COPYING ├── ChangeLog ├── INSTALL ├── Makefile.am ├── Makefile.in ├── NEWS ├── OSX ├── README ├── THANKS ├── TODO ├── WINDOWS ├── aclocal.m4 ├── config.h.cmake ├── config.h.in ├── configure ├── configure.in ├── depcomp ├── doc ├── Makefile.am ├── Makefile.in ├── analyze.texi ├── api.texi ├── board.texi ├── cdfa.eps ├── cdfa.fig ├── cdfa.jpg ├── cdfa.pdf ├── cdfa.png ├── copying.texi ├── dfa.eps ├── dfa.fig ├── dfa.jpg ├── dfa.pdf ├── dfa.png ├── dfa.texi ├── dfa2.eps ├── dfa2.fig ├── dfa2.jpg ├── dfa2.pdf ├── dfa2.png ├── dragon.texi ├── eyes.texi ├── gnugo.6 ├── gnugo.info ├── gnugo.info-1 ├── gnugo.info-2 ├── gnugo.info-3 ├── gnugo.pod ├── gnugo.texi ├── gtp-commands.sed ├── gtp-commands.texi ├── gtp.texi ├── influence.texi ├── install.texi ├── introduction.texi ├── logo-32.eps ├── logo-32.jpg ├── logo-34.eps ├── logo-34.jpg ├── logo-34.pdf ├── logo-36.eps ├── logo-36.jpg ├── logo-36.pdf ├── montecarlo.texi ├── move_generation.texi ├── moyo.texi ├── newlogo.eps ├── newlogo.jpg ├── oldlogo.eps ├── oldlogo.jpg ├── overview.texi ├── owl.texi ├── path.eps ├── path.fig ├── path.jpg ├── path.pdf ├── path.png ├── patterns.texi ├── reading.texi ├── regression.texi ├── sgf.texi ├── sync-prod1.eps ├── sync-prod1.fig ├── sync-prod1.jpg ├── sync-prod1.pdf ├── sync-prod1.png ├── sync-prod2.eps ├── sync-prod2.fig ├── sync-prod2.jpg ├── sync-prod2.pdf ├── sync-prod2.png ├── texinfo.tex ├── using.texi └── utils.texi ├── engine ├── CMakeLists.txt ├── Makefile.am ├── Makefile.in ├── aftermath.c ├── board.c ├── board.h ├── boardlib.c ├── breakin.c ├── cache.c ├── cache.h ├── clock.c ├── clock.h ├── combination.c ├── dragon.c ├── endgame.c ├── filllib.c ├── fuseki.c ├── genmove.c ├── globals.c ├── gnugo.h ├── handicap.c ├── hash.c ├── hash.h ├── influence.c ├── influence.h ├── interface.c ├── liberty.h ├── matchpat.c ├── montecarlo.c ├── move_reasons.c ├── move_reasons.h ├── movelist.c ├── optics.c ├── oracle.c ├── owl.c ├── persistent.c ├── printutils.c ├── readconnect.c ├── readconnect.h ├── reading.c ├── semeai.c ├── sgfdecide.c ├── sgffile.c ├── shapes.c ├── showbord.c ├── surround.c ├── unconditional.c ├── utils.c ├── value_moves.c └── worm.c ├── install-sh ├── interface ├── .gitignore ├── CMakeLists.txt ├── GoImage │ └── Stone.pm ├── Makefile.am ├── Makefile.in ├── big-xpms │ ├── bmoku1.xpm │ ├── bmoku2.xpm │ ├── bmoku3.xpm │ ├── bmoku4.xpm │ ├── bmoku5.xpm │ ├── bmoku6.xpm │ ├── bmoku7.xpm │ ├── bmoku8.xpm │ ├── bmoku9.xpm │ ├── bpmoku1.xpm │ ├── bpmoku2.xpm │ ├── bpmoku3.xpm │ ├── bpmoku4.xpm │ ├── bpmoku5.xpm │ ├── bpmoku6.xpm │ ├── bpmoku7.xpm │ ├── bpmoku8.xpm │ ├── bpmoku9.xpm │ ├── empty1.xpm │ ├── empty2.xpm │ ├── empty3.xpm │ ├── empty4.xpm │ ├── empty5.xpm │ ├── empty6.xpm │ ├── empty7.xpm │ ├── empty8.xpm │ ├── empty9.xpm │ ├── hoshi.xpm │ ├── wmoku1.xpm │ ├── wmoku2.xpm │ ├── wmoku3.xpm │ ├── wmoku4.xpm │ ├── wmoku5.xpm │ ├── wmoku6.xpm │ ├── wmoku7.xpm │ ├── wmoku8.xpm │ ├── wmoku9.xpm │ ├── wpmoku1.xpm │ ├── wpmoku2.xpm │ ├── wpmoku3.xpm │ ├── wpmoku4.xpm │ ├── wpmoku5.xpm │ ├── wpmoku6.xpm │ ├── wpmoku7.xpm │ ├── wpmoku8.xpm │ └── wpmoku9.xpm ├── gmp.c ├── gmp.h ├── gnugo-big-xpms.el ├── gnugo-xpms.el ├── gnugo.el ├── gtp.c ├── gtp.h ├── gtp_examples │ ├── 2ptkgo.pl │ ├── README │ ├── gnugo.el │ ├── gtp2_6 │ ├── matcher_check │ ├── metamachine.c │ ├── sgf2tst │ ├── ttgo.pm │ ├── twogtp │ ├── twogtp-a │ ├── twogtp.pike │ ├── twogtp.py │ └── vanilla.c ├── interface.h ├── main.c ├── make-xpms-file.el ├── play_ascii.c ├── play_gmp.c ├── play_gtp.c ├── play_solo.c ├── play_test.c └── xpms │ ├── bmoku1.xpm │ ├── bmoku2.xpm │ ├── bmoku3.xpm │ ├── bmoku4.xpm │ ├── bmoku5.xpm │ ├── bmoku6.xpm │ ├── bmoku7.xpm │ ├── bmoku8.xpm │ ├── bmoku9.xpm │ ├── bpmoku1.xpm │ ├── bpmoku2.xpm │ ├── bpmoku3.xpm │ ├── bpmoku4.xpm │ ├── bpmoku5.xpm │ ├── bpmoku6.xpm │ ├── bpmoku7.xpm │ ├── bpmoku8.xpm │ ├── bpmoku9.xpm │ ├── empty1.xpm │ ├── empty2.xpm │ ├── empty3.xpm │ ├── empty4.xpm │ ├── empty5.xpm │ ├── empty6.xpm │ ├── empty7.xpm │ ├── empty8.xpm │ ├── empty9.xpm │ ├── hoshi.xpm │ ├── wmoku1.xpm │ ├── wmoku2.xpm │ ├── wmoku3.xpm │ ├── wmoku4.xpm │ ├── wmoku5.xpm │ ├── wmoku6.xpm │ ├── wmoku7.xpm │ ├── wmoku8.xpm │ ├── wmoku9.xpm │ ├── wpmoku1.xpm │ ├── wpmoku2.xpm │ ├── wpmoku3.xpm │ ├── wpmoku4.xpm │ ├── wpmoku5.xpm │ ├── wpmoku6.xpm │ ├── wpmoku7.xpm │ ├── wpmoku8.xpm │ └── wpmoku9.xpm ├── missing ├── mkinstalldirs ├── patterns ├── .gitignore ├── CMakeLists.txt ├── Makefile.am ├── Makefile.in ├── README ├── aa_attackpats.db ├── aa_attackpats.dtr ├── attack.db ├── barriers.db ├── compress_fuseki.c ├── conn.db ├── connections.c ├── defense.db ├── dfa-mkpat.h ├── dfa.c ├── dfa.h ├── endgame.db ├── extract_fuseki.c ├── eyes.db ├── eyes.h ├── fuseki.db ├── fuseki13.dbz ├── fuseki19.dbz ├── fuseki9.dbz ├── gnugo-db.el ├── gogo.sgf ├── handicap.db ├── helpers.c ├── hoshi_keima.sgf ├── hoshi_other.sgf ├── influence.db ├── joseki.c ├── komoku.sgf ├── mc_mogo_classic.db ├── mc_montegnu_classic.db ├── mc_uniform.db ├── mkeyes.c ├── mkmcpat.c ├── mkpat.c ├── mokuhazushi.sgf ├── oracle.db ├── owl_attackpats.db ├── owl_attackpats.dtr ├── owl_defendpats.db ├── owl_defendpats.dtr ├── owl_vital_apats.db ├── owl_vital_apats.dtr ├── patterns.db ├── patterns.h ├── patterns2.db ├── sansan.sgf ├── takamoku.sgf ├── transform.c └── uncompress_fuseki.c ├── regression ├── .gitignore ├── 13x13.tst ├── 13x13b.tst ├── 13x13c.tst ├── 9x9.tst ├── BREAKAGE ├── Makefile.am ├── Makefile.in ├── README ├── STS-RV_0.tst ├── STS-RV_1.tst ├── STS-RV_Misc.tst ├── STS-RV_e.tst ├── arb.tst ├── arend.tst ├── arend2.tst ├── arion.tst ├── atari_atari.tst ├── auto01.tst ├── auto02.tst ├── auto03.tst ├── auto04.tst ├── auto_handtalk.tst ├── benchmark │ ├── GnuGo-Aya.gtp │ ├── GnuGo-GORO.gtp │ ├── GnuGo-Go4.gtp │ ├── GnuGo-GoInt.gtp │ ├── GnuGo-GoeMate.gtp │ ├── GnuGo-Haruka.gtp │ ├── GnuGo-KCC.gtp │ ├── GnuGo-Katsunari.gtp │ ├── GnuGo-Martha.gtp │ ├── golois-gnugo.gtp │ ├── great5-gnugo.gtp │ └── manyfaces-gnugo.gtp ├── blunder.tst ├── break_in.tst ├── breakage2tst.py ├── buzco.tst ├── capture.tst ├── century2002.tst ├── cgf2004.tst ├── connect.tst ├── connection.tst ├── dniwog.tst ├── ego.tst ├── endgame.tst ├── endgame1.tst ├── eval.sh ├── eval3.sh ├── filllib.tst ├── games │ ├── .gitignore │ ├── 9handicap.sgf │ ├── 9x9-1.sgf │ ├── 9x9-2.sgf │ ├── 9x9-3.sgf │ ├── 9x9-4.sgf │ ├── 9x9-5.sgf │ ├── 9x9-6.sgf │ ├── CrazyStone1.sgf │ ├── CrazyStone2.sgf │ ├── FSF-neurogo.sgf │ ├── FSGCBot-dr.sgf │ ├── STS-RV │ │ ├── Class01eProblems │ │ │ ├── _semeai_C0_001.sgf │ │ │ ├── _semeai_C0_002.sgf │ │ │ ├── _semeai_C0_003.sgf │ │ │ ├── _semeai_C0_004.sgf │ │ │ ├── _semeai_C0_005.sgf │ │ │ ├── _semeai_C0_006.sgf │ │ │ ├── _semeai_C0_007.sgf │ │ │ ├── _semeai_C0_008.sgf │ │ │ ├── _semeai_C0_009.sgf │ │ │ ├── _semeai_C0_010.sgf │ │ │ ├── _semeai_C0_011.sgf │ │ │ ├── _semeai_C0_012.sgf │ │ │ ├── _semeai_C0_013.sgf │ │ │ ├── _semeai_C1_001.sgf │ │ │ ├── _semeai_C1_002.sgf │ │ │ ├── _semeai_C1_003.sgf │ │ │ ├── _semeai_C1_004.sgf │ │ │ ├── _semeai_C1_005.sgf │ │ │ ├── _semeai_C1_006.sgf │ │ │ ├── _semeai_C1_007.sgf │ │ │ ├── _semeai_C1_008.sgf │ │ │ ├── _semeai_C1_009.sgf │ │ │ ├── _semeai_C1_010.sgf │ │ │ ├── _semeai_C1_011.sgf │ │ │ ├── _semeai_C1_012.sgf │ │ │ ├── _semeai_C1_013.sgf │ │ │ ├── _semeai_C1_014.sgf │ │ │ ├── _semeai_C1_015.sgf │ │ │ ├── _semeai_C1_016.sgf │ │ │ ├── _semeai_C1_017.sgf │ │ │ ├── _semeai_C1_018.sgf │ │ │ ├── _semeai_C1_019.sgf │ │ │ ├── _semeai_C1_020.sgf │ │ │ ├── _semeai_C1_021.sgf │ │ │ ├── _semeai_C1_022.sgf │ │ │ ├── _semeai_C1_023.sgf │ │ │ ├── _semeai_C1_024.sgf │ │ │ ├── _semeai_C1_025.sgf │ │ │ ├── _semeai_C1_026.sgf │ │ │ ├── _semeai_C1_027.sgf │ │ │ ├── _semeai_Ce_001.sgf │ │ │ ├── _semeai_Ce_002.sgf │ │ │ ├── _semeai_Ce_003.sgf │ │ │ ├── _semeai_Ce_004.sgf │ │ │ ├── _semeai_Ce_005.sgf │ │ │ ├── _semeai_Ce_006.sgf │ │ │ ├── _semeai_Ce_007.sgf │ │ │ ├── _semeai_Ce_008.sgf │ │ │ ├── _semeai_Ce_009.sgf │ │ │ ├── _semeai_Ce_010.sgf │ │ │ ├── _semeai_Ce_011.sgf │ │ │ ├── _semeai_Ce_012.sgf │ │ │ ├── _semeai_Ce_013.sgf │ │ │ ├── _semeai_Ce_014.sgf │ │ │ ├── _semeai_Ce_015.sgf │ │ │ ├── _semeai_Ce_016.sgf │ │ │ ├── _semeai_Ce_017.sgf │ │ │ ├── _semeai_Ce_018.sgf │ │ │ ├── _semeai_Ce_019.sgf │ │ │ ├── _semeai_Ce_020.sgf │ │ │ ├── _semeai_Ce_021.sgf │ │ │ ├── _semeai_Ce_022.sgf │ │ │ ├── _semeai_Ce_023.sgf │ │ │ ├── _semeai_Ce_024.sgf │ │ │ ├── _semeai_Ce_025.sgf │ │ │ ├── _semeai_Ce_026.sgf │ │ │ ├── _semeai_Ce_027.sgf │ │ │ ├── _semeai_Ce_028.sgf │ │ │ ├── _semeai_Ce_029.sgf │ │ │ ├── _semeai_Ce_030.sgf │ │ │ ├── _semeai_Ce_031.sgf │ │ │ ├── _semeai_Ce_032.sgf │ │ │ └── _semeai_Ce_033.sgf │ │ ├── MiscProblems │ │ │ ├── _semeai_C9_001.sgf │ │ │ ├── _semeai_C9_002.sgf │ │ │ ├── _semeai_C9_003.sgf │ │ │ ├── _semeai_C9_004.sgf │ │ │ ├── _semeai_C9_005.sgf │ │ │ ├── _semeai_C9_006.sgf │ │ │ ├── _semeai_C9_007.sgf │ │ │ ├── _semeai_C9_008.sgf │ │ │ ├── _semeai_C9_009.sgf │ │ │ ├── _semeai_C9_010.sgf │ │ │ ├── _semeai_C9_011.sgf │ │ │ ├── _semeai_C9_012.sgf │ │ │ ├── _semeai_C9_013.sgf │ │ │ ├── _semeai_C9_014.sgf │ │ │ ├── _semeai_C9_015.sgf │ │ │ ├── _semeai_C9_016.sgf │ │ │ ├── _semeai_C9_017.sgf │ │ │ ├── _semeai_C9_018.sgf │ │ │ └── _semeai_C9_019.sgf │ │ ├── README │ │ ├── STS-RV_CREDITS │ │ └── STS-RV_README │ ├── TSa.sgf │ ├── ab1_fuseki.sgf │ ├── arb │ │ ├── dumonteil-1.sgf │ │ ├── dumonteil-2.sgf │ │ ├── dumonteil-3.sgf │ │ ├── dumonteil-4.sgf │ │ ├── dumonteil-5.sgf │ │ ├── dumonteil-6.sgf │ │ ├── game01.sgf │ │ ├── game02.sgf │ │ ├── game03.sgf │ │ └── game04.sgf │ ├── arend │ │ ├── constructed1.sgf │ │ ├── constructed2.sgf │ │ ├── constructed3.sgf │ │ ├── constructed4.sgf │ │ ├── constructed5.sgf │ │ ├── constructed6.sgf │ │ ├── exper1.sgf │ │ ├── exper2.sgf │ │ ├── gnugo-gnugo1.sgf │ │ ├── gnugo-gnugo2.sgf │ │ ├── gnugo-gnugo4.sgf │ │ ├── gnugo-gnugo5.sgf │ │ ├── gnugo-gnugo6.sgf │ │ ├── gnugo-gnugo7.sgf │ │ └── gnugo-gnugo8.sgf │ ├── arion.sgf │ ├── atari-crash.sgf │ ├── atari_atari01.sgf │ ├── atari_atari02.sgf │ ├── atari_atari03.sgf │ ├── atari_atari04.sgf │ ├── atari_atari05.sgf │ ├── atari_atari06.sgf │ ├── atari_atari07.sgf │ ├── atari_atari08.sgf │ ├── atari_atari09.sgf │ ├── atari_atari10.sgf │ ├── auto_gen │ │ ├── auto001.sgf │ │ ├── auto002.sgf │ │ ├── auto003.sgf │ │ ├── auto004.sgf │ │ ├── auto005.sgf │ │ ├── auto006.sgf │ │ ├── auto007.sgf │ │ ├── auto008.sgf │ │ ├── auto009.sgf │ │ ├── auto010.sgf │ │ ├── auto011.sgf │ │ ├── auto012.sgf │ │ ├── auto013.sgf │ │ ├── auto014.sgf │ │ ├── auto015.sgf │ │ ├── auto016.sgf │ │ ├── auto017.sgf │ │ ├── auto018.sgf │ │ ├── auto019.sgf │ │ ├── auto020.sgf │ │ ├── auto021.sgf │ │ └── auto022.sgf │ ├── bitti-gnug36.sgf │ ├── blunder1.sgf │ ├── blunder10.sgf │ ├── blunder11.sgf │ ├── blunder12.sgf │ ├── blunder13.sgf │ ├── blunder14.sgf │ ├── blunder15.sgf │ ├── blunder16.sgf │ ├── blunder17.sgf │ ├── blunder18.sgf │ ├── blunder19.sgf │ ├── blunder2.sgf │ ├── blunder20.sgf │ ├── blunder21.sgf │ ├── blunder22.sgf │ ├── blunder23.sgf │ ├── blunder24.sgf │ ├── blunder25.sgf │ ├── blunder3.sgf │ ├── blunder4.sgf │ ├── blunder5.sgf │ ├── blunder6.sgf │ ├── blunder7.sgf │ ├── blunder8.sgf │ ├── blunder9.sgf │ ├── boardspace │ │ ├── GNUGo-GoFigure0.1-200503171816.sgf │ │ ├── GNUGo-GoFigure0.1-200503181316.sgf │ │ ├── GNUGo-GoFigure0.1-200503181614.sgf │ │ ├── GNUGo-GoFigure0.1-200503302359.sgf │ │ └── GoFigure0.1-GNUGo-200503211944.sgf │ ├── break_in.sgf │ ├── bretz.sgf │ ├── buzco1.sgf │ ├── century21-2002 │ │ ├── gnugo-go4.sgf │ │ ├── gnugo-katsunari.sgf │ │ ├── gnugo-tsgo.sgf │ │ ├── goint-gnugo.sgf │ │ ├── golois-gnugo.sgf │ │ ├── great5-gnugo.sgf │ │ └── manyfaces-gnugo.sgf │ ├── century21 │ │ ├── README │ │ ├── gnugo-aya.sgf │ │ ├── gnugo-explorer.sgf │ │ ├── gnugo-go4.sgf │ │ ├── gnugo-gointellect.sgf │ │ ├── gnugo-smartgo.sgf │ │ └── gnugo-wulu.sgf │ ├── cgf2001 │ │ ├── aya.sgf │ │ ├── goro.sgf │ │ ├── haruka.sgf │ │ ├── image.sgf │ │ └── katsunari.sgf │ ├── cgf2002 │ │ ├── Aya.sgf │ │ ├── Caren.sgf │ │ ├── Image.sgf │ │ ├── gnu-and.sgf │ │ ├── gnu-har.sgf │ │ ├── kat-gnu.sgf │ │ ├── martha.sgf │ │ └── shi-gnu.sgf │ ├── cgf2003 │ │ ├── GnuGo-Aya.sgf │ │ ├── GnuGo-GORO.sgf │ │ ├── GnuGo-Go4.sgf │ │ ├── GnuGo-GoInt.sgf │ │ ├── GnuGo-GoeMate.sgf │ │ ├── GnuGo-Haruka.sgf │ │ ├── GnuGo-KCC.sgf │ │ ├── GnuGo-Katsunari.sgf │ │ └── GnuGo-Martha.sgf │ ├── cgf2004 │ │ ├── aya.sgf │ │ ├── caren.sgf │ │ ├── gargoyle.sgf │ │ ├── gorimutyu.sgf │ │ ├── goro.sgf │ │ ├── katsunari.sgf │ │ ├── martha.sgf │ │ ├── result.txt │ │ └── shikosakugo.sgf │ ├── cgf2005 │ │ ├── 19x19 │ │ │ ├── aya.sgf │ │ │ ├── caren.sgf │ │ │ ├── katsunari.sgf │ │ │ └── shiko.sgf │ │ └── 9x9 │ │ │ ├── aya1.sgf │ │ │ ├── aya2.sgf │ │ │ ├── caren1.sgf │ │ │ ├── caren2.sgf │ │ │ ├── katsunari1.sgf │ │ │ ├── katsunari2.sgf │ │ │ ├── shiko1.sgf │ │ │ └── shiko2.sgf │ ├── cgos │ │ ├── 13435.sgf │ │ ├── 14198.sgf │ │ ├── 25811.sgf │ │ ├── 26449.sgf │ │ ├── 30527.sgf │ │ ├── 31446.sgf │ │ ├── 37169.sgf │ │ ├── 390115.sgf │ │ ├── 403788.sgf │ │ ├── 42896.sgf │ │ ├── 471085.sgf │ │ ├── 58273.sgf │ │ ├── 60311.sgf │ │ ├── 879.sgf │ │ └── 994.sgf │ ├── connection1.sgf │ ├── connection2.sgf │ ├── connection3.sgf │ ├── connection4.sgf │ ├── disaster.sgf │ ├── dniwog.sgf │ ├── doublecut.sgf │ ├── doublecut2.sgf │ ├── doubleko.sgf │ ├── dragon1.sgf │ ├── dublin1.sgf │ ├── dublin2.sgf │ ├── edge_defense1.sgf │ ├── egc2001 │ │ ├── au-gg.sgf │ │ ├── gg-dr.sgf │ │ ├── gg-ga.sgf │ │ ├── gg-ts.sgf │ │ ├── gs-gg.sgf │ │ └── tg-gg.sgf │ ├── ego.sgf │ ├── ego2.sgf │ ├── ego3.sgf │ ├── endgame10.sgf │ ├── endgame11.sgf │ ├── endgame12.sgf │ ├── endgame13.sgf │ ├── endgame14.sgf │ ├── endgame15.sgf │ ├── endgame2.sgf │ ├── endgame3.sgf │ ├── endgame4.sgf │ ├── endgame5.sgf │ ├── endgame6.sgf │ ├── endgame7.sgf │ ├── endgame8.sgf │ ├── endgame9.sgf │ ├── explorer.sgf │ ├── explorer2.sgf │ ├── eyes1.sgf │ ├── eyes2.sgf │ ├── eyes3.sgf │ ├── eyes_edge.sgf │ ├── filllib1.sgf │ ├── filllib10.sgf │ ├── filllib11.sgf │ ├── filllib12.sgf │ ├── filllib13.sgf │ ├── filllib14.sgf │ ├── filllib15.sgf │ ├── filllib16.sgf │ ├── filllib17.sgf │ ├── filllib18.sgf │ ├── filllib19.sgf │ ├── filllib2.sgf │ ├── filllib3.sgf │ ├── filllib4.sgf │ ├── filllib5.sgf │ ├── filllib6.sgf │ ├── filllib7.sgf │ ├── filllib8.sgf │ ├── filllib9.sgf │ ├── gg-040225.sgf │ ├── gifu2005 │ │ ├── gnugo-aya.sgf │ │ ├── gnugo-daigo.sgf │ │ ├── gnugo-goint.sgf │ │ ├── gnugo-igoppi.sgf │ │ ├── gnugo-katsu.sgf │ │ ├── gnugo-kccigo.sgf │ │ ├── gnugo-nanasi.sgf │ │ ├── gostar-gnugo.sgf │ │ └── mfg-gnugo.sgf │ ├── gifu2006 │ │ ├── caren-gnugo.sgf │ │ ├── gnugo-aya.sgf │ │ ├── gnugo-gorimu.sgf │ │ ├── gnugo-igoist.sgf │ │ ├── gnugo-indigo.sgf │ │ ├── gnugo-katsu.sgf │ │ ├── gnugo-kccigo.sgf │ │ ├── gnugo-nanasi.sgf │ │ └── shikou-gnugo.sgf │ ├── glop.sgf │ ├── golife.sgf │ ├── gunnar │ │ ├── gunnar1.sgf │ │ ├── gunnar10.sgf │ │ ├── gunnar11.sgf │ │ ├── gunnar12.sgf │ │ ├── gunnar13.sgf │ │ ├── gunnar14.sgf │ │ ├── gunnar15.sgf │ │ ├── gunnar16.sgf │ │ ├── gunnar17.sgf │ │ ├── gunnar18.sgf │ │ ├── gunnar19.sgf │ │ ├── gunnar2.sgf │ │ ├── gunnar20.sgf │ │ ├── gunnar21.sgf │ │ ├── gunnar22.sgf │ │ ├── gunnar3.sgf │ │ ├── gunnar4.sgf │ │ ├── gunnar5.sgf │ │ ├── gunnar6.sgf │ │ ├── gunnar7.sgf │ │ ├── gunnar8.sgf │ │ ├── gunnar9.sgf │ │ └── rbm-bobk-200303111815.sgf │ ├── gwe.sgf │ ├── hamete_joseki.sgf │ ├── handtalk │ │ ├── handtalk1.sgf │ │ ├── handtalk10.sgf │ │ ├── handtalk11.sgf │ │ ├── handtalk12.sgf │ │ ├── handtalk13.sgf │ │ ├── handtalk14.sgf │ │ ├── handtalk15.sgf │ │ ├── handtalk17.sgf │ │ ├── handtalk18.sgf │ │ ├── handtalk19.sgf │ │ ├── handtalk2.sgf │ │ ├── handtalk20.sgf │ │ ├── handtalk21.sgf │ │ ├── handtalk22.sgf │ │ ├── handtalk23.sgf │ │ ├── handtalk24.sgf │ │ ├── handtalk25.sgf │ │ ├── handtalk26.sgf │ │ ├── handtalk27.sgf │ │ ├── handtalk3.sgf │ │ ├── handtalk4.sgf │ │ ├── handtalk5.sgf │ │ ├── handtalk6.sgf │ │ ├── handtalk7.sgf │ │ ├── handtalk8.sgf │ │ └── handtalk9.sgf │ ├── heikki │ │ └── heikki01.sgf │ ├── iken-tobi.sgf │ ├── incident104.sgf │ ├── incident107.sgf │ ├── incident108b.sgf │ ├── incident114.sgf │ ├── incident118.sgf │ ├── incident121.sgf │ ├── incident144.sgf │ ├── incident153.sgf │ ├── incident156.sgf │ ├── incident161.sgf │ ├── incident165.sgf │ ├── incident169.sgf │ ├── incident185.sgf │ ├── incident186.sgf │ ├── incident187.sgf │ ├── incident189.sgf │ ├── incident198.sgf │ ├── incident199.sgf │ ├── incident2.sgf │ ├── incident201.sgf │ ├── incident209.sgf │ ├── incident211.sgf │ ├── incident218.sgf │ ├── incident221.sgf │ ├── incident223.sgf │ ├── incident225.sgf │ ├── incident231.sgf │ ├── incident234.sgf │ ├── incident235.sgf │ ├── incident236.sgf │ ├── incident237.sgf │ ├── incident238.sgf │ ├── incident239.sgf │ ├── incident240.sgf │ ├── incident246.sgf │ ├── incident248.sgf │ ├── incident251.sgf │ ├── incident252.sgf │ ├── incident253.sgf │ ├── incident254.sgf │ ├── incident256.sgf │ ├── incident258.sgf │ ├── incident261.sgf │ ├── incident262.sgf │ ├── incident263.sgf │ ├── incident267.sgf │ ├── incident269.sgf │ ├── incident272.sgf │ ├── incident278.sgf │ ├── incident287.sgf │ ├── incident290.sgf │ ├── incident291.sgf │ ├── incident297.sgf │ ├── incident42.sgf │ ├── incident55.sgf │ ├── incident59.sgf │ ├── incident64.sgf │ ├── incident66.sgf │ ├── incident67.sgf │ ├── incident72.sgf │ ├── incident73.sgf │ ├── incident74.sgf │ ├── incident79.sgf │ ├── incident80.sgf │ ├── incident82.sgf │ ├── incident84.sgf │ ├── incident85.sgf │ ├── incident91.sgf │ ├── incident92.sgf │ ├── incident93.sgf │ ├── incident94.sgf │ ├── incident96.sgf │ ├── incident97.sgf │ ├── jahy.sgf │ ├── joseki01.sgf │ ├── juka1.sgf │ ├── kgs │ │ ├── 2004-04-10-GnuGoCVS-inuyasha34.sgf │ │ ├── 2004-04-10-Shun9137-GnuGoCVS.sgf │ │ ├── 2004-04-28-R-dokuganryu-GnuGoCVS.sgf │ │ ├── 20040507-GnuGoCVS-read.sgf │ │ ├── 20040516-GoBucks-GnuGoCVS.sgf │ │ ├── 20040517-siRNA-GnuGoCVS.sgf │ │ ├── 20040525-fanfan-GnuGoBot.sgf │ │ ├── 20050407-tfujii-GNU.sgf │ │ ├── 20050408-GNU-mamassang.sgf │ │ ├── 20050408-janine-GNU.sgf │ │ ├── 20050408-wrf6041-GNU.sgf │ │ ├── Erro-TheGNUGo.sgf │ │ ├── GNU-HISOKA10.sgf │ │ ├── GNU-bassanio.sgf │ │ ├── GNU-goodluck.sgf │ │ ├── GNU-higher.sgf │ │ ├── GNU-ituyosi.sgf │ │ ├── GNU-ituyosi2.sgf │ │ ├── GNU-ivanho.sgf │ │ ├── GNU-marfan.sgf │ │ ├── GNU-merlenoir.sgf │ │ ├── GNU-minautore.sgf │ │ ├── GNU-namascae.sgf │ │ ├── GNU-roidesnems.sgf │ │ ├── GNU-tadf.sgf │ │ ├── GnuGoCVS-john.sgf │ │ ├── Hosbodar-GNU.sgf │ │ ├── JMBE-GNU.sgf │ │ ├── Kuksa-GNU.sgf │ │ ├── PsyDuck-GNU.sgf │ │ ├── SURARIN-yagr.sgf │ │ ├── TheGNUGo-Botkiller3.sgf │ │ ├── TheGNUGo-JVD.sgf │ │ ├── TheGNUGo-grasshoper.sgf │ │ ├── TheGNUGo-qsdf.sgf │ │ ├── TheGNUGo-rcsteppat.sgf │ │ ├── TheGNUGo-up.sgf │ │ ├── ben9992000-GNU.sgf │ │ ├── dogo-TheGNUGo.sgf │ │ ├── evand-TheGNUGo.sgf │ │ ├── geluba-yagr.sgf │ │ ├── haiku-GNU.sgf │ │ ├── koketto-GNU.sgf │ │ ├── llk-GNU.sgf │ │ ├── malitourne-yagr.sgf │ │ ├── maproom-gnugo3pt6.sgf │ │ ├── melonhead1-GNU.sgf │ │ ├── munchie-GNU.sgf │ │ ├── perler-GNU.sgf │ │ ├── sade-GNU.sgf │ │ ├── simat-TheGNUGo.sgf │ │ ├── tournament10 │ │ │ ├── ExBot-GNU.sgf │ │ │ ├── GNU-AyaBot.sgf │ │ │ ├── GNU-NeuroGo.sgf │ │ │ ├── GNU-viking5.sgf │ │ │ ├── IdiotBot-TheGNUGo.sgf │ │ │ ├── TheGNUGo-Dariush.sgf │ │ │ ├── TheGNUGo-HouseBot.sgf │ │ │ ├── TheGNUGo-SimpleBot.sgf │ │ │ ├── TheGNUGo-StoneCrazy.sgf │ │ │ ├── WeakBot50k-TheGNUGo.sgf │ │ │ └── tlsBot-GNU.sgf │ │ ├── tournament11 │ │ │ ├── CrazyStone-GNU.sgf │ │ │ ├── GNU-CrazyStone.sgf │ │ │ ├── GNU-firstgo.sgf │ │ │ ├── GNU-viking5-1.sgf │ │ │ ├── GNU-viking5-2.sgf │ │ │ └── firstgo-GNU.sgf │ │ ├── tournament8 │ │ │ ├── CrazyStone-GNU.sgf │ │ │ ├── GNU-AyaBot.sgf │ │ │ ├── GNU-Dar51.sgf │ │ │ ├── GNU-ExBot.sgf │ │ │ ├── firstgo-GNU.sgf │ │ │ ├── indigoBot-GNU.sgf │ │ │ ├── tlsBot-GNU.sgf │ │ │ └── viking5-GNU.sgf │ │ ├── tournament9 │ │ │ ├── Dar51-GNU.sgf │ │ │ ├── GNU-AyaBot.sgf │ │ │ ├── gopp-GNU.sgf │ │ │ └── indigoBot-GNU.sgf │ │ ├── yagr-FKleolio.sgf │ │ ├── yagr-Kazik.sgf │ │ ├── yagr-Mythenmetz.2.sgf │ │ ├── yagr-Mythenmetz.sgf │ │ ├── yagr-Rayden.sgf │ │ ├── yagr-Sapojnik.sgf │ │ ├── yagr-awf.sgf │ │ ├── yagr-czarny.sgf │ │ ├── yagr-digibier.sgf │ │ ├── yagr-eddyy.sgf │ │ ├── yagr-gab9.2.sgf │ │ ├── yagr-gab9.sgf │ │ ├── yagr-hasenhirn.sgf │ │ ├── yagr-ituyosi.sgf │ │ ├── yagr-justre1.sgf │ │ ├── yagr-nigiri.sgf │ │ ├── yagr-r08ert.sgf │ │ ├── yagr-yudeta.sgf │ │ ├── yagr.sgf │ │ ├── yagr2.sgf │ │ ├── yagr3.sgf │ │ ├── yagr4.sgf │ │ └── yagr5.sgf │ ├── kisei28_g7.sgf │ ├── ko1.sgf │ ├── ko2.sgf │ ├── ko3.sgf │ ├── ko4.sgf │ ├── ko5.sgf │ ├── ko6.sgf │ ├── ladder1.sgf │ ├── life1.sgf │ ├── life_and_death │ │ ├── comb1.sgf │ │ ├── eye1.sgf │ │ ├── invasion1.sgf │ │ ├── invasion2.sgf │ │ ├── invasion3.sgf │ │ ├── invasion4.sgf │ │ ├── ld1.sgf │ │ ├── ld10.sgf │ │ ├── ld11.sgf │ │ ├── ld12.sgf │ │ ├── ld13.sgf │ │ ├── ld14.sgf │ │ ├── ld15.sgf │ │ ├── ld16.sgf │ │ ├── ld17.sgf │ │ ├── ld18.sgf │ │ ├── ld19.sgf │ │ ├── ld2.sgf │ │ ├── ld20.sgf │ │ ├── ld3.sgf │ │ ├── ld4.sgf │ │ ├── ld5.sgf │ │ ├── ld6.sgf │ │ ├── ld7.sgf │ │ ├── ld8.sgf │ │ ├── ld9.sgf │ │ ├── ld9_variations.sgf │ │ ├── lunches.sgf │ │ ├── mixed1.sgf │ │ ├── mixed2.sgf │ │ ├── mixed3.sgf │ │ ├── mixed4.sgf │ │ ├── tripod1.sgf │ │ ├── tripod2.sgf │ │ ├── tripod3.sgf │ │ ├── tripod4.sgf │ │ ├── tripod5.sgf │ │ ├── tripod6.sgf │ │ ├── tripod7.sgf │ │ ├── tripod8.sgf │ │ └── tripod9.sgf │ ├── lordofpi.sgf │ ├── manner.sgf │ ├── marginal.sgf │ ├── marginal_ko.sgf │ ├── me.sgf │ ├── mertin13x13 │ │ ├── DAGN1.sgf │ │ ├── DAGN2.sgf │ │ ├── DAGN3.sgf │ │ ├── GAGN1.sgf │ │ ├── GAGN2.sgf │ │ ├── GAGN3.sgf │ │ ├── GHGN1.sgf │ │ ├── GHGN2.sgf │ │ ├── GHGN3.sgf │ │ ├── GIGN1.sgf │ │ ├── GIGN2.sgf │ │ ├── GIGN3.sgf │ │ ├── GMGN1.sgf │ │ ├── GMGN2.sgf │ │ ├── GMGN3.sgf │ │ ├── GNDA1.sgf │ │ ├── GNDA2.sgf │ │ ├── GNDA3.sgf │ │ ├── GNGA1.sgf │ │ ├── GNGA2.sgf │ │ ├── GNGA3.sgf │ │ ├── GNGH1.sgf │ │ ├── GNGH2.sgf │ │ ├── GNGH3.sgf │ │ ├── GNGI1.sgf │ │ ├── GNGI2.sgf │ │ ├── GNGI3.sgf │ │ ├── GNGM1.sgf │ │ ├── GNGM2.sgf │ │ ├── GNGM3.sgf │ │ ├── GNGP1.sgf │ │ ├── GNGP3.sgf │ │ ├── GNGP5.sgf │ │ ├── GNGX1.sgf │ │ ├── GNGX2.sgf │ │ ├── GNGX3.sgf │ │ ├── GNHT1.sgf │ │ ├── GNHT2.sgf │ │ ├── GNHT3.sgf │ │ ├── GNMF1.sgf │ │ ├── GNMF2.sgf │ │ ├── GNMF3.sgf │ │ ├── GNWL1.sgf │ │ ├── GNWL2.sgf │ │ ├── GNWL3.sgf │ │ ├── GPGN1.sgf │ │ ├── GPGN3.sgf │ │ ├── GPGN5.sgf │ │ ├── GXGN1.sgf │ │ ├── GXGN2.sgf │ │ ├── GXGN3.sgf │ │ ├── HTGN1.sgf │ │ ├── HTGN2.sgf │ │ ├── HTGN3.sgf │ │ ├── MFGN1.sgf │ │ ├── MFGN2.sgf │ │ ├── MFGN3.sgf │ │ ├── WLGN1.sgf │ │ ├── WLGN2.sgf │ │ ├── WLGN3.sgf │ │ ├── gnugo-gointellect1.W+28.sgf │ │ ├── gnugo-gointellect2.W+2.sgf │ │ ├── gnugo-gointellect3.W+37.sgf │ │ ├── gnugo-goliath1.W+11.sgf │ │ ├── gnugo-goliath2.W+38.sgf │ │ ├── gnugo-goliath3.B+16.sgf │ │ ├── gnugo-katsunari1.B+21.sgf │ │ ├── gnugo-katsunari2.B+66.sgf │ │ ├── gnugo-katsunari3.B+13.sgf │ │ ├── gointellect-gnugo1.B+14.sgf │ │ ├── gointellect-gnugo2.W+8.sgf │ │ ├── gointellect-gnugo3.B+1.sgf │ │ ├── goliath-gnugo1.B+11.sgf │ │ ├── goliath-gnugo2.W+9.sgf │ │ ├── goliath-gnugo3.W+0.sgf │ │ ├── katsunari-gnugo1.W+45.sgf │ │ ├── katsunari-gnugo2.W+4.sgf │ │ └── katsunari-gnugo3.B+14.sgf │ ├── mf1.sgf │ ├── mfgg1.sgf │ ├── mfgg2.sgf │ ├── mfgg3.sgf │ ├── nando │ │ ├── auto001.sgf │ │ ├── auto002.sgf │ │ ├── auto003.sgf │ │ ├── auto004.sgf │ │ ├── auto005.sgf │ │ ├── auto006.sgf │ │ ├── auto007.sgf │ │ ├── auto008.sgf │ │ ├── auto009.sgf │ │ ├── auto010.sgf │ │ ├── auto011.sgf │ │ ├── auto012.sgf │ │ ├── auto013.sgf │ │ ├── auto014.sgf │ │ ├── auto015.sgf │ │ ├── auto016.sgf │ │ ├── auto017.sgf │ │ ├── auto018.sgf │ │ ├── auto019.sgf │ │ ├── auto020.sgf │ │ ├── auto021.sgf │ │ ├── auto022.sgf │ │ ├── auto023.sgf │ │ ├── auto024.sgf │ │ ├── auto025.sgf │ │ ├── auto026.sgf │ │ ├── auto027.sgf │ │ ├── kisei27_g1.sgf │ │ ├── meijin27_g1.sgf │ │ ├── meijin27_g4.sgf │ │ └── meijin27_g5.sgf │ ├── net3.sgf │ ├── nicklas │ │ ├── nicklas1.sgf │ │ ├── nicklas10.sgf │ │ ├── nicklas11.sgf │ │ ├── nicklas12.sgf │ │ ├── nicklas13.sgf │ │ ├── nicklas14.sgf │ │ ├── nicklas15.sgf │ │ ├── nicklas16.sgf │ │ ├── nicklas17.sgf │ │ ├── nicklas18.sgf │ │ ├── nicklas19.sgf │ │ ├── nicklas2.sgf │ │ ├── nicklas20.sgf │ │ ├── nicklas21.sgf │ │ ├── nicklas22.sgf │ │ ├── nicklas23.sgf │ │ ├── nicklas24.sgf │ │ ├── nicklas3.sgf │ │ ├── nicklas4.sgf │ │ ├── nicklas5.sgf │ │ ├── nicklas6.sgf │ │ ├── nicklas7.sgf │ │ ├── nicklas8.sgf │ │ └── nicklas9.sgf │ ├── niki.sgf │ ├── ninestones │ │ ├── bobo-gnugo-3.3.9-200210100706.sgf │ │ ├── bobo-gnugo-3.3.9-200210111309.sgf │ │ ├── emanuel-1.sgf │ │ ├── emanuel-2.sgf │ │ ├── halti-gnugo-3.3.9-200210111409.sgf │ │ └── ninestones1.sgf │ ├── nngs │ │ ├── AdaGeek-gnugo-3.1.18-200201070826.sgf │ │ ├── AdaGeek-gnugo-3.1.18-200201071333.sgf │ │ ├── GoFuN-gnugo-3.3.21-200306202102.sgf │ │ ├── GoFuN-gnugo-3.4-200308030626.sgf │ │ ├── GoFuN-gnugo-3.5.2gf1-200312230328.sgf │ │ ├── Jion-gnugo-3.3.2-200205241928.sgf │ │ ├── Lazarus-gnugo-3.1.17-200112301450.sgf │ │ ├── Lazarus-gnugo-3.1.18-200201072351.sgf │ │ ├── Lazarus-gnugo-3.1.19-200201092246.sgf │ │ ├── Lazarus-gnugo-3.1.31-200204122203.sgf │ │ ├── Lazarus-gnugo-3.1.31-200204140254.sgf │ │ ├── Lazarus-gnugo-3.1.32-200204150316.sgf │ │ ├── Lazarus-gnugo-3.1.34-200204271842.sgf │ │ ├── Lazarus-gnugo-3.1.34-200204280120.sgf │ │ ├── Lazarus-gnugo-3.2-200205011927.sgf │ │ ├── LordOfPi-gnugo-3.1.20-200201202014.sgf │ │ ├── ManyFaces3-gnugo-3.3.11-200211071935.sgf │ │ ├── ManyFaces4-gnugo-3.1.27-200203182101.sgf │ │ ├── ManyFaces4-gnugo-3.1.27-200203191159.sgf │ │ ├── ManyFaces4-gnugo-3.1.28-200203262339.sgf │ │ ├── Minori-gnugo-3.5.2gf1-200312161433.sgf │ │ ├── NE-gnugo-3.1.18-200201030545.sgf │ │ ├── ShaiHulud-gnugo-3.5.3-200401231947.sgf │ │ ├── Temnik-gnugo-3.3.15-200301161937.sgf │ │ ├── abcd-gnugo-3.3.8-200209202043.sgf │ │ ├── aburry-gnugo-3.3.12-200212162212.sgf │ │ ├── bconwil-gnugo-3.3.11-200211182313.sgf │ │ ├── beedee-gnugo-3.5.3-200401140035.sgf │ │ ├── camel-gnugo-3.1.26-200202280809.sgf │ │ ├── camel-gnugo-3.1.26-200203022335.sgf │ │ ├── ccwills-gnugo-3.3.21-200306131816.sgf │ │ ├── ccwills-gnugo-3.4-200308231739.sgf │ │ ├── ccwills-gnugo-3.5.2-200312112026.sgf │ │ ├── ccwills-gnugo-3.5.3-200401100810.sgf │ │ ├── chuck-gnugo-3.5.2gf1-200312261847.sgf │ │ ├── evand-gnugo-3.3.11-200211151742.sgf │ │ ├── evand-gnugo-3.3.17-200303201727.sgf │ │ ├── evand-gnugo-3.3.21-200306130638.sgf │ │ ├── evand-gnugo-3.5.2-200312060932.sgf │ │ ├── evand-gnugo-3.5.2gf1-200312130817.sgf │ │ ├── evand-gnugo-3.5.2gf1-200312150903.sgf │ │ ├── evand-gnugo-3.5.2gf1-200312161910.sgf │ │ ├── evand-gnugo-3.5.2gf1-200401072036.sgf │ │ ├── gerula-gnugo-3.2-200205041756.sgf │ │ ├── gnugo-3.1.15-goku-200112081829.sgf │ │ ├── gnugo-3.1.18-AdaGeek-200201061015.sgf │ │ ├── gnugo-3.1.18-Mikael-200201062258.sgf │ │ ├── gnugo-3.1.18-Rufus-200201051408.sgf │ │ ├── gnugo-3.1.18-Rufus-200201051411.sgf │ │ ├── gnugo-3.1.18-Rufus-200201051823.sgf │ │ ├── gnugo-3.1.18-Rufus-200201052349.sgf │ │ ├── gnugo-3.1.18-bnh-200201061916.sgf │ │ ├── gnugo-3.1.18-dermicha-200201041355.sgf │ │ ├── gnugo-3.1.18-goku-200201042031.sgf │ │ ├── gnugo-3.1.18-goku-200201042350.sgf │ │ ├── gnugo-3.1.18-gopriest-200201072104.sgf │ │ ├── gnugo-3.1.18-guestx-200201071151.sgf │ │ ├── gnugo-3.1.18-jimm-200201050556.sgf │ │ ├── gnugo-3.1.18-patch-200201081044.sgf │ │ ├── gnugo-3.1.18-rpwiegand-200201072335.sgf │ │ ├── gnugo-3.1.18-wingjk-200201080120.sgf │ │ ├── gnugo-3.1.20-setenza-200201162038.sgf │ │ ├── gnugo-3.1.20-setenza-200201172131.sgf │ │ ├── gnugo-3.1.22-heeroy-200201252006.sgf │ │ ├── gnugo-3.1.26-farrell-200203051803.sgf │ │ ├── gnugo-3.1.26-journeyman-200203020154.sgf │ │ ├── gnugo-3.1.27-GoFuN-200203061917.sgf │ │ ├── gnugo-3.1.27-GoFuN-200203062215.sgf │ │ ├── gnugo-3.1.27-GoFuN-200203070156.sgf │ │ ├── gnugo-3.1.27-GoFuN-200203080451.sgf │ │ ├── gnugo-3.1.27-GoFuN-200203090430.sgf │ │ ├── gnugo-3.1.27-GoFuN-200203090538.sgf │ │ ├── gnugo-3.1.27-GoFuN-200203100627.sgf │ │ ├── gnugo-3.1.27-GoFuN-200203100711.sgf │ │ ├── gnugo-3.1.27-GoFuN-200203131958.sgf │ │ ├── gnugo-3.1.27-GoFuN-200203230525.sgf │ │ ├── gnugo-3.1.27-Yuuki-200203131056.sgf │ │ ├── gnugo-3.1.27-Yuuki-200203132324.sgf │ │ ├── gnugo-3.1.27-guestn-200203061902.sgf │ │ ├── gnugo-3.1.27-guestn-200203111825.sgf │ │ ├── gnugo-3.1.27-guestn-200203121818.sgf │ │ ├── gnugo-3.1.27-guestn-200203131735.sgf │ │ ├── gnugo-3.1.27-wingjk-200203101039.sgf │ │ ├── gnugo-3.1.29-coco-200203281540.sgf │ │ ├── gnugo-3.1.29-coco-200203281929.sgf │ │ ├── gnugo-3.1.29-merlin-200203281708.sgf │ │ ├── gnugo-3.1.30-Poctim-200204040503.sgf │ │ ├── gnugo-3.1.30-merlin-200204041428.sgf │ │ ├── gnugo-3.1.30-morlvera-200204041921.sgf │ │ ├── gnugo-3.1.31-niki-200204131518.sgf │ │ ├── gnugo-3.1.34-guest1-200204242025.sgf │ │ ├── gnugo-3.1.34-viking4-200204240801.sgf │ │ ├── gnugo-3.2-merlin-200205071828.sgf │ │ ├── gnugo-3.3.10-deye-200210211347.sgf │ │ ├── gnugo-3.3.10-jimm-200210222018.sgf │ │ ├── gnugo-3.3.10-niki-200210281349.sgf │ │ ├── gnugo-3.3.10-rcde05-200210280427.sgf │ │ ├── gnugo-3.3.10-rcde05-200210300235.sgf │ │ ├── gnugo-3.3.10-tsuku-200210241808.sgf │ │ ├── gnugo-3.3.10-viking4-200210261703.sgf │ │ ├── gnugo-3.3.11-bconwil-200211202359.sgf │ │ ├── gnugo-3.3.11-ccwills-200211031528.sgf │ │ ├── gnugo-3.3.11-rcde05-200211090008.sgf │ │ ├── gnugo-3.3.12-RikiTiki-200212042341.sgf │ │ ├── gnugo-3.3.12-guest-200212171626.sgf │ │ ├── gnugo-3.3.12-jimm-200211261724.sgf │ │ ├── gnugo-3.3.16-ccwills-200302151826.sgf │ │ ├── gnugo-3.3.16-ccwills-200303030550.sgf │ │ ├── gnugo-3.3.16-rcde05-200302140458.sgf │ │ ├── gnugo-3.3.16-rubus-200302281805.sgf │ │ ├── gnugo-3.3.17-Shindou-200304162217.sgf │ │ ├── gnugo-3.3.17-Wiedemann-200303251932.sgf │ │ ├── gnugo-3.3.17-joshj-200304172202.sgf │ │ ├── gnugo-3.3.17-ylamaki-200303262305.sgf │ │ ├── gnugo-3.3.18-agh-200304291749.sgf │ │ ├── gnugo-3.3.18-joshj-200304242104.sgf │ │ ├── gnugo-3.3.18-overziel7-200304281000.sgf │ │ ├── gnugo-3.3.18-spewnboy-200304291635.sgf │ │ ├── gnugo-3.3.2-Programmer-200206021522.sgf │ │ ├── gnugo-3.3.2-Zahlman-200205221717.sgf │ │ ├── gnugo-3.3.2-mr23-200205120953.sgf │ │ ├── gnugo-3.3.20-GoFuN-200306071813.sgf │ │ ├── gnugo-3.3.21-joshj-200306270402.sgf │ │ ├── gnugo-3.3.23-viking4-200307312134.sgf │ │ ├── gnugo-3.3.6-evand-200208290255.sgf │ │ ├── gnugo-3.3.6-xtc-200208301619.sgf │ │ ├── gnugo-3.3.8-Joorin-200209251541.sgf │ │ ├── gnugo-3.3.8-evand-200209090532.sgf │ │ ├── gnugo-3.3.8-evand-200209122040.sgf │ │ ├── gnugo-3.3.8-evand-200209130704.sgf │ │ ├── gnugo-3.3.8-evand-200209170730.sgf │ │ ├── gnugo-3.3.8-nailer-200209190045.sgf │ │ ├── gnugo-3.3.8-viking4-200209250907.sgf │ │ ├── gnugo-3.3.9-Ayoye-200209301535.sgf │ │ ├── gnugo-3.3.9-RikiTiki-200210170706.sgf │ │ ├── gnugo-3.3.9-joshj-200210181607.sgf │ │ ├── gnugo-3.3.9-nailer-200210192227.sgf │ │ ├── gnugo-3.3.9-nailer-200210192319.sgf │ │ ├── gnugo-3.3.9-pogonyshev-200210142137.sgf │ │ ├── gnugo-3.4-nailer-200308230714.sgf │ │ ├── gnugo-3.4-viking4-200308191053.sgf │ │ ├── gnugo-3.5.1-viking4-200309231039.sgf │ │ ├── gnugo-3.5.2gf1-G28-200312282240.sgf │ │ ├── gnugo-3.5.2gf1-Kiskol-200401021557.sgf │ │ ├── gnugo-3.5.2gf1-guest-200312260740.sgf │ │ ├── gnugo-3.5.2gf1-kisome-200312131322.sgf │ │ ├── gnugo-3.5.2gf1-thi-200312210524.sgf │ │ ├── gnugo-3.5.2gf1-vincentkuo-200312162312.sgf │ │ ├── gnugo-3.5.2gf1-wingjk-200312301242.sgf │ │ ├── gnugo-3.5.3-JanErik-200401081615.sgf │ │ ├── gnugo-3.5.3-Scorpion-200401080502.sgf │ │ ├── gnugo-3.5.3-dbr-200401121534.sgf │ │ ├── gnugo-3.5.4-chpr-200403201748.sgf │ │ ├── gnugo-3.5.5-liza-200404251738.sgf │ │ ├── gnugo-3.5.5-liza-200404251750.sgf │ │ ├── guestn-gnugo-3.3.17-200304200323.sgf │ │ ├── guestu-gnugo-3.3.19-200305131943.sgf │ │ ├── halti-gnugo-3.3.17-200303162357.sgf │ │ ├── huck-gnugo-3.3.6-200209060837.sgf │ │ ├── joshj-gnugo-3.3.16-200302232226.sgf │ │ ├── joshj-gnugo-3.3.2-200205310709.sgf │ │ ├── joshj-gnugo-3.5.2-200312100558.sgf │ │ ├── joshj-gnugo-3.5.2gf1-200312171536.sgf │ │ ├── juka-gnugo-3.1.16-200112142153.sgf │ │ ├── juka-gnugo-3.3.16-200302072106.sgf │ │ ├── juka-gnugo-3.3.16-200303031959.sgf │ │ ├── juka-gnugo-3.5.1-200309161948.sgf │ │ ├── jypower-gnugo-3.3.17-200304150031.sgf │ │ ├── jypower-gnugo-3.3.22-200307050519.sgf │ │ ├── kit-gnugo-3.3.21-200306181940.sgf │ │ ├── kumu-gnugo-3.2-200205070903.sgf │ │ ├── leftd-gnugo-3.3.12-200211292017.sgf │ │ ├── leftd-gnugo-3.3.16-200302072009.sgf │ │ ├── leftd-gnugo-3.3.16-200302252226.sgf │ │ ├── lindq-gnugo-3.3.4-200207051636.sgf │ │ ├── looknglass-ggl-200302271041.sgf │ │ ├── looknglass-gnugo-3.1.26-200203042158.sgf │ │ ├── makoops-gnugo-3.1.18-200201081434.sgf │ │ ├── niko-gnugo-3.3.11-200211201651.sgf │ │ ├── norate-ggl-200212301513.sgf │ │ ├── qly-gnugo-3.3.18-200305022134.sgf │ │ ├── ruud2d-gnugo-3.5.2gf1-200312241905.sgf │ │ ├── ruud2d-gnugo-3.5.2gf1-200312292348.sgf │ │ ├── saphir-gnugo-3.3.12-200212031818.sgf │ │ ├── scf-gnugo-3.1.18-200201060027.sgf │ │ ├── silverado-gnugo-3.3.5-200208061810.sgf │ │ ├── silverado-gnugo-3.3.8-200209120723.sgf │ │ ├── sjfried-gnugo-3.5.2gf1-200312130838.sgf │ │ ├── sjfried-gnugo-3.5.2gf1-200312210441.sgf │ │ ├── speciman-gnugo-3.1.32-200204211014.sgf │ │ ├── speciman-gnugo-3.5.2-200312091734.sgf │ │ ├── takeda-gnugo-3.3.23-200307302010.sgf │ │ ├── takeda-gnugo-3.4-200308142205.sgf │ │ ├── theDoor-gnugo-3.3.11-200211130142.sgf │ │ ├── thor-gnugo-3.3.12-200212170003.sgf │ │ ├── tobyiii-gnugo-3.3.2-200206041432.sgf │ │ ├── tommmal-gnugo-3.4-200308200805.sgf │ │ ├── tommmal-gnugo-3.4-200309021655.sgf │ │ ├── tommmal-gnugo-3.5.1-200309081210.sgf │ │ ├── tommmal-gnugo-3.5.1-200310071202.sgf │ │ ├── tommmal-gnugo-3.5.1-200310140825.sgf │ │ ├── tommmal-gnugo-3.5.3-200401140719.sgf │ │ ├── uhu-gnugo-3.3.16-200302112129.sgf │ │ ├── uno-gnugo-3.3.16-200302050206.sgf │ │ ├── uno-gnugo-3.3.16-200302230528.sgf │ │ ├── whitemouse-gnugo-3.5.2-200312041808.sgf │ │ ├── whitemouse-gnugo-3.5.2-200312052122.sgf │ │ ├── whitemouse-gnugo-3.5.2gf1-200312161704.sgf │ │ └── wingjk-gnugo-3.3.17-200304070910.sgf │ ├── nodan-guno.sgf │ ├── olympiad2002 │ │ ├── game1-19-ether-gnugo-0-1.sgf │ │ ├── game1-19-gnugo-starofdonghwa-1-0.sgf │ │ ├── game1-19-go4-gnugo-1-0.sgf │ │ ├── game1-19-goint-gnugo-1-0.sgf │ │ ├── game1-9-gnugo-magog-1-0.sgf │ │ ├── game1-9-go4-gnugo-0-1.sgf │ │ ├── game1-9-goint-gnugo-0-1.sgf │ │ ├── game2-19-gnugo-go4-0-1.sgf │ │ ├── game2-19-gnugo-goint-1-0.sgf │ │ ├── game2-19-starofdonghwa-gnugo-0-1.sgf │ │ ├── game2-9-gnugo-go4-0-1.sgf │ │ ├── game2-9-gnugo-goint-0-1.sgf │ │ ├── game2-9-magog-gnugo-0-1.sgf │ │ ├── game3-9-go4-gnugo-1-0.sgf │ │ ├── game3-9-goint-gnugo-1-0.sgf │ │ ├── game4-9-gnugo-go4-0-1.sgf │ │ └── game4-9-gnugo-goint-1-0.sgf │ ├── olympiad2003 │ │ ├── aya_vs_gnugo.sgf │ │ ├── explorer_vs_gnugo.sgf │ │ ├── gnugo_vs_dariush.sgf │ │ ├── gnugo_vs_goahead.sgf │ │ ├── gnugo_vs_indigo.sgf │ │ ├── gnugo_vs_jimmy.sgf │ │ ├── gnugo_vs_neurogo.sgf │ │ ├── go_intellect_vs_gnugo.sgf │ │ ├── golois_vs_gnugo.sgf │ │ └── smartgo_vs_gnugo.sgf │ ├── olympiad2004 │ │ ├── 19x19 │ │ │ ├── gnu-ind.sgf │ │ │ ├── gnu-int.sgf │ │ │ ├── gnu-jim.sgf │ │ │ ├── gnu-mfg.sgf │ │ │ ├── ind-gnu.sgf │ │ │ ├── int-gnu.sgf │ │ │ ├── jim-gnu.sgf │ │ │ └── mfg-gnu.sgf │ │ └── 9x9 │ │ │ ├── ata-gnu.sgf │ │ │ ├── dbg-gnu.sgf │ │ │ ├── gnu-ata.sgf │ │ │ ├── gnu-dbg.sgf │ │ │ ├── gnu-ind.sgf │ │ │ ├── gnu-int-playoff.sgf │ │ │ ├── gnu-int.sgf │ │ │ ├── gnu-kin.sgf │ │ │ ├── gnu-mag.sgf │ │ │ ├── gnu-mfg.sgf │ │ │ ├── gnu-neu.sgf │ │ │ ├── ind-gnu.sgf │ │ │ ├── int-gnu-playoff.sgf │ │ │ ├── int-gnu.sgf │ │ │ ├── kin-gnu.sgf │ │ │ ├── mag-gnu.sgf │ │ │ ├── mfg-gnu.sgf │ │ │ └── neu-gnu.sgf │ ├── olympiad2006 │ │ ├── 19x19 │ │ │ ├── aya-gnu.sgf │ │ │ ├── crazystone-gnu.sgf │ │ │ ├── gnu-aya.sgf │ │ │ ├── gnu-crazystone.sgf │ │ │ ├── gnu-gointellect-playoff.sgf │ │ │ ├── gnu-gointellect.sgf │ │ │ ├── gnu-indigo.sgf │ │ │ ├── gnu-jimmy.sgf │ │ │ ├── gointellect-gnu.sgf │ │ │ ├── indigo-gnu.sgf │ │ │ └── jimmy-gnu.sgf │ │ └── 9x9 │ │ │ ├── ajago-gnu.sgf │ │ │ ├── akebono-gnu.sgf │ │ │ ├── atarist-gnu.sgf │ │ │ ├── aya-gnu.sgf │ │ │ ├── crazy-gnu.sgf │ │ │ ├── gnu-ajago.sgf │ │ │ ├── gnu-akebono.sgf │ │ │ ├── gnu-atarist.sgf │ │ │ ├── gnu-aya.sgf │ │ │ ├── gnu-crazy.sgf │ │ │ ├── gnu-int.sgf │ │ │ ├── gnu-jimmy.sgf │ │ │ ├── gnu-king.sgf │ │ │ ├── gnu-mango.sgf │ │ │ ├── gnu-neurogo.sgf │ │ │ ├── int-gnu.sgf │ │ │ ├── jimmy-gnu.sgf │ │ │ ├── king-gnu.sgf │ │ │ ├── mango-gnu.sgf │ │ │ └── neurogo-gnu.sgf │ ├── owl01.sgf │ ├── owl02.sgf │ ├── owl03.sgf │ ├── owl04.sgf │ ├── owl05.sgf │ ├── owl06.sgf │ ├── owl07.sgf │ ├── owl08.sgf │ ├── owl09.sgf │ ├── owl10.sgf │ ├── owl11.sgf │ ├── owl12.sgf │ ├── owl13.sgf │ ├── owl14.sgf │ ├── owl15.sgf │ ├── owl16.sgf │ ├── owl17.sgf │ ├── owl18.sgf │ ├── owl19.sgf │ ├── owl20.sgf │ ├── owl21.sgf │ ├── owl22.sgf │ ├── owl23.sgf │ ├── owl24.sgf │ ├── owl25.sgf │ ├── owl26.sgf │ ├── owl27.sgf │ ├── owl28.sgf │ ├── owl29.sgf │ ├── owl30.sgf │ ├── owl31.sgf │ ├── owl32.sgf │ ├── owl33.sgf │ ├── owl34.sgf │ ├── owl35.sgf │ ├── owl36.sgf │ ├── owl37.sgf │ ├── owl38.sgf │ ├── owl39.sgf │ ├── owl39a.sgf │ ├── owl40.sgf │ ├── owl41.sgf │ ├── owl42.sgf │ ├── owl43.sgf │ ├── owl44.sgf │ ├── owl45.sgf │ ├── owl46.sgf │ ├── owl47.sgf │ ├── owl48.sgf │ ├── owl49.sgf │ ├── owl50.sgf │ ├── owl51.sgf │ ├── owl52.sgf │ ├── owl53.sgf │ ├── owl54.sgf │ ├── owl55.sgf │ ├── owl56.sgf │ ├── paul.sgf │ ├── pending │ │ ├── README │ │ ├── bubble.sgf │ │ ├── guestxx.sgf │ │ ├── ko6.sgf │ │ ├── nightmare.sgf │ │ └── owl28.sgf │ ├── poka.sgf │ ├── pooo.sgf │ ├── reading01.sgf │ ├── reading02.sgf │ ├── reading03.sgf │ ├── reading04.sgf │ ├── reading05.sgf │ ├── reading06.sgf │ ├── reading07.sgf │ ├── reading08.sgf │ ├── reading09.sgf │ ├── reading10.sgf │ ├── reading11.sgf │ ├── reading12.sgf │ ├── reading13.sgf │ ├── reading14.sgf │ ├── reading15.sgf │ ├── reading16.sgf │ ├── reading17.sgf │ ├── reading18.sgf │ ├── reading19.sgf │ ├── reading20.sgf │ ├── reading21.sgf │ ├── reading22.sgf │ ├── reading23.sgf │ ├── reading24.sgf │ ├── reading25.sgf │ ├── reading26.sgf │ ├── reading27.sgf │ ├── reading28.sgf │ ├── reading29.sgf │ ├── reading30.sgf │ ├── reading31.sgf │ ├── reading32.sgf │ ├── reading33.sgf │ ├── reading34.sgf │ ├── reading35.sgf │ ├── reading36.sgf │ ├── reading37.sgf │ ├── reading38.sgf │ ├── reading39.sgf │ ├── reading40.sgf │ ├── reading41.sgf │ ├── reading42.sgf │ ├── reading43.sgf │ ├── reading44.sgf │ ├── reading45.sgf │ ├── reading46.sgf │ ├── reading47.sgf │ ├── reading48.sgf │ ├── rosebud.sgf │ ├── rosebud4.sgf │ ├── scoring │ │ ├── score1.sgf │ │ ├── score10.sgf │ │ ├── score11.sgf │ │ ├── score12.sgf │ │ ├── score13.sgf │ │ ├── score14.sgf │ │ ├── score15.sgf │ │ ├── score16.sgf │ │ ├── score17.sgf │ │ ├── score18.sgf │ │ ├── score19.sgf │ │ ├── score2.sgf │ │ ├── score20.sgf │ │ ├── score21.sgf │ │ ├── score22.sgf │ │ ├── score23.sgf │ │ ├── score24.sgf │ │ ├── score25.sgf │ │ ├── score26.sgf │ │ ├── score27.sgf │ │ ├── score28.sgf │ │ ├── score29.sgf │ │ ├── score3.sgf │ │ ├── score30.sgf │ │ ├── score31.sgf │ │ ├── score32.sgf │ │ ├── score33.sgf │ │ ├── score34.sgf │ │ ├── score35.sgf │ │ ├── score36.sgf │ │ ├── score37.sgf │ │ ├── score38.sgf │ │ ├── score39.sgf │ │ ├── score4.sgf │ │ ├── score40.sgf │ │ ├── score41.sgf │ │ ├── score42.sgf │ │ ├── score43.sgf │ │ ├── score44.sgf │ │ ├── score45.sgf │ │ ├── score46.sgf │ │ ├── score47.sgf │ │ ├── score48.sgf │ │ ├── score49.sgf │ │ ├── score5.sgf │ │ ├── score50.sgf │ │ ├── score51.sgf │ │ ├── score52.sgf │ │ ├── score53.sgf │ │ ├── score54.sgf │ │ ├── score55.sgf │ │ ├── score56.sgf │ │ ├── score57.sgf │ │ ├── score58.sgf │ │ ├── score6.sgf │ │ ├── score7.sgf │ │ ├── score8.sgf │ │ └── score9.sgf │ ├── seki01.sgf │ ├── seki02.sgf │ ├── seki03.sgf │ ├── seki04.sgf │ ├── seki05.sgf │ ├── seki06.sgf │ ├── seki07.sgf │ ├── seki08.sgf │ ├── seki09.sgf │ ├── seki10.sgf │ ├── seki11.sgf │ ├── seki12.sgf │ ├── seki13.sgf │ ├── seki14.sgf │ ├── seki15.sgf │ ├── seki16.sgf │ ├── seki_exotics │ │ ├── README │ │ ├── README-MANNER │ │ ├── bent4.sgf │ │ ├── bent4_2.sgf │ │ ├── chosei.sgf │ │ ├── doublebent4.sgf │ │ ├── fourko.sgf │ │ ├── junkan-ko.sgf │ │ ├── onadare_ko.sgf │ │ ├── onadare_ko2.sgf │ │ ├── seki1.sgf │ │ ├── seki2.sgf │ │ ├── seki3.sgf │ │ ├── seki_bent4.sgf │ │ ├── seki_challenge.sgf │ │ ├── seki_exotics.tgz │ │ ├── seki_score.sgf │ │ ├── seki_stupid.sgf │ │ ├── threeko1.sgf │ │ ├── threeko2.sgf │ │ ├── threeko3.sgf │ │ ├── twoko_dead.sgf │ │ ├── twoko_live.sgf │ │ ├── twoko_seki1.sgf │ │ └── twoko_seki2.sgf │ ├── seki_nakade1.sgf │ ├── seki_nakade2.sgf │ ├── self_play │ │ ├── 354-34-1.sgf │ │ ├── 354-34-2.sgf │ │ ├── 354-34-3.sgf │ │ └── selfplay1.sgf │ ├── semeai │ │ ├── infinity.sgf │ │ ├── match078.sgf │ │ ├── semeai10.sgf │ │ ├── semeai11.sgf │ │ ├── semeai12.sgf │ │ ├── semeai13.sgf │ │ ├── semeai14.sgf │ │ ├── semeai15.sgf │ │ ├── semeai16.sgf │ │ ├── semeai17.sgf │ │ ├── semeai18.sgf │ │ ├── semeai19.sgf │ │ ├── semeai20.sgf │ │ ├── semeai21.sgf │ │ ├── semeai22.sgf │ │ ├── semeai4.sgf │ │ ├── semeai5.sgf │ │ ├── semeai6.sgf │ │ ├── semeai7.sgf │ │ ├── semeai8.sgf │ │ ├── semeai9.sgf │ │ └── semeaiko1.sgf │ ├── semeai1.sgf │ ├── semeai2.sgf │ ├── semeai3.sgf │ ├── splee.sgf │ ├── splee2.sgf │ ├── ssstator.sgf │ ├── strategy1.sgf │ ├── strategy10.sgf │ ├── strategy11.sgf │ ├── strategy12.sgf │ ├── strategy13.sgf │ ├── strategy14.sgf │ ├── strategy14a.sgf │ ├── strategy15.sgf │ ├── strategy16.sgf │ ├── strategy17.sgf │ ├── strategy18.sgf │ ├── strategy19.sgf │ ├── strategy2.sgf │ ├── strategy20.sgf │ ├── strategy21.sgf │ ├── strategy22.sgf │ ├── strategy23.sgf │ ├── strategy24.sgf │ ├── strategy25.sgf │ ├── strategy26.sgf │ ├── strategy27.sgf │ ├── strategy28.sgf │ ├── strategy29.sgf │ ├── strategy3.sgf │ ├── strategy30.sgf │ ├── strategy31.sgf │ ├── strategy32.sgf │ ├── strategy33.sgf │ ├── strategy34.sgf │ ├── strategy35.sgf │ ├── strategy36.sgf │ ├── strategy37.sgf │ ├── strategy38.sgf │ ├── strategy39.sgf │ ├── strategy4.sgf │ ├── strategy40.sgf │ ├── strategy41.sgf │ ├── strategy42.sgf │ ├── strategy43.sgf │ ├── strategy44.sgf │ ├── strategy45.sgf │ ├── strategy46.sgf │ ├── strategy47.sgf │ ├── strategy48.sgf │ ├── strategy49.sgf │ ├── strategy5.sgf │ ├── strategy50.sgf │ ├── strategy51.sgf │ ├── strategy6.sgf │ ├── strategy7.sgf │ ├── strategy8.sgf │ ├── strategy9.sgf │ ├── tactics01.sgf │ ├── tactics02.sgf │ ├── tactics03.sgf │ ├── tactics04.sgf │ ├── tactics05.sgf │ ├── tactics06.sgf │ ├── tactics07.sgf │ ├── tactics08.sgf │ ├── test3lose.sgf │ ├── test3win.sgf │ ├── test4lose.sgf │ ├── test4win.sgf │ ├── test5lose.sgf │ ├── test5win.sgf │ ├── tg-gg.sgf │ ├── tiny │ │ ├── 2x2.sgf │ │ ├── 3x3a.sgf │ │ ├── 3x3b.sgf │ │ └── 4x4a.sgf │ ├── trevor │ │ ├── auto │ │ │ ├── a001.sgf │ │ │ ├── a003.sgf │ │ │ ├── a004.sgf │ │ │ ├── a005.sgf │ │ │ ├── a006.sgf │ │ │ ├── a007.sgf │ │ │ ├── a008.sgf │ │ │ ├── a009.sgf │ │ │ ├── a010.sgf │ │ │ ├── a011.sgf │ │ │ ├── a013.sgf │ │ │ ├── a014.sgf │ │ │ ├── a015.sgf │ │ │ ├── a016.sgf │ │ │ ├── a017.sgf │ │ │ ├── a018.sgf │ │ │ ├── a019.sgf │ │ │ ├── a021.sgf │ │ │ ├── a022.sgf │ │ │ ├── a023.sgf │ │ │ ├── a024.sgf │ │ │ ├── a025.sgf │ │ │ ├── a026.sgf │ │ │ ├── a027.sgf │ │ │ ├── a029.sgf │ │ │ ├── a030.sgf │ │ │ ├── a031.sgf │ │ │ ├── a033.sgf │ │ │ ├── a034.sgf │ │ │ ├── a035.sgf │ │ │ ├── a036.sgf │ │ │ ├── a037.sgf │ │ │ ├── a038.sgf │ │ │ ├── a039.sgf │ │ │ ├── a041.sgf │ │ │ ├── b01.sgf │ │ │ ├── b02.sgf │ │ │ ├── b08.sgf │ │ │ ├── b09.sgf │ │ │ ├── b13.sgf │ │ │ ├── b16.sgf │ │ │ ├── b17.sgf │ │ │ ├── b20.sgf │ │ │ ├── b23.sgf │ │ │ ├── b24.sgf │ │ │ ├── b25.sgf │ │ │ ├── b27.sgf │ │ │ ├── b28.sgf │ │ │ ├── b29.sgf │ │ │ ├── b30.sgf │ │ │ ├── b32.sgf │ │ │ ├── b33.sgf │ │ │ ├── b37.sgf │ │ │ ├── b39.sgf │ │ │ ├── b40.sgf │ │ │ ├── b42.sgf │ │ │ ├── b47.sgf │ │ │ ├── b52.sgf │ │ │ ├── b56.sgf │ │ │ ├── b58.sgf │ │ │ ├── b60.sgf │ │ │ ├── b62.sgf │ │ │ ├── b64.sgf │ │ │ ├── b67.sgf │ │ │ ├── b69.sgf │ │ │ ├── b72.sgf │ │ │ ├── b73.sgf │ │ │ ├── b75.sgf │ │ │ ├── b76.sgf │ │ │ ├── b80.sgf │ │ │ ├── b83.sgf │ │ │ ├── b86.sgf │ │ │ ├── b88.sgf │ │ │ ├── b99.sgf │ │ │ ├── c01.sgf │ │ │ ├── c03.sgf │ │ │ ├── c08.sgf │ │ │ ├── c09.sgf │ │ │ ├── c11.sgf │ │ │ ├── c12.sgf │ │ │ ├── c13.sgf │ │ │ ├── c14.sgf │ │ │ ├── c17.sgf │ │ │ ├── c18.sgf │ │ │ ├── c20.sgf │ │ │ ├── c23.sgf │ │ │ ├── c24.sgf │ │ │ ├── c25.sgf │ │ │ ├── c28.sgf │ │ │ ├── c30.sgf │ │ │ ├── c35.sgf │ │ │ ├── c36.sgf │ │ │ ├── c38.sgf │ │ │ ├── c39.sgf │ │ │ ├── c41.sgf │ │ │ ├── c42.sgf │ │ │ ├── c43.sgf │ │ │ ├── c45.sgf │ │ │ ├── c47.sgf │ │ │ ├── c51.sgf │ │ │ ├── c54.sgf │ │ │ ├── c55.sgf │ │ │ ├── c59.sgf │ │ │ ├── c60.sgf │ │ │ ├── c61.sgf │ │ │ ├── c62.sgf │ │ │ ├── c63.sgf │ │ │ ├── c67.sgf │ │ │ ├── c68.sgf │ │ │ ├── c69.sgf │ │ │ ├── c70.sgf │ │ │ ├── c72.sgf │ │ │ ├── c73.sgf │ │ │ ├── c76.sgf │ │ │ ├── c77.sgf │ │ │ ├── c78.sgf │ │ │ ├── c81.sgf │ │ │ ├── c82.sgf │ │ │ ├── c83.sgf │ │ │ ├── c84.sgf │ │ │ ├── c86.sgf │ │ │ ├── c88.sgf │ │ │ ├── c90.sgf │ │ │ ├── c91.sgf │ │ │ ├── c93.sgf │ │ │ ├── c94.sgf │ │ │ ├── c96.sgf │ │ │ ├── d01.sgf │ │ │ ├── d02.sgf │ │ │ ├── d03.sgf │ │ │ ├── d08.sgf │ │ │ ├── d12.sgf │ │ │ ├── d24.sgf │ │ │ ├── d25.sgf │ │ │ ├── d29.sgf │ │ │ ├── d32.sgf │ │ │ ├── d33.sgf │ │ │ ├── d39.sgf │ │ │ ├── d40.sgf │ │ │ ├── d45.sgf │ │ │ ├── d46.sgf │ │ │ ├── d47.sgf │ │ │ └── d48.sgf │ │ ├── owl111a.sgf │ │ ├── trevor_01.sgf │ │ ├── trevor_02.sgf │ │ ├── trevor_03.sgf │ │ ├── trevor_04.sgf │ │ ├── trevor_05.sgf │ │ ├── trevor_06.sgf │ │ ├── trevor_07.sgf │ │ ├── trevor_08.sgf │ │ ├── trevor_09.sgf │ │ ├── trevor_10.sgf │ │ ├── trevor_11.sgf │ │ ├── trevor_12.sgf │ │ ├── trevor_13.sgf │ │ ├── trevor_14.sgf │ │ ├── trevor_15.sgf │ │ ├── trevor_16.sgf │ │ ├── trevor_17.sgf │ │ ├── trevor_18.sgf │ │ ├── trevor_19.sgf │ │ ├── trevor_20.sgf │ │ ├── trevor_21.sgf │ │ ├── trevor_22.sgf │ │ ├── trevor_23.sgf │ │ ├── trevor_24.sgf │ │ ├── trevor_25.sgf │ │ ├── trevor_26.sgf │ │ ├── trevor_27.sgf │ │ ├── trevor_28.sgf │ │ ├── trevor_29.sgf │ │ ├── trevor_30.sgf │ │ ├── trevor_31.sgf │ │ ├── trevor_32.sgf │ │ ├── trevor_33.sgf │ │ ├── trevor_34.sgf │ │ ├── trevor_35.sgf │ │ ├── trevor_36.sgf │ │ ├── trevor_37.sgf │ │ ├── trevor_38.sgf │ │ ├── trevor_39.sgf │ │ ├── trevor_40.sgf │ │ ├── trevor_40a.sgf │ │ ├── trevor_41.sgf │ │ ├── trevor_42.sgf │ │ ├── trevor_43.sgf │ │ ├── trevor_44.sgf │ │ ├── trevor_45.sgf │ │ ├── trevor_46.sgf │ │ ├── trevor_47.sgf │ │ ├── trevor_48.sgf │ │ ├── trevor_59.sgf │ │ ├── trevor_60.sgf │ │ ├── trevor_63.sgf │ │ ├── trevor_64.sgf │ │ ├── trevor_65.sgf │ │ ├── trevor_66.sgf │ │ ├── trevor_67.sgf │ │ ├── trevor_68.sgf │ │ ├── trevor_69.sgf │ │ ├── trevor_70.sgf │ │ ├── trevor_71.sgf │ │ ├── trevor_73.sgf │ │ ├── trevor_74.sgf │ │ └── trevor_75.sgf │ ├── tso_igobot_2006-01-16.sgf │ ├── unconditional │ │ ├── benson_safe1.sgf │ │ ├── benson_safe2.sgf │ │ ├── benson_safe3.sgf │ │ ├── benson_unsafe.sgf │ │ ├── unconditional1.sgf │ │ ├── unconditional2.sgf │ │ ├── unconditional3.sgf │ │ ├── unconditional4.sgf │ │ ├── unconditional5.sgf │ │ ├── unconditional6.sgf │ │ ├── unconditional7.sgf │ │ └── unconditional8.sgf │ ├── unfinished.sgf │ ├── vaughn.sgf │ ├── verybad.sgf │ ├── viking1.sgf │ ├── viking2.sgf │ ├── viking3.sgf │ ├── wing-yuhiko-gnugo.sgf │ ├── wormflaw.sgf │ ├── xxlin.sgf │ └── zheng.sgf ├── gifu03.tst ├── gifu05.tst ├── global.tst ├── golife.tst ├── golois │ ├── Aya991113-1.sgf │ ├── Aya991113-11.sgf │ ├── Aya991113-12.sgf │ ├── Aya991113-13.sgf │ ├── Aya991113-2.sgf │ ├── Aya991113-3.sgf │ ├── Aya991113-6.sgf │ ├── Aya991113-7.sgf │ ├── Aya991113-8.sgf │ ├── Aya991113-9.sgf │ ├── Basique990715-1.sgf │ ├── BiwakoFost97-1.sgf │ ├── BiwakoFost97-2.sgf │ ├── Connecter990424-1.sgf │ ├── Connecter990424-2.sgf │ ├── Connecter990426-1.sgf │ ├── Connecter990426-2.sgf │ ├── Connecter990427-1.sgf │ ├── Connecter990428-1.sgf │ ├── Connecter990430-1.sgf │ ├── Connecter990430-2.sgf │ ├── Connecter990430-3.sgf │ ├── Connecter990501-1.sgf │ ├── Connecter990502-1.sgf │ ├── Connecter990621-1.sgf │ ├── Connecter990628-1.sgf │ ├── Connecter990628-2.sgf │ ├── Connecter990630-1.sgf │ ├── DeuxYeuxIndigoIng98.sgf │ ├── DeuxYeuxManyFacesIng98.sgf │ ├── GoAheadMarseille97.sgf │ ├── GoMaster991113-1.sgf │ ├── GoMaster991113-3.sgf │ ├── GoMaster991113-4.sgf │ ├── GoMaster991113-5.sgf │ ├── GoStar991114-1.sgf │ ├── GoStar991114-2.sgf │ ├── Goemate990902-1.sgf │ ├── Goemate990902-11.sgf │ ├── Goemate990902-14.sgf │ ├── Goemate990902-15.sgf │ ├── Goemate990902-3.sgf │ ├── Goemate990902-5.sgf │ ├── Goemate990902-7.sgf │ ├── Goemate990903-1.sgf │ ├── Goemate990903-10.sgf │ ├── Goemate990903-12.sgf │ ├── Goemate990903-3.sgf │ ├── Goemate990903-4.sgf │ ├── Goemate990903-5.sgf │ ├── Goemate990903-6.sgf │ ├── Goemate990903-7.sgf │ ├── Goemate990903-9.sgf │ ├── Goemate990904-3.sgf │ ├── Goemate990904-4.sgf │ ├── Goemate990906-1.sgf │ ├── Goemate990906-2.sgf │ ├── Goemate990907-2.sgf │ ├── Goemate990908-2.sgf │ ├── Goemate990910-1.sgf │ ├── Goemate990911-1.sgf │ ├── Goemate990911-2.sgf │ ├── Goemate990911-3.sgf │ ├── Goemate991106-2.sgf │ ├── Goemate991106-3.sgf │ ├── Goemate991106-4.sgf │ ├── Goemate991109-1.sgf │ ├── Goemate991109-3.sgf │ ├── Goemate991113-1.sgf │ ├── Goemate991113-4.sgf │ ├── Goemate991113-5.sgf │ ├── Goemate991218-1.sgf │ ├── Handtalk980802.sgf │ ├── Handtalk980803-2.sgf │ ├── Handtalk980819-1.sgf │ ├── Handtalk980820-1.sgf │ ├── Handtalk980820-2.sgf │ ├── Handtalk980820-4.sgf │ ├── Handtalk980820-5.sgf │ ├── Handtalk980820-6.sgf │ ├── Handtalk980820-7.sgf │ ├── Handtalk980821-1.sgf │ ├── Handtalk980821-2.sgf │ ├── Handtalk980822-3.sgf │ ├── Handtalk980822-4.sgf │ ├── Handtalk980824-1.sgf │ ├── Handtalk980826-1.sgf │ ├── Handtalk980828-2.sgf │ ├── Handtalk980828-3.sgf │ ├── Indigo-Golois-991105-1.sgf │ ├── Indigo-Golois-991105-2.sgf │ ├── Indigo-Golois-991106-1.sgf │ ├── Indigo-Golois-991106-2.sgf │ ├── Indigo-Golois-991106-3.sgf │ ├── Indigo20000718-2.sgf │ ├── Indigo20000718-3.sgf │ ├── Indigo991107-1.sgf │ ├── Indigo991109-4.sgf │ ├── Jimmy990621-1.sgf │ ├── Jimmy990711-2.sgf │ ├── Jimmy990711-4.sgf │ ├── Jimmy990904-2.sgf │ ├── Jimmy990904-3.sgf │ ├── Jimmy990906-1.sgf │ ├── Lanka991113-1.sgf │ ├── MeilleurCoup0001.sgf │ ├── MeilleurCoup0002.sgf │ ├── MeilleurCoup0003.sgf │ ├── MeilleurCoup0004.sgf │ ├── MeilleurCoup0005.sgf │ ├── MeilleurCoup0006.sgf │ ├── MeilleurCoup0007.sgf │ ├── MeilleurCoup0008.sgf │ ├── MeilleurCoup0009.sgf │ ├── MeilleurCoup0010.sgf │ ├── MeilleurCoup990428-1.sgf │ ├── Neurogo97-1.sgf │ ├── Neurogo97-3.sgf │ ├── Prendre990424-1.sgf │ ├── Prendre990430-1.sgf │ ├── Prendre990502-1.sgf │ ├── Prendre990630-1.sgf │ ├── Vivre990630-2.sgf │ ├── Vivre990630-3.sgf │ ├── Vivre990630-4.sgf │ ├── Vivre990706-1.sgf │ ├── Vivre990706-2.sgf │ ├── Vivre990706-3.sgf │ ├── Vivre990706-4.sgf │ ├── Vivre990706-5.sgf │ ├── Vivre990710-1.sgf │ ├── bug96.sgf │ ├── connecter990614-1.sgf │ ├── connecter990614-2.sgf │ ├── knippel.sgf │ ├── ko990604.sgf │ ├── test.sgf │ ├── test_prendre.sgf │ └── web000103.sgf ├── gunnar.tst ├── handtalk.tst ├── heikki.tst ├── joseki.tst ├── kgs.tst ├── lazarus.tst ├── ld_owl.tst ├── manyfaces.tst ├── manyfaces1.tst ├── nando.tst ├── neurogo.tst ├── newscore.tst ├── nicklas1.tst ├── nicklas2.tst ├── nicklas3.tst ├── nicklas4.tst ├── nicklas5.tst ├── niki.tst ├── ninestones.tst ├── nngs.tst ├── nngs1.tst ├── nngs2.tst ├── nngs3.tst ├── nngs4.tst ├── olympiad2004.tst ├── optics.tst ├── owl.tst ├── owl1.tst ├── reading.tst ├── regress.awk ├── regress.cmd ├── regress.pike ├── regress.pl ├── regress.plx ├── regress.sh ├── rosebud.tst ├── safety.tst ├── score.tst ├── score2.tst ├── seki.tst ├── semeai.tst ├── strategy.tst ├── strategy2.tst ├── strategy3.tst ├── strategy4.tst ├── strategy5.tst ├── tactics.tst ├── tactics1.tst ├── test.sh ├── thrash.tst ├── tiny.tst ├── trevor.tst ├── trevora.tst ├── trevorb.tst ├── trevorc.tst ├── trevord.tst ├── unconditional.tst ├── vie.tst ├── view.pike └── viking.tst ├── sgf ├── .gitignore ├── CMakeLists.txt ├── Makefile.am ├── Makefile.in ├── sgf_extras.def ├── sgf_properties.def ├── sgf_properties.h ├── sgf_utils.c ├── sgfgen.c ├── sgfnode.c ├── sgftree.c └── sgftree.h ├── stamp-h.in └── utils ├── CMakeLists.txt ├── Makefile.am ├── Makefile.in ├── README ├── getopt.c ├── getopt1.c ├── gg-getopt.h ├── gg_utils.c ├── gg_utils.h ├── random.c ├── random.h ├── winsocket.c └── winsocket.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/AUTHORS -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/ChangeLog -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/Makefile.am -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/Makefile.in -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/NEWS -------------------------------------------------------------------------------- /OSX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/OSX -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/README -------------------------------------------------------------------------------- /THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/THANKS -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/TODO -------------------------------------------------------------------------------- /WINDOWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/WINDOWS -------------------------------------------------------------------------------- /aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/aclocal.m4 -------------------------------------------------------------------------------- /config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/config.h.cmake -------------------------------------------------------------------------------- /config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/config.h.in -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/configure -------------------------------------------------------------------------------- /configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/configure.in -------------------------------------------------------------------------------- /depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/depcomp -------------------------------------------------------------------------------- /doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/Makefile.am -------------------------------------------------------------------------------- /doc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/Makefile.in -------------------------------------------------------------------------------- /doc/analyze.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/analyze.texi -------------------------------------------------------------------------------- /doc/api.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/api.texi -------------------------------------------------------------------------------- /doc/board.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/board.texi -------------------------------------------------------------------------------- /doc/cdfa.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/cdfa.eps -------------------------------------------------------------------------------- /doc/cdfa.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/cdfa.fig -------------------------------------------------------------------------------- /doc/cdfa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/cdfa.jpg -------------------------------------------------------------------------------- /doc/cdfa.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/cdfa.pdf -------------------------------------------------------------------------------- /doc/cdfa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/cdfa.png -------------------------------------------------------------------------------- /doc/copying.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/copying.texi -------------------------------------------------------------------------------- /doc/dfa.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/dfa.eps -------------------------------------------------------------------------------- /doc/dfa.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/dfa.fig -------------------------------------------------------------------------------- /doc/dfa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/dfa.jpg -------------------------------------------------------------------------------- /doc/dfa.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/dfa.pdf -------------------------------------------------------------------------------- /doc/dfa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/dfa.png -------------------------------------------------------------------------------- /doc/dfa.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/dfa.texi -------------------------------------------------------------------------------- /doc/dfa2.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/dfa2.eps -------------------------------------------------------------------------------- /doc/dfa2.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/dfa2.fig -------------------------------------------------------------------------------- /doc/dfa2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/dfa2.jpg -------------------------------------------------------------------------------- /doc/dfa2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/dfa2.pdf -------------------------------------------------------------------------------- /doc/dfa2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/dfa2.png -------------------------------------------------------------------------------- /doc/dragon.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/dragon.texi -------------------------------------------------------------------------------- /doc/eyes.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/eyes.texi -------------------------------------------------------------------------------- /doc/gnugo.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/gnugo.6 -------------------------------------------------------------------------------- /doc/gnugo.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/gnugo.info -------------------------------------------------------------------------------- /doc/gnugo.info-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/gnugo.info-1 -------------------------------------------------------------------------------- /doc/gnugo.info-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/gnugo.info-2 -------------------------------------------------------------------------------- /doc/gnugo.info-3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/gnugo.info-3 -------------------------------------------------------------------------------- /doc/gnugo.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/gnugo.pod -------------------------------------------------------------------------------- /doc/gnugo.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/gnugo.texi -------------------------------------------------------------------------------- /doc/gtp-commands.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/gtp-commands.sed -------------------------------------------------------------------------------- /doc/gtp-commands.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/gtp-commands.texi -------------------------------------------------------------------------------- /doc/gtp.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/gtp.texi -------------------------------------------------------------------------------- /doc/influence.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/influence.texi -------------------------------------------------------------------------------- /doc/install.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/install.texi -------------------------------------------------------------------------------- /doc/introduction.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/introduction.texi -------------------------------------------------------------------------------- /doc/logo-32.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/logo-32.eps -------------------------------------------------------------------------------- /doc/logo-32.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/logo-32.jpg -------------------------------------------------------------------------------- /doc/logo-34.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/logo-34.eps -------------------------------------------------------------------------------- /doc/logo-34.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/logo-34.jpg -------------------------------------------------------------------------------- /doc/logo-34.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/logo-34.pdf -------------------------------------------------------------------------------- /doc/logo-36.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/logo-36.eps -------------------------------------------------------------------------------- /doc/logo-36.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/logo-36.jpg -------------------------------------------------------------------------------- /doc/logo-36.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/logo-36.pdf -------------------------------------------------------------------------------- /doc/montecarlo.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/montecarlo.texi -------------------------------------------------------------------------------- /doc/move_generation.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/move_generation.texi -------------------------------------------------------------------------------- /doc/moyo.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/moyo.texi -------------------------------------------------------------------------------- /doc/newlogo.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/newlogo.eps -------------------------------------------------------------------------------- /doc/newlogo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/newlogo.jpg -------------------------------------------------------------------------------- /doc/oldlogo.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/oldlogo.eps -------------------------------------------------------------------------------- /doc/oldlogo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/oldlogo.jpg -------------------------------------------------------------------------------- /doc/overview.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/overview.texi -------------------------------------------------------------------------------- /doc/owl.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/owl.texi -------------------------------------------------------------------------------- /doc/path.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/path.eps -------------------------------------------------------------------------------- /doc/path.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/path.fig -------------------------------------------------------------------------------- /doc/path.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/path.jpg -------------------------------------------------------------------------------- /doc/path.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/path.pdf -------------------------------------------------------------------------------- /doc/path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/path.png -------------------------------------------------------------------------------- /doc/patterns.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/patterns.texi -------------------------------------------------------------------------------- /doc/reading.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/reading.texi -------------------------------------------------------------------------------- /doc/regression.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/regression.texi -------------------------------------------------------------------------------- /doc/sgf.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/sgf.texi -------------------------------------------------------------------------------- /doc/sync-prod1.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/sync-prod1.eps -------------------------------------------------------------------------------- /doc/sync-prod1.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/sync-prod1.fig -------------------------------------------------------------------------------- /doc/sync-prod1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/sync-prod1.jpg -------------------------------------------------------------------------------- /doc/sync-prod1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/sync-prod1.pdf -------------------------------------------------------------------------------- /doc/sync-prod1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/sync-prod1.png -------------------------------------------------------------------------------- /doc/sync-prod2.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/sync-prod2.eps -------------------------------------------------------------------------------- /doc/sync-prod2.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/sync-prod2.fig -------------------------------------------------------------------------------- /doc/sync-prod2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/sync-prod2.jpg -------------------------------------------------------------------------------- /doc/sync-prod2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/sync-prod2.pdf -------------------------------------------------------------------------------- /doc/sync-prod2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/sync-prod2.png -------------------------------------------------------------------------------- /doc/texinfo.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/texinfo.tex -------------------------------------------------------------------------------- /doc/using.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/using.texi -------------------------------------------------------------------------------- /doc/utils.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/doc/utils.texi -------------------------------------------------------------------------------- /engine/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/engine/CMakeLists.txt -------------------------------------------------------------------------------- /engine/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/engine/Makefile.am -------------------------------------------------------------------------------- /engine/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/engine/Makefile.in -------------------------------------------------------------------------------- /engine/aftermath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/engine/aftermath.c -------------------------------------------------------------------------------- /engine/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/engine/board.c -------------------------------------------------------------------------------- /engine/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/engine/board.h -------------------------------------------------------------------------------- /engine/boardlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/engine/boardlib.c -------------------------------------------------------------------------------- /engine/breakin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/engine/breakin.c -------------------------------------------------------------------------------- /engine/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/engine/cache.c -------------------------------------------------------------------------------- /engine/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/engine/cache.h -------------------------------------------------------------------------------- /engine/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/engine/clock.c -------------------------------------------------------------------------------- /engine/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/engine/clock.h -------------------------------------------------------------------------------- /engine/combination.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/engine/combination.c -------------------------------------------------------------------------------- /engine/dragon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/engine/dragon.c -------------------------------------------------------------------------------- /engine/endgame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/engine/endgame.c -------------------------------------------------------------------------------- /engine/filllib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/engine/filllib.c -------------------------------------------------------------------------------- /engine/fuseki.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/engine/fuseki.c -------------------------------------------------------------------------------- /engine/genmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/engine/genmove.c -------------------------------------------------------------------------------- /engine/globals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/engine/globals.c -------------------------------------------------------------------------------- /engine/gnugo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/engine/gnugo.h -------------------------------------------------------------------------------- /engine/handicap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/engine/handicap.c -------------------------------------------------------------------------------- /engine/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/engine/hash.c -------------------------------------------------------------------------------- /engine/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/engine/hash.h -------------------------------------------------------------------------------- /engine/influence.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/engine/influence.c -------------------------------------------------------------------------------- /engine/influence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/engine/influence.h -------------------------------------------------------------------------------- /engine/interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/engine/interface.c -------------------------------------------------------------------------------- /engine/liberty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/engine/liberty.h -------------------------------------------------------------------------------- /engine/matchpat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/engine/matchpat.c -------------------------------------------------------------------------------- /engine/montecarlo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/engine/montecarlo.c -------------------------------------------------------------------------------- /engine/move_reasons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/engine/move_reasons.c -------------------------------------------------------------------------------- /engine/move_reasons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/engine/move_reasons.h -------------------------------------------------------------------------------- /engine/movelist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/engine/movelist.c -------------------------------------------------------------------------------- /engine/optics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/engine/optics.c -------------------------------------------------------------------------------- /engine/oracle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/engine/oracle.c -------------------------------------------------------------------------------- /engine/owl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/engine/owl.c -------------------------------------------------------------------------------- /engine/persistent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/engine/persistent.c -------------------------------------------------------------------------------- /engine/printutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/engine/printutils.c -------------------------------------------------------------------------------- /engine/readconnect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/engine/readconnect.c -------------------------------------------------------------------------------- /engine/readconnect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/engine/readconnect.h -------------------------------------------------------------------------------- /engine/reading.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/engine/reading.c -------------------------------------------------------------------------------- /engine/semeai.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/engine/semeai.c -------------------------------------------------------------------------------- /engine/sgfdecide.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/engine/sgfdecide.c -------------------------------------------------------------------------------- /engine/sgffile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/engine/sgffile.c -------------------------------------------------------------------------------- /engine/shapes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/engine/shapes.c -------------------------------------------------------------------------------- /engine/showbord.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/engine/showbord.c -------------------------------------------------------------------------------- /engine/surround.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/engine/surround.c -------------------------------------------------------------------------------- /engine/unconditional.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/engine/unconditional.c -------------------------------------------------------------------------------- /engine/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/engine/utils.c -------------------------------------------------------------------------------- /engine/value_moves.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/engine/value_moves.c -------------------------------------------------------------------------------- /engine/worm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/engine/worm.c -------------------------------------------------------------------------------- /install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/install-sh -------------------------------------------------------------------------------- /interface/.gitignore: -------------------------------------------------------------------------------- 1 | gnugo 2 | -------------------------------------------------------------------------------- /interface/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/CMakeLists.txt -------------------------------------------------------------------------------- /interface/GoImage/Stone.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/GoImage/Stone.pm -------------------------------------------------------------------------------- /interface/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/Makefile.am -------------------------------------------------------------------------------- /interface/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/Makefile.in -------------------------------------------------------------------------------- /interface/big-xpms/bmoku1.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/big-xpms/bmoku1.xpm -------------------------------------------------------------------------------- /interface/big-xpms/bmoku2.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/big-xpms/bmoku2.xpm -------------------------------------------------------------------------------- /interface/big-xpms/bmoku3.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/big-xpms/bmoku3.xpm -------------------------------------------------------------------------------- /interface/big-xpms/bmoku4.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/big-xpms/bmoku4.xpm -------------------------------------------------------------------------------- /interface/big-xpms/bmoku5.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/big-xpms/bmoku5.xpm -------------------------------------------------------------------------------- /interface/big-xpms/bmoku6.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/big-xpms/bmoku6.xpm -------------------------------------------------------------------------------- /interface/big-xpms/bmoku7.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/big-xpms/bmoku7.xpm -------------------------------------------------------------------------------- /interface/big-xpms/bmoku8.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/big-xpms/bmoku8.xpm -------------------------------------------------------------------------------- /interface/big-xpms/bmoku9.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/big-xpms/bmoku9.xpm -------------------------------------------------------------------------------- /interface/big-xpms/bpmoku1.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/big-xpms/bpmoku1.xpm -------------------------------------------------------------------------------- /interface/big-xpms/bpmoku2.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/big-xpms/bpmoku2.xpm -------------------------------------------------------------------------------- /interface/big-xpms/bpmoku3.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/big-xpms/bpmoku3.xpm -------------------------------------------------------------------------------- /interface/big-xpms/bpmoku4.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/big-xpms/bpmoku4.xpm -------------------------------------------------------------------------------- /interface/big-xpms/bpmoku5.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/big-xpms/bpmoku5.xpm -------------------------------------------------------------------------------- /interface/big-xpms/bpmoku6.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/big-xpms/bpmoku6.xpm -------------------------------------------------------------------------------- /interface/big-xpms/bpmoku7.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/big-xpms/bpmoku7.xpm -------------------------------------------------------------------------------- /interface/big-xpms/bpmoku8.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/big-xpms/bpmoku8.xpm -------------------------------------------------------------------------------- /interface/big-xpms/bpmoku9.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/big-xpms/bpmoku9.xpm -------------------------------------------------------------------------------- /interface/big-xpms/empty1.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/big-xpms/empty1.xpm -------------------------------------------------------------------------------- /interface/big-xpms/empty2.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/big-xpms/empty2.xpm -------------------------------------------------------------------------------- /interface/big-xpms/empty3.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/big-xpms/empty3.xpm -------------------------------------------------------------------------------- /interface/big-xpms/empty4.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/big-xpms/empty4.xpm -------------------------------------------------------------------------------- /interface/big-xpms/empty5.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/big-xpms/empty5.xpm -------------------------------------------------------------------------------- /interface/big-xpms/empty6.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/big-xpms/empty6.xpm -------------------------------------------------------------------------------- /interface/big-xpms/empty7.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/big-xpms/empty7.xpm -------------------------------------------------------------------------------- /interface/big-xpms/empty8.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/big-xpms/empty8.xpm -------------------------------------------------------------------------------- /interface/big-xpms/empty9.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/big-xpms/empty9.xpm -------------------------------------------------------------------------------- /interface/big-xpms/hoshi.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/big-xpms/hoshi.xpm -------------------------------------------------------------------------------- /interface/big-xpms/wmoku1.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/big-xpms/wmoku1.xpm -------------------------------------------------------------------------------- /interface/big-xpms/wmoku2.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/big-xpms/wmoku2.xpm -------------------------------------------------------------------------------- /interface/big-xpms/wmoku3.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/big-xpms/wmoku3.xpm -------------------------------------------------------------------------------- /interface/big-xpms/wmoku4.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/big-xpms/wmoku4.xpm -------------------------------------------------------------------------------- /interface/big-xpms/wmoku5.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/big-xpms/wmoku5.xpm -------------------------------------------------------------------------------- /interface/big-xpms/wmoku6.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/big-xpms/wmoku6.xpm -------------------------------------------------------------------------------- /interface/big-xpms/wmoku7.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/big-xpms/wmoku7.xpm -------------------------------------------------------------------------------- /interface/big-xpms/wmoku8.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/big-xpms/wmoku8.xpm -------------------------------------------------------------------------------- /interface/big-xpms/wmoku9.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/big-xpms/wmoku9.xpm -------------------------------------------------------------------------------- /interface/big-xpms/wpmoku1.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/big-xpms/wpmoku1.xpm -------------------------------------------------------------------------------- /interface/big-xpms/wpmoku2.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/big-xpms/wpmoku2.xpm -------------------------------------------------------------------------------- /interface/big-xpms/wpmoku3.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/big-xpms/wpmoku3.xpm -------------------------------------------------------------------------------- /interface/big-xpms/wpmoku4.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/big-xpms/wpmoku4.xpm -------------------------------------------------------------------------------- /interface/big-xpms/wpmoku5.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/big-xpms/wpmoku5.xpm -------------------------------------------------------------------------------- /interface/big-xpms/wpmoku6.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/big-xpms/wpmoku6.xpm -------------------------------------------------------------------------------- /interface/big-xpms/wpmoku7.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/big-xpms/wpmoku7.xpm -------------------------------------------------------------------------------- /interface/big-xpms/wpmoku8.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/big-xpms/wpmoku8.xpm -------------------------------------------------------------------------------- /interface/big-xpms/wpmoku9.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/big-xpms/wpmoku9.xpm -------------------------------------------------------------------------------- /interface/gmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/gmp.c -------------------------------------------------------------------------------- /interface/gmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/gmp.h -------------------------------------------------------------------------------- /interface/gnugo-big-xpms.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/gnugo-big-xpms.el -------------------------------------------------------------------------------- /interface/gnugo-xpms.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/gnugo-xpms.el -------------------------------------------------------------------------------- /interface/gnugo.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/gnugo.el -------------------------------------------------------------------------------- /interface/gtp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/gtp.c -------------------------------------------------------------------------------- /interface/gtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/gtp.h -------------------------------------------------------------------------------- /interface/gtp_examples/2ptkgo.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/gtp_examples/2ptkgo.pl -------------------------------------------------------------------------------- /interface/gtp_examples/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/gtp_examples/README -------------------------------------------------------------------------------- /interface/gtp_examples/gnugo.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/gtp_examples/gnugo.el -------------------------------------------------------------------------------- /interface/gtp_examples/gtp2_6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/gtp_examples/gtp2_6 -------------------------------------------------------------------------------- /interface/gtp_examples/sgf2tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/gtp_examples/sgf2tst -------------------------------------------------------------------------------- /interface/gtp_examples/ttgo.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/gtp_examples/ttgo.pm -------------------------------------------------------------------------------- /interface/gtp_examples/twogtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/gtp_examples/twogtp -------------------------------------------------------------------------------- /interface/gtp_examples/twogtp-a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/gtp_examples/twogtp-a -------------------------------------------------------------------------------- /interface/gtp_examples/twogtp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/gtp_examples/twogtp.py -------------------------------------------------------------------------------- /interface/gtp_examples/vanilla.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/gtp_examples/vanilla.c -------------------------------------------------------------------------------- /interface/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/interface.h -------------------------------------------------------------------------------- /interface/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/main.c -------------------------------------------------------------------------------- /interface/make-xpms-file.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/make-xpms-file.el -------------------------------------------------------------------------------- /interface/play_ascii.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/play_ascii.c -------------------------------------------------------------------------------- /interface/play_gmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/play_gmp.c -------------------------------------------------------------------------------- /interface/play_gtp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/play_gtp.c -------------------------------------------------------------------------------- /interface/play_solo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/play_solo.c -------------------------------------------------------------------------------- /interface/play_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/play_test.c -------------------------------------------------------------------------------- /interface/xpms/bmoku1.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/xpms/bmoku1.xpm -------------------------------------------------------------------------------- /interface/xpms/bmoku2.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/xpms/bmoku2.xpm -------------------------------------------------------------------------------- /interface/xpms/bmoku3.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/xpms/bmoku3.xpm -------------------------------------------------------------------------------- /interface/xpms/bmoku4.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/xpms/bmoku4.xpm -------------------------------------------------------------------------------- /interface/xpms/bmoku5.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/xpms/bmoku5.xpm -------------------------------------------------------------------------------- /interface/xpms/bmoku6.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/xpms/bmoku6.xpm -------------------------------------------------------------------------------- /interface/xpms/bmoku7.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/xpms/bmoku7.xpm -------------------------------------------------------------------------------- /interface/xpms/bmoku8.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/xpms/bmoku8.xpm -------------------------------------------------------------------------------- /interface/xpms/bmoku9.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/xpms/bmoku9.xpm -------------------------------------------------------------------------------- /interface/xpms/bpmoku1.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/xpms/bpmoku1.xpm -------------------------------------------------------------------------------- /interface/xpms/bpmoku2.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/xpms/bpmoku2.xpm -------------------------------------------------------------------------------- /interface/xpms/bpmoku3.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/xpms/bpmoku3.xpm -------------------------------------------------------------------------------- /interface/xpms/bpmoku4.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/xpms/bpmoku4.xpm -------------------------------------------------------------------------------- /interface/xpms/bpmoku5.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/xpms/bpmoku5.xpm -------------------------------------------------------------------------------- /interface/xpms/bpmoku6.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/xpms/bpmoku6.xpm -------------------------------------------------------------------------------- /interface/xpms/bpmoku7.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/xpms/bpmoku7.xpm -------------------------------------------------------------------------------- /interface/xpms/bpmoku8.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/xpms/bpmoku8.xpm -------------------------------------------------------------------------------- /interface/xpms/bpmoku9.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/xpms/bpmoku9.xpm -------------------------------------------------------------------------------- /interface/xpms/empty1.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/xpms/empty1.xpm -------------------------------------------------------------------------------- /interface/xpms/empty2.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/xpms/empty2.xpm -------------------------------------------------------------------------------- /interface/xpms/empty3.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/xpms/empty3.xpm -------------------------------------------------------------------------------- /interface/xpms/empty4.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/xpms/empty4.xpm -------------------------------------------------------------------------------- /interface/xpms/empty5.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/xpms/empty5.xpm -------------------------------------------------------------------------------- /interface/xpms/empty6.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/xpms/empty6.xpm -------------------------------------------------------------------------------- /interface/xpms/empty7.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/xpms/empty7.xpm -------------------------------------------------------------------------------- /interface/xpms/empty8.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/xpms/empty8.xpm -------------------------------------------------------------------------------- /interface/xpms/empty9.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/xpms/empty9.xpm -------------------------------------------------------------------------------- /interface/xpms/hoshi.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/xpms/hoshi.xpm -------------------------------------------------------------------------------- /interface/xpms/wmoku1.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/xpms/wmoku1.xpm -------------------------------------------------------------------------------- /interface/xpms/wmoku2.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/xpms/wmoku2.xpm -------------------------------------------------------------------------------- /interface/xpms/wmoku3.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/xpms/wmoku3.xpm -------------------------------------------------------------------------------- /interface/xpms/wmoku4.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/xpms/wmoku4.xpm -------------------------------------------------------------------------------- /interface/xpms/wmoku5.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/xpms/wmoku5.xpm -------------------------------------------------------------------------------- /interface/xpms/wmoku6.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/xpms/wmoku6.xpm -------------------------------------------------------------------------------- /interface/xpms/wmoku7.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/xpms/wmoku7.xpm -------------------------------------------------------------------------------- /interface/xpms/wmoku8.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/xpms/wmoku8.xpm -------------------------------------------------------------------------------- /interface/xpms/wmoku9.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/xpms/wmoku9.xpm -------------------------------------------------------------------------------- /interface/xpms/wpmoku1.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/xpms/wpmoku1.xpm -------------------------------------------------------------------------------- /interface/xpms/wpmoku2.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/xpms/wpmoku2.xpm -------------------------------------------------------------------------------- /interface/xpms/wpmoku3.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/xpms/wpmoku3.xpm -------------------------------------------------------------------------------- /interface/xpms/wpmoku4.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/xpms/wpmoku4.xpm -------------------------------------------------------------------------------- /interface/xpms/wpmoku5.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/xpms/wpmoku5.xpm -------------------------------------------------------------------------------- /interface/xpms/wpmoku6.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/xpms/wpmoku6.xpm -------------------------------------------------------------------------------- /interface/xpms/wpmoku7.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/xpms/wpmoku7.xpm -------------------------------------------------------------------------------- /interface/xpms/wpmoku8.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/xpms/wpmoku8.xpm -------------------------------------------------------------------------------- /interface/xpms/wpmoku9.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/interface/xpms/wpmoku9.xpm -------------------------------------------------------------------------------- /missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/missing -------------------------------------------------------------------------------- /mkinstalldirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/mkinstalldirs -------------------------------------------------------------------------------- /patterns/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/patterns/.gitignore -------------------------------------------------------------------------------- /patterns/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/patterns/CMakeLists.txt -------------------------------------------------------------------------------- /patterns/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/patterns/Makefile.am -------------------------------------------------------------------------------- /patterns/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/patterns/Makefile.in -------------------------------------------------------------------------------- /patterns/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/patterns/README -------------------------------------------------------------------------------- /patterns/aa_attackpats.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/patterns/aa_attackpats.db -------------------------------------------------------------------------------- /patterns/aa_attackpats.dtr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/patterns/aa_attackpats.dtr -------------------------------------------------------------------------------- /patterns/attack.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/patterns/attack.db -------------------------------------------------------------------------------- /patterns/barriers.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/patterns/barriers.db -------------------------------------------------------------------------------- /patterns/compress_fuseki.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/patterns/compress_fuseki.c -------------------------------------------------------------------------------- /patterns/conn.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/patterns/conn.db -------------------------------------------------------------------------------- /patterns/connections.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/patterns/connections.c -------------------------------------------------------------------------------- /patterns/defense.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/patterns/defense.db -------------------------------------------------------------------------------- /patterns/dfa-mkpat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/patterns/dfa-mkpat.h -------------------------------------------------------------------------------- /patterns/dfa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/patterns/dfa.c -------------------------------------------------------------------------------- /patterns/dfa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/patterns/dfa.h -------------------------------------------------------------------------------- /patterns/endgame.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/patterns/endgame.db -------------------------------------------------------------------------------- /patterns/extract_fuseki.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/patterns/extract_fuseki.c -------------------------------------------------------------------------------- /patterns/eyes.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/patterns/eyes.db -------------------------------------------------------------------------------- /patterns/eyes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/patterns/eyes.h -------------------------------------------------------------------------------- /patterns/fuseki.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/patterns/fuseki.db -------------------------------------------------------------------------------- /patterns/fuseki13.dbz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/patterns/fuseki13.dbz -------------------------------------------------------------------------------- /patterns/fuseki19.dbz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/patterns/fuseki19.dbz -------------------------------------------------------------------------------- /patterns/fuseki9.dbz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/patterns/fuseki9.dbz -------------------------------------------------------------------------------- /patterns/gnugo-db.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/patterns/gnugo-db.el -------------------------------------------------------------------------------- /patterns/gogo.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/patterns/gogo.sgf -------------------------------------------------------------------------------- /patterns/handicap.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/patterns/handicap.db -------------------------------------------------------------------------------- /patterns/helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/patterns/helpers.c -------------------------------------------------------------------------------- /patterns/hoshi_keima.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/patterns/hoshi_keima.sgf -------------------------------------------------------------------------------- /patterns/hoshi_other.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/patterns/hoshi_other.sgf -------------------------------------------------------------------------------- /patterns/influence.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/patterns/influence.db -------------------------------------------------------------------------------- /patterns/joseki.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/patterns/joseki.c -------------------------------------------------------------------------------- /patterns/komoku.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/patterns/komoku.sgf -------------------------------------------------------------------------------- /patterns/mc_mogo_classic.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/patterns/mc_mogo_classic.db -------------------------------------------------------------------------------- /patterns/mc_montegnu_classic.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/patterns/mc_montegnu_classic.db -------------------------------------------------------------------------------- /patterns/mc_uniform.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/patterns/mc_uniform.db -------------------------------------------------------------------------------- /patterns/mkeyes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/patterns/mkeyes.c -------------------------------------------------------------------------------- /patterns/mkmcpat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/patterns/mkmcpat.c -------------------------------------------------------------------------------- /patterns/mkpat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/patterns/mkpat.c -------------------------------------------------------------------------------- /patterns/mokuhazushi.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/patterns/mokuhazushi.sgf -------------------------------------------------------------------------------- /patterns/oracle.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/patterns/oracle.db -------------------------------------------------------------------------------- /patterns/owl_attackpats.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/patterns/owl_attackpats.db -------------------------------------------------------------------------------- /patterns/owl_attackpats.dtr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/patterns/owl_attackpats.dtr -------------------------------------------------------------------------------- /patterns/owl_defendpats.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/patterns/owl_defendpats.db -------------------------------------------------------------------------------- /patterns/owl_defendpats.dtr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/patterns/owl_defendpats.dtr -------------------------------------------------------------------------------- /patterns/owl_vital_apats.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/patterns/owl_vital_apats.db -------------------------------------------------------------------------------- /patterns/owl_vital_apats.dtr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/patterns/owl_vital_apats.dtr -------------------------------------------------------------------------------- /patterns/patterns.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/patterns/patterns.db -------------------------------------------------------------------------------- /patterns/patterns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/patterns/patterns.h -------------------------------------------------------------------------------- /patterns/patterns2.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/patterns/patterns2.db -------------------------------------------------------------------------------- /patterns/sansan.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/patterns/sansan.sgf -------------------------------------------------------------------------------- /patterns/takamoku.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/patterns/takamoku.sgf -------------------------------------------------------------------------------- /patterns/transform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/patterns/transform.c -------------------------------------------------------------------------------- /patterns/uncompress_fuseki.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/patterns/uncompress_fuseki.c -------------------------------------------------------------------------------- /regression/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/.gitignore -------------------------------------------------------------------------------- /regression/13x13.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/13x13.tst -------------------------------------------------------------------------------- /regression/13x13b.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/13x13b.tst -------------------------------------------------------------------------------- /regression/13x13c.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/13x13c.tst -------------------------------------------------------------------------------- /regression/9x9.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/9x9.tst -------------------------------------------------------------------------------- /regression/BREAKAGE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/BREAKAGE -------------------------------------------------------------------------------- /regression/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/Makefile.am -------------------------------------------------------------------------------- /regression/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/Makefile.in -------------------------------------------------------------------------------- /regression/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/README -------------------------------------------------------------------------------- /regression/STS-RV_0.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/STS-RV_0.tst -------------------------------------------------------------------------------- /regression/STS-RV_1.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/STS-RV_1.tst -------------------------------------------------------------------------------- /regression/STS-RV_Misc.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/STS-RV_Misc.tst -------------------------------------------------------------------------------- /regression/STS-RV_e.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/STS-RV_e.tst -------------------------------------------------------------------------------- /regression/arb.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/arb.tst -------------------------------------------------------------------------------- /regression/arend.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/arend.tst -------------------------------------------------------------------------------- /regression/arend2.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/arend2.tst -------------------------------------------------------------------------------- /regression/arion.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/arion.tst -------------------------------------------------------------------------------- /regression/atari_atari.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/atari_atari.tst -------------------------------------------------------------------------------- /regression/auto01.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/auto01.tst -------------------------------------------------------------------------------- /regression/auto02.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/auto02.tst -------------------------------------------------------------------------------- /regression/auto03.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/auto03.tst -------------------------------------------------------------------------------- /regression/auto04.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/auto04.tst -------------------------------------------------------------------------------- /regression/auto_handtalk.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/auto_handtalk.tst -------------------------------------------------------------------------------- /regression/blunder.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/blunder.tst -------------------------------------------------------------------------------- /regression/break_in.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/break_in.tst -------------------------------------------------------------------------------- /regression/breakage2tst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/breakage2tst.py -------------------------------------------------------------------------------- /regression/buzco.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/buzco.tst -------------------------------------------------------------------------------- /regression/capture.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/capture.tst -------------------------------------------------------------------------------- /regression/century2002.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/century2002.tst -------------------------------------------------------------------------------- /regression/cgf2004.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/cgf2004.tst -------------------------------------------------------------------------------- /regression/connect.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/connect.tst -------------------------------------------------------------------------------- /regression/connection.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/connection.tst -------------------------------------------------------------------------------- /regression/dniwog.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/dniwog.tst -------------------------------------------------------------------------------- /regression/ego.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/ego.tst -------------------------------------------------------------------------------- /regression/endgame.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/endgame.tst -------------------------------------------------------------------------------- /regression/endgame1.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/endgame1.tst -------------------------------------------------------------------------------- /regression/eval.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/eval.sh -------------------------------------------------------------------------------- /regression/eval3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/eval3.sh -------------------------------------------------------------------------------- /regression/filllib.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/filllib.tst -------------------------------------------------------------------------------- /regression/games/.gitignore: -------------------------------------------------------------------------------- 1 | # Do not ignore sgf files in and below this directory. 2 | !*.sgf 3 | -------------------------------------------------------------------------------- /regression/games/9handicap.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/9handicap.sgf -------------------------------------------------------------------------------- /regression/games/9x9-1.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/9x9-1.sgf -------------------------------------------------------------------------------- /regression/games/9x9-2.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/9x9-2.sgf -------------------------------------------------------------------------------- /regression/games/9x9-3.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/9x9-3.sgf -------------------------------------------------------------------------------- /regression/games/9x9-4.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/9x9-4.sgf -------------------------------------------------------------------------------- /regression/games/9x9-5.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/9x9-5.sgf -------------------------------------------------------------------------------- /regression/games/9x9-6.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/9x9-6.sgf -------------------------------------------------------------------------------- /regression/games/CrazyStone1.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/CrazyStone1.sgf -------------------------------------------------------------------------------- /regression/games/CrazyStone2.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/CrazyStone2.sgf -------------------------------------------------------------------------------- /regression/games/FSF-neurogo.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/FSF-neurogo.sgf -------------------------------------------------------------------------------- /regression/games/FSGCBot-dr.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/FSGCBot-dr.sgf -------------------------------------------------------------------------------- /regression/games/STS-RV/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/STS-RV/README -------------------------------------------------------------------------------- /regression/games/TSa.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/TSa.sgf -------------------------------------------------------------------------------- /regression/games/ab1_fuseki.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/ab1_fuseki.sgf -------------------------------------------------------------------------------- /regression/games/arb/game01.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/arb/game01.sgf -------------------------------------------------------------------------------- /regression/games/arb/game02.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/arb/game02.sgf -------------------------------------------------------------------------------- /regression/games/arb/game03.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/arb/game03.sgf -------------------------------------------------------------------------------- /regression/games/arb/game04.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/arb/game04.sgf -------------------------------------------------------------------------------- /regression/games/arion.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/arion.sgf -------------------------------------------------------------------------------- /regression/games/atari-crash.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/atari-crash.sgf -------------------------------------------------------------------------------- /regression/games/blunder1.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/blunder1.sgf -------------------------------------------------------------------------------- /regression/games/blunder10.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/blunder10.sgf -------------------------------------------------------------------------------- /regression/games/blunder11.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/blunder11.sgf -------------------------------------------------------------------------------- /regression/games/blunder12.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/blunder12.sgf -------------------------------------------------------------------------------- /regression/games/blunder13.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/blunder13.sgf -------------------------------------------------------------------------------- /regression/games/blunder14.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/blunder14.sgf -------------------------------------------------------------------------------- /regression/games/blunder15.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/blunder15.sgf -------------------------------------------------------------------------------- /regression/games/blunder16.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/blunder16.sgf -------------------------------------------------------------------------------- /regression/games/blunder17.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/blunder17.sgf -------------------------------------------------------------------------------- /regression/games/blunder18.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/blunder18.sgf -------------------------------------------------------------------------------- /regression/games/blunder19.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/blunder19.sgf -------------------------------------------------------------------------------- /regression/games/blunder2.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/blunder2.sgf -------------------------------------------------------------------------------- /regression/games/blunder20.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/blunder20.sgf -------------------------------------------------------------------------------- /regression/games/blunder21.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/blunder21.sgf -------------------------------------------------------------------------------- /regression/games/blunder22.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/blunder22.sgf -------------------------------------------------------------------------------- /regression/games/blunder23.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/blunder23.sgf -------------------------------------------------------------------------------- /regression/games/blunder24.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/blunder24.sgf -------------------------------------------------------------------------------- /regression/games/blunder25.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/blunder25.sgf -------------------------------------------------------------------------------- /regression/games/blunder3.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/blunder3.sgf -------------------------------------------------------------------------------- /regression/games/blunder4.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/blunder4.sgf -------------------------------------------------------------------------------- /regression/games/blunder5.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/blunder5.sgf -------------------------------------------------------------------------------- /regression/games/blunder6.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/blunder6.sgf -------------------------------------------------------------------------------- /regression/games/blunder7.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/blunder7.sgf -------------------------------------------------------------------------------- /regression/games/blunder8.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/blunder8.sgf -------------------------------------------------------------------------------- /regression/games/blunder9.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/blunder9.sgf -------------------------------------------------------------------------------- /regression/games/break_in.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/break_in.sgf -------------------------------------------------------------------------------- /regression/games/bretz.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/bretz.sgf -------------------------------------------------------------------------------- /regression/games/buzco1.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/buzco1.sgf -------------------------------------------------------------------------------- /regression/games/cgf2001/aya.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/cgf2001/aya.sgf -------------------------------------------------------------------------------- /regression/games/cgf2002/Aya.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/cgf2002/Aya.sgf -------------------------------------------------------------------------------- /regression/games/cgf2004/aya.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/cgf2004/aya.sgf -------------------------------------------------------------------------------- /regression/games/cgos/13435.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/cgos/13435.sgf -------------------------------------------------------------------------------- /regression/games/cgos/14198.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/cgos/14198.sgf -------------------------------------------------------------------------------- /regression/games/cgos/25811.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/cgos/25811.sgf -------------------------------------------------------------------------------- /regression/games/cgos/26449.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/cgos/26449.sgf -------------------------------------------------------------------------------- /regression/games/cgos/30527.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/cgos/30527.sgf -------------------------------------------------------------------------------- /regression/games/cgos/31446.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/cgos/31446.sgf -------------------------------------------------------------------------------- /regression/games/cgos/37169.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/cgos/37169.sgf -------------------------------------------------------------------------------- /regression/games/cgos/390115.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/cgos/390115.sgf -------------------------------------------------------------------------------- /regression/games/cgos/403788.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/cgos/403788.sgf -------------------------------------------------------------------------------- /regression/games/cgos/42896.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/cgos/42896.sgf -------------------------------------------------------------------------------- /regression/games/cgos/471085.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/cgos/471085.sgf -------------------------------------------------------------------------------- /regression/games/cgos/58273.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/cgos/58273.sgf -------------------------------------------------------------------------------- /regression/games/cgos/60311.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/cgos/60311.sgf -------------------------------------------------------------------------------- /regression/games/cgos/879.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/cgos/879.sgf -------------------------------------------------------------------------------- /regression/games/cgos/994.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/cgos/994.sgf -------------------------------------------------------------------------------- /regression/games/connection1.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/connection1.sgf -------------------------------------------------------------------------------- /regression/games/connection2.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/connection2.sgf -------------------------------------------------------------------------------- /regression/games/connection3.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/connection3.sgf -------------------------------------------------------------------------------- /regression/games/connection4.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/connection4.sgf -------------------------------------------------------------------------------- /regression/games/disaster.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/disaster.sgf -------------------------------------------------------------------------------- /regression/games/dniwog.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/dniwog.sgf -------------------------------------------------------------------------------- /regression/games/doublecut.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/doublecut.sgf -------------------------------------------------------------------------------- /regression/games/doublecut2.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/doublecut2.sgf -------------------------------------------------------------------------------- /regression/games/doubleko.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/doubleko.sgf -------------------------------------------------------------------------------- /regression/games/dragon1.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/dragon1.sgf -------------------------------------------------------------------------------- /regression/games/dublin1.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/dublin1.sgf -------------------------------------------------------------------------------- /regression/games/dublin2.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/dublin2.sgf -------------------------------------------------------------------------------- /regression/games/ego.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/ego.sgf -------------------------------------------------------------------------------- /regression/games/ego2.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/ego2.sgf -------------------------------------------------------------------------------- /regression/games/ego3.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/ego3.sgf -------------------------------------------------------------------------------- /regression/games/endgame10.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/endgame10.sgf -------------------------------------------------------------------------------- /regression/games/endgame11.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/endgame11.sgf -------------------------------------------------------------------------------- /regression/games/endgame12.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/endgame12.sgf -------------------------------------------------------------------------------- /regression/games/endgame13.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/endgame13.sgf -------------------------------------------------------------------------------- /regression/games/endgame14.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/endgame14.sgf -------------------------------------------------------------------------------- /regression/games/endgame15.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/endgame15.sgf -------------------------------------------------------------------------------- /regression/games/endgame2.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/endgame2.sgf -------------------------------------------------------------------------------- /regression/games/endgame3.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/endgame3.sgf -------------------------------------------------------------------------------- /regression/games/endgame4.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/endgame4.sgf -------------------------------------------------------------------------------- /regression/games/endgame5.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/endgame5.sgf -------------------------------------------------------------------------------- /regression/games/endgame6.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/endgame6.sgf -------------------------------------------------------------------------------- /regression/games/endgame7.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/endgame7.sgf -------------------------------------------------------------------------------- /regression/games/endgame8.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/endgame8.sgf -------------------------------------------------------------------------------- /regression/games/endgame9.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/endgame9.sgf -------------------------------------------------------------------------------- /regression/games/explorer.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/explorer.sgf -------------------------------------------------------------------------------- /regression/games/explorer2.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/explorer2.sgf -------------------------------------------------------------------------------- /regression/games/eyes1.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/eyes1.sgf -------------------------------------------------------------------------------- /regression/games/eyes2.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/eyes2.sgf -------------------------------------------------------------------------------- /regression/games/eyes3.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/eyes3.sgf -------------------------------------------------------------------------------- /regression/games/eyes_edge.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/eyes_edge.sgf -------------------------------------------------------------------------------- /regression/games/filllib1.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/filllib1.sgf -------------------------------------------------------------------------------- /regression/games/filllib10.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/filllib10.sgf -------------------------------------------------------------------------------- /regression/games/filllib11.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/filllib11.sgf -------------------------------------------------------------------------------- /regression/games/filllib12.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/filllib12.sgf -------------------------------------------------------------------------------- /regression/games/filllib13.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/filllib13.sgf -------------------------------------------------------------------------------- /regression/games/filllib14.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/filllib14.sgf -------------------------------------------------------------------------------- /regression/games/filllib15.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/filllib15.sgf -------------------------------------------------------------------------------- /regression/games/filllib16.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/filllib16.sgf -------------------------------------------------------------------------------- /regression/games/filllib17.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/filllib17.sgf -------------------------------------------------------------------------------- /regression/games/filllib18.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/filllib18.sgf -------------------------------------------------------------------------------- /regression/games/filllib19.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/filllib19.sgf -------------------------------------------------------------------------------- /regression/games/filllib2.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/filllib2.sgf -------------------------------------------------------------------------------- /regression/games/filllib3.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/filllib3.sgf -------------------------------------------------------------------------------- /regression/games/filllib4.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/filllib4.sgf -------------------------------------------------------------------------------- /regression/games/filllib5.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/filllib5.sgf -------------------------------------------------------------------------------- /regression/games/filllib6.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/filllib6.sgf -------------------------------------------------------------------------------- /regression/games/filllib7.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/filllib7.sgf -------------------------------------------------------------------------------- /regression/games/filllib8.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/filllib8.sgf -------------------------------------------------------------------------------- /regression/games/filllib9.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/filllib9.sgf -------------------------------------------------------------------------------- /regression/games/gg-040225.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/gg-040225.sgf -------------------------------------------------------------------------------- /regression/games/glop.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/glop.sgf -------------------------------------------------------------------------------- /regression/games/golife.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/golife.sgf -------------------------------------------------------------------------------- /regression/games/gwe.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/gwe.sgf -------------------------------------------------------------------------------- /regression/games/iken-tobi.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/iken-tobi.sgf -------------------------------------------------------------------------------- /regression/games/incident104.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/incident104.sgf -------------------------------------------------------------------------------- /regression/games/incident107.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/incident107.sgf -------------------------------------------------------------------------------- /regression/games/incident114.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/incident114.sgf -------------------------------------------------------------------------------- /regression/games/incident118.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/incident118.sgf -------------------------------------------------------------------------------- /regression/games/incident121.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/incident121.sgf -------------------------------------------------------------------------------- /regression/games/incident144.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/incident144.sgf -------------------------------------------------------------------------------- /regression/games/incident153.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/incident153.sgf -------------------------------------------------------------------------------- /regression/games/incident156.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/incident156.sgf -------------------------------------------------------------------------------- /regression/games/incident161.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/incident161.sgf -------------------------------------------------------------------------------- /regression/games/incident165.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/incident165.sgf -------------------------------------------------------------------------------- /regression/games/incident169.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/incident169.sgf -------------------------------------------------------------------------------- /regression/games/incident185.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/incident185.sgf -------------------------------------------------------------------------------- /regression/games/incident186.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/incident186.sgf -------------------------------------------------------------------------------- /regression/games/incident187.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/incident187.sgf -------------------------------------------------------------------------------- /regression/games/incident189.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/incident189.sgf -------------------------------------------------------------------------------- /regression/games/incident198.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/incident198.sgf -------------------------------------------------------------------------------- /regression/games/incident199.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/incident199.sgf -------------------------------------------------------------------------------- /regression/games/incident2.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/incident2.sgf -------------------------------------------------------------------------------- /regression/games/incident201.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/incident201.sgf -------------------------------------------------------------------------------- /regression/games/incident209.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/incident209.sgf -------------------------------------------------------------------------------- /regression/games/incident211.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/incident211.sgf -------------------------------------------------------------------------------- /regression/games/incident218.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/incident218.sgf -------------------------------------------------------------------------------- /regression/games/incident221.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/incident221.sgf -------------------------------------------------------------------------------- /regression/games/incident223.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/incident223.sgf -------------------------------------------------------------------------------- /regression/games/incident225.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/incident225.sgf -------------------------------------------------------------------------------- /regression/games/incident231.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/incident231.sgf -------------------------------------------------------------------------------- /regression/games/incident234.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/incident234.sgf -------------------------------------------------------------------------------- /regression/games/incident235.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/incident235.sgf -------------------------------------------------------------------------------- /regression/games/incident236.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/incident236.sgf -------------------------------------------------------------------------------- /regression/games/incident237.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/incident237.sgf -------------------------------------------------------------------------------- /regression/games/incident238.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/incident238.sgf -------------------------------------------------------------------------------- /regression/games/incident239.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/incident239.sgf -------------------------------------------------------------------------------- /regression/games/incident240.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/incident240.sgf -------------------------------------------------------------------------------- /regression/games/incident246.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/incident246.sgf -------------------------------------------------------------------------------- /regression/games/incident248.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/incident248.sgf -------------------------------------------------------------------------------- /regression/games/incident251.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/incident251.sgf -------------------------------------------------------------------------------- /regression/games/incident252.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/incident252.sgf -------------------------------------------------------------------------------- /regression/games/incident253.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/incident253.sgf -------------------------------------------------------------------------------- /regression/games/incident254.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/incident254.sgf -------------------------------------------------------------------------------- /regression/games/incident256.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/incident256.sgf -------------------------------------------------------------------------------- /regression/games/incident258.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/incident258.sgf -------------------------------------------------------------------------------- /regression/games/incident261.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/incident261.sgf -------------------------------------------------------------------------------- /regression/games/incident262.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/incident262.sgf -------------------------------------------------------------------------------- /regression/games/incident263.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/incident263.sgf -------------------------------------------------------------------------------- /regression/games/incident267.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/incident267.sgf -------------------------------------------------------------------------------- /regression/games/incident269.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/incident269.sgf -------------------------------------------------------------------------------- /regression/games/incident272.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/incident272.sgf -------------------------------------------------------------------------------- /regression/games/incident278.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/incident278.sgf -------------------------------------------------------------------------------- /regression/games/incident287.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/incident287.sgf -------------------------------------------------------------------------------- /regression/games/incident290.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/incident290.sgf -------------------------------------------------------------------------------- /regression/games/incident291.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/incident291.sgf -------------------------------------------------------------------------------- /regression/games/incident297.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/incident297.sgf -------------------------------------------------------------------------------- /regression/games/incident42.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/incident42.sgf -------------------------------------------------------------------------------- /regression/games/incident55.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/incident55.sgf -------------------------------------------------------------------------------- /regression/games/incident59.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/incident59.sgf -------------------------------------------------------------------------------- /regression/games/incident64.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/incident64.sgf -------------------------------------------------------------------------------- /regression/games/incident66.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/incident66.sgf -------------------------------------------------------------------------------- /regression/games/incident67.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/incident67.sgf -------------------------------------------------------------------------------- /regression/games/incident72.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/incident72.sgf -------------------------------------------------------------------------------- /regression/games/incident73.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/incident73.sgf -------------------------------------------------------------------------------- /regression/games/incident74.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/incident74.sgf -------------------------------------------------------------------------------- /regression/games/incident79.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/incident79.sgf -------------------------------------------------------------------------------- /regression/games/incident80.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/incident80.sgf -------------------------------------------------------------------------------- /regression/games/incident82.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/incident82.sgf -------------------------------------------------------------------------------- /regression/games/incident84.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/incident84.sgf -------------------------------------------------------------------------------- /regression/games/incident85.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/incident85.sgf -------------------------------------------------------------------------------- /regression/games/incident91.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/incident91.sgf -------------------------------------------------------------------------------- /regression/games/incident92.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/incident92.sgf -------------------------------------------------------------------------------- /regression/games/incident93.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/incident93.sgf -------------------------------------------------------------------------------- /regression/games/incident94.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/incident94.sgf -------------------------------------------------------------------------------- /regression/games/incident96.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/incident96.sgf -------------------------------------------------------------------------------- /regression/games/incident97.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/incident97.sgf -------------------------------------------------------------------------------- /regression/games/jahy.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/jahy.sgf -------------------------------------------------------------------------------- /regression/games/joseki01.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/joseki01.sgf -------------------------------------------------------------------------------- /regression/games/juka1.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/juka1.sgf -------------------------------------------------------------------------------- /regression/games/kgs/llk-GNU.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/kgs/llk-GNU.sgf -------------------------------------------------------------------------------- /regression/games/kgs/yagr.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/kgs/yagr.sgf -------------------------------------------------------------------------------- /regression/games/kgs/yagr2.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/kgs/yagr2.sgf -------------------------------------------------------------------------------- /regression/games/kgs/yagr3.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/kgs/yagr3.sgf -------------------------------------------------------------------------------- /regression/games/kgs/yagr4.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/kgs/yagr4.sgf -------------------------------------------------------------------------------- /regression/games/kgs/yagr5.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/kgs/yagr5.sgf -------------------------------------------------------------------------------- /regression/games/kisei28_g7.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/kisei28_g7.sgf -------------------------------------------------------------------------------- /regression/games/ko1.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/ko1.sgf -------------------------------------------------------------------------------- /regression/games/ko2.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/ko2.sgf -------------------------------------------------------------------------------- /regression/games/ko3.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/ko3.sgf -------------------------------------------------------------------------------- /regression/games/ko4.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/ko4.sgf -------------------------------------------------------------------------------- /regression/games/ko5.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/ko5.sgf -------------------------------------------------------------------------------- /regression/games/ko6.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/ko6.sgf -------------------------------------------------------------------------------- /regression/games/ladder1.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/ladder1.sgf -------------------------------------------------------------------------------- /regression/games/life1.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/life1.sgf -------------------------------------------------------------------------------- /regression/games/lordofpi.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/lordofpi.sgf -------------------------------------------------------------------------------- /regression/games/manner.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/manner.sgf -------------------------------------------------------------------------------- /regression/games/marginal.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/marginal.sgf -------------------------------------------------------------------------------- /regression/games/marginal_ko.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/marginal_ko.sgf -------------------------------------------------------------------------------- /regression/games/me.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/me.sgf -------------------------------------------------------------------------------- /regression/games/mf1.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/mf1.sgf -------------------------------------------------------------------------------- /regression/games/mfgg1.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/mfgg1.sgf -------------------------------------------------------------------------------- /regression/games/mfgg2.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/mfgg2.sgf -------------------------------------------------------------------------------- /regression/games/mfgg3.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/mfgg3.sgf -------------------------------------------------------------------------------- /regression/games/net3.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/net3.sgf -------------------------------------------------------------------------------- /regression/games/niki.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/niki.sgf -------------------------------------------------------------------------------- /regression/games/nodan-guno.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/nodan-guno.sgf -------------------------------------------------------------------------------- /regression/games/owl01.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/owl01.sgf -------------------------------------------------------------------------------- /regression/games/owl02.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/owl02.sgf -------------------------------------------------------------------------------- /regression/games/owl03.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/owl03.sgf -------------------------------------------------------------------------------- /regression/games/owl04.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/owl04.sgf -------------------------------------------------------------------------------- /regression/games/owl05.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/owl05.sgf -------------------------------------------------------------------------------- /regression/games/owl06.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/owl06.sgf -------------------------------------------------------------------------------- /regression/games/owl07.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/owl07.sgf -------------------------------------------------------------------------------- /regression/games/owl08.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/owl08.sgf -------------------------------------------------------------------------------- /regression/games/owl09.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/owl09.sgf -------------------------------------------------------------------------------- /regression/games/owl10.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/owl10.sgf -------------------------------------------------------------------------------- /regression/games/owl11.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/owl11.sgf -------------------------------------------------------------------------------- /regression/games/owl12.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/owl12.sgf -------------------------------------------------------------------------------- /regression/games/owl13.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/owl13.sgf -------------------------------------------------------------------------------- /regression/games/owl14.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/owl14.sgf -------------------------------------------------------------------------------- /regression/games/owl15.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/owl15.sgf -------------------------------------------------------------------------------- /regression/games/owl16.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/owl16.sgf -------------------------------------------------------------------------------- /regression/games/owl17.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/owl17.sgf -------------------------------------------------------------------------------- /regression/games/owl18.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/owl18.sgf -------------------------------------------------------------------------------- /regression/games/owl19.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/owl19.sgf -------------------------------------------------------------------------------- /regression/games/owl20.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/owl20.sgf -------------------------------------------------------------------------------- /regression/games/owl21.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/owl21.sgf -------------------------------------------------------------------------------- /regression/games/owl22.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/owl22.sgf -------------------------------------------------------------------------------- /regression/games/owl23.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/owl23.sgf -------------------------------------------------------------------------------- /regression/games/owl24.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/owl24.sgf -------------------------------------------------------------------------------- /regression/games/owl25.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/owl25.sgf -------------------------------------------------------------------------------- /regression/games/owl26.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/owl26.sgf -------------------------------------------------------------------------------- /regression/games/owl27.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/owl27.sgf -------------------------------------------------------------------------------- /regression/games/owl28.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/owl28.sgf -------------------------------------------------------------------------------- /regression/games/owl29.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/owl29.sgf -------------------------------------------------------------------------------- /regression/games/owl30.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/owl30.sgf -------------------------------------------------------------------------------- /regression/games/owl31.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/owl31.sgf -------------------------------------------------------------------------------- /regression/games/owl32.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/owl32.sgf -------------------------------------------------------------------------------- /regression/games/owl33.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/owl33.sgf -------------------------------------------------------------------------------- /regression/games/owl34.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/owl34.sgf -------------------------------------------------------------------------------- /regression/games/owl35.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/owl35.sgf -------------------------------------------------------------------------------- /regression/games/owl36.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/owl36.sgf -------------------------------------------------------------------------------- /regression/games/owl37.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/owl37.sgf -------------------------------------------------------------------------------- /regression/games/owl38.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/owl38.sgf -------------------------------------------------------------------------------- /regression/games/owl39.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/owl39.sgf -------------------------------------------------------------------------------- /regression/games/owl39a.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/owl39a.sgf -------------------------------------------------------------------------------- /regression/games/owl40.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/owl40.sgf -------------------------------------------------------------------------------- /regression/games/owl41.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/owl41.sgf -------------------------------------------------------------------------------- /regression/games/owl42.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/owl42.sgf -------------------------------------------------------------------------------- /regression/games/owl43.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/owl43.sgf -------------------------------------------------------------------------------- /regression/games/owl44.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/owl44.sgf -------------------------------------------------------------------------------- /regression/games/owl45.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/owl45.sgf -------------------------------------------------------------------------------- /regression/games/owl46.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/owl46.sgf -------------------------------------------------------------------------------- /regression/games/owl47.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/owl47.sgf -------------------------------------------------------------------------------- /regression/games/owl48.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/owl48.sgf -------------------------------------------------------------------------------- /regression/games/owl49.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/owl49.sgf -------------------------------------------------------------------------------- /regression/games/owl50.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/owl50.sgf -------------------------------------------------------------------------------- /regression/games/owl51.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/owl51.sgf -------------------------------------------------------------------------------- /regression/games/owl52.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/owl52.sgf -------------------------------------------------------------------------------- /regression/games/owl53.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/owl53.sgf -------------------------------------------------------------------------------- /regression/games/owl54.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/owl54.sgf -------------------------------------------------------------------------------- /regression/games/owl55.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/owl55.sgf -------------------------------------------------------------------------------- /regression/games/owl56.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/owl56.sgf -------------------------------------------------------------------------------- /regression/games/paul.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/paul.sgf -------------------------------------------------------------------------------- /regression/games/pending/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/pending/README -------------------------------------------------------------------------------- /regression/games/pending/ko6.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/pending/ko6.sgf -------------------------------------------------------------------------------- /regression/games/pending/nightmare.sgf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /regression/games/poka.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/poka.sgf -------------------------------------------------------------------------------- /regression/games/pooo.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/pooo.sgf -------------------------------------------------------------------------------- /regression/games/reading01.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/reading01.sgf -------------------------------------------------------------------------------- /regression/games/reading02.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/reading02.sgf -------------------------------------------------------------------------------- /regression/games/reading03.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/reading03.sgf -------------------------------------------------------------------------------- /regression/games/reading04.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/reading04.sgf -------------------------------------------------------------------------------- /regression/games/reading05.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/reading05.sgf -------------------------------------------------------------------------------- /regression/games/reading06.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/reading06.sgf -------------------------------------------------------------------------------- /regression/games/reading07.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/reading07.sgf -------------------------------------------------------------------------------- /regression/games/reading08.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/reading08.sgf -------------------------------------------------------------------------------- /regression/games/reading09.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/reading09.sgf -------------------------------------------------------------------------------- /regression/games/reading10.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/reading10.sgf -------------------------------------------------------------------------------- /regression/games/reading11.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/reading11.sgf -------------------------------------------------------------------------------- /regression/games/reading12.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/reading12.sgf -------------------------------------------------------------------------------- /regression/games/reading13.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/reading13.sgf -------------------------------------------------------------------------------- /regression/games/reading14.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/reading14.sgf -------------------------------------------------------------------------------- /regression/games/reading15.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/reading15.sgf -------------------------------------------------------------------------------- /regression/games/reading16.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/reading16.sgf -------------------------------------------------------------------------------- /regression/games/reading17.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/reading17.sgf -------------------------------------------------------------------------------- /regression/games/reading18.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/reading18.sgf -------------------------------------------------------------------------------- /regression/games/reading19.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/reading19.sgf -------------------------------------------------------------------------------- /regression/games/reading20.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/reading20.sgf -------------------------------------------------------------------------------- /regression/games/reading21.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/reading21.sgf -------------------------------------------------------------------------------- /regression/games/reading22.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/reading22.sgf -------------------------------------------------------------------------------- /regression/games/reading23.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/reading23.sgf -------------------------------------------------------------------------------- /regression/games/reading24.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/reading24.sgf -------------------------------------------------------------------------------- /regression/games/reading25.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/reading25.sgf -------------------------------------------------------------------------------- /regression/games/reading26.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/reading26.sgf -------------------------------------------------------------------------------- /regression/games/reading27.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/reading27.sgf -------------------------------------------------------------------------------- /regression/games/reading28.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/reading28.sgf -------------------------------------------------------------------------------- /regression/games/reading29.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/reading29.sgf -------------------------------------------------------------------------------- /regression/games/reading30.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/reading30.sgf -------------------------------------------------------------------------------- /regression/games/reading31.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/reading31.sgf -------------------------------------------------------------------------------- /regression/games/reading32.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/reading32.sgf -------------------------------------------------------------------------------- /regression/games/reading33.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/reading33.sgf -------------------------------------------------------------------------------- /regression/games/reading34.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/reading34.sgf -------------------------------------------------------------------------------- /regression/games/reading35.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/reading35.sgf -------------------------------------------------------------------------------- /regression/games/reading36.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/reading36.sgf -------------------------------------------------------------------------------- /regression/games/reading37.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/reading37.sgf -------------------------------------------------------------------------------- /regression/games/reading38.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/reading38.sgf -------------------------------------------------------------------------------- /regression/games/reading39.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/reading39.sgf -------------------------------------------------------------------------------- /regression/games/reading40.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/reading40.sgf -------------------------------------------------------------------------------- /regression/games/reading41.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/reading41.sgf -------------------------------------------------------------------------------- /regression/games/reading42.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/reading42.sgf -------------------------------------------------------------------------------- /regression/games/reading43.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/reading43.sgf -------------------------------------------------------------------------------- /regression/games/reading44.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/reading44.sgf -------------------------------------------------------------------------------- /regression/games/reading45.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/reading45.sgf -------------------------------------------------------------------------------- /regression/games/reading46.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/reading46.sgf -------------------------------------------------------------------------------- /regression/games/reading47.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/reading47.sgf -------------------------------------------------------------------------------- /regression/games/reading48.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/reading48.sgf -------------------------------------------------------------------------------- /regression/games/rosebud.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/rosebud.sgf -------------------------------------------------------------------------------- /regression/games/rosebud4.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/rosebud4.sgf -------------------------------------------------------------------------------- /regression/games/seki01.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/seki01.sgf -------------------------------------------------------------------------------- /regression/games/seki02.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/seki02.sgf -------------------------------------------------------------------------------- /regression/games/seki03.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/seki03.sgf -------------------------------------------------------------------------------- /regression/games/seki04.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/seki04.sgf -------------------------------------------------------------------------------- /regression/games/seki05.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/seki05.sgf -------------------------------------------------------------------------------- /regression/games/seki06.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/seki06.sgf -------------------------------------------------------------------------------- /regression/games/seki07.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/seki07.sgf -------------------------------------------------------------------------------- /regression/games/seki08.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/seki08.sgf -------------------------------------------------------------------------------- /regression/games/seki09.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/seki09.sgf -------------------------------------------------------------------------------- /regression/games/seki10.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/seki10.sgf -------------------------------------------------------------------------------- /regression/games/seki11.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/seki11.sgf -------------------------------------------------------------------------------- /regression/games/seki12.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/seki12.sgf -------------------------------------------------------------------------------- /regression/games/seki13.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/seki13.sgf -------------------------------------------------------------------------------- /regression/games/seki14.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/seki14.sgf -------------------------------------------------------------------------------- /regression/games/seki15.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/seki15.sgf -------------------------------------------------------------------------------- /regression/games/seki16.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/seki16.sgf -------------------------------------------------------------------------------- /regression/games/semeai1.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/semeai1.sgf -------------------------------------------------------------------------------- /regression/games/semeai2.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/semeai2.sgf -------------------------------------------------------------------------------- /regression/games/semeai3.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/semeai3.sgf -------------------------------------------------------------------------------- /regression/games/splee.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/splee.sgf -------------------------------------------------------------------------------- /regression/games/splee2.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/splee2.sgf -------------------------------------------------------------------------------- /regression/games/ssstator.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/ssstator.sgf -------------------------------------------------------------------------------- /regression/games/strategy1.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/strategy1.sgf -------------------------------------------------------------------------------- /regression/games/strategy10.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/strategy10.sgf -------------------------------------------------------------------------------- /regression/games/strategy11.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/strategy11.sgf -------------------------------------------------------------------------------- /regression/games/strategy12.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/strategy12.sgf -------------------------------------------------------------------------------- /regression/games/strategy13.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/strategy13.sgf -------------------------------------------------------------------------------- /regression/games/strategy14.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/strategy14.sgf -------------------------------------------------------------------------------- /regression/games/strategy14a.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/strategy14a.sgf -------------------------------------------------------------------------------- /regression/games/strategy15.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/strategy15.sgf -------------------------------------------------------------------------------- /regression/games/strategy16.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/strategy16.sgf -------------------------------------------------------------------------------- /regression/games/strategy17.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/strategy17.sgf -------------------------------------------------------------------------------- /regression/games/strategy18.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/strategy18.sgf -------------------------------------------------------------------------------- /regression/games/strategy19.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/strategy19.sgf -------------------------------------------------------------------------------- /regression/games/strategy2.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/strategy2.sgf -------------------------------------------------------------------------------- /regression/games/strategy20.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/strategy20.sgf -------------------------------------------------------------------------------- /regression/games/strategy21.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/strategy21.sgf -------------------------------------------------------------------------------- /regression/games/strategy22.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/strategy22.sgf -------------------------------------------------------------------------------- /regression/games/strategy23.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/strategy23.sgf -------------------------------------------------------------------------------- /regression/games/strategy24.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/strategy24.sgf -------------------------------------------------------------------------------- /regression/games/strategy25.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/strategy25.sgf -------------------------------------------------------------------------------- /regression/games/strategy26.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/strategy26.sgf -------------------------------------------------------------------------------- /regression/games/strategy27.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/strategy27.sgf -------------------------------------------------------------------------------- /regression/games/strategy28.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/strategy28.sgf -------------------------------------------------------------------------------- /regression/games/strategy29.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/strategy29.sgf -------------------------------------------------------------------------------- /regression/games/strategy3.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/strategy3.sgf -------------------------------------------------------------------------------- /regression/games/strategy30.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/strategy30.sgf -------------------------------------------------------------------------------- /regression/games/strategy31.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/strategy31.sgf -------------------------------------------------------------------------------- /regression/games/strategy32.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/strategy32.sgf -------------------------------------------------------------------------------- /regression/games/strategy33.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/strategy33.sgf -------------------------------------------------------------------------------- /regression/games/strategy34.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/strategy34.sgf -------------------------------------------------------------------------------- /regression/games/strategy35.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/strategy35.sgf -------------------------------------------------------------------------------- /regression/games/strategy36.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/strategy36.sgf -------------------------------------------------------------------------------- /regression/games/strategy37.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/strategy37.sgf -------------------------------------------------------------------------------- /regression/games/strategy38.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/strategy38.sgf -------------------------------------------------------------------------------- /regression/games/strategy39.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/strategy39.sgf -------------------------------------------------------------------------------- /regression/games/strategy4.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/strategy4.sgf -------------------------------------------------------------------------------- /regression/games/strategy40.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/strategy40.sgf -------------------------------------------------------------------------------- /regression/games/strategy41.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/strategy41.sgf -------------------------------------------------------------------------------- /regression/games/strategy42.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/strategy42.sgf -------------------------------------------------------------------------------- /regression/games/strategy43.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/strategy43.sgf -------------------------------------------------------------------------------- /regression/games/strategy44.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/strategy44.sgf -------------------------------------------------------------------------------- /regression/games/strategy45.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/strategy45.sgf -------------------------------------------------------------------------------- /regression/games/strategy46.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/strategy46.sgf -------------------------------------------------------------------------------- /regression/games/strategy47.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/strategy47.sgf -------------------------------------------------------------------------------- /regression/games/strategy48.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/strategy48.sgf -------------------------------------------------------------------------------- /regression/games/strategy49.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/strategy49.sgf -------------------------------------------------------------------------------- /regression/games/strategy5.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/strategy5.sgf -------------------------------------------------------------------------------- /regression/games/strategy50.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/strategy50.sgf -------------------------------------------------------------------------------- /regression/games/strategy51.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/strategy51.sgf -------------------------------------------------------------------------------- /regression/games/strategy6.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/strategy6.sgf -------------------------------------------------------------------------------- /regression/games/strategy7.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/strategy7.sgf -------------------------------------------------------------------------------- /regression/games/strategy8.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/strategy8.sgf -------------------------------------------------------------------------------- /regression/games/strategy9.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/strategy9.sgf -------------------------------------------------------------------------------- /regression/games/tactics01.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/tactics01.sgf -------------------------------------------------------------------------------- /regression/games/tactics02.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/tactics02.sgf -------------------------------------------------------------------------------- /regression/games/tactics03.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/tactics03.sgf -------------------------------------------------------------------------------- /regression/games/tactics04.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/tactics04.sgf -------------------------------------------------------------------------------- /regression/games/tactics05.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/tactics05.sgf -------------------------------------------------------------------------------- /regression/games/tactics06.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/tactics06.sgf -------------------------------------------------------------------------------- /regression/games/tactics07.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/tactics07.sgf -------------------------------------------------------------------------------- /regression/games/tactics08.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/tactics08.sgf -------------------------------------------------------------------------------- /regression/games/test3lose.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/test3lose.sgf -------------------------------------------------------------------------------- /regression/games/test3win.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/test3win.sgf -------------------------------------------------------------------------------- /regression/games/test4lose.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/test4lose.sgf -------------------------------------------------------------------------------- /regression/games/test4win.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/test4win.sgf -------------------------------------------------------------------------------- /regression/games/test5lose.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/test5lose.sgf -------------------------------------------------------------------------------- /regression/games/test5win.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/test5win.sgf -------------------------------------------------------------------------------- /regression/games/tg-gg.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/tg-gg.sgf -------------------------------------------------------------------------------- /regression/games/tiny/2x2.sgf: -------------------------------------------------------------------------------- 1 | (;GM[1]FF[4]SZ[2] 2 | ;B[ab];W[aa];B[ba] 3 | ) 4 | -------------------------------------------------------------------------------- /regression/games/tiny/3x3a.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/tiny/3x3a.sgf -------------------------------------------------------------------------------- /regression/games/tiny/3x3b.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/tiny/3x3b.sgf -------------------------------------------------------------------------------- /regression/games/tiny/4x4a.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/tiny/4x4a.sgf -------------------------------------------------------------------------------- /regression/games/unfinished.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/unfinished.sgf -------------------------------------------------------------------------------- /regression/games/vaughn.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/vaughn.sgf -------------------------------------------------------------------------------- /regression/games/verybad.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/verybad.sgf -------------------------------------------------------------------------------- /regression/games/viking1.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/viking1.sgf -------------------------------------------------------------------------------- /regression/games/viking2.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/viking2.sgf -------------------------------------------------------------------------------- /regression/games/viking3.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/viking3.sgf -------------------------------------------------------------------------------- /regression/games/wormflaw.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/wormflaw.sgf -------------------------------------------------------------------------------- /regression/games/xxlin.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/xxlin.sgf -------------------------------------------------------------------------------- /regression/games/zheng.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/games/zheng.sgf -------------------------------------------------------------------------------- /regression/gifu03.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/gifu03.tst -------------------------------------------------------------------------------- /regression/gifu05.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/gifu05.tst -------------------------------------------------------------------------------- /regression/global.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/global.tst -------------------------------------------------------------------------------- /regression/golife.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/golife.tst -------------------------------------------------------------------------------- /regression/golois/bug96.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/golois/bug96.sgf -------------------------------------------------------------------------------- /regression/golois/knippel.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/golois/knippel.sgf -------------------------------------------------------------------------------- /regression/golois/ko990604.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/golois/ko990604.sgf -------------------------------------------------------------------------------- /regression/golois/test.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/golois/test.sgf -------------------------------------------------------------------------------- /regression/golois/web000103.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/golois/web000103.sgf -------------------------------------------------------------------------------- /regression/gunnar.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/gunnar.tst -------------------------------------------------------------------------------- /regression/handtalk.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/handtalk.tst -------------------------------------------------------------------------------- /regression/heikki.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/heikki.tst -------------------------------------------------------------------------------- /regression/joseki.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/joseki.tst -------------------------------------------------------------------------------- /regression/kgs.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/kgs.tst -------------------------------------------------------------------------------- /regression/lazarus.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/lazarus.tst -------------------------------------------------------------------------------- /regression/ld_owl.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/ld_owl.tst -------------------------------------------------------------------------------- /regression/manyfaces.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/manyfaces.tst -------------------------------------------------------------------------------- /regression/manyfaces1.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/manyfaces1.tst -------------------------------------------------------------------------------- /regression/nando.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/nando.tst -------------------------------------------------------------------------------- /regression/neurogo.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/neurogo.tst -------------------------------------------------------------------------------- /regression/newscore.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/newscore.tst -------------------------------------------------------------------------------- /regression/nicklas1.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/nicklas1.tst -------------------------------------------------------------------------------- /regression/nicklas2.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/nicklas2.tst -------------------------------------------------------------------------------- /regression/nicklas3.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/nicklas3.tst -------------------------------------------------------------------------------- /regression/nicklas4.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/nicklas4.tst -------------------------------------------------------------------------------- /regression/nicklas5.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/nicklas5.tst -------------------------------------------------------------------------------- /regression/niki.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/niki.tst -------------------------------------------------------------------------------- /regression/ninestones.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/ninestones.tst -------------------------------------------------------------------------------- /regression/nngs.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/nngs.tst -------------------------------------------------------------------------------- /regression/nngs1.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/nngs1.tst -------------------------------------------------------------------------------- /regression/nngs2.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/nngs2.tst -------------------------------------------------------------------------------- /regression/nngs3.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/nngs3.tst -------------------------------------------------------------------------------- /regression/nngs4.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/nngs4.tst -------------------------------------------------------------------------------- /regression/olympiad2004.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/olympiad2004.tst -------------------------------------------------------------------------------- /regression/optics.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/optics.tst -------------------------------------------------------------------------------- /regression/owl.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/owl.tst -------------------------------------------------------------------------------- /regression/owl1.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/owl1.tst -------------------------------------------------------------------------------- /regression/reading.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/reading.tst -------------------------------------------------------------------------------- /regression/regress.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/regress.awk -------------------------------------------------------------------------------- /regression/regress.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/regress.cmd -------------------------------------------------------------------------------- /regression/regress.pike: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/regress.pike -------------------------------------------------------------------------------- /regression/regress.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/regress.pl -------------------------------------------------------------------------------- /regression/regress.plx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/regress.plx -------------------------------------------------------------------------------- /regression/regress.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/regress.sh -------------------------------------------------------------------------------- /regression/rosebud.tst: -------------------------------------------------------------------------------- 1 | loadsgf games/rosebud.sgf 10 2 | 1 reg_genmove black 3 | #? [E16] 4 | -------------------------------------------------------------------------------- /regression/safety.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/safety.tst -------------------------------------------------------------------------------- /regression/score.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/score.tst -------------------------------------------------------------------------------- /regression/score2.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/score2.tst -------------------------------------------------------------------------------- /regression/seki.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/seki.tst -------------------------------------------------------------------------------- /regression/semeai.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/semeai.tst -------------------------------------------------------------------------------- /regression/strategy.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/strategy.tst -------------------------------------------------------------------------------- /regression/strategy2.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/strategy2.tst -------------------------------------------------------------------------------- /regression/strategy3.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/strategy3.tst -------------------------------------------------------------------------------- /regression/strategy4.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/strategy4.tst -------------------------------------------------------------------------------- /regression/strategy5.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/strategy5.tst -------------------------------------------------------------------------------- /regression/tactics.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/tactics.tst -------------------------------------------------------------------------------- /regression/tactics1.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/tactics1.tst -------------------------------------------------------------------------------- /regression/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/test.sh -------------------------------------------------------------------------------- /regression/thrash.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/thrash.tst -------------------------------------------------------------------------------- /regression/tiny.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/tiny.tst -------------------------------------------------------------------------------- /regression/trevor.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/trevor.tst -------------------------------------------------------------------------------- /regression/trevora.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/trevora.tst -------------------------------------------------------------------------------- /regression/trevorb.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/trevorb.tst -------------------------------------------------------------------------------- /regression/trevorc.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/trevorc.tst -------------------------------------------------------------------------------- /regression/trevord.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/trevord.tst -------------------------------------------------------------------------------- /regression/unconditional.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/unconditional.tst -------------------------------------------------------------------------------- /regression/vie.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/vie.tst -------------------------------------------------------------------------------- /regression/view.pike: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/view.pike -------------------------------------------------------------------------------- /regression/viking.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/regression/viking.tst -------------------------------------------------------------------------------- /sgf/.gitignore: -------------------------------------------------------------------------------- 1 | sgfgen 2 | -------------------------------------------------------------------------------- /sgf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/sgf/CMakeLists.txt -------------------------------------------------------------------------------- /sgf/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/sgf/Makefile.am -------------------------------------------------------------------------------- /sgf/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/sgf/Makefile.in -------------------------------------------------------------------------------- /sgf/sgf_extras.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/sgf/sgf_extras.def -------------------------------------------------------------------------------- /sgf/sgf_properties.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/sgf/sgf_properties.def -------------------------------------------------------------------------------- /sgf/sgf_properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/sgf/sgf_properties.h -------------------------------------------------------------------------------- /sgf/sgf_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/sgf/sgf_utils.c -------------------------------------------------------------------------------- /sgf/sgfgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/sgf/sgfgen.c -------------------------------------------------------------------------------- /sgf/sgfnode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/sgf/sgfnode.c -------------------------------------------------------------------------------- /sgf/sgftree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/sgf/sgftree.c -------------------------------------------------------------------------------- /sgf/sgftree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/sgf/sgftree.h -------------------------------------------------------------------------------- /stamp-h.in: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /utils/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/utils/CMakeLists.txt -------------------------------------------------------------------------------- /utils/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/utils/Makefile.am -------------------------------------------------------------------------------- /utils/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/utils/Makefile.in -------------------------------------------------------------------------------- /utils/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/utils/README -------------------------------------------------------------------------------- /utils/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/utils/getopt.c -------------------------------------------------------------------------------- /utils/getopt1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/utils/getopt1.c -------------------------------------------------------------------------------- /utils/gg-getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/utils/gg-getopt.h -------------------------------------------------------------------------------- /utils/gg_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/utils/gg_utils.c -------------------------------------------------------------------------------- /utils/gg_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/utils/gg_utils.h -------------------------------------------------------------------------------- /utils/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/utils/random.c -------------------------------------------------------------------------------- /utils/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/utils/random.h -------------------------------------------------------------------------------- /utils/winsocket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/utils/winsocket.c -------------------------------------------------------------------------------- /utils/winsocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runningskull/gnugo/HEAD/utils/winsocket.h --------------------------------------------------------------------------------