Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Задача 6. Преобразование грамматики в ОНФХ, алгоритм Хеллингса #5

Merged
merged 2 commits into from
Oct 22, 2024

Conversation

tepa46
Copy link
Owner

@tepa46 tepa46 commented Oct 21, 2024

  • Используя возможности pyformlang для работы с контекстно-свободными грамматиками реализовать функцию преобразования контекстно-свободной грамматики в ослабленную нормальную форму Хомского (ОНФХ).
    def cfg_to_weak_normal_form(cfg: pyformlang.cfg.CFG) -> pyformlang.cfg.CFG:
        pass
  • Реализовать функцию, основанную на алгоритме Хеллингса, решающую задачу достижимости между всеми парами вершин для заданного графа и заданной КС грамматики (не обязательно в ОНФХ).
    • Для работы с графом использовать функции из предыдущих задач.
    def hellings_based_cfpq(
      cfg: pyformlang.cfg.CFG,
      graph: nx.DiGraph,
      start_nodes: set[int] = None,
      final_nodes: set[int] = None,
    ) -> set[tuple[int, int]]:
       pass

@tepa46 tepa46 requested a review from WoWaster October 21, 2024 19:50
@tepa46 tepa46 merged commit 7fc72cc into main Oct 22, 2024
4 checks passed
@tepa46 tepa46 deleted the task6 branch October 22, 2024 07:52
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants