|
@@ -135,11 +135,9 @@ public class SimulationManager {
|
|
ArrayList<AbstractCpsObject> producers = new ArrayList<AbstractCpsObject>();
|
|
ArrayList<AbstractCpsObject> producers = new ArrayList<AbstractCpsObject>();
|
|
AbstractCpsObject tmp = null;
|
|
AbstractCpsObject tmp = null;
|
|
tagTable = new HashMap<Integer, Float>();
|
|
tagTable = new HashMap<Integer, Float>();
|
|
- System.out.println("producers:");
|
|
|
|
for (HolonObject hl : sN.getObjects()) {
|
|
for (HolonObject hl : sN.getObjects()) {
|
|
float energy = hl.getCurrentEnergyAtTimeStep(timeStep);
|
|
float energy = hl.getCurrentEnergyAtTimeStep(timeStep);
|
|
if (energy > 0) {
|
|
if (energy > 0) {
|
|
- System.out.println(hl.getID());
|
|
|
|
tagTable.put(hl.getID(), energy);
|
|
tagTable.put(hl.getID(), energy);
|
|
hl.addTag(hl.getID());
|
|
hl.addTag(hl.getID());
|
|
for (CpsEdge edge : hl.getConnections()) {
|
|
for (CpsEdge edge : hl.getConnections()) {
|
|
@@ -168,7 +166,6 @@ public class SimulationManager {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
- printNodes(producers);
|
|
|
|
setFlowSimRec(producers, 0);
|
|
setFlowSimRec(producers, 0);
|
|
}
|
|
}
|
|
|
|
|
|
@@ -181,7 +178,6 @@ public class SimulationManager {
|
|
* the Iteration
|
|
* the Iteration
|
|
*/
|
|
*/
|
|
public void setFlowSimRec(ArrayList<AbstractCpsObject> nodes, int iter) {
|
|
public void setFlowSimRec(ArrayList<AbstractCpsObject> nodes, int iter) {
|
|
- System.out.println("iteration: " + iter);
|
|
|
|
ArrayList<AbstractCpsObject> newNodes = new ArrayList<AbstractCpsObject>();
|
|
ArrayList<AbstractCpsObject> newNodes = new ArrayList<AbstractCpsObject>();
|
|
ArrayList<CpsEdge> changedEdges = new ArrayList<CpsEdge>();
|
|
ArrayList<CpsEdge> changedEdges = new ArrayList<CpsEdge>();
|
|
AbstractCpsObject tmp;
|
|
AbstractCpsObject tmp;
|
|
@@ -189,9 +185,6 @@ public class SimulationManager {
|
|
for(AbstractCpsObject cps: nodes){
|
|
for(AbstractCpsObject cps: nodes){
|
|
if(legitState(cps)){
|
|
if(legitState(cps)){
|
|
for(CpsEdge edge: cps.getConnections()){
|
|
for(CpsEdge edge: cps.getConnections()){
|
|
- if(edge.getPseudoTags() == null){
|
|
|
|
- System.out.println("edge null");
|
|
|
|
- }
|
|
|
|
if(edge.getState() && (!(edge.containsTags(edge.getTags(), cps.getTag())))){
|
|
if(edge.getState() && (!(edge.containsTags(edge.getTags(), cps.getTag())))){
|
|
if(edge.getA().getID() == cps.getID()){
|
|
if(edge.getA().getID() == cps.getID()){
|
|
tmp = edge.getB();
|
|
tmp = edge.getB();
|
|
@@ -223,7 +216,6 @@ public class SimulationManager {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
setPseudoTags(newNodes, changedEdges);
|
|
setPseudoTags(newNodes, changedEdges);
|
|
- printNodes(newNodes);
|
|
|
|
setFlowSimRec(newNodes, iter+1);
|
|
setFlowSimRec(newNodes, iter+1);
|
|
}
|
|
}
|
|
}
|
|
}
|