Temporary disabled search of shortest path for graphs with negative edges.

This commit is contained in:
Oleg Sh
2024-04-01 10:47:23 +02:00
parent 61bafa7d51
commit e2a708a140
5 changed files with 5 additions and 5 deletions

View File

@@ -211,7 +211,7 @@ FindShortPatchsFromOne.prototype.IsSupportMultiGraph = function()
FindShortPatchsFromOne.prototype.IsSupportNegativeWeight = function()
{
return true;
return false;
}
// Factory for connected components.

View File

@@ -223,7 +223,7 @@ FindShortPathNew.prototype.IsSupportMultiGraph = function ()
FindShortPathNew.prototype.IsSupportNegativeWeight = function()
{
return true;
return false;
}