Deactivate DEBUG

This commit is contained in:
joachimschmidt557 2019-03-26 21:34:32 +01:00
parent b5abffade2
commit 2a54eab4fc
3 changed files with 4 additions and 4 deletions

View file

@ -19,7 +19,7 @@ import game.map.Castle;
*/ */
public class Graph<T> { public class Graph<T> {
final static boolean DEBUG = true; final static boolean DEBUG = false;
private List<Edge<T>> edges; private List<Edge<T>> edges;
private List<Node<T>> nodes; private List<Node<T>> nodes;

View file

@ -10,8 +10,8 @@ import java.util.*;
*/ */
public abstract class GraphAlgorithm<T> { public abstract class GraphAlgorithm<T> {
final static boolean DEBUG = true; final static boolean DEBUG = false;
final static boolean DEBUG_2 = true; final static boolean DEBUG_2 = false;
int n = 0; int n = 0;

View file

@ -17,7 +17,7 @@ import game.map.Castle;
*/ */
public class CaptureTheFlagGoal extends Goal { 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 MIN_ROUND_FOR_WIN = 2;
final static int NUM_FLAG_CASTLES_MULTIPLIER = 2; final static int NUM_FLAG_CASTLES_MULTIPLIER = 2;