Graph als fertig kennzeichnen, wenn von Anfang an kein s-t-Pfad existiert

main
Konrad Krauth 2024-10-08 17:06:43 +02:00
parent 25eb7aae63
commit d74058bd8b
1 changed files with 5 additions and 2 deletions

View File

@ -177,13 +177,16 @@ function parseGraph(){
}
edgesCapacity[fromName][toName]=capacity;
}
statusDef.innerText="Graph erfolgreich erstellt";
statusSim.innerText="Graph neu erstellt";
}catch(error){
statusDef.innerText=error.toString();
}
calculatePossibleNextSteps();
calculatePossibleNextSteps();
if(bfs()==undefined){
statusSim.innerText+="- Es gibt von Anfang an keinen augmentierenden Pfad, der Algorithmus braucht nicht angewandt zu werden.";
done=true;
};
draw();
}
function bfs(){