我有一个包含自定义类对象的 C++ 向量成员的类。我希望能够从 python 中将这个向量作为列表读取,但我无法以任何方式做到这一点。
我的标题:
from __future__ import division
import cython
from libcpp.vector cimport vector #this import the C++ vector, which
#is compatible with python lists
import numpy as np
cimport numpy as np
#@cython.boundscheck(False) #this line remove some correct checking for
#for bounds, which makes it hard to debug
#but also faster
这是我的自定义类:
ctypedef class boid:
"""Placeholder for the boids"""
cdef public vector[double] pos #position of the boid
cdef public vector[double] vel #velocity of the boid
def __init__(self, vector[double] pos_):
self.pos = pos_
这是另一个类,具有向量。
cdef class csopsim:
"""This is the simulation"""
#declaring c variable types
cdef vector[boid] boids #list of boids
def __init__(self,int scenario):
#setting default values
self.BOX_SIZE = 640
self.BOX = float(self.BOX_SIZE)
self.NUM_MALES = 10
for x in xrange(self.NUM_MALES):
self.boids.push_back(boid(0,np.random.uniform(350,450,2)))
这编译得很好,但显然尝试获取 csopsim.boids 会引发无属性错误。如果我将其修改为
cdef public vector[boid] boids
它不编译。如果我创建一个方法
def getboids(self):
return self.boids
它不编译。如果我创建一个方法
cdef vector[boid] getboids(self):
return self.boids
它可以编译,但是当我尝试从 python 调用该方法时,它会抛出一个 AttributeError:“csopsim.csopsim”对象没有属性“getboids”。我希望有一个简单而琐碎的解决方案来解决这个问题:)