SearchListener.java :  » Browser » scidonthego » org » scid » android » gamelogic » Android Open Source

Android Open Source » Browser » scidonthego 
scidonthego » org » scid » android » gamelogic » SearchListener.java
package org.scid.android.gamelogic;

import java.util.ArrayList;
import java.util.List;


/**
 * Used to get various search information during search
 */
public interface SearchListener {
    public void notifyDepth(int depth);
    public void notifyCurrMove(Position pos, Move m, int moveNr);
    public void notifyPV(Position pos, int depth, int score, int time, int nodes, int nps,
        boolean isMate, boolean upperBound, boolean lowerBound, ArrayList<Move> pv);
    public void notifyStats(int nodes, int nps, int time);
  public void notifyBookInfo(String bookInfo, List<Move> moveList);
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.