Graph als fertig kennzeichnen, wenn von Anfang an kein s-t-Pfad existiert
parent
25eb7aae63
commit
d74058bd8b
|
@ -177,13 +177,16 @@ function parseGraph(){
|
||||||
}
|
}
|
||||||
edgesCapacity[fromName][toName]=capacity;
|
edgesCapacity[fromName][toName]=capacity;
|
||||||
}
|
}
|
||||||
|
|
||||||
statusDef.innerText="Graph erfolgreich erstellt";
|
statusDef.innerText="Graph erfolgreich erstellt";
|
||||||
statusSim.innerText="Graph neu erstellt";
|
statusSim.innerText="Graph neu erstellt";
|
||||||
}catch(error){
|
}catch(error){
|
||||||
statusDef.innerText=error.toString();
|
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();
|
draw();
|
||||||
}
|
}
|
||||||
function bfs(){
|
function bfs(){
|
||||||
|
|
Loading…
Reference in New Issue