Is there a library that provides a (directed) hypergraph implementation in C++?

后端 未结 2 1329
难免孤独
难免孤独 2021-01-03 03:19

I\'m currently working on a project that enumerates the k-best solutions of a dynamic program using a directed hypergraph framework. My current implementation (in Python) w

2条回答
  •  被撕碎了的回忆
    2021-01-03 04:24

    Hypergraphs are used for decoding in statistical machine translation. There are implementations of hypergraph data structures and algorithms in cdec decoder or relax-decode

    One limitation is the edges in these implementation have multiple tails node but only a single head node.

提交回复
热议问题