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

@@ -317,4 +317,14 @@ We have added Dutch translation 🇳🇱. Thank you Willie de Wit</a>";
$g_lang['open_last_used_graph'] = "Open Recent Graph";
$g_lang['vertex_name_place_holder'] = "vertex name";
$g_lang["max_clique"] = "Max Clique";
$g_lang["max_clique_not_found"] = "Max Clique is not found";
$g_lang["max_clique_size_is"] = "Max Clique size is ";
$g_lang["max_clique_contains"] = ". Clique contains these vertecies: ";
$g_lang["max_independent_set"] = "Max Independent Set";
$g_lang["max_independent_set_not_found"] = "Max Independent Set is not found";
$g_lang["max_independent_set_size_is"] = "Max Independent Set size is ";
$g_lang["max_independent_set_contains"] = ". Set contains these vertecies: ";
?>