Package stanfordlogic.util

Examples of stanfordlogic.util.TimedTaskMonitor


        stopSearch_ = false;
        bestMoveSoFar_ = null;
        bestScoreSoFar_ = Integer.MIN_VALUE;
       
        // Set up the play clock:
        TimedTaskMonitor searchTask = new TimedTaskMonitor(this);
        long time = (playClock_-2) * 1000; // convert to ms, giving ourselves a 2 second margin
        searchTimer_.schedule(searchTask, time);
       
        // We now have playClock-2 seconds to finish our search.
       
View Full Code Here

TOP

Related Classes of stanfordlogic.util.TimedTaskMonitor

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.