├── .gitignore ├── fuego ├── .DS_Store ├── ._.DS_Store ├── .gitignore ├── AUTHORS ├── COPYING ├── COPYING.LESSER ├── ChangeLog ├── INSTALL ├── Makefile ├── Makefile.am ├── Makefile.in ├── NEWS ├── README ├── README.md ├── TODO ├── aclocal.m4 ├── autom4te.cache │ ├── output.3 │ ├── output.5 │ ├── output.6 │ ├── output.7 │ ├── requests │ ├── traces.3 │ ├── traces.5 │ ├── traces.6 │ └── traces.7 ├── book │ ├── .DS_Store │ ├── ._.DS_Store │ ├── Makefile │ ├── Makefile.am │ ├── Makefile.in │ └── book.dat ├── compile ├── config.guess ├── config.h ├── config.h.in ├── config.log ├── config.status ├── config.sub ├── configure ├── configure.ac ├── cuda.mk ├── cudalt.py ├── depcomp ├── deque.h ├── doc │ ├── doxygen │ │ ├── fuegomain │ │ │ ├── doxygen.cfg │ │ │ └── pages │ │ │ │ └── mainpage.cpp │ │ ├── fuegotest │ │ │ ├── doxygen.cfg │ │ │ └── pages │ │ │ │ └── mainpage.cpp │ │ ├── general │ │ │ ├── doxygen.cfg │ │ │ └── pages │ │ │ │ ├── autotools.cpp │ │ │ │ ├── generalreleases.cpp │ │ │ │ ├── generalunittests.cpp │ │ │ │ ├── mainpage.cpp │ │ │ │ ├── mingw.cpp │ │ │ │ ├── modules.cpp │ │ │ │ ├── portability.cpp │ │ │ │ ├── style.cpp │ │ │ │ └── visualcplusplus.cpp │ │ ├── go │ │ │ ├── doxygen.cfg │ │ │ └── pages │ │ │ │ ├── goboardhash.cpp │ │ │ │ ├── goboardko.cpp │ │ │ │ ├── gonotes.cpp │ │ │ │ └── mainpage.cpp │ │ ├── gouct │ │ │ ├── doxygen.cfg │ │ │ └── pages │ │ │ │ └── mainpage.cpp │ │ ├── gtpengine │ │ │ ├── doxygen.cfg │ │ │ └── pages │ │ │ │ └── mainpage.cpp │ │ ├── pages │ │ │ ├── doxygen.css │ │ │ ├── footer.html │ │ │ ├── go.jpg │ │ │ ├── header.html │ │ │ ├── index.html │ │ │ ├── main.html │ │ │ └── toc.html │ │ ├── simpleplayers │ │ │ ├── doxygen.cfg │ │ │ └── pages │ │ │ │ └── mainpage.cpp │ │ └── smartgame │ │ │ ├── doxygen.cfg │ │ │ └── pages │ │ │ ├── mainpage.cpp │ │ │ └── sgnotes.cpp │ └── manual │ │ └── index.html ├── features │ ├── FeBasicFeatures.cpp │ ├── FeBasicFeatures.h │ ├── FeData.h │ ├── FeFeatureWeights.cpp │ ├── FeFeatureWeights.h │ ├── FeNestedPattern.cpp │ ├── FeNestedPattern.h │ ├── FePattern.cpp │ ├── FePattern.h │ ├── FePatternBase.cpp │ ├── FePatternBase.h │ ├── Makefile │ ├── Makefile.am │ ├── Makefile.in │ └── test │ │ ├── FeBasicFeaturesTest.cpp │ │ ├── FeFeatureWeightsTest.cpp │ │ ├── FeNestedPatternTest.cpp │ │ ├── FePatternBaseTest.cpp │ │ └── FePatternTest.cpp ├── fuegomain │ ├── FuegoMain.cpp │ ├── FuegoMainEngine.cpp │ ├── FuegoMainEngine.h │ ├── FuegoMainUtil.cpp │ ├── FuegoMainUtil.h │ ├── Makefile │ ├── Makefile.am │ ├── Makefile.in │ └── fuego ├── fuegotest │ ├── FuegoTestEngine.cpp │ ├── FuegoTestEngine.h │ ├── FuegoTestMain.cpp │ ├── FuegoTestUtil.cpp │ ├── FuegoTestUtil.h │ ├── Makefile │ ├── Makefile.am │ ├── Makefile.in │ └── fuego_test ├── go │ ├── GoAdditiveKnowledge.cpp │ ├── GoAdditiveKnowledge.h │ ├── GoAssertBoardRestored.h │ ├── GoAutoBook.cpp │ ├── GoAutoBook.h │ ├── GoBensonSolver.cpp │ ├── GoBensonSolver.h │ ├── GoBlock.cpp │ ├── GoBlock.h │ ├── GoBoard.cpp │ ├── GoBoard.h │ ├── GoBoardCheckPerformance.cpp │ ├── GoBoardCheckPerformance.h │ ├── GoBoardHistory.cpp │ ├── GoBoardHistory.h │ ├── GoBoardRestorer.cpp │ ├── GoBoardRestorer.h │ ├── GoBoardSynchronizer.cpp │ ├── GoBoardSynchronizer.h │ ├── GoBoardUpdater.cpp │ ├── GoBoardUpdater.h │ ├── GoBoardUtil.cpp │ ├── GoBoardUtil.h │ ├── GoBook.cpp │ ├── GoBook.h │ ├── GoChain.cpp │ ├── GoChain.h │ ├── GoEvalArray.h │ ├── GoEyeCount.cpp │ ├── GoEyeCount.h │ ├── GoEyeUtil.cpp │ ├── GoEyeUtil.h │ ├── GoGame.cpp │ ├── GoGame.h │ ├── GoGtpCommandUtil.cpp │ ├── GoGtpCommandUtil.h │ ├── GoGtpEngine.cpp │ ├── GoGtpEngine.h │ ├── GoGtpExtraCommands.cpp │ ├── GoGtpExtraCommands.h │ ├── GoInfluence.cpp │ ├── GoInfluence.h │ ├── GoInit.cpp │ ├── GoInit.h │ ├── GoKomi.cpp │ ├── GoKomi.h │ ├── GoLadder.cpp │ ├── GoLadder.h │ ├── GoModBoard.h │ ├── GoMotive.cpp │ ├── GoMotive.h │ ├── GoMoveExecutor.h │ ├── GoNodeUtil.cpp │ ├── GoNodeUtil.h │ ├── GoOpeningKnowledge.cpp │ ├── GoOpeningKnowledge.h │ ├── GoPattern12Point.cpp │ ├── GoPattern12Point.h │ ├── GoPattern3x3.cpp │ ├── GoPattern3x3.h │ ├── GoPatternBase.cpp │ ├── GoPatternBase.h │ ├── GoPlayer.cpp │ ├── GoPlayer.h │ ├── GoPlayerMove.cpp │ ├── GoPlayerMove.h │ ├── GoRegion.cpp │ ├── GoRegion.h │ ├── GoRegionBoard.cpp │ ├── GoRegionBoard.h │ ├── GoRegionUtil.cpp │ ├── GoRegionUtil.h │ ├── GoRules.cpp │ ├── GoRules.h │ ├── GoSafetyCommands.cpp │ ├── GoSafetyCommands.h │ ├── GoSafetySolver.cpp │ ├── GoSafetySolver.h │ ├── GoSafetyUtil.cpp │ ├── GoSafetyUtil.h │ ├── GoSearch.cpp │ ├── GoSearch.h │ ├── GoSetup.h │ ├── GoSetupUtil.cpp │ ├── GoSetupUtil.h │ ├── GoSortedMoves.h │ ├── GoStaticLadder.cpp │ ├── GoStaticLadder.h │ ├── GoStaticSafetySolver.cpp │ ├── GoStaticSafetySolver.h │ ├── GoTimeControl.cpp │ ├── GoTimeControl.h │ ├── GoUtil.cpp │ ├── GoUtil.h │ ├── Makefile │ ├── Makefile.am │ ├── Makefile.in │ └── test │ │ ├── GoBoardSynchronizerTest.cpp │ │ ├── GoBoardTest.cpp │ │ ├── GoBoardUpdaterTest.cpp │ │ ├── GoBoardUtilTest.cpp │ │ ├── GoBookTest.cpp │ │ ├── GoEvalArrayTest.cpp │ │ ├── GoEyeUtilTest.cpp │ │ ├── GoGameTest.cpp │ │ ├── GoGtpCommandUtilTest.cpp │ │ ├── GoGtpEngineTest.cpp │ │ ├── GoInfluenceTest.cpp │ │ ├── GoKomiTest.cpp │ │ ├── GoLadderTest.cpp │ │ ├── GoOpeningKnowledgeTest.cpp │ │ ├── GoPattern3x3Test.cpp │ │ ├── GoPatternBaseTest.cpp │ │ ├── GoRegionBoardTest.cpp │ │ ├── GoRegionTest.cpp │ │ ├── GoSetupUtilTest.cpp │ │ ├── GoTimeControlTest.cpp │ │ └── GoUtilTest.cpp ├── gouct │ ├── GoUctAdditiveKnowledgeFuego.cpp │ ├── GoUctAdditiveKnowledgeFuego.h │ ├── GoUctAdditiveKnowledgeGreenpeep.cpp │ ├── GoUctAdditiveKnowledgeGreenpeep.h │ ├── GoUctAdditiveKnowledgeMultiple.cpp │ ├── GoUctAdditiveKnowledgeMultiple.h │ ├── GoUctBoard.cpp │ ├── GoUctBoard.h │ ├── GoUctBookBuilder.h │ ├── GoUctBookBuilderCommands.h │ ├── GoUctCommands.cpp │ ├── GoUctCommands.h │ ├── GoUctDefaultMoveFilter.cpp │ ├── GoUctDefaultMoveFilter.h │ ├── GoUctDefaultPriorKnowledge.cpp │ ├── GoUctDefaultPriorKnowledge.h │ ├── GoUctEstimatorStat.cpp │ ├── GoUctEstimatorStat.h │ ├── GoUctFeatureCommands.cpp │ ├── GoUctFeatureCommands.h │ ├── GoUctFeatureKnowledge.cpp │ ├── GoUctFeatureKnowledge.h │ ├── GoUctFeatures.cpp │ ├── GoUctFeatures.h │ ├── GoUctGammaMoveGenerator.h │ ├── GoUctGlobalPatternData.h │ ├── GoUctGlobalSearch.cpp │ ├── GoUctGlobalSearch.h │ ├── GoUctGreenpeepPatterns19.h │ ├── GoUctGreenpeepPatterns9.h │ ├── GoUctKnowledge.cpp │ ├── GoUctKnowledge.h │ ├── GoUctKnowledgeFactory.cpp │ ├── GoUctKnowledgeFactory.h │ ├── GoUctLadderKnowledge.cpp │ ├── GoUctLadderKnowledge.h │ ├── GoUctLocalPatternData.h │ ├── GoUctMoveFilter.cpp │ ├── GoUctMoveFilter.h │ ├── GoUctObjectWithSearch.cpp │ ├── GoUctObjectWithSearch.h │ ├── GoUctPatternData.h │ ├── GoUctPatterns.cpp │ ├── GoUctPatterns.h │ ├── GoUctPlayer.h │ ├── GoUctPlayoutPolicy.cpp │ ├── GoUctPlayoutPolicy.h │ ├── GoUctPlayoutUtil.h │ ├── GoUctPureRandomGenerator.h │ ├── GoUctSearch.cpp │ ├── GoUctSearch.h │ ├── GoUctUtil.cpp │ ├── GoUctUtil.h │ ├── Makefile │ ├── Makefile.am │ ├── Makefile.in │ └── test │ │ ├── GoUctAdditiveKnowledgeMultipleTest.cpp │ │ ├── GoUctBoardTest.cpp │ │ ├── GoUctFeatureKnowledgeTest.cpp │ │ ├── GoUctFeaturesTest.cpp │ │ ├── GoUctKnowledgeTest.cpp │ │ ├── GoUctLadderKnowledgeTest.cpp │ │ ├── GoUctPatternsTest.cpp │ │ └── GoUctUtilTest.cpp ├── gtpengine │ ├── GtpEngine.cpp │ ├── GtpEngine.h │ ├── GtpInputStream.cpp │ ├── GtpInputStream.h │ ├── GtpOutputStream.cpp │ ├── GtpOutputStream.h │ ├── Makefile │ ├── Makefile.am │ ├── Makefile.in │ └── test │ │ └── GtpEngineTest.cpp ├── install-sh ├── libtool ├── ltmain.sh ├── m4 │ ├── ax_boost_base.m4 │ ├── ax_boost_date_time.m4 │ ├── ax_boost_filesystem.m4 │ ├── ax_boost_program_options.m4 │ ├── ax_boost_system.m4 │ ├── ax_boost_thread.m4 │ ├── ax_boost_unit_test_framework.m4 │ ├── ax_cflags_gcc_option.m4 │ ├── ax_cflags_warn_all.m4 │ ├── libtool.m4 │ ├── ltoptions.m4 │ ├── ltsugar.m4 │ ├── ltversion.m4 │ └── lt~obsolete.m4 ├── misctests │ ├── Makefile │ ├── Makefile.am │ ├── Makefile.in │ └── check_regression_files.sh ├── missing ├── out ├── out.txt ├── out2.txt ├── regression │ ├── 19.list │ ├── 19.suite │ ├── 9x9-blunder-endgame.tst │ ├── 9x9-opening.tst │ ├── Makefile │ ├── Makefile.am │ ├── Makefile.in │ ├── backfill.tst │ ├── basics.suite │ ├── basics_fuegotest.list │ ├── basics_uct.list │ ├── bent_four.tst │ ├── blunder_long_ladder_19.tst │ ├── blunder_long_ladder_19b.tst │ ├── blunder_play_near_dead_19.tst │ ├── blunder_rave.tst │ ├── blunder_selfatari_19.tst │ ├── blunder_short_ladder_19.tst │ ├── book_moves.tst │ ├── cleanup_japanese_rules.tst │ ├── deterministic_mode.list │ ├── deterministic_mode.suite │ ├── early_pass.tst │ ├── escape_capture_19.tst │ ├── eval_life_and_death.tst │ ├── eval_seki.tst │ ├── final_moves.tst │ ├── free_handicap.tst │ ├── joseki.tst │ ├── kgs-genmove_cleanup.tst │ ├── ladder.list │ ├── ladder.suite │ ├── ladder.tst │ ├── life_and_death_nakade.tst │ ├── life_and_death_nakade_eval_0.5.tst │ ├── performance-zen-9x9.tst │ ├── performance.list │ ├── performance.suite │ ├── performance_2014_UEC.tst │ ├── performance_JAIST2012.tst │ ├── performance_UEC2013.tst │ ├── performance_barcelona2010.tst │ ├── performance_eval_pro_9x9.tst │ ├── performance_icgc2008.tst │ ├── performance_middlegame_hard_9x9.tst │ ├── performance_pro_9x9.tst │ ├── play_deterministic_srand1.tst │ ├── play_deterministic_srand1_maxgames1M.tst │ ├── play_deterministic_srand2.tst │ ├── play_deterministic_srand3.tst │ ├── play_deterministic_srand4.tst │ ├── play_deterministic_srand5.tst │ ├── play_deterministic_srand6.tst │ ├── play_deterministic_srand7.tst │ ├── play_deterministic_srand8.tst │ ├── play_deterministic_srand9.tst │ ├── playout.list │ ├── playout.suite │ ├── playout_2_liberties.tst │ ├── playout_approach_move.tst │ ├── playout_atari_capture.tst │ ├── playout_nakade.tst │ ├── playout_rejected_moves.tst │ ├── playout_semeai.tst │ ├── repetition.tst │ ├── run.sh │ ├── scoring_final.tst │ ├── scoring_static.tst │ ├── semeai_big.tst │ ├── sgf │ │ ├── approach_move │ │ │ └── backfill.1.sgf │ │ ├── bent_four │ │ │ ├── bentfour1.sgf │ │ │ ├── bentfour1b.sgf │ │ │ └── bentfour2.sgf │ │ ├── book_test │ │ │ ├── book.0.sgf │ │ │ ├── book.1.sgf │ │ │ ├── book.10.sgf │ │ │ ├── book.11.sgf │ │ │ ├── book.12.sgf │ │ │ ├── book.2.sgf │ │ │ ├── book.3.sgf │ │ │ ├── book.4.sgf │ │ │ ├── book.5.sgf │ │ │ ├── book.6.sgf │ │ │ ├── book.7.sgf │ │ │ ├── book.8.sgf │ │ │ └── book.9.sgf │ │ ├── evaluation │ │ │ └── miseval.1.sgf │ │ ├── eyes │ │ │ ├── 1 │ │ │ │ └── nakade.1.sgf │ │ │ └── 1.5 │ │ │ │ ├── make-nakade.1.sgf │ │ │ │ └── make-nakade.2.sgf │ │ ├── final_moves │ │ │ ├── aja-example.sgf │ │ │ ├── pass-scoring.sgf │ │ │ ├── play-in-benson-safe.1.sgf │ │ │ ├── play-in-benson-safe.2.sgf │ │ │ └── yamato-example2.sgf │ │ ├── games │ │ │ ├── 2007 │ │ │ │ ├── 194557.variation.sgf │ │ │ │ ├── CGOS │ │ │ │ │ ├── 107433.sgf │ │ │ │ │ ├── 107439.sgf │ │ │ │ │ ├── 107457.sgf │ │ │ │ │ ├── 147759.sgf │ │ │ │ │ ├── 188524-variation-filling-bug.sgf │ │ │ │ │ ├── 189376.sgf │ │ │ │ │ ├── 189582.sgf │ │ │ │ │ ├── 189676.sgf │ │ │ │ │ ├── 189715.sgf │ │ │ │ │ ├── 189721.sgf │ │ │ │ │ ├── 189930-variation.sgf │ │ │ │ │ ├── 191282.sgf │ │ │ │ │ ├── 193838.sgf │ │ │ │ │ ├── 193893.sgf │ │ │ │ │ ├── 193991.sgf │ │ │ │ │ ├── 194557.sgf │ │ │ │ │ ├── 196322-variation.1.sgf │ │ │ │ │ ├── 196322-variation.2.sgf │ │ │ │ │ ├── 199550.sgf │ │ │ │ │ ├── 200058.sgf │ │ │ │ │ ├── 200109-variation.sgf │ │ │ │ │ ├── 200109.sgf │ │ │ │ │ ├── 200163-variation.sgf │ │ │ │ │ ├── 200163.sgf │ │ │ │ │ ├── 200190.sgf │ │ │ │ │ ├── 200368.sgf │ │ │ │ │ ├── 201395.sgf │ │ │ │ │ ├── 70767-test1.sgf │ │ │ │ │ ├── 70767-test2.sgf │ │ │ │ │ ├── 70767-test3.sgf │ │ │ │ │ ├── 71448.sgf │ │ │ │ │ ├── 71459.sgf │ │ │ │ │ ├── 71469-test.sgf │ │ │ │ │ └── 71814-test.sgf │ │ │ │ ├── bookwhite-4.sgf │ │ │ │ ├── move88-selfatari-eval-bug.sgf │ │ │ │ ├── seki-evaluation-problem.sgf │ │ │ │ ├── simulation-bug-107407.2.sgf │ │ │ │ ├── simulation-bug-107407.sgf │ │ │ │ └── uct160K-mogo10K-2.sgf │ │ │ ├── 2008 │ │ │ │ ├── CGOS │ │ │ │ │ ├── 248520.sgf │ │ │ │ │ ├── 248559.sgf │ │ │ │ │ ├── 249009.sgf │ │ │ │ │ ├── 251434-variation.sgf │ │ │ │ │ ├── 31410.sgf │ │ │ │ │ ├── 31423.sgf │ │ │ │ │ ├── 31425.sgf │ │ │ │ │ ├── 31431.sgf │ │ │ │ │ ├── 365007-variation.sgf │ │ │ │ │ ├── 365007.sgf │ │ │ │ │ ├── 386193-mogo-mannenko-bug.sgf │ │ │ │ │ ├── 386221.sgf │ │ │ │ │ ├── 397651.sgf │ │ │ │ │ ├── 397739.sgf │ │ │ │ │ ├── 397892.sgf │ │ │ │ │ ├── 397919-variation.sgf │ │ │ │ │ ├── 397919.sgf │ │ │ │ │ ├── 428168.sgf │ │ │ │ │ ├── 540532.sgf │ │ │ │ │ ├── 543088.sgf │ │ │ │ │ ├── 594998.sgf │ │ │ │ │ ├── 595022.sgf │ │ │ │ │ ├── 595027.sgf │ │ │ │ │ ├── 595042.sgf │ │ │ │ │ ├── 595097.sgf │ │ │ │ │ ├── 595267.sgf │ │ │ │ │ ├── 595283.sgf │ │ │ │ │ ├── 595383.sgf │ │ │ │ │ ├── Fuego-519-2c-20080920080149.sgf │ │ │ │ │ ├── Fuego-640-8c-20081109232055.sgf │ │ │ │ │ ├── Fuego-640-8c-20081112153751.sgf │ │ │ │ │ ├── Fuego-640-8c-20081113151939.sgf │ │ │ │ │ ├── Fuego-671-2c-20081125070320.sgf │ │ │ │ │ ├── Fuego-671-2c-20081125113323.sgf │ │ │ │ │ ├── seki-miseval-20081113151939.sgf │ │ │ │ │ └── uct20080117031720-variation.sgf │ │ │ │ ├── EGC2008 │ │ │ │ │ ├── 9 │ │ │ │ │ │ ├── CrazyEGC2-Fuego9.sgf │ │ │ │ │ │ ├── Fuego9-FirstGo9.sgf │ │ │ │ │ │ ├── Fuego9-LeelaBot.sgf │ │ │ │ │ │ ├── Fuego9-MonteGNU.sgf │ │ │ │ │ │ └── Fuego9-stv.sgf │ │ │ │ │ └── 19 │ │ │ │ │ │ ├── FirstGoBot-Fuego.sgf │ │ │ │ │ │ ├── Fuego-ManyFaces1.sgf │ │ │ │ │ │ ├── Fuego-wei2go.sgf │ │ │ │ │ │ ├── LeelaBot2-Fuego.sgf │ │ │ │ │ │ └── valkyria19-Fuego.sgf │ │ │ │ ├── ICGC2008 │ │ │ │ │ ├── 9 │ │ │ │ │ │ ├── 01-Fuego-Goboh.sgf │ │ │ │ │ │ ├── 01-Goboh-Fuego.sgf │ │ │ │ │ │ ├── 02-Fuego-Steenvreter.sgf │ │ │ │ │ │ ├── 02-Steenvreter-Fuego.sgf │ │ │ │ │ │ ├── 03-Fuego-GoIntellect.sgf │ │ │ │ │ │ ├── 03-GoIntellect-Fuego.sgf │ │ │ │ │ │ ├── 04-Fuego-ManyFaces.sgf │ │ │ │ │ │ ├── 04-ManyFaces-Fuego.sgf │ │ │ │ │ │ ├── 05-Fuego-Yogo.sgf │ │ │ │ │ │ ├── 05-Yogo-Fuego-variation-miseval.sgf │ │ │ │ │ │ ├── 05-Yogo-Fuego.sgf │ │ │ │ │ │ ├── 06-Fuego-Golois.sgf │ │ │ │ │ │ ├── 06-Golois-Fuego.sgf │ │ │ │ │ │ ├── 07-Fuego-MoGo.sgf │ │ │ │ │ │ ├── 07-Fuego-Mogo-variation-miseval.sgf │ │ │ │ │ │ ├── 07-MoGo-Fuego.sgf │ │ │ │ │ │ ├── 08-Fuego-Leela.sgf │ │ │ │ │ │ ├── 08-Leela-Fuego.sgf │ │ │ │ │ │ ├── 09-Aya-Fuego.sgf │ │ │ │ │ │ └── 09-Fuego-Aya.sgf │ │ │ │ │ └── 19 │ │ │ │ │ │ ├── Break-Fuego.sgf │ │ │ │ │ │ ├── FudoGo-Fuego.sgf │ │ │ │ │ │ ├── Fuego-Aya.sgf │ │ │ │ │ │ ├── Fuego-GoStar.sgf │ │ │ │ │ │ ├── Fuego-Leela.sgf │ │ │ │ │ │ ├── Fuego-Mogo.sgf │ │ │ │ │ │ ├── Fuego-NineHeadBird.sgf │ │ │ │ │ │ ├── Fuego-Yogo.sgf │ │ │ │ │ │ ├── Katsunari-Fuego.sgf │ │ │ │ │ │ ├── ManyFaces-Fuego.sgf │ │ │ │ │ │ ├── Steenvreter-Fuego.sgf │ │ │ │ │ │ └── StoneFighter-Fuego.sgf │ │ │ │ ├── KGS │ │ │ │ │ ├── 7 │ │ │ │ │ │ ├── 25 │ │ │ │ │ │ │ └── PaperTiger-Fuego.sgf │ │ │ │ │ │ ├── 26 │ │ │ │ │ │ │ ├── MatroidX-4.sgf │ │ │ │ │ │ │ ├── MatroidX-5.sgf │ │ │ │ │ │ │ └── Newou-Fuego9.sgf │ │ │ │ │ │ ├── 27 │ │ │ │ │ │ │ ├── Yuusen-Fuego9-3.sgf │ │ │ │ │ │ │ └── hahaha6k-Fuego9.sgf │ │ │ │ │ │ └── 28 │ │ │ │ │ │ │ └── dege-Fuego9.sgf │ │ │ │ │ ├── 8 │ │ │ │ │ │ ├── 17 │ │ │ │ │ │ │ ├── AyaMC-Fuego9-variation.sgf │ │ │ │ │ │ │ └── AyaMC-Fuego9.sgf │ │ │ │ │ │ └── 21 │ │ │ │ │ │ │ └── Hellyta-Fuego.sgf │ │ │ │ │ └── 9 │ │ │ │ │ │ └── 16 │ │ │ │ │ │ └── Fuego-masaician.sgf │ │ │ │ ├── blunder-move-25.sgf │ │ │ │ ├── gnu-uct3K-11.sgf │ │ │ │ ├── gnu-uct3K-17.sgf │ │ │ │ ├── gnu-uct3K-28.sgf │ │ │ │ ├── gnu-uct3K-30.sgf │ │ │ │ ├── ko-bug.sgf │ │ │ │ ├── leela-seki-variation.sgf │ │ │ │ ├── mogo-ko+ld-problem-variation.sgf │ │ │ │ ├── mogo-ko+ld-problem.sgf │ │ │ │ └── seki-miseval.sgf │ │ │ ├── 2009 │ │ │ │ ├── CGOS │ │ │ │ │ ├── 702960.sgf │ │ │ │ │ └── 703006.sgf │ │ │ │ ├── MM-Fuego20090124-variation.sgf │ │ │ │ └── May │ │ │ │ │ └── Fuego9-Fuego-27.sgf │ │ │ ├── 2010 │ │ │ │ ├── CGOS │ │ │ │ │ ├── 1005347.sgf │ │ │ │ │ ├── 1072936-variation.sgf │ │ │ │ │ ├── 1072936-variation2.sgf │ │ │ │ │ └── 1072936.sgf │ │ │ │ ├── FuegoGB-Barcelona │ │ │ │ │ ├── Chou4p-FuegoGB.sgf │ │ │ │ │ ├── Chou9p-FuegoGB.sgf │ │ │ │ │ ├── FuegoGB-Chou4p.sgf │ │ │ │ │ ├── FuegoGB-Chou9p.sgf │ │ │ │ │ ├── Tsai-FuegoGB.sgf │ │ │ │ │ └── Yen-FuegoGB.sgf │ │ │ │ └── LittleGolem │ │ │ │ │ ├── 1173624.sgf │ │ │ │ │ └── 1177582.sgf │ │ │ ├── 2011 │ │ │ │ ├── CGOS │ │ │ │ │ └── Fuego-Amigo-loss-bug.sgf │ │ │ │ ├── Fuego-1.1-vim-5-variation.sgf │ │ │ │ ├── KGS-74-August2011-9x9-fast │ │ │ │ │ ├── pachi2-Fuego-2.sgf │ │ │ │ │ └── pachi2-Fuego.sgf │ │ │ │ ├── KGS-January │ │ │ │ │ └── PueGo-pachi2.sgf │ │ │ │ ├── KGS │ │ │ │ │ ├── CzechBot-Zen19S-semeai.sgf │ │ │ │ │ ├── CzechBot-Zen19S.sgf │ │ │ │ │ ├── FuegoBot2-laska0-3.sgf │ │ │ │ │ └── FuegoBot2-laska0-tsumego.sgf │ │ │ │ ├── LittleGolem │ │ │ │ │ └── 1226980.sgf │ │ │ │ └── UEC │ │ │ │ │ ├── Aya-Fuego.sgf │ │ │ │ │ ├── Fuego-Erica.sgf │ │ │ │ │ ├── Fuego-GOGATAKI.sgf │ │ │ │ │ ├── Fuego-LeafQuest.sgf │ │ │ │ │ ├── Fuego-Pachi.sgf │ │ │ │ │ ├── Fuego-tombo.sgf │ │ │ │ │ ├── PerStone-Fuego.sgf │ │ │ │ │ ├── Rock-Fuego.sgf │ │ │ │ │ ├── katsunari-Fuego.sgf │ │ │ │ │ ├── nomitan-Fuego.sgf │ │ │ │ │ └── shikousakugo-Fuego.sgf │ │ │ ├── 2012 │ │ │ │ ├── 2012-11-25-zen-vs-pro │ │ │ │ │ ├── 1.continuation.sgf │ │ │ │ │ ├── 1.sgf │ │ │ │ │ ├── 2.sgf │ │ │ │ │ ├── 3.sgf │ │ │ │ │ ├── 4.sgf │ │ │ │ │ ├── 5.sgf │ │ │ │ │ └── 6.sgf │ │ │ │ ├── Blubbel-AyaBot4-2.sgf │ │ │ │ ├── JAIST-Cup │ │ │ │ │ └── Fuego13-Zen19S.sgf │ │ │ │ └── KGS │ │ │ │ │ ├── Charles60-FuegoBot-variation.sgf │ │ │ │ │ └── Charles60-FuegoBot.sgf │ │ │ ├── 2013 │ │ │ │ ├── FX175-29.sgf │ │ │ │ ├── Gnugo-Fuego.sgf │ │ │ │ ├── KGS │ │ │ │ │ └── AyaMC-nomiBot.sgf │ │ │ │ ├── UEC │ │ │ │ │ ├── 2013_uec_day2_round1_perstone.sgf │ │ │ │ │ ├── 2013_uec_day2_round2_zen.sgf │ │ │ │ │ ├── 2013_uec_day2_round3_manyfaces.sgf │ │ │ │ │ ├── 2013_uec_day2_round4_nomitan.sgf │ │ │ │ │ ├── 2013_uec_round1_aya.sgf │ │ │ │ │ ├── 2013_uec_round2_aozameta.sgf │ │ │ │ │ ├── 2013_uec_round3_ballade.sgf │ │ │ │ │ ├── 2013_uec_round4_shikousakugo.sgf │ │ │ │ │ ├── 2013_uec_round5_zen.sgf │ │ │ │ │ ├── 2013_uec_round6_crazystone.sgf │ │ │ │ │ └── 2013_uec_round7_izanami.sgf │ │ │ │ ├── gnugoJ-fuegoJ-48.sgf │ │ │ │ └── gnugoJ-fuegoJ-90.sgf │ │ │ ├── 2014 │ │ │ │ ├── 2014-10-22-Fuego-sacrifice2-bug.sgf │ │ │ │ ├── 2014-KGS │ │ │ │ │ └── Fuego9-Orego12-2.sgf │ │ │ │ ├── 2014-UEC-Cup │ │ │ │ │ ├── aya-fuego-friendly-2014.sgf │ │ │ │ │ ├── crazystone-fuego.sgf │ │ │ │ │ ├── fuego-aya-friendly-2014.sgf │ │ │ │ │ ├── fuego-caren.sgf │ │ │ │ │ ├── fuego-mayoigo.sgf │ │ │ │ │ ├── fuego-nomitan.sgf │ │ │ │ │ ├── katsunari-fuego.sgf │ │ │ │ │ └── milago-fuego.sgf │ │ │ │ └── Fuego-GnuGo-2014-10-26.sgf │ │ │ └── pro-9x9 │ │ │ │ ├── mz1.sgf │ │ │ │ ├── mz2.sgf │ │ │ │ ├── zhou9a.sgf │ │ │ │ └── zhou9c.sgf │ │ ├── gnugo-games │ │ │ ├── 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 │ │ │ ├── seki_nakade1.sgf │ │ │ └── seki_nakade2.sgf │ │ ├── ko │ │ │ └── remove-ko-threat.1.sgf │ │ ├── ladder │ │ │ ├── adjacent-blocks.sgf │ │ │ ├── bad-ladder-fuego-erica-1.sgf │ │ │ ├── bad-ladder.1.sgf │ │ │ ├── bad-ladder.2.sgf │ │ │ ├── fuego-erica-2-ladder-variation.sgf │ │ │ ├── ladder-blunder.sgf │ │ │ ├── ladder-breaker-2.sgf │ │ │ ├── ladder-breaker.sgf │ │ │ ├── ladder-edge-breaker.sgf │ │ │ ├── ladder-edge.sgf │ │ │ ├── ladder-no-breaker.sgf │ │ │ ├── ladder-parallel.sgf │ │ │ ├── ladder-rootfilter.sgf │ │ │ ├── ladder-triple-ko.sgf │ │ │ ├── long-ladder-captured.sgf │ │ │ └── long-ladder.sgf │ │ ├── lifeanddeath │ │ │ ├── 4x4nakade.sgf │ │ │ ├── eye-tricky.sgf │ │ │ ├── good-selfatari.1.sgf │ │ │ ├── good-selfatari.2.sgf │ │ │ ├── nakade-3pts-1.sgf │ │ │ ├── nakade-4pts.1.sgf │ │ │ ├── nakade-4pts.2.sgf │ │ │ ├── nakade-4pts.3.sgf │ │ │ ├── nakade-4pts.4.sgf │ │ │ ├── nakade-4pts.5.sgf │ │ │ ├── nakade-4pts.6.sgf │ │ │ ├── nakade-5plus-seki.sgf │ │ │ ├── nakade-5pts-1.sgf │ │ │ ├── nakade-5pts-10.sgf │ │ │ ├── nakade-5pts-2.sgf │ │ │ ├── nakade-5pts-3.sgf │ │ │ ├── nakade-5pts-4.sgf │ │ │ ├── nakade-5pts-5.sgf │ │ │ ├── nakade-5pts-6.sgf │ │ │ ├── nakade-5pts-6b.sgf │ │ │ ├── nakade-5pts-7.sgf │ │ │ ├── nakade-5pts-8.sgf │ │ │ ├── nakade-5pts-9.sgf │ │ │ ├── nakade-6pts-1.sgf │ │ │ ├── nakade-6pts-2.sgf │ │ │ ├── nakade-6pts-3.sgf │ │ │ ├── nakade-6pts-4.sgf │ │ │ ├── nakade-6pts-4b.sgf │ │ │ ├── nakade-6pts-corner-1.sgf │ │ │ ├── nakade-6pts-realgame.2.sgf │ │ │ ├── nakade-6pts-realgame.sgf │ │ │ ├── nakade-corner-1.sgf │ │ │ ├── no-nakade-6pts-1.sgf │ │ │ ├── seki-nakade-3pts.2.sgf │ │ │ ├── seki-nakade-3pts.sgf │ │ │ ├── seki-nakade-5pts.2.sgf │ │ │ └── seki-nakade-5pts.sgf │ │ ├── nakade │ │ │ ├── nakade.1.sgf │ │ │ ├── nakade.2.sgf │ │ │ ├── nakade.3.sgf │ │ │ ├── nakade.3b.sgf │ │ │ ├── nakade.4.sgf │ │ │ ├── nakade.4b.sgf │ │ │ ├── nakade.4c.sgf │ │ │ ├── nakade.5.sgf │ │ │ ├── nakade.6.sgf │ │ │ ├── nakade.6b.sgf │ │ │ ├── nakade.6c.sgf │ │ │ ├── nakade.6d.sgf │ │ │ ├── nakade.7.sgf │ │ │ ├── nakade.8.sgf │ │ │ └── nakade.9.sgf │ │ ├── pass │ │ │ └── tromp-taylor-pass.sgf │ │ ├── playout │ │ │ ├── playout_atari_defense_1.sgf │ │ │ ├── playout_atari_defense_2.sgf │ │ │ ├── playout_atari_defense_3.sgf │ │ │ ├── playout_capture_1.sgf │ │ │ ├── playout_capture_no_selfatari.1.sgf │ │ │ ├── playout_capture_no_selfatari.2.sgf │ │ │ ├── playout_nakade.1.sgf │ │ │ ├── playout_nakade.2.sgf │ │ │ ├── playout_nakade.3.sgf │ │ │ ├── playout_nakade.4.sgf │ │ │ ├── playout_nakade_approach.sgf │ │ │ ├── playout_two_liberties_semeai.1.sgf │ │ │ ├── playout_two_liberties_semeai.2.sgf │ │ │ ├── playout_two_liberties_semeai.3.sgf │ │ │ ├── playout_two_liberties_semeai.4.sgf │ │ │ ├── playout_two_liberties_semeai.5.sgf │ │ │ └── playout_two_liberties_throw_in.sgf │ │ ├── policy-rejected-moves │ │ │ └── rejected.1.sgf │ │ ├── rave-problems │ │ │ ├── 823341-variation-rave-bug.sgf │ │ │ └── results-105.sgf │ │ ├── repetition │ │ │ ├── long-life.sgf │ │ │ ├── positional-superko.sgf │ │ │ ├── repetition-1.sgf │ │ │ ├── simpleko.sgf │ │ │ └── triple-ko.sgf │ │ ├── safetytest-whole-board │ │ │ ├── CZD_05.sgf │ │ │ ├── CZD_16.sgf │ │ │ ├── CZD_17.sgf │ │ │ ├── CZD_20.sgf │ │ │ ├── CZD_21.sgf │ │ │ ├── CZD_24.sgf │ │ │ ├── CZD_26.sgf │ │ │ ├── CZD_28.sgf │ │ │ ├── CZD_29.sgf │ │ │ ├── CZD_31.sgf │ │ │ ├── CZD_33.sgf │ │ │ ├── CZD_34.sgf │ │ │ ├── CZD_35.sgf │ │ │ ├── CZD_36.sgf │ │ │ ├── CZD_39.sgf │ │ │ ├── CZD_41.sgf │ │ │ ├── CZD_46.sgf │ │ │ ├── CZD_55.sgf │ │ │ ├── CZD_58.sgf │ │ │ ├── CZD_64.sgf │ │ │ ├── CZD_66.sgf │ │ │ ├── CZD_67.sgf │ │ │ ├── CZD_68.sgf │ │ │ ├── CZD_69.sgf │ │ │ ├── CZD_71.sgf │ │ │ ├── CZD_72.sgf │ │ │ ├── CZD_79.sgf │ │ │ ├── k01.sgf │ │ │ ├── k02.sgf │ │ │ ├── k03.sgf │ │ │ ├── k04.sgf │ │ │ ├── k05.sgf │ │ │ ├── k06.sgf │ │ │ ├── k07.sgf │ │ │ ├── k08.sgf │ │ │ ├── k09.sgf │ │ │ ├── k10.sgf │ │ │ ├── k11.sgf │ │ │ ├── k12.sgf │ │ │ ├── k13.sgf │ │ │ ├── k14.sgf │ │ │ ├── k15.sgf │ │ │ ├── k16.sgf │ │ │ ├── k17.sgf │ │ │ ├── k18.sgf │ │ │ ├── k19.sgf │ │ │ ├── k20.sgf │ │ │ ├── k21.sgf │ │ │ ├── k22.sgf │ │ │ ├── k23.sgf │ │ │ ├── k24.sgf │ │ │ ├── k25.sgf │ │ │ ├── k26.sgf │ │ │ ├── k27.sgf │ │ │ ├── k28.sgf │ │ │ ├── k29.sgf │ │ │ ├── k30.sgf │ │ │ ├── k31.sgf │ │ │ ├── k32.sgf │ │ │ ├── k33.sgf │ │ │ ├── k34.sgf │ │ │ ├── k35.sgf │ │ │ ├── q1.sgf │ │ │ ├── q10.sgf │ │ │ ├── q11.sgf │ │ │ ├── q12.sgf │ │ │ ├── q13.sgf │ │ │ ├── q14.sgf │ │ │ ├── q15.sgf │ │ │ ├── q16.sgf │ │ │ ├── q17.sgf │ │ │ ├── q18.sgf │ │ │ ├── q19.sgf │ │ │ ├── q2.sgf │ │ │ ├── q20.sgf │ │ │ ├── q21.sgf │ │ │ ├── q22.sgf │ │ │ ├── q23.sgf │ │ │ ├── q24.sgf │ │ │ ├── q25.sgf │ │ │ ├── q26.sgf │ │ │ ├── q27.sgf │ │ │ ├── q28.sgf │ │ │ ├── q29.sgf │ │ │ ├── q3.sgf │ │ │ ├── q30.sgf │ │ │ ├── q31.sgf │ │ │ ├── q4.sgf │ │ │ ├── q5.sgf │ │ │ ├── q6.sgf │ │ │ ├── q7.sgf │ │ │ ├── q8.sgf │ │ │ ├── q9.sgf │ │ │ ├── static-safety.1.sgf │ │ │ └── static-safety.2.sgf │ │ ├── safetytest │ │ │ ├── benson-safe-separate-healthy.1.sgf │ │ │ ├── benson-safe-separate-healthy.2.sgf │ │ │ ├── benson_safe1.sgf │ │ │ ├── benson_safe2.sgf │ │ │ ├── benson_safe3.sgf │ │ │ ├── benson_safe4.sgf │ │ │ ├── benson_safe5.sgf │ │ │ ├── benson_unsafe.sgf │ │ │ ├── connect-to-safe.1.sgf │ │ │ ├── eyetest001.sgf │ │ │ ├── nakade-2x3.sgf │ │ │ ├── nosafe.3.sgf │ │ │ ├── nosafe.4.sgf │ │ │ ├── static-safety-bug.2.sgf │ │ │ ├── static-safety.1.sgf │ │ │ ├── static-safety.10.sgf │ │ │ ├── static-safety.11.sgf │ │ │ ├── static-safety.2.sgf │ │ │ ├── static-safety.3.sgf │ │ │ ├── static-safety.4.sgf │ │ │ ├── static-safety.5.sgf │ │ │ ├── static-safety.6.sgf │ │ │ ├── static-safety.7.sgf │ │ │ ├── static-safety.8.sgf │ │ │ └── static-safety.9.sgf │ │ ├── scoring │ │ │ ├── FX175-29-variation.sgf │ │ │ └── FX178-27.sgf │ │ ├── seki │ │ │ ├── case1.sgf │ │ │ ├── case10.sgf │ │ │ ├── case2.sgf │ │ │ ├── case3.sgf │ │ │ ├── case4.sgf │ │ │ ├── case5.sgf │ │ │ ├── case6.sgf │ │ │ ├── case7.sgf │ │ │ ├── case8.sgf │ │ │ ├── case9.sgf │ │ │ ├── safety-solver-seki-problem.sgf │ │ │ ├── seki-eye-vs-eye.1.sgf │ │ │ ├── seki-eye-vs-no-eye.1.sgf │ │ │ ├── sheppard-seki-2.sgf │ │ │ ├── sheppard-seki-3.sgf │ │ │ ├── sheppard-seki.sgf │ │ │ └── static-safety-seki-bug.sgf │ │ ├── semeai-exact │ │ │ ├── FS1-solution-white.sgf │ │ │ ├── FS2-solution-black.sgf │ │ │ ├── FS2-solution-white.sgf │ │ │ ├── semeai-1eye-1shared-0ext.sgf │ │ │ ├── semeai-1eye-1shared-1+3ext.sgf │ │ │ ├── semeai-2pteye-1shared-0+3ext.sgf │ │ │ ├── semeai-plain-2L.sgf │ │ │ ├── semeai-plain-3L.sgf │ │ │ ├── semeai-plain-4L.sgf │ │ │ ├── semeai-plain-5L.sgf │ │ │ └── semeai-plain-6L.sgf │ │ ├── semeai │ │ │ ├── Fuego9-Fuego-27-semeai.1.sgf │ │ │ ├── Fuego9-Fuego-27-semeai.2.sgf │ │ │ ├── Fuego9-Fuego-27-semeai.3.sgf │ │ │ ├── Fuego9-Fuego-27-semeai.4.sgf │ │ │ ├── Fuego9-Fuego-27-semeai.5.sgf │ │ │ ├── filllib-test.1.sgf │ │ │ ├── playout_semeai.1.sgf │ │ │ ├── playout_semeai.2.sgf │ │ │ ├── playout_semeai.3.sgf │ │ │ └── semeai-eval.1.sgf │ │ ├── simpleplayers │ │ │ ├── simpleplayers.1.sgf │ │ │ ├── simpleplayers.2.sgf │ │ │ ├── simpleplayers.3.sgf │ │ │ └── test-pass.sgf │ │ ├── static-winner │ │ │ └── static-winner.1.sgf │ │ ├── two-safe-groups │ │ │ ├── case1-1.sgf │ │ │ ├── case1-2.sgf │ │ │ ├── case1.sgf │ │ │ ├── case10-1.sgf │ │ │ ├── case10-2.sgf │ │ │ ├── case10.sgf │ │ │ ├── case11-1.sgf │ │ │ ├── case11-2.sgf │ │ │ ├── case11.sgf │ │ │ ├── case12-1.sgf │ │ │ ├── case12-2.sgf │ │ │ ├── case12.sgf │ │ │ ├── case13-1.sgf │ │ │ ├── case13-2.sgf │ │ │ ├── case13.sgf │ │ │ ├── case14-1.sgf │ │ │ ├── case14-2.sgf │ │ │ ├── case14.sgf │ │ │ ├── case15-1.sgf │ │ │ ├── case15-2.sgf │ │ │ ├── case15.sgf │ │ │ ├── case2-1.sgf │ │ │ ├── case2-2.sgf │ │ │ ├── case2.sgf │ │ │ ├── case3-1.sgf │ │ │ ├── case3-2.sgf │ │ │ ├── case3.sgf │ │ │ ├── case4-1.sgf │ │ │ ├── case4-2.sgf │ │ │ ├── case4.sgf │ │ │ ├── case5-1.sgf │ │ │ ├── case5-2.sgf │ │ │ ├── case5.sgf │ │ │ ├── case6-1.sgf │ │ │ ├── case6-2.sgf │ │ │ ├── case6.sgf │ │ │ ├── case7-1.sgf │ │ │ ├── case7-2.sgf │ │ │ ├── case7.sgf │ │ │ ├── case8-1.sgf │ │ │ ├── case8-2.sgf │ │ │ ├── case8.sgf │ │ │ ├── case9-1.sgf │ │ │ ├── case9-2.sgf │ │ │ └── case9.sgf │ │ └── uct │ │ │ ├── README │ │ │ ├── capture.1.sgf │ │ │ ├── mogo-slides-2006.sgf │ │ │ ├── mogo-tr6062-fig4-right.sgf │ │ │ ├── patterns-cut2.sgf │ │ │ ├── patterns-edge1.sgf │ │ │ ├── patterns-edge4.sgf │ │ │ └── vital-1.sgf │ ├── simpleplayers.tst │ ├── static_safety.list │ ├── static_safety.suite │ ├── static_safety_basics.tst │ ├── static_safety_from_semeai.tst │ ├── static_safety_fullboard.tst │ ├── static_safety_fullboard_benson.tst │ ├── static_safety_seki.tst │ ├── static_winner.tst │ ├── tactics_19.tst │ ├── two_safe_groups_0.3.tst │ ├── two_safe_groups_0.4.tst │ ├── two_safe_groups_0.5.tst │ ├── two_safe_groups_one_solid_0.3.tst │ ├── two_safe_groups_one_solid_0.4.tst │ ├── two_safe_groups_one_solid_0.5.tst │ ├── uct.list │ ├── uct.suite │ ├── uct_basics.tst │ ├── uct_blunder.tst │ ├── uct_blunder_19.tst │ ├── uct_book.tst │ ├── uct_connection.tst │ ├── uct_direction_of_play.tst │ ├── uct_endgame.tst │ ├── uct_evaluation.tst │ ├── uct_fight_on.tst │ ├── uct_ko.tst │ ├── uct_life_and_death.tst │ ├── uct_move.tst │ ├── uct_pass_basics.tst │ ├── uct_rootfilter.tst │ ├── uct_seki.tst │ ├── uct_selfatari.tst │ ├── uct_semeai.tst │ ├── uct_semeai_blunder.tst │ └── urgent.tst ├── setup-build.sh ├── simpleplayers │ ├── CudaGo.cu │ ├── CudaGo.h │ ├── MCTSPlayer.cpp │ ├── MCTSPlayer.h │ ├── Makefile │ ├── Makefile.am │ ├── SpAveragePlayer.cpp │ ├── SpAveragePlayer.h │ ├── SpCapturePlayer.cpp │ ├── SpCapturePlayer.h │ ├── SpDumbTacticalPlayer.cpp │ ├── SpDumbTacticalPlayer.h │ ├── SpGreedyPlayer.cpp │ ├── SpGreedyPlayer.h │ ├── SpInfluencePlayer.cpp │ ├── SpInfluencePlayer.h │ ├── SpLadderPlayer.cpp │ ├── SpLadderPlayer.h │ ├── SpLibertyPlayer.cpp │ ├── SpLibertyPlayer.h │ ├── SpMaxEyePlayer.cpp │ ├── SpMaxEyePlayer.h │ ├── SpMinLibPlayer.cpp │ ├── SpMinLibPlayer.h │ ├── SpMoveGenerator.cpp │ ├── SpMoveGenerator.h │ ├── SpRandomPlayer.cpp │ ├── SpRandomPlayer.h │ ├── SpSafePlayer.cpp │ ├── SpSafePlayer.h │ ├── SpSimplePlayer.cpp │ ├── SpSimplePlayer.h │ ├── SpUtil.cpp │ ├── SpUtil.h │ ├── deque.h │ ├── mcts.h │ ├── mcts_cpu │ │ ├── MCTSPlayer.cpp │ │ ├── MCTSPlayer.h │ │ ├── mcts.cpp │ │ └── mcts.h │ ├── mcts_cuda.cu │ └── point.h ├── smartgame │ ├── Makefile │ ├── Makefile.am │ ├── Makefile.in │ ├── SgAdditiveKnowledge.h │ ├── SgArray.h │ ├── SgArrayList.h │ ├── SgBWArray.h │ ├── SgBWSet.h │ ├── SgBlackWhite.h │ ├── SgBoardColor.h │ ├── SgBoardConst.cpp │ ├── SgBoardConst.h │ ├── SgBookBuilder.cpp │ ├── SgBookBuilder.h │ ├── SgCmdLineOpt.cpp │ ├── SgCmdLineOpt.h │ ├── SgConnCompIterator.cpp │ ├── SgConnCompIterator.h │ ├── SgDebug.cpp │ ├── SgDebug.h │ ├── SgDfpnSearch.cpp │ ├── SgDfpnSearch.h │ ├── SgEBWArray.h │ ├── SgEvaluatedMoves.cpp │ ├── SgEvaluatedMoves.h │ ├── SgException.cpp │ ├── SgException.h │ ├── SgFastLog.cpp │ ├── SgFastLog.h │ ├── SgGameReader.cpp │ ├── SgGameReader.h │ ├── SgGameWriter.cpp │ ├── SgGameWriter.h │ ├── SgGtpClient.cpp │ ├── SgGtpClient.h │ ├── SgGtpCommands.cpp │ ├── SgGtpCommands.h │ ├── SgGtpUtil.cpp │ ├── SgGtpUtil.h │ ├── SgHash.h │ ├── SgHashTable.h │ ├── SgIncrementalStack.cpp │ ├── SgIncrementalStack.h │ ├── SgInit.cpp │ ├── SgInit.h │ ├── SgMarker.h │ ├── SgMath.h │ ├── SgMemCheck.cpp │ ├── SgMemCheck.h │ ├── SgMiaiMap.cpp │ ├── SgMiaiMap.h │ ├── SgMiaiStrategy.cpp │ ├── SgMiaiStrategy.h │ ├── SgMove.h │ ├── SgMpiSynchronizer.cpp │ ├── SgMpiSynchronizer.h │ ├── SgNbIterator.cpp │ ├── SgNbIterator.h │ ├── SgNode.cpp │ ├── SgNode.h │ ├── SgNodeUtil.cpp │ ├── SgNodeUtil.h │ ├── SgPlatform.cpp │ ├── SgPlatform.h │ ├── SgPoint.cpp │ ├── SgPoint.h │ ├── SgPointArray.h │ ├── SgPointIterator.h │ ├── SgPointSet.cpp │ ├── SgPointSet.h │ ├── SgPointSetUtil.cpp │ ├── SgPointSetUtil.h │ ├── SgProbCut.cpp │ ├── SgProbCut.h │ ├── SgProcess.cpp │ ├── SgProcess.h │ ├── SgProp.cpp │ ├── SgProp.h │ ├── SgRandom.cpp │ ├── SgRandom.h │ ├── SgRect.cpp │ ├── SgRect.h │ ├── SgRestorer.h │ ├── SgSearch.cpp │ ├── SgSearch.h │ ├── SgSearchControl.cpp │ ├── SgSearchControl.h │ ├── SgSearchStatistics.cpp │ ├── SgSearchStatistics.h │ ├── SgSearchTracer.cpp │ ├── SgSearchTracer.h │ ├── SgSearchValue.cpp │ ├── SgSearchValue.h │ ├── SgSortedArray.h │ ├── SgSortedMoves.h │ ├── SgStack.h │ ├── SgStatistics.h │ ├── SgStatisticsVlt.h │ ├── SgStrategy.cpp │ ├── SgStrategy.h │ ├── SgStringUtil.cpp │ ├── SgStringUtil.h │ ├── SgSystem.cpp │ ├── SgSystem.h │ ├── SgThreadedWorker.h │ ├── SgTime.cpp │ ├── SgTime.h │ ├── SgTimeControl.cpp │ ├── SgTimeControl.h │ ├── SgTimeRecord.cpp │ ├── SgTimeRecord.h │ ├── SgTimeSettings.cpp │ ├── SgTimeSettings.h │ ├── SgTimer.h │ ├── SgUctSearch.cpp │ ├── SgUctSearch.h │ ├── SgUctTree.cpp │ ├── SgUctTree.h │ ├── SgUctTreeUtil.cpp │ ├── SgUctTreeUtil.h │ ├── SgUctValue.h │ ├── SgUtil.cpp │ ├── SgUtil.h │ ├── SgVector.h │ ├── SgVectorUtil.cpp │ ├── SgVectorUtil.h │ ├── SgWrite.cpp │ ├── SgWrite.h │ └── test │ │ ├── SgArrayListTest.cpp │ │ ├── SgArrayTest.cpp │ │ ├── SgBWArrayTest.cpp │ │ ├── SgBWSetTest.cpp │ │ ├── SgBlackWhiteTest.cpp │ │ ├── SgBoardColorTest.cpp │ │ ├── SgBoardConstTest.cpp │ │ ├── SgCmdLineOptTest.cpp │ │ ├── SgConnCompIteratorTest.cpp │ │ ├── SgEBWArrayTest.cpp │ │ ├── SgEvaluatedMovesTest.cpp │ │ ├── SgFastLogTest.cpp │ │ ├── SgGameReaderTest.cpp │ │ ├── SgGtpUtilTest.cpp │ │ ├── SgHashTest.cpp │ │ ├── SgMarkerTest.cpp │ │ ├── SgMathTest.cpp │ │ ├── SgMiaiMapTest.cpp │ │ ├── SgMiaiStrategyTest.cpp │ │ ├── SgNbIteratorTest.cpp │ │ ├── SgNodeTest.cpp │ │ ├── SgNodeUtilTest.cpp │ │ ├── SgPointArrayTest.cpp │ │ ├── SgPointSetTest.cpp │ │ ├── SgPointTest.cpp │ │ ├── SgPropTest.cpp │ │ ├── SgRandomTest.cpp │ │ ├── SgRectTest.cpp │ │ ├── SgRestorerTest.cpp │ │ ├── SgSearchTest.cpp │ │ ├── SgSortedArrayTest.cpp │ │ ├── SgSortedMovesTest.cpp │ │ ├── SgStackTest.cpp │ │ ├── SgStatisticsTest.cpp │ │ ├── SgStringUtilTest.cpp │ │ ├── SgSystemTest.cpp │ │ ├── SgTimeControlTest.cpp │ │ ├── SgTimeSettingsTest.cpp │ │ ├── SgUctSearchTest.cpp │ │ ├── SgUctTreeTest.cpp │ │ ├── SgUctTreeUtilTest.cpp │ │ ├── SgUctValueTest.cpp │ │ ├── SgUtilTest.cpp │ │ ├── SgVectorTest.cpp │ │ ├── SgVectorUtilTest.cpp │ │ └── SgWriteTest.cpp ├── stamp-h1 ├── test-driver ├── tools │ ├── cgos │ │ ├── README │ │ ├── cgos3-19.patched.tcl │ │ ├── cgos3-19.tcl │ │ ├── cgos3.patched.tcl │ │ ├── cgos3.tcl │ │ ├── config-average.gtp │ │ ├── play-13-1c.sh │ │ ├── play-19-2c.sh │ │ ├── play-19-4c.sh │ │ ├── play-19-8c.sh │ │ ├── play-9-100.sh │ │ ├── play-9-1000.sh │ │ ├── play-9-10000.sh │ │ ├── play-9-100k.sh │ │ ├── play-9-1c-nobook.sh │ │ ├── play-9-1c.sh │ │ ├── play-9-2c.sh │ │ ├── play-9-4c.sh │ │ ├── play-9-8c.sh │ │ ├── play-average-19.sh │ │ ├── play-average-9.sh │ │ ├── stop-19-2c.sh │ │ ├── stop-19-8c.sh │ │ ├── stop-9-2c.sh │ │ ├── stop-9-8c.sh │ │ ├── stop-average-19.sh │ │ └── stop-average-9.sh │ ├── cronjob │ │ └── fuego_daily.sh │ ├── features │ │ ├── README │ │ ├── makeFeData.sh │ │ └── train │ │ │ ├── distribute.sh │ │ │ └── train.sh │ ├── kgs │ │ ├── play-13-8c.sh │ │ ├── play-19-4t.sh │ │ ├── play-19-8c.sh │ │ ├── play-9-2c.sh │ │ ├── tournament-19-8c.sh │ │ └── tournament-9-8c.sh │ └── misc │ │ ├── fuego-speed-test.pl │ │ └── gogui_commands │ │ ├── one_thread_ignore_clock.gtp │ │ ├── sample_100_playouts.gtp │ │ ├── set_features_only_player.gtp │ │ ├── set_japanese_rules.gtp │ │ ├── set_knowledge_only_player.gtp │ │ ├── set_no_MCTS_tree.gtp │ │ ├── show_gfx_counts.gtp │ │ └── show_gfx_territory.gtp ├── unittestmain │ ├── Makefile │ ├── Makefile.am │ ├── Makefile.in │ └── UnitTestMain.cpp ├── website │ ├── competitions.html │ ├── copy.sh │ ├── exhibition-games.html │ ├── favicon.ico │ ├── fuego-programs.html │ ├── fuego-screenshot-thumb.jpg │ ├── fuego-screenshot.html │ ├── fuego-screenshot.jpg │ ├── index.html │ ├── mac-install.html │ └── publications.html └── windows │ └── installer │ ├── .svnignore │ ├── License.txt │ ├── README-installer.txt │ ├── Readme.txt │ ├── gogui.ico │ └── install.nsis └── mcts ├── .gitignore ├── CudaGo.cu ├── CudaGo.h ├── Makefile ├── deque.h ├── main.cpp ├── mcts.h ├── mcts_cuda.cu ├── point.h └── sub.job /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/.gitignore -------------------------------------------------------------------------------- /fuego/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/.DS_Store -------------------------------------------------------------------------------- /fuego/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/._.DS_Store -------------------------------------------------------------------------------- /fuego/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/.gitignore -------------------------------------------------------------------------------- /fuego/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/AUTHORS -------------------------------------------------------------------------------- /fuego/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/COPYING -------------------------------------------------------------------------------- /fuego/COPYING.LESSER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/COPYING.LESSER -------------------------------------------------------------------------------- /fuego/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fuego/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/INSTALL -------------------------------------------------------------------------------- /fuego/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/Makefile -------------------------------------------------------------------------------- /fuego/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/Makefile.am -------------------------------------------------------------------------------- /fuego/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/Makefile.in -------------------------------------------------------------------------------- /fuego/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/NEWS -------------------------------------------------------------------------------- /fuego/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/README -------------------------------------------------------------------------------- /fuego/README.md: -------------------------------------------------------------------------------- 1 | # Parallelized MCTS for Go 2 | ## 15618 final project 3 | -------------------------------------------------------------------------------- /fuego/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/TODO -------------------------------------------------------------------------------- /fuego/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/aclocal.m4 -------------------------------------------------------------------------------- /fuego/autom4te.cache/output.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/autom4te.cache/output.3 -------------------------------------------------------------------------------- /fuego/autom4te.cache/output.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/autom4te.cache/output.5 -------------------------------------------------------------------------------- /fuego/autom4te.cache/output.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/autom4te.cache/output.6 -------------------------------------------------------------------------------- /fuego/autom4te.cache/output.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/autom4te.cache/output.7 -------------------------------------------------------------------------------- /fuego/autom4te.cache/requests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/autom4te.cache/requests -------------------------------------------------------------------------------- /fuego/autom4te.cache/traces.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/autom4te.cache/traces.3 -------------------------------------------------------------------------------- /fuego/autom4te.cache/traces.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/autom4te.cache/traces.5 -------------------------------------------------------------------------------- /fuego/autom4te.cache/traces.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/autom4te.cache/traces.6 -------------------------------------------------------------------------------- /fuego/autom4te.cache/traces.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/autom4te.cache/traces.7 -------------------------------------------------------------------------------- /fuego/book/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/book/.DS_Store -------------------------------------------------------------------------------- /fuego/book/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/book/._.DS_Store -------------------------------------------------------------------------------- /fuego/book/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/book/Makefile -------------------------------------------------------------------------------- /fuego/book/Makefile.am: -------------------------------------------------------------------------------- 1 | dist_pkgdata_DATA = book.dat 2 | -------------------------------------------------------------------------------- /fuego/book/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/book/Makefile.in -------------------------------------------------------------------------------- /fuego/book/book.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/book/book.dat -------------------------------------------------------------------------------- /fuego/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/compile -------------------------------------------------------------------------------- /fuego/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/config.guess -------------------------------------------------------------------------------- /fuego/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/config.h -------------------------------------------------------------------------------- /fuego/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/config.h.in -------------------------------------------------------------------------------- /fuego/config.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/config.log -------------------------------------------------------------------------------- /fuego/config.status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/config.status -------------------------------------------------------------------------------- /fuego/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/config.sub -------------------------------------------------------------------------------- /fuego/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/configure -------------------------------------------------------------------------------- /fuego/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/configure.ac -------------------------------------------------------------------------------- /fuego/cuda.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/cuda.mk -------------------------------------------------------------------------------- /fuego/cudalt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/cudalt.py -------------------------------------------------------------------------------- /fuego/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/depcomp -------------------------------------------------------------------------------- /fuego/deque.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fuego/doc/doxygen/fuegomain/doxygen.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/doc/doxygen/fuegomain/doxygen.cfg -------------------------------------------------------------------------------- /fuego/doc/doxygen/fuegomain/pages/mainpage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/doc/doxygen/fuegomain/pages/mainpage.cpp -------------------------------------------------------------------------------- /fuego/doc/doxygen/fuegotest/doxygen.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/doc/doxygen/fuegotest/doxygen.cfg -------------------------------------------------------------------------------- /fuego/doc/doxygen/fuegotest/pages/mainpage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/doc/doxygen/fuegotest/pages/mainpage.cpp -------------------------------------------------------------------------------- /fuego/doc/doxygen/general/doxygen.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/doc/doxygen/general/doxygen.cfg -------------------------------------------------------------------------------- /fuego/doc/doxygen/general/pages/autotools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/doc/doxygen/general/pages/autotools.cpp -------------------------------------------------------------------------------- /fuego/doc/doxygen/general/pages/mainpage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/doc/doxygen/general/pages/mainpage.cpp -------------------------------------------------------------------------------- /fuego/doc/doxygen/general/pages/mingw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/doc/doxygen/general/pages/mingw.cpp -------------------------------------------------------------------------------- /fuego/doc/doxygen/general/pages/modules.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/doc/doxygen/general/pages/modules.cpp -------------------------------------------------------------------------------- /fuego/doc/doxygen/general/pages/portability.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/doc/doxygen/general/pages/portability.cpp -------------------------------------------------------------------------------- /fuego/doc/doxygen/general/pages/style.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/doc/doxygen/general/pages/style.cpp -------------------------------------------------------------------------------- /fuego/doc/doxygen/go/doxygen.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/doc/doxygen/go/doxygen.cfg -------------------------------------------------------------------------------- /fuego/doc/doxygen/go/pages/goboardhash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/doc/doxygen/go/pages/goboardhash.cpp -------------------------------------------------------------------------------- /fuego/doc/doxygen/go/pages/goboardko.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/doc/doxygen/go/pages/goboardko.cpp -------------------------------------------------------------------------------- /fuego/doc/doxygen/go/pages/gonotes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/doc/doxygen/go/pages/gonotes.cpp -------------------------------------------------------------------------------- /fuego/doc/doxygen/go/pages/mainpage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/doc/doxygen/go/pages/mainpage.cpp -------------------------------------------------------------------------------- /fuego/doc/doxygen/gouct/doxygen.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/doc/doxygen/gouct/doxygen.cfg -------------------------------------------------------------------------------- /fuego/doc/doxygen/gouct/pages/mainpage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/doc/doxygen/gouct/pages/mainpage.cpp -------------------------------------------------------------------------------- /fuego/doc/doxygen/gtpengine/doxygen.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/doc/doxygen/gtpengine/doxygen.cfg -------------------------------------------------------------------------------- /fuego/doc/doxygen/gtpengine/pages/mainpage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/doc/doxygen/gtpengine/pages/mainpage.cpp -------------------------------------------------------------------------------- /fuego/doc/doxygen/pages/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/doc/doxygen/pages/doxygen.css -------------------------------------------------------------------------------- /fuego/doc/doxygen/pages/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/doc/doxygen/pages/footer.html -------------------------------------------------------------------------------- /fuego/doc/doxygen/pages/go.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/doc/doxygen/pages/go.jpg -------------------------------------------------------------------------------- /fuego/doc/doxygen/pages/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/doc/doxygen/pages/header.html -------------------------------------------------------------------------------- /fuego/doc/doxygen/pages/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/doc/doxygen/pages/index.html -------------------------------------------------------------------------------- /fuego/doc/doxygen/pages/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/doc/doxygen/pages/main.html -------------------------------------------------------------------------------- /fuego/doc/doxygen/pages/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/doc/doxygen/pages/toc.html -------------------------------------------------------------------------------- /fuego/doc/doxygen/simpleplayers/doxygen.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/doc/doxygen/simpleplayers/doxygen.cfg -------------------------------------------------------------------------------- /fuego/doc/doxygen/smartgame/doxygen.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/doc/doxygen/smartgame/doxygen.cfg -------------------------------------------------------------------------------- /fuego/doc/doxygen/smartgame/pages/mainpage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/doc/doxygen/smartgame/pages/mainpage.cpp -------------------------------------------------------------------------------- /fuego/doc/doxygen/smartgame/pages/sgnotes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/doc/doxygen/smartgame/pages/sgnotes.cpp -------------------------------------------------------------------------------- /fuego/doc/manual/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/doc/manual/index.html -------------------------------------------------------------------------------- /fuego/features/FeBasicFeatures.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/features/FeBasicFeatures.cpp -------------------------------------------------------------------------------- /fuego/features/FeBasicFeatures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/features/FeBasicFeatures.h -------------------------------------------------------------------------------- /fuego/features/FeData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/features/FeData.h -------------------------------------------------------------------------------- /fuego/features/FeFeatureWeights.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/features/FeFeatureWeights.cpp -------------------------------------------------------------------------------- /fuego/features/FeFeatureWeights.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/features/FeFeatureWeights.h -------------------------------------------------------------------------------- /fuego/features/FeNestedPattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/features/FeNestedPattern.cpp -------------------------------------------------------------------------------- /fuego/features/FeNestedPattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/features/FeNestedPattern.h -------------------------------------------------------------------------------- /fuego/features/FePattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/features/FePattern.cpp -------------------------------------------------------------------------------- /fuego/features/FePattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/features/FePattern.h -------------------------------------------------------------------------------- /fuego/features/FePatternBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/features/FePatternBase.cpp -------------------------------------------------------------------------------- /fuego/features/FePatternBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/features/FePatternBase.h -------------------------------------------------------------------------------- /fuego/features/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/features/Makefile -------------------------------------------------------------------------------- /fuego/features/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/features/Makefile.am -------------------------------------------------------------------------------- /fuego/features/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/features/Makefile.in -------------------------------------------------------------------------------- /fuego/features/test/FeBasicFeaturesTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/features/test/FeBasicFeaturesTest.cpp -------------------------------------------------------------------------------- /fuego/features/test/FeFeatureWeightsTest.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fuego/features/test/FeNestedPatternTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/features/test/FeNestedPatternTest.cpp -------------------------------------------------------------------------------- /fuego/features/test/FePatternBaseTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/features/test/FePatternBaseTest.cpp -------------------------------------------------------------------------------- /fuego/features/test/FePatternTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/features/test/FePatternTest.cpp -------------------------------------------------------------------------------- /fuego/fuegomain/FuegoMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/fuegomain/FuegoMain.cpp -------------------------------------------------------------------------------- /fuego/fuegomain/FuegoMainEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/fuegomain/FuegoMainEngine.cpp -------------------------------------------------------------------------------- /fuego/fuegomain/FuegoMainEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/fuegomain/FuegoMainEngine.h -------------------------------------------------------------------------------- /fuego/fuegomain/FuegoMainUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/fuegomain/FuegoMainUtil.cpp -------------------------------------------------------------------------------- /fuego/fuegomain/FuegoMainUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/fuegomain/FuegoMainUtil.h -------------------------------------------------------------------------------- /fuego/fuegomain/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/fuegomain/Makefile -------------------------------------------------------------------------------- /fuego/fuegomain/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/fuegomain/Makefile.am -------------------------------------------------------------------------------- /fuego/fuegomain/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/fuegomain/Makefile.in -------------------------------------------------------------------------------- /fuego/fuegomain/fuego: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/fuegomain/fuego -------------------------------------------------------------------------------- /fuego/fuegotest/FuegoTestEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/fuegotest/FuegoTestEngine.cpp -------------------------------------------------------------------------------- /fuego/fuegotest/FuegoTestEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/fuegotest/FuegoTestEngine.h -------------------------------------------------------------------------------- /fuego/fuegotest/FuegoTestMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/fuegotest/FuegoTestMain.cpp -------------------------------------------------------------------------------- /fuego/fuegotest/FuegoTestUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/fuegotest/FuegoTestUtil.cpp -------------------------------------------------------------------------------- /fuego/fuegotest/FuegoTestUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/fuegotest/FuegoTestUtil.h -------------------------------------------------------------------------------- /fuego/fuegotest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/fuegotest/Makefile -------------------------------------------------------------------------------- /fuego/fuegotest/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/fuegotest/Makefile.am -------------------------------------------------------------------------------- /fuego/fuegotest/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/fuegotest/Makefile.in -------------------------------------------------------------------------------- /fuego/fuegotest/fuego_test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/fuegotest/fuego_test -------------------------------------------------------------------------------- /fuego/go/GoAdditiveKnowledge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoAdditiveKnowledge.cpp -------------------------------------------------------------------------------- /fuego/go/GoAdditiveKnowledge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoAdditiveKnowledge.h -------------------------------------------------------------------------------- /fuego/go/GoAssertBoardRestored.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoAssertBoardRestored.h -------------------------------------------------------------------------------- /fuego/go/GoAutoBook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoAutoBook.cpp -------------------------------------------------------------------------------- /fuego/go/GoAutoBook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoAutoBook.h -------------------------------------------------------------------------------- /fuego/go/GoBensonSolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoBensonSolver.cpp -------------------------------------------------------------------------------- /fuego/go/GoBensonSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoBensonSolver.h -------------------------------------------------------------------------------- /fuego/go/GoBlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoBlock.cpp -------------------------------------------------------------------------------- /fuego/go/GoBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoBlock.h -------------------------------------------------------------------------------- /fuego/go/GoBoard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoBoard.cpp -------------------------------------------------------------------------------- /fuego/go/GoBoard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoBoard.h -------------------------------------------------------------------------------- /fuego/go/GoBoardCheckPerformance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoBoardCheckPerformance.cpp -------------------------------------------------------------------------------- /fuego/go/GoBoardCheckPerformance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoBoardCheckPerformance.h -------------------------------------------------------------------------------- /fuego/go/GoBoardHistory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoBoardHistory.cpp -------------------------------------------------------------------------------- /fuego/go/GoBoardHistory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoBoardHistory.h -------------------------------------------------------------------------------- /fuego/go/GoBoardRestorer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoBoardRestorer.cpp -------------------------------------------------------------------------------- /fuego/go/GoBoardRestorer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoBoardRestorer.h -------------------------------------------------------------------------------- /fuego/go/GoBoardSynchronizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoBoardSynchronizer.cpp -------------------------------------------------------------------------------- /fuego/go/GoBoardSynchronizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoBoardSynchronizer.h -------------------------------------------------------------------------------- /fuego/go/GoBoardUpdater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoBoardUpdater.cpp -------------------------------------------------------------------------------- /fuego/go/GoBoardUpdater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoBoardUpdater.h -------------------------------------------------------------------------------- /fuego/go/GoBoardUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoBoardUtil.cpp -------------------------------------------------------------------------------- /fuego/go/GoBoardUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoBoardUtil.h -------------------------------------------------------------------------------- /fuego/go/GoBook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoBook.cpp -------------------------------------------------------------------------------- /fuego/go/GoBook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoBook.h -------------------------------------------------------------------------------- /fuego/go/GoChain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoChain.cpp -------------------------------------------------------------------------------- /fuego/go/GoChain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoChain.h -------------------------------------------------------------------------------- /fuego/go/GoEvalArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoEvalArray.h -------------------------------------------------------------------------------- /fuego/go/GoEyeCount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoEyeCount.cpp -------------------------------------------------------------------------------- /fuego/go/GoEyeCount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoEyeCount.h -------------------------------------------------------------------------------- /fuego/go/GoEyeUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoEyeUtil.cpp -------------------------------------------------------------------------------- /fuego/go/GoEyeUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoEyeUtil.h -------------------------------------------------------------------------------- /fuego/go/GoGame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoGame.cpp -------------------------------------------------------------------------------- /fuego/go/GoGame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoGame.h -------------------------------------------------------------------------------- /fuego/go/GoGtpCommandUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoGtpCommandUtil.cpp -------------------------------------------------------------------------------- /fuego/go/GoGtpCommandUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoGtpCommandUtil.h -------------------------------------------------------------------------------- /fuego/go/GoGtpEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoGtpEngine.cpp -------------------------------------------------------------------------------- /fuego/go/GoGtpEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoGtpEngine.h -------------------------------------------------------------------------------- /fuego/go/GoGtpExtraCommands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoGtpExtraCommands.cpp -------------------------------------------------------------------------------- /fuego/go/GoGtpExtraCommands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoGtpExtraCommands.h -------------------------------------------------------------------------------- /fuego/go/GoInfluence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoInfluence.cpp -------------------------------------------------------------------------------- /fuego/go/GoInfluence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoInfluence.h -------------------------------------------------------------------------------- /fuego/go/GoInit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoInit.cpp -------------------------------------------------------------------------------- /fuego/go/GoInit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoInit.h -------------------------------------------------------------------------------- /fuego/go/GoKomi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoKomi.cpp -------------------------------------------------------------------------------- /fuego/go/GoKomi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoKomi.h -------------------------------------------------------------------------------- /fuego/go/GoLadder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoLadder.cpp -------------------------------------------------------------------------------- /fuego/go/GoLadder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoLadder.h -------------------------------------------------------------------------------- /fuego/go/GoModBoard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoModBoard.h -------------------------------------------------------------------------------- /fuego/go/GoMotive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoMotive.cpp -------------------------------------------------------------------------------- /fuego/go/GoMotive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoMotive.h -------------------------------------------------------------------------------- /fuego/go/GoMoveExecutor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoMoveExecutor.h -------------------------------------------------------------------------------- /fuego/go/GoNodeUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoNodeUtil.cpp -------------------------------------------------------------------------------- /fuego/go/GoNodeUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoNodeUtil.h -------------------------------------------------------------------------------- /fuego/go/GoOpeningKnowledge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoOpeningKnowledge.cpp -------------------------------------------------------------------------------- /fuego/go/GoOpeningKnowledge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoOpeningKnowledge.h -------------------------------------------------------------------------------- /fuego/go/GoPattern12Point.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoPattern12Point.cpp -------------------------------------------------------------------------------- /fuego/go/GoPattern12Point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoPattern12Point.h -------------------------------------------------------------------------------- /fuego/go/GoPattern3x3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoPattern3x3.cpp -------------------------------------------------------------------------------- /fuego/go/GoPattern3x3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoPattern3x3.h -------------------------------------------------------------------------------- /fuego/go/GoPatternBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoPatternBase.cpp -------------------------------------------------------------------------------- /fuego/go/GoPatternBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoPatternBase.h -------------------------------------------------------------------------------- /fuego/go/GoPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoPlayer.cpp -------------------------------------------------------------------------------- /fuego/go/GoPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoPlayer.h -------------------------------------------------------------------------------- /fuego/go/GoPlayerMove.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoPlayerMove.cpp -------------------------------------------------------------------------------- /fuego/go/GoPlayerMove.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoPlayerMove.h -------------------------------------------------------------------------------- /fuego/go/GoRegion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoRegion.cpp -------------------------------------------------------------------------------- /fuego/go/GoRegion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoRegion.h -------------------------------------------------------------------------------- /fuego/go/GoRegionBoard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoRegionBoard.cpp -------------------------------------------------------------------------------- /fuego/go/GoRegionBoard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoRegionBoard.h -------------------------------------------------------------------------------- /fuego/go/GoRegionUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoRegionUtil.cpp -------------------------------------------------------------------------------- /fuego/go/GoRegionUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoRegionUtil.h -------------------------------------------------------------------------------- /fuego/go/GoRules.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoRules.cpp -------------------------------------------------------------------------------- /fuego/go/GoRules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoRules.h -------------------------------------------------------------------------------- /fuego/go/GoSafetyCommands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoSafetyCommands.cpp -------------------------------------------------------------------------------- /fuego/go/GoSafetyCommands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoSafetyCommands.h -------------------------------------------------------------------------------- /fuego/go/GoSafetySolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoSafetySolver.cpp -------------------------------------------------------------------------------- /fuego/go/GoSafetySolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoSafetySolver.h -------------------------------------------------------------------------------- /fuego/go/GoSafetyUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoSafetyUtil.cpp -------------------------------------------------------------------------------- /fuego/go/GoSafetyUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoSafetyUtil.h -------------------------------------------------------------------------------- /fuego/go/GoSearch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoSearch.cpp -------------------------------------------------------------------------------- /fuego/go/GoSearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoSearch.h -------------------------------------------------------------------------------- /fuego/go/GoSetup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoSetup.h -------------------------------------------------------------------------------- /fuego/go/GoSetupUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoSetupUtil.cpp -------------------------------------------------------------------------------- /fuego/go/GoSetupUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoSetupUtil.h -------------------------------------------------------------------------------- /fuego/go/GoSortedMoves.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoSortedMoves.h -------------------------------------------------------------------------------- /fuego/go/GoStaticLadder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoStaticLadder.cpp -------------------------------------------------------------------------------- /fuego/go/GoStaticLadder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoStaticLadder.h -------------------------------------------------------------------------------- /fuego/go/GoStaticSafetySolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoStaticSafetySolver.cpp -------------------------------------------------------------------------------- /fuego/go/GoStaticSafetySolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoStaticSafetySolver.h -------------------------------------------------------------------------------- /fuego/go/GoTimeControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoTimeControl.cpp -------------------------------------------------------------------------------- /fuego/go/GoTimeControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoTimeControl.h -------------------------------------------------------------------------------- /fuego/go/GoUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoUtil.cpp -------------------------------------------------------------------------------- /fuego/go/GoUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/GoUtil.h -------------------------------------------------------------------------------- /fuego/go/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/Makefile -------------------------------------------------------------------------------- /fuego/go/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/Makefile.am -------------------------------------------------------------------------------- /fuego/go/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/Makefile.in -------------------------------------------------------------------------------- /fuego/go/test/GoBoardSynchronizerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/test/GoBoardSynchronizerTest.cpp -------------------------------------------------------------------------------- /fuego/go/test/GoBoardTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/test/GoBoardTest.cpp -------------------------------------------------------------------------------- /fuego/go/test/GoBoardUpdaterTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/test/GoBoardUpdaterTest.cpp -------------------------------------------------------------------------------- /fuego/go/test/GoBoardUtilTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/test/GoBoardUtilTest.cpp -------------------------------------------------------------------------------- /fuego/go/test/GoBookTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/test/GoBookTest.cpp -------------------------------------------------------------------------------- /fuego/go/test/GoEvalArrayTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/test/GoEvalArrayTest.cpp -------------------------------------------------------------------------------- /fuego/go/test/GoEyeUtilTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/test/GoEyeUtilTest.cpp -------------------------------------------------------------------------------- /fuego/go/test/GoGameTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/test/GoGameTest.cpp -------------------------------------------------------------------------------- /fuego/go/test/GoGtpCommandUtilTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/test/GoGtpCommandUtilTest.cpp -------------------------------------------------------------------------------- /fuego/go/test/GoGtpEngineTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/test/GoGtpEngineTest.cpp -------------------------------------------------------------------------------- /fuego/go/test/GoInfluenceTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/test/GoInfluenceTest.cpp -------------------------------------------------------------------------------- /fuego/go/test/GoKomiTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/test/GoKomiTest.cpp -------------------------------------------------------------------------------- /fuego/go/test/GoLadderTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/test/GoLadderTest.cpp -------------------------------------------------------------------------------- /fuego/go/test/GoOpeningKnowledgeTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/test/GoOpeningKnowledgeTest.cpp -------------------------------------------------------------------------------- /fuego/go/test/GoPattern3x3Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/test/GoPattern3x3Test.cpp -------------------------------------------------------------------------------- /fuego/go/test/GoPatternBaseTest.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fuego/go/test/GoRegionBoardTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/test/GoRegionBoardTest.cpp -------------------------------------------------------------------------------- /fuego/go/test/GoRegionTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/test/GoRegionTest.cpp -------------------------------------------------------------------------------- /fuego/go/test/GoSetupUtilTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/test/GoSetupUtilTest.cpp -------------------------------------------------------------------------------- /fuego/go/test/GoTimeControlTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/test/GoTimeControlTest.cpp -------------------------------------------------------------------------------- /fuego/go/test/GoUtilTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/go/test/GoUtilTest.cpp -------------------------------------------------------------------------------- /fuego/gouct/GoUctAdditiveKnowledgeFuego.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/gouct/GoUctAdditiveKnowledgeFuego.cpp -------------------------------------------------------------------------------- /fuego/gouct/GoUctAdditiveKnowledgeFuego.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/gouct/GoUctAdditiveKnowledgeFuego.h -------------------------------------------------------------------------------- /fuego/gouct/GoUctAdditiveKnowledgeGreenpeep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/gouct/GoUctAdditiveKnowledgeGreenpeep.cpp -------------------------------------------------------------------------------- /fuego/gouct/GoUctAdditiveKnowledgeGreenpeep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/gouct/GoUctAdditiveKnowledgeGreenpeep.h -------------------------------------------------------------------------------- /fuego/gouct/GoUctAdditiveKnowledgeMultiple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/gouct/GoUctAdditiveKnowledgeMultiple.cpp -------------------------------------------------------------------------------- /fuego/gouct/GoUctAdditiveKnowledgeMultiple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/gouct/GoUctAdditiveKnowledgeMultiple.h -------------------------------------------------------------------------------- /fuego/gouct/GoUctBoard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/gouct/GoUctBoard.cpp -------------------------------------------------------------------------------- /fuego/gouct/GoUctBoard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/gouct/GoUctBoard.h -------------------------------------------------------------------------------- /fuego/gouct/GoUctBookBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/gouct/GoUctBookBuilder.h -------------------------------------------------------------------------------- /fuego/gouct/GoUctBookBuilderCommands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/gouct/GoUctBookBuilderCommands.h -------------------------------------------------------------------------------- /fuego/gouct/GoUctCommands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/gouct/GoUctCommands.cpp -------------------------------------------------------------------------------- /fuego/gouct/GoUctCommands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/gouct/GoUctCommands.h -------------------------------------------------------------------------------- /fuego/gouct/GoUctDefaultMoveFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/gouct/GoUctDefaultMoveFilter.cpp -------------------------------------------------------------------------------- /fuego/gouct/GoUctDefaultMoveFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/gouct/GoUctDefaultMoveFilter.h -------------------------------------------------------------------------------- /fuego/gouct/GoUctDefaultPriorKnowledge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/gouct/GoUctDefaultPriorKnowledge.cpp -------------------------------------------------------------------------------- /fuego/gouct/GoUctDefaultPriorKnowledge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/gouct/GoUctDefaultPriorKnowledge.h -------------------------------------------------------------------------------- /fuego/gouct/GoUctEstimatorStat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/gouct/GoUctEstimatorStat.cpp -------------------------------------------------------------------------------- /fuego/gouct/GoUctEstimatorStat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/gouct/GoUctEstimatorStat.h -------------------------------------------------------------------------------- /fuego/gouct/GoUctFeatureCommands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/gouct/GoUctFeatureCommands.cpp -------------------------------------------------------------------------------- /fuego/gouct/GoUctFeatureCommands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/gouct/GoUctFeatureCommands.h -------------------------------------------------------------------------------- /fuego/gouct/GoUctFeatureKnowledge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/gouct/GoUctFeatureKnowledge.cpp -------------------------------------------------------------------------------- /fuego/gouct/GoUctFeatureKnowledge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/gouct/GoUctFeatureKnowledge.h -------------------------------------------------------------------------------- /fuego/gouct/GoUctFeatures.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/gouct/GoUctFeatures.cpp -------------------------------------------------------------------------------- /fuego/gouct/GoUctFeatures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/gouct/GoUctFeatures.h -------------------------------------------------------------------------------- /fuego/gouct/GoUctGammaMoveGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/gouct/GoUctGammaMoveGenerator.h -------------------------------------------------------------------------------- /fuego/gouct/GoUctGlobalPatternData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/gouct/GoUctGlobalPatternData.h -------------------------------------------------------------------------------- /fuego/gouct/GoUctGlobalSearch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/gouct/GoUctGlobalSearch.cpp -------------------------------------------------------------------------------- /fuego/gouct/GoUctGlobalSearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/gouct/GoUctGlobalSearch.h -------------------------------------------------------------------------------- /fuego/gouct/GoUctGreenpeepPatterns19.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/gouct/GoUctGreenpeepPatterns19.h -------------------------------------------------------------------------------- /fuego/gouct/GoUctGreenpeepPatterns9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/gouct/GoUctGreenpeepPatterns9.h -------------------------------------------------------------------------------- /fuego/gouct/GoUctKnowledge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/gouct/GoUctKnowledge.cpp -------------------------------------------------------------------------------- /fuego/gouct/GoUctKnowledge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/gouct/GoUctKnowledge.h -------------------------------------------------------------------------------- /fuego/gouct/GoUctKnowledgeFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/gouct/GoUctKnowledgeFactory.cpp -------------------------------------------------------------------------------- /fuego/gouct/GoUctKnowledgeFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/gouct/GoUctKnowledgeFactory.h -------------------------------------------------------------------------------- /fuego/gouct/GoUctLadderKnowledge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/gouct/GoUctLadderKnowledge.cpp -------------------------------------------------------------------------------- /fuego/gouct/GoUctLadderKnowledge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/gouct/GoUctLadderKnowledge.h -------------------------------------------------------------------------------- /fuego/gouct/GoUctLocalPatternData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/gouct/GoUctLocalPatternData.h -------------------------------------------------------------------------------- /fuego/gouct/GoUctMoveFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/gouct/GoUctMoveFilter.cpp -------------------------------------------------------------------------------- /fuego/gouct/GoUctMoveFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/gouct/GoUctMoveFilter.h -------------------------------------------------------------------------------- /fuego/gouct/GoUctObjectWithSearch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/gouct/GoUctObjectWithSearch.cpp -------------------------------------------------------------------------------- /fuego/gouct/GoUctObjectWithSearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/gouct/GoUctObjectWithSearch.h -------------------------------------------------------------------------------- /fuego/gouct/GoUctPatternData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/gouct/GoUctPatternData.h -------------------------------------------------------------------------------- /fuego/gouct/GoUctPatterns.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/gouct/GoUctPatterns.cpp -------------------------------------------------------------------------------- /fuego/gouct/GoUctPatterns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/gouct/GoUctPatterns.h -------------------------------------------------------------------------------- /fuego/gouct/GoUctPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/gouct/GoUctPlayer.h -------------------------------------------------------------------------------- /fuego/gouct/GoUctPlayoutPolicy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/gouct/GoUctPlayoutPolicy.cpp -------------------------------------------------------------------------------- /fuego/gouct/GoUctPlayoutPolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/gouct/GoUctPlayoutPolicy.h -------------------------------------------------------------------------------- /fuego/gouct/GoUctPlayoutUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/gouct/GoUctPlayoutUtil.h -------------------------------------------------------------------------------- /fuego/gouct/GoUctPureRandomGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/gouct/GoUctPureRandomGenerator.h -------------------------------------------------------------------------------- /fuego/gouct/GoUctSearch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/gouct/GoUctSearch.cpp -------------------------------------------------------------------------------- /fuego/gouct/GoUctSearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/gouct/GoUctSearch.h -------------------------------------------------------------------------------- /fuego/gouct/GoUctUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/gouct/GoUctUtil.cpp -------------------------------------------------------------------------------- /fuego/gouct/GoUctUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/gouct/GoUctUtil.h -------------------------------------------------------------------------------- /fuego/gouct/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/gouct/Makefile -------------------------------------------------------------------------------- /fuego/gouct/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/gouct/Makefile.am -------------------------------------------------------------------------------- /fuego/gouct/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/gouct/Makefile.in -------------------------------------------------------------------------------- /fuego/gouct/test/GoUctBoardTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/gouct/test/GoUctBoardTest.cpp -------------------------------------------------------------------------------- /fuego/gouct/test/GoUctFeatureKnowledgeTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/gouct/test/GoUctFeatureKnowledgeTest.cpp -------------------------------------------------------------------------------- /fuego/gouct/test/GoUctFeaturesTest.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fuego/gouct/test/GoUctKnowledgeTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/gouct/test/GoUctKnowledgeTest.cpp -------------------------------------------------------------------------------- /fuego/gouct/test/GoUctLadderKnowledgeTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/gouct/test/GoUctLadderKnowledgeTest.cpp -------------------------------------------------------------------------------- /fuego/gouct/test/GoUctPatternsTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/gouct/test/GoUctPatternsTest.cpp -------------------------------------------------------------------------------- /fuego/gouct/test/GoUctUtilTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/gouct/test/GoUctUtilTest.cpp -------------------------------------------------------------------------------- /fuego/gtpengine/GtpEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/gtpengine/GtpEngine.cpp -------------------------------------------------------------------------------- /fuego/gtpengine/GtpEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/gtpengine/GtpEngine.h -------------------------------------------------------------------------------- /fuego/gtpengine/GtpInputStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/gtpengine/GtpInputStream.cpp -------------------------------------------------------------------------------- /fuego/gtpengine/GtpInputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/gtpengine/GtpInputStream.h -------------------------------------------------------------------------------- /fuego/gtpengine/GtpOutputStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/gtpengine/GtpOutputStream.cpp -------------------------------------------------------------------------------- /fuego/gtpengine/GtpOutputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/gtpengine/GtpOutputStream.h -------------------------------------------------------------------------------- /fuego/gtpengine/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/gtpengine/Makefile -------------------------------------------------------------------------------- /fuego/gtpengine/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/gtpengine/Makefile.am -------------------------------------------------------------------------------- /fuego/gtpengine/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/gtpengine/Makefile.in -------------------------------------------------------------------------------- /fuego/gtpengine/test/GtpEngineTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/gtpengine/test/GtpEngineTest.cpp -------------------------------------------------------------------------------- /fuego/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/install-sh -------------------------------------------------------------------------------- /fuego/libtool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/libtool -------------------------------------------------------------------------------- /fuego/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/ltmain.sh -------------------------------------------------------------------------------- /fuego/m4/ax_boost_base.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/m4/ax_boost_base.m4 -------------------------------------------------------------------------------- /fuego/m4/ax_boost_date_time.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/m4/ax_boost_date_time.m4 -------------------------------------------------------------------------------- /fuego/m4/ax_boost_filesystem.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/m4/ax_boost_filesystem.m4 -------------------------------------------------------------------------------- /fuego/m4/ax_boost_program_options.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/m4/ax_boost_program_options.m4 -------------------------------------------------------------------------------- /fuego/m4/ax_boost_system.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/m4/ax_boost_system.m4 -------------------------------------------------------------------------------- /fuego/m4/ax_boost_thread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/m4/ax_boost_thread.m4 -------------------------------------------------------------------------------- /fuego/m4/ax_boost_unit_test_framework.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/m4/ax_boost_unit_test_framework.m4 -------------------------------------------------------------------------------- /fuego/m4/ax_cflags_gcc_option.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/m4/ax_cflags_gcc_option.m4 -------------------------------------------------------------------------------- /fuego/m4/ax_cflags_warn_all.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/m4/ax_cflags_warn_all.m4 -------------------------------------------------------------------------------- /fuego/m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/m4/libtool.m4 -------------------------------------------------------------------------------- /fuego/m4/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/m4/ltoptions.m4 -------------------------------------------------------------------------------- /fuego/m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/m4/ltsugar.m4 -------------------------------------------------------------------------------- /fuego/m4/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/m4/ltversion.m4 -------------------------------------------------------------------------------- /fuego/m4/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/m4/lt~obsolete.m4 -------------------------------------------------------------------------------- /fuego/misctests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/misctests/Makefile -------------------------------------------------------------------------------- /fuego/misctests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/misctests/Makefile.am -------------------------------------------------------------------------------- /fuego/misctests/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/misctests/Makefile.in -------------------------------------------------------------------------------- /fuego/misctests/check_regression_files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/misctests/check_regression_files.sh -------------------------------------------------------------------------------- /fuego/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/missing -------------------------------------------------------------------------------- /fuego/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/out -------------------------------------------------------------------------------- /fuego/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/out.txt -------------------------------------------------------------------------------- /fuego/out2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/out2.txt -------------------------------------------------------------------------------- /fuego/regression/19.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/19.list -------------------------------------------------------------------------------- /fuego/regression/19.suite: -------------------------------------------------------------------------------- 1 | fuego 19.list 2 | -------------------------------------------------------------------------------- /fuego/regression/9x9-blunder-endgame.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/9x9-blunder-endgame.tst -------------------------------------------------------------------------------- /fuego/regression/9x9-opening.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/9x9-opening.tst -------------------------------------------------------------------------------- /fuego/regression/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/Makefile -------------------------------------------------------------------------------- /fuego/regression/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/Makefile.am -------------------------------------------------------------------------------- /fuego/regression/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/Makefile.in -------------------------------------------------------------------------------- /fuego/regression/backfill.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/backfill.tst -------------------------------------------------------------------------------- /fuego/regression/basics.suite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/basics.suite -------------------------------------------------------------------------------- /fuego/regression/basics_fuegotest.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/basics_fuegotest.list -------------------------------------------------------------------------------- /fuego/regression/basics_uct.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/basics_uct.list -------------------------------------------------------------------------------- /fuego/regression/bent_four.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/bent_four.tst -------------------------------------------------------------------------------- /fuego/regression/blunder_long_ladder_19.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/blunder_long_ladder_19.tst -------------------------------------------------------------------------------- /fuego/regression/blunder_long_ladder_19b.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/blunder_long_ladder_19b.tst -------------------------------------------------------------------------------- /fuego/regression/blunder_play_near_dead_19.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/blunder_play_near_dead_19.tst -------------------------------------------------------------------------------- /fuego/regression/blunder_rave.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/blunder_rave.tst -------------------------------------------------------------------------------- /fuego/regression/blunder_selfatari_19.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/blunder_selfatari_19.tst -------------------------------------------------------------------------------- /fuego/regression/blunder_short_ladder_19.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/blunder_short_ladder_19.tst -------------------------------------------------------------------------------- /fuego/regression/book_moves.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/book_moves.tst -------------------------------------------------------------------------------- /fuego/regression/cleanup_japanese_rules.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/cleanup_japanese_rules.tst -------------------------------------------------------------------------------- /fuego/regression/deterministic_mode.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/deterministic_mode.list -------------------------------------------------------------------------------- /fuego/regression/deterministic_mode.suite: -------------------------------------------------------------------------------- 1 | fuego deterministic_mode.list 2 | -------------------------------------------------------------------------------- /fuego/regression/early_pass.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/early_pass.tst -------------------------------------------------------------------------------- /fuego/regression/escape_capture_19.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/escape_capture_19.tst -------------------------------------------------------------------------------- /fuego/regression/eval_life_and_death.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/eval_life_and_death.tst -------------------------------------------------------------------------------- /fuego/regression/eval_seki.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/eval_seki.tst -------------------------------------------------------------------------------- /fuego/regression/final_moves.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/final_moves.tst -------------------------------------------------------------------------------- /fuego/regression/free_handicap.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/free_handicap.tst -------------------------------------------------------------------------------- /fuego/regression/joseki.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/joseki.tst -------------------------------------------------------------------------------- /fuego/regression/kgs-genmove_cleanup.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/kgs-genmove_cleanup.tst -------------------------------------------------------------------------------- /fuego/regression/ladder.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/ladder.list -------------------------------------------------------------------------------- /fuego/regression/ladder.suite: -------------------------------------------------------------------------------- 1 | fuego ladder.list 2 | -------------------------------------------------------------------------------- /fuego/regression/ladder.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/ladder.tst -------------------------------------------------------------------------------- /fuego/regression/life_and_death_nakade.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/life_and_death_nakade.tst -------------------------------------------------------------------------------- /fuego/regression/performance-zen-9x9.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/performance-zen-9x9.tst -------------------------------------------------------------------------------- /fuego/regression/performance.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/performance.list -------------------------------------------------------------------------------- /fuego/regression/performance.suite: -------------------------------------------------------------------------------- 1 | fuego performance.list 2 | -------------------------------------------------------------------------------- /fuego/regression/performance_2014_UEC.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/performance_2014_UEC.tst -------------------------------------------------------------------------------- /fuego/regression/performance_JAIST2012.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/performance_JAIST2012.tst -------------------------------------------------------------------------------- /fuego/regression/performance_UEC2013.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/performance_UEC2013.tst -------------------------------------------------------------------------------- /fuego/regression/performance_barcelona2010.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/performance_barcelona2010.tst -------------------------------------------------------------------------------- /fuego/regression/performance_eval_pro_9x9.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/performance_eval_pro_9x9.tst -------------------------------------------------------------------------------- /fuego/regression/performance_icgc2008.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/performance_icgc2008.tst -------------------------------------------------------------------------------- /fuego/regression/performance_pro_9x9.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/performance_pro_9x9.tst -------------------------------------------------------------------------------- /fuego/regression/play_deterministic_srand1.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/play_deterministic_srand1.tst -------------------------------------------------------------------------------- /fuego/regression/play_deterministic_srand2.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/play_deterministic_srand2.tst -------------------------------------------------------------------------------- /fuego/regression/play_deterministic_srand3.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/play_deterministic_srand3.tst -------------------------------------------------------------------------------- /fuego/regression/play_deterministic_srand4.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/play_deterministic_srand4.tst -------------------------------------------------------------------------------- /fuego/regression/play_deterministic_srand5.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/play_deterministic_srand5.tst -------------------------------------------------------------------------------- /fuego/regression/play_deterministic_srand6.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/play_deterministic_srand6.tst -------------------------------------------------------------------------------- /fuego/regression/play_deterministic_srand7.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/play_deterministic_srand7.tst -------------------------------------------------------------------------------- /fuego/regression/play_deterministic_srand8.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/play_deterministic_srand8.tst -------------------------------------------------------------------------------- /fuego/regression/play_deterministic_srand9.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/play_deterministic_srand9.tst -------------------------------------------------------------------------------- /fuego/regression/playout.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/playout.list -------------------------------------------------------------------------------- /fuego/regression/playout.suite: -------------------------------------------------------------------------------- 1 | fuego playout.list 2 | -------------------------------------------------------------------------------- /fuego/regression/playout_2_liberties.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/playout_2_liberties.tst -------------------------------------------------------------------------------- /fuego/regression/playout_approach_move.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/playout_approach_move.tst -------------------------------------------------------------------------------- /fuego/regression/playout_atari_capture.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/playout_atari_capture.tst -------------------------------------------------------------------------------- /fuego/regression/playout_nakade.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/playout_nakade.tst -------------------------------------------------------------------------------- /fuego/regression/playout_rejected_moves.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/playout_rejected_moves.tst -------------------------------------------------------------------------------- /fuego/regression/playout_semeai.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/playout_semeai.tst -------------------------------------------------------------------------------- /fuego/regression/repetition.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/repetition.tst -------------------------------------------------------------------------------- /fuego/regression/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/run.sh -------------------------------------------------------------------------------- /fuego/regression/scoring_final.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/scoring_final.tst -------------------------------------------------------------------------------- /fuego/regression/scoring_static.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/scoring_static.tst -------------------------------------------------------------------------------- /fuego/regression/semeai_big.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/semeai_big.tst -------------------------------------------------------------------------------- /fuego/regression/sgf/bent_four/bentfour1.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/bent_four/bentfour1.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/bent_four/bentfour1b.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/bent_four/bentfour1b.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/bent_four/bentfour2.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/bent_four/bentfour2.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/book_test/book.0.sgf: -------------------------------------------------------------------------------- 1 | (;FF[4]CA[UTF-8]AP[GoGui:1.1.9]SZ[9] 2 | PL[B]) 3 | -------------------------------------------------------------------------------- /fuego/regression/sgf/book_test/book.1.sgf: -------------------------------------------------------------------------------- 1 | (;FF[4]CA[UTF-8]AP[GoGui:1.1.9]SZ[9] 2 | AB[ee] 3 | PL[W]) 4 | -------------------------------------------------------------------------------- /fuego/regression/sgf/book_test/book.10.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/book_test/book.10.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/book_test/book.11.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/book_test/book.11.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/book_test/book.12.sgf: -------------------------------------------------------------------------------- 1 | (;FF[4]CA[UTF-8]AP[GoGui:1.2.1]SZ[9] 2 | KM[2.5]DT[2010-05-14] 3 | ;B[ed];W[ef];B[de]) 4 | -------------------------------------------------------------------------------- /fuego/regression/sgf/book_test/book.2.sgf: -------------------------------------------------------------------------------- 1 | (;FF[4]CA[UTF-8]AP[GoGui:1.1.9]SZ[9] 2 | AB[ee] 3 | AW[dg] 4 | PL[B]) 5 | -------------------------------------------------------------------------------- /fuego/regression/sgf/book_test/book.3.sgf: -------------------------------------------------------------------------------- 1 | (;FF[4]CA[UTF-8]AP[GoGui:1.1.9]SZ[9] 2 | AB[ee] 3 | AW[eg] 4 | PL[B]) 5 | -------------------------------------------------------------------------------- /fuego/regression/sgf/book_test/book.4.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/book_test/book.4.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/book_test/book.5.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/book_test/book.5.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/book_test/book.6.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/book_test/book.6.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/book_test/book.7.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/book_test/book.7.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/book_test/book.8.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/book_test/book.8.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/book_test/book.9.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/book_test/book.9.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/evaluation/miseval.1.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/evaluation/miseval.1.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/eyes/1.5/make-nakade.1.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/eyes/1.5/make-nakade.1.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/eyes/1.5/make-nakade.2.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/eyes/1.5/make-nakade.2.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/eyes/1/nakade.1.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/eyes/1/nakade.1.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/games/2007/CGOS/107433.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/games/2007/CGOS/107433.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/games/2007/CGOS/107439.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/games/2007/CGOS/107439.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/games/2007/CGOS/107457.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/games/2007/CGOS/107457.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/games/2007/CGOS/147759.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/games/2007/CGOS/147759.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/games/2007/CGOS/189376.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/games/2007/CGOS/189376.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/games/2007/CGOS/189582.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/games/2007/CGOS/189582.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/games/2007/CGOS/189676.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/games/2007/CGOS/189676.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/games/2007/CGOS/189715.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/games/2007/CGOS/189715.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/games/2007/CGOS/189721.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/games/2007/CGOS/189721.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/games/2007/CGOS/191282.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/games/2007/CGOS/191282.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/games/2007/CGOS/193838.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/games/2007/CGOS/193838.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/games/2007/CGOS/193893.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/games/2007/CGOS/193893.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/games/2007/CGOS/193991.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/games/2007/CGOS/193991.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/games/2007/CGOS/194557.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/games/2007/CGOS/194557.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/games/2007/CGOS/199550.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/games/2007/CGOS/199550.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/games/2007/CGOS/200058.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/games/2007/CGOS/200058.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/games/2007/CGOS/200109.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/games/2007/CGOS/200109.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/games/2007/CGOS/200163.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/games/2007/CGOS/200163.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/games/2007/CGOS/200190.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/games/2007/CGOS/200190.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/games/2007/CGOS/200368.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/games/2007/CGOS/200368.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/games/2007/CGOS/201395.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/games/2007/CGOS/201395.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/games/2007/CGOS/71448.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/games/2007/CGOS/71448.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/games/2007/CGOS/71459.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/games/2007/CGOS/71459.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/games/2007/bookwhite-4.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/games/2007/bookwhite-4.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/games/2008/CGOS/248520.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/games/2008/CGOS/248520.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/games/2008/CGOS/248559.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/games/2008/CGOS/248559.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/games/2008/CGOS/249009.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/games/2008/CGOS/249009.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/games/2008/CGOS/31410.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/games/2008/CGOS/31410.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/games/2008/CGOS/31423.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/games/2008/CGOS/31423.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/games/2008/CGOS/31425.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/games/2008/CGOS/31425.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/games/2008/CGOS/31431.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/games/2008/CGOS/31431.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/games/2008/CGOS/365007.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/games/2008/CGOS/365007.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/games/2008/CGOS/386221.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/games/2008/CGOS/386221.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/games/2008/CGOS/397651.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/games/2008/CGOS/397651.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/games/2008/CGOS/397739.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/games/2008/CGOS/397739.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/games/2008/CGOS/397892.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/games/2008/CGOS/397892.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/games/2008/CGOS/397919.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/games/2008/CGOS/397919.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/games/2008/ko-bug.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/games/2008/ko-bug.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/games/2013/FX175-29.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/games/2013/FX175-29.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/games/pro-9x9/mz1.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/games/pro-9x9/mz1.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/games/pro-9x9/mz2.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/games/pro-9x9/mz2.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/gnugo-games/seki01.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/gnugo-games/seki01.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/gnugo-games/seki02.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/gnugo-games/seki02.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/gnugo-games/seki03.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/gnugo-games/seki03.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/gnugo-games/seki04.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/gnugo-games/seki04.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/gnugo-games/seki05.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/gnugo-games/seki05.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/gnugo-games/seki06.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/gnugo-games/seki06.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/gnugo-games/seki07.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/gnugo-games/seki07.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/gnugo-games/seki08.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/gnugo-games/seki08.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/gnugo-games/seki09.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/gnugo-games/seki09.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/gnugo-games/seki10.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/gnugo-games/seki10.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/gnugo-games/seki11.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/gnugo-games/seki11.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/gnugo-games/seki12.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/gnugo-games/seki12.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/gnugo-games/seki13.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/gnugo-games/seki13.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/gnugo-games/seki14.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/gnugo-games/seki14.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/gnugo-games/seki15.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/gnugo-games/seki15.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/ladder/bad-ladder.1.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/ladder/bad-ladder.1.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/ladder/bad-ladder.2.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/ladder/bad-ladder.2.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/ladder/ladder-edge-breaker.sgf: -------------------------------------------------------------------------------- 1 | (;FF[4]CA[UTF8]GN[ladder-edge-breaker]AP[GoGui:0.8.x] 2 | AB[bs] 3 | AW[cs][or] 4 | PL[B]) 5 | -------------------------------------------------------------------------------- /fuego/regression/sgf/ladder/ladder-edge.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/ladder/ladder-edge.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/ladder/long-ladder.sgf: -------------------------------------------------------------------------------- 1 | (;FF[4]CA[UTF8]GN[long-ladder]AP[GoGui:0.8.x] 2 | AB[bp][cq][dq] 3 | AW[cp] 4 | PL[B]) 5 | -------------------------------------------------------------------------------- /fuego/regression/sgf/nakade/nakade.1.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/nakade/nakade.1.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/nakade/nakade.2.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/nakade/nakade.2.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/nakade/nakade.3.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/nakade/nakade.3.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/nakade/nakade.3b.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/nakade/nakade.3b.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/nakade/nakade.4.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/nakade/nakade.4.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/nakade/nakade.4b.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/nakade/nakade.4b.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/nakade/nakade.4c.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/nakade/nakade.4c.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/nakade/nakade.5.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/nakade/nakade.5.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/nakade/nakade.6.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/nakade/nakade.6.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/nakade/nakade.6b.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/nakade/nakade.6b.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/nakade/nakade.6c.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/nakade/nakade.6c.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/nakade/nakade.6d.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/nakade/nakade.6d.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/nakade/nakade.7.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/nakade/nakade.7.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/nakade/nakade.8.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/nakade/nakade.8.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/nakade/nakade.9.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/nakade/nakade.9.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/safetytest/nosafe.3.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/safetytest/nosafe.3.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/safetytest/nosafe.4.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/safetytest/nosafe.4.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/scoring/FX178-27.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/scoring/FX178-27.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/seki/case1.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/seki/case1.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/seki/case10.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/seki/case10.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/seki/case2.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/seki/case2.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/seki/case3.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/seki/case3.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/seki/case4.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/seki/case4.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/seki/case5.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/seki/case5.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/seki/case6.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/seki/case6.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/seki/case7.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/seki/case7.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/seki/case8.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/seki/case8.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/seki/case9.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/seki/case9.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/seki/sheppard-seki.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/seki/sheppard-seki.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/uct/README: -------------------------------------------------------------------------------- 1 | Test positions for UCT players. 2 | -------------------------------------------------------------------------------- /fuego/regression/sgf/uct/capture.1.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/uct/capture.1.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/uct/patterns-cut2.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/uct/patterns-cut2.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/uct/patterns-edge1.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/uct/patterns-edge1.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/uct/patterns-edge4.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/uct/patterns-edge4.sgf -------------------------------------------------------------------------------- /fuego/regression/sgf/uct/vital-1.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/sgf/uct/vital-1.sgf -------------------------------------------------------------------------------- /fuego/regression/simpleplayers.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/simpleplayers.tst -------------------------------------------------------------------------------- /fuego/regression/static_safety.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/static_safety.list -------------------------------------------------------------------------------- /fuego/regression/static_safety.suite: -------------------------------------------------------------------------------- 1 | fuego static_safety.list 2 | -------------------------------------------------------------------------------- /fuego/regression/static_safety_basics.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/static_safety_basics.tst -------------------------------------------------------------------------------- /fuego/regression/static_safety_fullboard.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/static_safety_fullboard.tst -------------------------------------------------------------------------------- /fuego/regression/static_safety_seki.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/static_safety_seki.tst -------------------------------------------------------------------------------- /fuego/regression/static_winner.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/static_winner.tst -------------------------------------------------------------------------------- /fuego/regression/tactics_19.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/tactics_19.tst -------------------------------------------------------------------------------- /fuego/regression/two_safe_groups_0.3.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/two_safe_groups_0.3.tst -------------------------------------------------------------------------------- /fuego/regression/two_safe_groups_0.4.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/two_safe_groups_0.4.tst -------------------------------------------------------------------------------- /fuego/regression/two_safe_groups_0.5.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/two_safe_groups_0.5.tst -------------------------------------------------------------------------------- /fuego/regression/uct.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/uct.list -------------------------------------------------------------------------------- /fuego/regression/uct.suite: -------------------------------------------------------------------------------- 1 | fuego uct.list 2 | 3 | -------------------------------------------------------------------------------- /fuego/regression/uct_basics.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/uct_basics.tst -------------------------------------------------------------------------------- /fuego/regression/uct_blunder.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/uct_blunder.tst -------------------------------------------------------------------------------- /fuego/regression/uct_blunder_19.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/uct_blunder_19.tst -------------------------------------------------------------------------------- /fuego/regression/uct_book.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/uct_book.tst -------------------------------------------------------------------------------- /fuego/regression/uct_connection.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/uct_connection.tst -------------------------------------------------------------------------------- /fuego/regression/uct_direction_of_play.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/uct_direction_of_play.tst -------------------------------------------------------------------------------- /fuego/regression/uct_endgame.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/uct_endgame.tst -------------------------------------------------------------------------------- /fuego/regression/uct_evaluation.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/uct_evaluation.tst -------------------------------------------------------------------------------- /fuego/regression/uct_fight_on.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/uct_fight_on.tst -------------------------------------------------------------------------------- /fuego/regression/uct_ko.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/uct_ko.tst -------------------------------------------------------------------------------- /fuego/regression/uct_life_and_death.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/uct_life_and_death.tst -------------------------------------------------------------------------------- /fuego/regression/uct_move.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/uct_move.tst -------------------------------------------------------------------------------- /fuego/regression/uct_pass_basics.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/uct_pass_basics.tst -------------------------------------------------------------------------------- /fuego/regression/uct_rootfilter.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/uct_rootfilter.tst -------------------------------------------------------------------------------- /fuego/regression/uct_seki.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/uct_seki.tst -------------------------------------------------------------------------------- /fuego/regression/uct_selfatari.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/uct_selfatari.tst -------------------------------------------------------------------------------- /fuego/regression/uct_semeai.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/uct_semeai.tst -------------------------------------------------------------------------------- /fuego/regression/uct_semeai_blunder.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/uct_semeai_blunder.tst -------------------------------------------------------------------------------- /fuego/regression/urgent.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/regression/urgent.tst -------------------------------------------------------------------------------- /fuego/setup-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/setup-build.sh -------------------------------------------------------------------------------- /fuego/simpleplayers/CudaGo.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/simpleplayers/CudaGo.cu -------------------------------------------------------------------------------- /fuego/simpleplayers/CudaGo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/simpleplayers/CudaGo.h -------------------------------------------------------------------------------- /fuego/simpleplayers/MCTSPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/simpleplayers/MCTSPlayer.cpp -------------------------------------------------------------------------------- /fuego/simpleplayers/MCTSPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/simpleplayers/MCTSPlayer.h -------------------------------------------------------------------------------- /fuego/simpleplayers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/simpleplayers/Makefile -------------------------------------------------------------------------------- /fuego/simpleplayers/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/simpleplayers/Makefile.am -------------------------------------------------------------------------------- /fuego/simpleplayers/SpAveragePlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/simpleplayers/SpAveragePlayer.cpp -------------------------------------------------------------------------------- /fuego/simpleplayers/SpAveragePlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/simpleplayers/SpAveragePlayer.h -------------------------------------------------------------------------------- /fuego/simpleplayers/SpCapturePlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/simpleplayers/SpCapturePlayer.cpp -------------------------------------------------------------------------------- /fuego/simpleplayers/SpCapturePlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/simpleplayers/SpCapturePlayer.h -------------------------------------------------------------------------------- /fuego/simpleplayers/SpDumbTacticalPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/simpleplayers/SpDumbTacticalPlayer.cpp -------------------------------------------------------------------------------- /fuego/simpleplayers/SpDumbTacticalPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/simpleplayers/SpDumbTacticalPlayer.h -------------------------------------------------------------------------------- /fuego/simpleplayers/SpGreedyPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/simpleplayers/SpGreedyPlayer.cpp -------------------------------------------------------------------------------- /fuego/simpleplayers/SpGreedyPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/simpleplayers/SpGreedyPlayer.h -------------------------------------------------------------------------------- /fuego/simpleplayers/SpInfluencePlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/simpleplayers/SpInfluencePlayer.cpp -------------------------------------------------------------------------------- /fuego/simpleplayers/SpInfluencePlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/simpleplayers/SpInfluencePlayer.h -------------------------------------------------------------------------------- /fuego/simpleplayers/SpLadderPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/simpleplayers/SpLadderPlayer.cpp -------------------------------------------------------------------------------- /fuego/simpleplayers/SpLadderPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/simpleplayers/SpLadderPlayer.h -------------------------------------------------------------------------------- /fuego/simpleplayers/SpLibertyPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/simpleplayers/SpLibertyPlayer.cpp -------------------------------------------------------------------------------- /fuego/simpleplayers/SpLibertyPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/simpleplayers/SpLibertyPlayer.h -------------------------------------------------------------------------------- /fuego/simpleplayers/SpMaxEyePlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/simpleplayers/SpMaxEyePlayer.cpp -------------------------------------------------------------------------------- /fuego/simpleplayers/SpMaxEyePlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/simpleplayers/SpMaxEyePlayer.h -------------------------------------------------------------------------------- /fuego/simpleplayers/SpMinLibPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/simpleplayers/SpMinLibPlayer.cpp -------------------------------------------------------------------------------- /fuego/simpleplayers/SpMinLibPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/simpleplayers/SpMinLibPlayer.h -------------------------------------------------------------------------------- /fuego/simpleplayers/SpMoveGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/simpleplayers/SpMoveGenerator.cpp -------------------------------------------------------------------------------- /fuego/simpleplayers/SpMoveGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/simpleplayers/SpMoveGenerator.h -------------------------------------------------------------------------------- /fuego/simpleplayers/SpRandomPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/simpleplayers/SpRandomPlayer.cpp -------------------------------------------------------------------------------- /fuego/simpleplayers/SpRandomPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/simpleplayers/SpRandomPlayer.h -------------------------------------------------------------------------------- /fuego/simpleplayers/SpSafePlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/simpleplayers/SpSafePlayer.cpp -------------------------------------------------------------------------------- /fuego/simpleplayers/SpSafePlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/simpleplayers/SpSafePlayer.h -------------------------------------------------------------------------------- /fuego/simpleplayers/SpSimplePlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/simpleplayers/SpSimplePlayer.cpp -------------------------------------------------------------------------------- /fuego/simpleplayers/SpSimplePlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/simpleplayers/SpSimplePlayer.h -------------------------------------------------------------------------------- /fuego/simpleplayers/SpUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/simpleplayers/SpUtil.cpp -------------------------------------------------------------------------------- /fuego/simpleplayers/SpUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/simpleplayers/SpUtil.h -------------------------------------------------------------------------------- /fuego/simpleplayers/deque.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/simpleplayers/deque.h -------------------------------------------------------------------------------- /fuego/simpleplayers/mcts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/simpleplayers/mcts.h -------------------------------------------------------------------------------- /fuego/simpleplayers/mcts_cpu/MCTSPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/simpleplayers/mcts_cpu/MCTSPlayer.cpp -------------------------------------------------------------------------------- /fuego/simpleplayers/mcts_cpu/MCTSPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/simpleplayers/mcts_cpu/MCTSPlayer.h -------------------------------------------------------------------------------- /fuego/simpleplayers/mcts_cpu/mcts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/simpleplayers/mcts_cpu/mcts.cpp -------------------------------------------------------------------------------- /fuego/simpleplayers/mcts_cpu/mcts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/simpleplayers/mcts_cpu/mcts.h -------------------------------------------------------------------------------- /fuego/simpleplayers/mcts_cuda.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/simpleplayers/mcts_cuda.cu -------------------------------------------------------------------------------- /fuego/simpleplayers/point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/simpleplayers/point.h -------------------------------------------------------------------------------- /fuego/smartgame/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/Makefile -------------------------------------------------------------------------------- /fuego/smartgame/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/Makefile.am -------------------------------------------------------------------------------- /fuego/smartgame/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/Makefile.in -------------------------------------------------------------------------------- /fuego/smartgame/SgAdditiveKnowledge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgAdditiveKnowledge.h -------------------------------------------------------------------------------- /fuego/smartgame/SgArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgArray.h -------------------------------------------------------------------------------- /fuego/smartgame/SgArrayList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgArrayList.h -------------------------------------------------------------------------------- /fuego/smartgame/SgBWArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgBWArray.h -------------------------------------------------------------------------------- /fuego/smartgame/SgBWSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgBWSet.h -------------------------------------------------------------------------------- /fuego/smartgame/SgBlackWhite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgBlackWhite.h -------------------------------------------------------------------------------- /fuego/smartgame/SgBoardColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgBoardColor.h -------------------------------------------------------------------------------- /fuego/smartgame/SgBoardConst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgBoardConst.cpp -------------------------------------------------------------------------------- /fuego/smartgame/SgBoardConst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgBoardConst.h -------------------------------------------------------------------------------- /fuego/smartgame/SgBookBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgBookBuilder.cpp -------------------------------------------------------------------------------- /fuego/smartgame/SgBookBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgBookBuilder.h -------------------------------------------------------------------------------- /fuego/smartgame/SgCmdLineOpt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgCmdLineOpt.cpp -------------------------------------------------------------------------------- /fuego/smartgame/SgCmdLineOpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgCmdLineOpt.h -------------------------------------------------------------------------------- /fuego/smartgame/SgConnCompIterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgConnCompIterator.cpp -------------------------------------------------------------------------------- /fuego/smartgame/SgConnCompIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgConnCompIterator.h -------------------------------------------------------------------------------- /fuego/smartgame/SgDebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgDebug.cpp -------------------------------------------------------------------------------- /fuego/smartgame/SgDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgDebug.h -------------------------------------------------------------------------------- /fuego/smartgame/SgDfpnSearch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgDfpnSearch.cpp -------------------------------------------------------------------------------- /fuego/smartgame/SgDfpnSearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgDfpnSearch.h -------------------------------------------------------------------------------- /fuego/smartgame/SgEBWArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgEBWArray.h -------------------------------------------------------------------------------- /fuego/smartgame/SgEvaluatedMoves.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgEvaluatedMoves.cpp -------------------------------------------------------------------------------- /fuego/smartgame/SgEvaluatedMoves.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgEvaluatedMoves.h -------------------------------------------------------------------------------- /fuego/smartgame/SgException.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgException.cpp -------------------------------------------------------------------------------- /fuego/smartgame/SgException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgException.h -------------------------------------------------------------------------------- /fuego/smartgame/SgFastLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgFastLog.cpp -------------------------------------------------------------------------------- /fuego/smartgame/SgFastLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgFastLog.h -------------------------------------------------------------------------------- /fuego/smartgame/SgGameReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgGameReader.cpp -------------------------------------------------------------------------------- /fuego/smartgame/SgGameReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgGameReader.h -------------------------------------------------------------------------------- /fuego/smartgame/SgGameWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgGameWriter.cpp -------------------------------------------------------------------------------- /fuego/smartgame/SgGameWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgGameWriter.h -------------------------------------------------------------------------------- /fuego/smartgame/SgGtpClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgGtpClient.cpp -------------------------------------------------------------------------------- /fuego/smartgame/SgGtpClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgGtpClient.h -------------------------------------------------------------------------------- /fuego/smartgame/SgGtpCommands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgGtpCommands.cpp -------------------------------------------------------------------------------- /fuego/smartgame/SgGtpCommands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgGtpCommands.h -------------------------------------------------------------------------------- /fuego/smartgame/SgGtpUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgGtpUtil.cpp -------------------------------------------------------------------------------- /fuego/smartgame/SgGtpUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgGtpUtil.h -------------------------------------------------------------------------------- /fuego/smartgame/SgHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgHash.h -------------------------------------------------------------------------------- /fuego/smartgame/SgHashTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgHashTable.h -------------------------------------------------------------------------------- /fuego/smartgame/SgIncrementalStack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgIncrementalStack.cpp -------------------------------------------------------------------------------- /fuego/smartgame/SgIncrementalStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgIncrementalStack.h -------------------------------------------------------------------------------- /fuego/smartgame/SgInit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgInit.cpp -------------------------------------------------------------------------------- /fuego/smartgame/SgInit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgInit.h -------------------------------------------------------------------------------- /fuego/smartgame/SgMarker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgMarker.h -------------------------------------------------------------------------------- /fuego/smartgame/SgMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgMath.h -------------------------------------------------------------------------------- /fuego/smartgame/SgMemCheck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgMemCheck.cpp -------------------------------------------------------------------------------- /fuego/smartgame/SgMemCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgMemCheck.h -------------------------------------------------------------------------------- /fuego/smartgame/SgMiaiMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgMiaiMap.cpp -------------------------------------------------------------------------------- /fuego/smartgame/SgMiaiMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgMiaiMap.h -------------------------------------------------------------------------------- /fuego/smartgame/SgMiaiStrategy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgMiaiStrategy.cpp -------------------------------------------------------------------------------- /fuego/smartgame/SgMiaiStrategy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgMiaiStrategy.h -------------------------------------------------------------------------------- /fuego/smartgame/SgMove.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgMove.h -------------------------------------------------------------------------------- /fuego/smartgame/SgMpiSynchronizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgMpiSynchronizer.cpp -------------------------------------------------------------------------------- /fuego/smartgame/SgMpiSynchronizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgMpiSynchronizer.h -------------------------------------------------------------------------------- /fuego/smartgame/SgNbIterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgNbIterator.cpp -------------------------------------------------------------------------------- /fuego/smartgame/SgNbIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgNbIterator.h -------------------------------------------------------------------------------- /fuego/smartgame/SgNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgNode.cpp -------------------------------------------------------------------------------- /fuego/smartgame/SgNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgNode.h -------------------------------------------------------------------------------- /fuego/smartgame/SgNodeUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgNodeUtil.cpp -------------------------------------------------------------------------------- /fuego/smartgame/SgNodeUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgNodeUtil.h -------------------------------------------------------------------------------- /fuego/smartgame/SgPlatform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgPlatform.cpp -------------------------------------------------------------------------------- /fuego/smartgame/SgPlatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgPlatform.h -------------------------------------------------------------------------------- /fuego/smartgame/SgPoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgPoint.cpp -------------------------------------------------------------------------------- /fuego/smartgame/SgPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgPoint.h -------------------------------------------------------------------------------- /fuego/smartgame/SgPointArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgPointArray.h -------------------------------------------------------------------------------- /fuego/smartgame/SgPointIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgPointIterator.h -------------------------------------------------------------------------------- /fuego/smartgame/SgPointSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgPointSet.cpp -------------------------------------------------------------------------------- /fuego/smartgame/SgPointSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgPointSet.h -------------------------------------------------------------------------------- /fuego/smartgame/SgPointSetUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgPointSetUtil.cpp -------------------------------------------------------------------------------- /fuego/smartgame/SgPointSetUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgPointSetUtil.h -------------------------------------------------------------------------------- /fuego/smartgame/SgProbCut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgProbCut.cpp -------------------------------------------------------------------------------- /fuego/smartgame/SgProbCut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgProbCut.h -------------------------------------------------------------------------------- /fuego/smartgame/SgProcess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgProcess.cpp -------------------------------------------------------------------------------- /fuego/smartgame/SgProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgProcess.h -------------------------------------------------------------------------------- /fuego/smartgame/SgProp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgProp.cpp -------------------------------------------------------------------------------- /fuego/smartgame/SgProp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgProp.h -------------------------------------------------------------------------------- /fuego/smartgame/SgRandom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgRandom.cpp -------------------------------------------------------------------------------- /fuego/smartgame/SgRandom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgRandom.h -------------------------------------------------------------------------------- /fuego/smartgame/SgRect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgRect.cpp -------------------------------------------------------------------------------- /fuego/smartgame/SgRect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgRect.h -------------------------------------------------------------------------------- /fuego/smartgame/SgRestorer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgRestorer.h -------------------------------------------------------------------------------- /fuego/smartgame/SgSearch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgSearch.cpp -------------------------------------------------------------------------------- /fuego/smartgame/SgSearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgSearch.h -------------------------------------------------------------------------------- /fuego/smartgame/SgSearchControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgSearchControl.cpp -------------------------------------------------------------------------------- /fuego/smartgame/SgSearchControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgSearchControl.h -------------------------------------------------------------------------------- /fuego/smartgame/SgSearchStatistics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgSearchStatistics.cpp -------------------------------------------------------------------------------- /fuego/smartgame/SgSearchStatistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgSearchStatistics.h -------------------------------------------------------------------------------- /fuego/smartgame/SgSearchTracer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgSearchTracer.cpp -------------------------------------------------------------------------------- /fuego/smartgame/SgSearchTracer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgSearchTracer.h -------------------------------------------------------------------------------- /fuego/smartgame/SgSearchValue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgSearchValue.cpp -------------------------------------------------------------------------------- /fuego/smartgame/SgSearchValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgSearchValue.h -------------------------------------------------------------------------------- /fuego/smartgame/SgSortedArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgSortedArray.h -------------------------------------------------------------------------------- /fuego/smartgame/SgSortedMoves.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgSortedMoves.h -------------------------------------------------------------------------------- /fuego/smartgame/SgStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgStack.h -------------------------------------------------------------------------------- /fuego/smartgame/SgStatistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgStatistics.h -------------------------------------------------------------------------------- /fuego/smartgame/SgStatisticsVlt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgStatisticsVlt.h -------------------------------------------------------------------------------- /fuego/smartgame/SgStrategy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgStrategy.cpp -------------------------------------------------------------------------------- /fuego/smartgame/SgStrategy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgStrategy.h -------------------------------------------------------------------------------- /fuego/smartgame/SgStringUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgStringUtil.cpp -------------------------------------------------------------------------------- /fuego/smartgame/SgStringUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgStringUtil.h -------------------------------------------------------------------------------- /fuego/smartgame/SgSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgSystem.cpp -------------------------------------------------------------------------------- /fuego/smartgame/SgSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgSystem.h -------------------------------------------------------------------------------- /fuego/smartgame/SgThreadedWorker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgThreadedWorker.h -------------------------------------------------------------------------------- /fuego/smartgame/SgTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgTime.cpp -------------------------------------------------------------------------------- /fuego/smartgame/SgTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgTime.h -------------------------------------------------------------------------------- /fuego/smartgame/SgTimeControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgTimeControl.cpp -------------------------------------------------------------------------------- /fuego/smartgame/SgTimeControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgTimeControl.h -------------------------------------------------------------------------------- /fuego/smartgame/SgTimeRecord.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgTimeRecord.cpp -------------------------------------------------------------------------------- /fuego/smartgame/SgTimeRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgTimeRecord.h -------------------------------------------------------------------------------- /fuego/smartgame/SgTimeSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgTimeSettings.cpp -------------------------------------------------------------------------------- /fuego/smartgame/SgTimeSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgTimeSettings.h -------------------------------------------------------------------------------- /fuego/smartgame/SgTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgTimer.h -------------------------------------------------------------------------------- /fuego/smartgame/SgUctSearch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgUctSearch.cpp -------------------------------------------------------------------------------- /fuego/smartgame/SgUctSearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgUctSearch.h -------------------------------------------------------------------------------- /fuego/smartgame/SgUctTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgUctTree.cpp -------------------------------------------------------------------------------- /fuego/smartgame/SgUctTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgUctTree.h -------------------------------------------------------------------------------- /fuego/smartgame/SgUctTreeUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgUctTreeUtil.cpp -------------------------------------------------------------------------------- /fuego/smartgame/SgUctTreeUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgUctTreeUtil.h -------------------------------------------------------------------------------- /fuego/smartgame/SgUctValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgUctValue.h -------------------------------------------------------------------------------- /fuego/smartgame/SgUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgUtil.cpp -------------------------------------------------------------------------------- /fuego/smartgame/SgUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgUtil.h -------------------------------------------------------------------------------- /fuego/smartgame/SgVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgVector.h -------------------------------------------------------------------------------- /fuego/smartgame/SgVectorUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgVectorUtil.cpp -------------------------------------------------------------------------------- /fuego/smartgame/SgVectorUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgVectorUtil.h -------------------------------------------------------------------------------- /fuego/smartgame/SgWrite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgWrite.cpp -------------------------------------------------------------------------------- /fuego/smartgame/SgWrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/SgWrite.h -------------------------------------------------------------------------------- /fuego/smartgame/test/SgArrayListTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/test/SgArrayListTest.cpp -------------------------------------------------------------------------------- /fuego/smartgame/test/SgArrayTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/test/SgArrayTest.cpp -------------------------------------------------------------------------------- /fuego/smartgame/test/SgBWArrayTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/test/SgBWArrayTest.cpp -------------------------------------------------------------------------------- /fuego/smartgame/test/SgBWSetTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/test/SgBWSetTest.cpp -------------------------------------------------------------------------------- /fuego/smartgame/test/SgBlackWhiteTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/test/SgBlackWhiteTest.cpp -------------------------------------------------------------------------------- /fuego/smartgame/test/SgBoardColorTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/test/SgBoardColorTest.cpp -------------------------------------------------------------------------------- /fuego/smartgame/test/SgBoardConstTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/test/SgBoardConstTest.cpp -------------------------------------------------------------------------------- /fuego/smartgame/test/SgCmdLineOptTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/test/SgCmdLineOptTest.cpp -------------------------------------------------------------------------------- /fuego/smartgame/test/SgEBWArrayTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/test/SgEBWArrayTest.cpp -------------------------------------------------------------------------------- /fuego/smartgame/test/SgFastLogTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/test/SgFastLogTest.cpp -------------------------------------------------------------------------------- /fuego/smartgame/test/SgGameReaderTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/test/SgGameReaderTest.cpp -------------------------------------------------------------------------------- /fuego/smartgame/test/SgGtpUtilTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/test/SgGtpUtilTest.cpp -------------------------------------------------------------------------------- /fuego/smartgame/test/SgHashTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/test/SgHashTest.cpp -------------------------------------------------------------------------------- /fuego/smartgame/test/SgMarkerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/test/SgMarkerTest.cpp -------------------------------------------------------------------------------- /fuego/smartgame/test/SgMathTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/test/SgMathTest.cpp -------------------------------------------------------------------------------- /fuego/smartgame/test/SgMiaiMapTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/test/SgMiaiMapTest.cpp -------------------------------------------------------------------------------- /fuego/smartgame/test/SgMiaiStrategyTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/test/SgMiaiStrategyTest.cpp -------------------------------------------------------------------------------- /fuego/smartgame/test/SgNbIteratorTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/test/SgNbIteratorTest.cpp -------------------------------------------------------------------------------- /fuego/smartgame/test/SgNodeTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/test/SgNodeTest.cpp -------------------------------------------------------------------------------- /fuego/smartgame/test/SgNodeUtilTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/test/SgNodeUtilTest.cpp -------------------------------------------------------------------------------- /fuego/smartgame/test/SgPointArrayTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/test/SgPointArrayTest.cpp -------------------------------------------------------------------------------- /fuego/smartgame/test/SgPointSetTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/test/SgPointSetTest.cpp -------------------------------------------------------------------------------- /fuego/smartgame/test/SgPointTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/test/SgPointTest.cpp -------------------------------------------------------------------------------- /fuego/smartgame/test/SgPropTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/test/SgPropTest.cpp -------------------------------------------------------------------------------- /fuego/smartgame/test/SgRandomTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/test/SgRandomTest.cpp -------------------------------------------------------------------------------- /fuego/smartgame/test/SgRectTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/test/SgRectTest.cpp -------------------------------------------------------------------------------- /fuego/smartgame/test/SgRestorerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/test/SgRestorerTest.cpp -------------------------------------------------------------------------------- /fuego/smartgame/test/SgSearchTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/test/SgSearchTest.cpp -------------------------------------------------------------------------------- /fuego/smartgame/test/SgSortedArrayTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/test/SgSortedArrayTest.cpp -------------------------------------------------------------------------------- /fuego/smartgame/test/SgSortedMovesTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/test/SgSortedMovesTest.cpp -------------------------------------------------------------------------------- /fuego/smartgame/test/SgStackTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/test/SgStackTest.cpp -------------------------------------------------------------------------------- /fuego/smartgame/test/SgStatisticsTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/test/SgStatisticsTest.cpp -------------------------------------------------------------------------------- /fuego/smartgame/test/SgStringUtilTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/test/SgStringUtilTest.cpp -------------------------------------------------------------------------------- /fuego/smartgame/test/SgSystemTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/test/SgSystemTest.cpp -------------------------------------------------------------------------------- /fuego/smartgame/test/SgTimeControlTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/test/SgTimeControlTest.cpp -------------------------------------------------------------------------------- /fuego/smartgame/test/SgTimeSettingsTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/test/SgTimeSettingsTest.cpp -------------------------------------------------------------------------------- /fuego/smartgame/test/SgUctSearchTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/test/SgUctSearchTest.cpp -------------------------------------------------------------------------------- /fuego/smartgame/test/SgUctTreeTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/test/SgUctTreeTest.cpp -------------------------------------------------------------------------------- /fuego/smartgame/test/SgUctTreeUtilTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/test/SgUctTreeUtilTest.cpp -------------------------------------------------------------------------------- /fuego/smartgame/test/SgUctValueTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/test/SgUctValueTest.cpp -------------------------------------------------------------------------------- /fuego/smartgame/test/SgUtilTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/test/SgUtilTest.cpp -------------------------------------------------------------------------------- /fuego/smartgame/test/SgVectorTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/test/SgVectorTest.cpp -------------------------------------------------------------------------------- /fuego/smartgame/test/SgVectorUtilTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/test/SgVectorUtilTest.cpp -------------------------------------------------------------------------------- /fuego/smartgame/test/SgWriteTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/smartgame/test/SgWriteTest.cpp -------------------------------------------------------------------------------- /fuego/stamp-h1: -------------------------------------------------------------------------------- 1 | timestamp for config.h 2 | -------------------------------------------------------------------------------- /fuego/test-driver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/test-driver -------------------------------------------------------------------------------- /fuego/tools/cgos/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/tools/cgos/README -------------------------------------------------------------------------------- /fuego/tools/cgos/cgos3-19.patched.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/tools/cgos/cgos3-19.patched.tcl -------------------------------------------------------------------------------- /fuego/tools/cgos/cgos3-19.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/tools/cgos/cgos3-19.tcl -------------------------------------------------------------------------------- /fuego/tools/cgos/cgos3.patched.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/tools/cgos/cgos3.patched.tcl -------------------------------------------------------------------------------- /fuego/tools/cgos/cgos3.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/tools/cgos/cgos3.tcl -------------------------------------------------------------------------------- /fuego/tools/cgos/config-average.gtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/tools/cgos/config-average.gtp -------------------------------------------------------------------------------- /fuego/tools/cgos/play-13-1c.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/tools/cgos/play-13-1c.sh -------------------------------------------------------------------------------- /fuego/tools/cgos/play-19-2c.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/tools/cgos/play-19-2c.sh -------------------------------------------------------------------------------- /fuego/tools/cgos/play-19-4c.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/tools/cgos/play-19-4c.sh -------------------------------------------------------------------------------- /fuego/tools/cgos/play-19-8c.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/tools/cgos/play-19-8c.sh -------------------------------------------------------------------------------- /fuego/tools/cgos/play-9-100.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/tools/cgos/play-9-100.sh -------------------------------------------------------------------------------- /fuego/tools/cgos/play-9-1000.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/tools/cgos/play-9-1000.sh -------------------------------------------------------------------------------- /fuego/tools/cgos/play-9-10000.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/tools/cgos/play-9-10000.sh -------------------------------------------------------------------------------- /fuego/tools/cgos/play-9-100k.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/tools/cgos/play-9-100k.sh -------------------------------------------------------------------------------- /fuego/tools/cgos/play-9-1c-nobook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/tools/cgos/play-9-1c-nobook.sh -------------------------------------------------------------------------------- /fuego/tools/cgos/play-9-1c.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/tools/cgos/play-9-1c.sh -------------------------------------------------------------------------------- /fuego/tools/cgos/play-9-2c.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/tools/cgos/play-9-2c.sh -------------------------------------------------------------------------------- /fuego/tools/cgos/play-9-4c.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/tools/cgos/play-9-4c.sh -------------------------------------------------------------------------------- /fuego/tools/cgos/play-9-8c.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/tools/cgos/play-9-8c.sh -------------------------------------------------------------------------------- /fuego/tools/cgos/play-average-19.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/tools/cgos/play-average-19.sh -------------------------------------------------------------------------------- /fuego/tools/cgos/play-average-9.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/tools/cgos/play-average-9.sh -------------------------------------------------------------------------------- /fuego/tools/cgos/stop-19-2c.sh: -------------------------------------------------------------------------------- 1 | touch gracefully_exit_server-19-2c 2 | -------------------------------------------------------------------------------- /fuego/tools/cgos/stop-19-8c.sh: -------------------------------------------------------------------------------- 1 | touch gracefully_exit_server-19-8c 2 | -------------------------------------------------------------------------------- /fuego/tools/cgos/stop-9-2c.sh: -------------------------------------------------------------------------------- 1 | touch gracefully_exit_server-9-2c 2 | -------------------------------------------------------------------------------- /fuego/tools/cgos/stop-9-8c.sh: -------------------------------------------------------------------------------- 1 | touch gracefully_exit_server-9-8c 2 | -------------------------------------------------------------------------------- /fuego/tools/cgos/stop-average-19.sh: -------------------------------------------------------------------------------- 1 | touch gracefully_exit_server-average-19 2 | -------------------------------------------------------------------------------- /fuego/tools/cgos/stop-average-9.sh: -------------------------------------------------------------------------------- 1 | touch gracefully_exit_server-average-9 2 | -------------------------------------------------------------------------------- /fuego/tools/cronjob/fuego_daily.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/tools/cronjob/fuego_daily.sh -------------------------------------------------------------------------------- /fuego/tools/features/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/tools/features/README -------------------------------------------------------------------------------- /fuego/tools/features/makeFeData.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/tools/features/makeFeData.sh -------------------------------------------------------------------------------- /fuego/tools/features/train/distribute.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/tools/features/train/distribute.sh -------------------------------------------------------------------------------- /fuego/tools/features/train/train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/tools/features/train/train.sh -------------------------------------------------------------------------------- /fuego/tools/kgs/play-13-8c.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/tools/kgs/play-13-8c.sh -------------------------------------------------------------------------------- /fuego/tools/kgs/play-19-4t.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/tools/kgs/play-19-4t.sh -------------------------------------------------------------------------------- /fuego/tools/kgs/play-19-8c.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/tools/kgs/play-19-8c.sh -------------------------------------------------------------------------------- /fuego/tools/kgs/play-9-2c.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/tools/kgs/play-9-2c.sh -------------------------------------------------------------------------------- /fuego/tools/kgs/tournament-19-8c.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/tools/kgs/tournament-19-8c.sh -------------------------------------------------------------------------------- /fuego/tools/kgs/tournament-9-8c.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/tools/kgs/tournament-9-8c.sh -------------------------------------------------------------------------------- /fuego/tools/misc/fuego-speed-test.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/tools/misc/fuego-speed-test.pl -------------------------------------------------------------------------------- /fuego/unittestmain/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/unittestmain/Makefile -------------------------------------------------------------------------------- /fuego/unittestmain/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/unittestmain/Makefile.am -------------------------------------------------------------------------------- /fuego/unittestmain/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/unittestmain/Makefile.in -------------------------------------------------------------------------------- /fuego/unittestmain/UnitTestMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/unittestmain/UnitTestMain.cpp -------------------------------------------------------------------------------- /fuego/website/competitions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/website/competitions.html -------------------------------------------------------------------------------- /fuego/website/copy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/website/copy.sh -------------------------------------------------------------------------------- /fuego/website/exhibition-games.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/website/exhibition-games.html -------------------------------------------------------------------------------- /fuego/website/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/website/favicon.ico -------------------------------------------------------------------------------- /fuego/website/fuego-programs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/website/fuego-programs.html -------------------------------------------------------------------------------- /fuego/website/fuego-screenshot-thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/website/fuego-screenshot-thumb.jpg -------------------------------------------------------------------------------- /fuego/website/fuego-screenshot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/website/fuego-screenshot.html -------------------------------------------------------------------------------- /fuego/website/fuego-screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/website/fuego-screenshot.jpg -------------------------------------------------------------------------------- /fuego/website/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/website/index.html -------------------------------------------------------------------------------- /fuego/website/mac-install.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/website/mac-install.html -------------------------------------------------------------------------------- /fuego/website/publications.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/website/publications.html -------------------------------------------------------------------------------- /fuego/windows/installer/.svnignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/windows/installer/.svnignore -------------------------------------------------------------------------------- /fuego/windows/installer/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/windows/installer/License.txt -------------------------------------------------------------------------------- /fuego/windows/installer/README-installer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/windows/installer/README-installer.txt -------------------------------------------------------------------------------- /fuego/windows/installer/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/windows/installer/Readme.txt -------------------------------------------------------------------------------- /fuego/windows/installer/gogui.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/windows/installer/gogui.ico -------------------------------------------------------------------------------- /fuego/windows/installer/install.nsis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/fuego/windows/installer/install.nsis -------------------------------------------------------------------------------- /mcts/.gitignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | sub* 3 | *.out 4 | hybrid* 5 | -------------------------------------------------------------------------------- /mcts/CudaGo.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/mcts/CudaGo.cu -------------------------------------------------------------------------------- /mcts/CudaGo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/mcts/CudaGo.h -------------------------------------------------------------------------------- /mcts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/mcts/Makefile -------------------------------------------------------------------------------- /mcts/deque.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/mcts/deque.h -------------------------------------------------------------------------------- /mcts/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/mcts/main.cpp -------------------------------------------------------------------------------- /mcts/mcts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/mcts/mcts.h -------------------------------------------------------------------------------- /mcts/mcts_cuda.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/mcts/mcts_cuda.cu -------------------------------------------------------------------------------- /mcts/point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/mcts/point.h -------------------------------------------------------------------------------- /mcts/sub.job: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15418-final/ParallelizedMCTS/HEAD/mcts/sub.job --------------------------------------------------------------------------------