Projects >> Recursi-Othello-AI >>fe1790f1ad915e8799817700de63cb1571dec68a

Chunk
Conflicting content
	public static void main(String[] args) {
		OthelloState startState = new OthelloState();
		startState.setStandardStartState();
<<<<<<< HEAD
		new Game(new NegaMaxDecider(true, 10),
				 new NegaMaxDecider(false, 10),
=======
		new Game(new MiniMaxDecider(true, 7),
				 new MiniMaxDecider(false, 7),
>>>>>>> e3939bb259626fce8d96f40eb4fefbffea57f854
				 startState).run();
	}
	
Solution content
	public static void main(String[] args) {
		OthelloState startState = new OthelloState();
		startState.setStandardStartState();
		new Game(new NegaMaxDecider(true, 10),
				 new NegaMaxDecider(false, 10),
				 startState).run();
	}
	
File
Othello.java
Developer's decision
Version 1
Kind of conflict
Method invocation