diff --git a/AMOEBAonAMAK/src/agents/head/Head.java b/AMOEBAonAMAK/src/agents/head/Head.java index 728c78843a02b584626fc90c71837bd9e83373d2..eb319c8bf45d4bbf154a0c9d23d5b2d0f718295f 100644 --- a/AMOEBAonAMAK/src/agents/head/Head.java +++ b/AMOEBAonAMAK/src/agents/head/Head.java @@ -1693,6 +1693,14 @@ public class Head extends AmoebaAgent { } + + public Pair<Double, Double> getRadiusesForContextCreation(Percept pct) { + return new Pair<Double, Double>( + pct.getRadiusContextForCreation(), + pct.getRadiusContextForCreation()); + } + + public Pair<Double, Double> getMaxRadiusesForContextCreation(Percept pct) { // Pair<Double, Double> maxRadiuses = new Pair<Double, Double>( // Math.min(pct.getRadiusContextForCreation(), Math.abs(pct.getMin() - pct.getValue())), @@ -1853,7 +1861,7 @@ public class Head extends AmoebaAgent { } - public boolean isVoid(HashMap<Percept, Double> request) { + public boolean isRealVoid(HashMap<Percept, Double> request) { boolean test; for(Context ctxt : activatedNeighborsContexts) {