Othello Tournament

Tournament Date

Rules

More explicitly, the following two constructors are allowed for your strategy:

            package dxnguyen; // dxnguyen is my netid

            public class OthelloStrat implements INextMoveStrategy {
                public OthelloStrat(IModel model) { /* ... */ }
                // ...
            }

and

            package dxnguyen; // dxnguyen is my netid

            public class OthelloStrat implements INextMoveStrategy {
                public OthelloStrat() { /* ... */ }
                // ...
            }