mirror of
https://github.com/UnickSoft/graphonline.git
synced 2026-02-16 10:40:57 +00:00
Update algorithm limits and error handling
This commit is contained in:
@@ -35,6 +35,16 @@ FindEulerianPath.prototype.getCategory = function()
|
||||
return 1;
|
||||
}
|
||||
|
||||
FindEulerianPath.prototype.MaxGraphSize = function()
|
||||
{
|
||||
return 50;
|
||||
}
|
||||
|
||||
FindEulerianPath.prototype.MaxEgdeNumber = function()
|
||||
{
|
||||
return 500;
|
||||
}
|
||||
|
||||
FindEulerianPath.prototype.result = function(resultCallback)
|
||||
{
|
||||
this.outResultCallback = function (result ) { resultCallback(result); };
|
||||
|
||||
Reference in New Issue
Block a user