Pārlūkot izejas kodu

Some assertions in hope to get clearer reason for #955/#1076.

Michał W. Urbańczyk 13 gadi atpakaļ
vecāks
revīzija
40624f96d9
1 mainītis faili ar 2 papildinājumiem un 0 dzēšanām
  1. 2 0
      AI/StupidAI/StupidAI.cpp

+ 2 - 0
AI/StupidAI/StupidAI.cpp

@@ -156,7 +156,9 @@ BattleAction CStupidAI::activeStack( const CStack * stack )
 	}
 	else
 	{
+		assert(enemiesUnreachable.size());
 		const EnemyInfo &ei= *std::min_element(enemiesUnreachable.begin(), enemiesUnreachable.end(), boost::bind(isCloser, _1, _2, boost::ref(dists)));
+		assert(ei.s);
 		if(distToNearestNeighbour(ei.s->position, dists) < GameConstants::BFIELD_SIZE)
 		{
 			return goTowards(stack, ei.s->position);