Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
为了加快我的代码,我正在使用 Cython。我想知道是否可以在 igraph 中修复 Graph 对象的属性类型?
igraph 中的属性返回PyObjects 所以不,你不能在 Cython 中输入它们。
PyObject
但是,根据您的用例,将属性预先分配给类型化的 c++ 向量或 C 数组可能很有用,然后处理此向量/数组。