十八大反腐倡廉气浮垫NetLogo Nw Extension
⾸先我们需要理解的是,为了使⽤network extension,如何告诉extension要使⽤哪个network。先考虑下⾯例⼦中的情形: breed [ bankers banker ]
breed [ clients client ]
undirected-link-breed [ friendships friendship ]
directed-link-breed [ accounts account ]
基本上,我们有银⾏家和顾客。顾客和银⾏家之间通过账户联系。银⾏家之间也可以通过账户联系,任两个⼈之间都可以成为朋友。 现在,我们或许会想到将整个事情当作⼀个⼤⽹络。默认地,NW extension原语考虑所有的海龟和连边当作⽹络的⼀部分。
然⽽,我们或许只对⽹络中的朋友关系感兴趣。进⼀步地,我们只对银⾏家之间的朋友关系感兴趣。为了具体化这种⽹络,我们需要告诉extension我们对哪些海龟和连边感兴趣。 ⼀些例⼦:
私营企业主不能入党nw:set-context turtles links will give you everything: bankers and clients, friendships and accounts, as one big network.
civ
nw:set-context turtles friendships will give you all the bankers and clients and friendships between any of them.
nw:set-context bankers friendships will give you all the bankers, and only friendships between bankers.
莲文化nw:set-context bankers links will give you all the bankers, and any links between them, whether these links are
friendships or accounts.
观潮教学实录nw:set-context clients accounts will give you all the clients, and accounts between each other, but si
nce in our fictional example clients can only have accounts with bankers, this will be a completely disconnected network.