我正在寻找一种用@jitclass
编译python类Node的方法。问题出在子节点的属性属性上。
谢谢您的帮助。
from numba import jitclass, i4
from numba.typed import List
@jitclass([
('children', List[X]),
('row', i4),
('col', i4)
])
class Node:
def __init__(self, board, row, col):
self.children = [] # a list of Nodes
self.row= row #integer
self.col = col #integer