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 @@ FindHamiltonianLoop.prototype.getCategory = function()
|
||||
return 1;
|
||||
}
|
||||
|
||||
FindHamiltonianLoop.prototype.MaxGraphSize = function()
|
||||
{
|
||||
return 30;
|
||||
}
|
||||
|
||||
FindHamiltonianLoop.prototype.MaxEgdeNumber = function()
|
||||
{
|
||||
return 450;
|
||||
}
|
||||
|
||||
FindHamiltonianLoop.prototype.result = function(resultCallback)
|
||||
{
|
||||
this.outResultCallback = function (result ) { resultCallback(result); };
|
||||
|
||||
Reference in New Issue
Block a user