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

@@ -1,25 +0,0 @@
<?php
$tempFilename = "../tmp/pluginsList.txt";
if (isset($_GET["reset"]))
{
unlink($tempFilename);
}
$res = "";
if (!file_exists($tempFilename))
{
$jsScripts = glob("../script/plugins/*.js");
$res = json_encode($jsScripts);
file_put_contents ($tempFilename, $res);
}
else
{
$res = file_get_contents($tempFilename);
}
echo $res;
?>