Add Max Independent Set algorithm.

This commit is contained in:
Oleg Sh
2025-08-09 13:53:31 +02:00
parent 2bc0bda130
commit a5120569f3
26 changed files with 201 additions and 40 deletions

View File

@@ -28,7 +28,8 @@ function loadAsyncAlgorithms(onFinish) {
"ModernGraphStyle.js",
"RadiusAndDiameter.js",
"ShortestPath.js",
"VerticesDegree.js"];
"VerticesDegree.js",
"MaxIndependentSet.js"];
doIncludeAsync (pluginsList.map((plugin) => include ("model/plugins/" + plugin, modulDir)), onFinish);
}