edu.columbia.cs.coms4701.agent.environments.pente
Interface PenteAgentProgram

All Superinterfaces:
AgentProgram<PenteAction,PentePercept>

public interface PenteAgentProgram
extends AgentProgram<PenteAction,PentePercept>

Interface for your agent programs.

The only difference from an ordinary agent program is the addition of the 'searchDepth' accessors.

Version:
0.1

User: aaron Date: Sep 26, 2006 Time: 6:02:18 AM

Author:
aaron@cs

Method Summary
 int getSearchDepth()
          Returns the maximum search depth this agent program is using.
 void setSearchDepth(int theDepth)
          Accepts a new maximum search depth, and henceforth restricts the minimax algorithm to this depth.
 
Methods inherited from interface edu.columbia.cs.coms4701.agent.AgentProgram
getAuthor, getDescription, nextAction
 

Method Detail

getSearchDepth

int getSearchDepth()
Returns the maximum search depth this agent program is using.

Returns:
a search depth

setSearchDepth

void setSearchDepth(int theDepth)
Accepts a new maximum search depth, and henceforth restricts the minimax algorithm to this depth.

Parameters:
theDepth -