pnnl/HyperNetX

Why static and dynamic distinctions no longer exist

yizhihenpidehou opened this issue · 1 comments

I'm curious about the reasons. Is there any storage/computation inefficient problem?

The static hypergraph was based on Numpy arrays, which are immutable. We've updated the library to use Pandas dataframes, which can be modified internally. The new data structure is more performant and will allow us to implement add/remove methods.