if (null != this.graph && this.count < antAlgorithmSettings.getMaximalNumberOfIterations()) {
this.count++;
Graph g = this.graph;
AntDecisionAlgorithm antDecisionAlgorithm = new AntDecisionAlgorithm(antAlgorithmSettings);
antDecisionAlgorithm.sentAllAnts(g);
for (Edge edge : g.getEdges()) {
this.tmpGraph.getEdges().get(edge.getId()).setPheromone(tmpGraph.getEdges().get(edge.getId()).getPheromone() + edge.getPheromone());
}