All pastes #2061785 Raw Edit

Miscellany

public c v1 · immutable
#2061785 ·published 2011-05-16 20:05 UTC
rendered paste body
cellule *AstarCalculCout(DATA* data, cellule *cour, cellule* parent){	int F,G,H;	F=parent->CoutDepart+10;	G=LabyCalculeDistance(cour->Position,data->Arrivee)*10;	H=F+G;	printf("Debug : cout total H = %d",H);	cour->CoutDepart=F;	cour->CoutArrivee=G;	cour->CoutTotal=H;	return cour;}