本文整理汇总了Python中neurokernel.pattern.Pattern.in_ports方法的典型用法代码示例。如果您正苦于以下问题:Python Pattern.in_ports方法的具体用法?Python Pattern.in_ports怎么用?Python Pattern.in_ports使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类neurokernel.pattern.Pattern
的用法示例。
在下文中一共展示了Pattern.in_ports方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_in_ports
# 需要导入模块: from neurokernel.pattern import Pattern [as 别名]
# 或者: from neurokernel.pattern.Pattern import in_ports [as 别名]
def test_in_ports(self):
p = Pattern('/foo[0:3]', '/bar[0:3]')
p.interface['/foo[0]', 'io', 'type'] = ['in', 'spike']
p.interface['/foo[1:3]', 'io', 'type'] = ['out', 'gpot']
p.interface['/bar[0:2]', 'io', 'type'] = ['out', 'spike']
p.interface['/bar[2]', 'io', 'type'] = ['in', 'gpot']
self.assertItemsEqual(p.in_ports(0).to_tuples(),
[('foo', 0)])
self.assertItemsEqual(p.in_ports(1).to_tuples(),
[('bar', 2)])