Deactivate DEBUG
This commit is contained in:
parent
b5abffade2
commit
2a54eab4fc
3 changed files with 4 additions and 4 deletions
|
|
@ -19,7 +19,7 @@ import game.map.Castle;
|
|||
*/
|
||||
public class Graph<T> {
|
||||
|
||||
final static boolean DEBUG = true;
|
||||
final static boolean DEBUG = false;
|
||||
|
||||
private List<Edge<T>> edges;
|
||||
private List<Node<T>> nodes;
|
||||
|
|
|
|||
|
|
@ -10,8 +10,8 @@ import java.util.*;
|
|||
*/
|
||||
public abstract class GraphAlgorithm<T> {
|
||||
|
||||
final static boolean DEBUG = true;
|
||||
final static boolean DEBUG_2 = true;
|
||||
final static boolean DEBUG = false;
|
||||
final static boolean DEBUG_2 = false;
|
||||
|
||||
int n = 0;
|
||||
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@ import game.map.Castle;
|
|||
*/
|
||||
public class CaptureTheFlagGoal extends Goal {
|
||||
|
||||
final static boolean DEBUG = true;
|
||||
final static boolean DEBUG = false;
|
||||
|
||||
final static int MIN_ROUND_FOR_WIN = 2;
|
||||
final static int NUM_FLAG_CASTLES_MULTIPLIER = 2;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue