Back to project page abalone-android.
The source code is released under:
GNU General Public License
If you think the Android project abalone-android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/** * Copyright (c) 2010-2011 Yaroslav Geryatovich, Alexander Yakushev * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. *//*ww w. j a va 2 s. c o m*/ package com.bytopia.abalone.mechanics; /** * Strong configuration of AI. Uses two-step depth and neighbouring marbles * analysis. Due to 07/08/11 is in beta-testing stage. * * @author Bytopia */ public class AiDeborah extends ArtificialIntilligence { public Move requestMove(Game g) { return findNextMove(g.getBoard(), g.getSide(), 2, CLEVER, true); } }