Tuesday, 16 March 2010

Day 108

Day 108: No comment

    def __set_min_matrix_radius(self,min_matrix_radius):
pmi.call(self.pmiobj,'set_min_matrix_radius',min_matrix_radius)
def __get_min_matrix_radius(self):
## !KKUFOALERT: replacing the following invoke with call, localcall or simply removing the whole property
## from MPI_CFProjection (as it does not need to be here really) and trying to simulate tiny_mpi with cortex_density
## between 25 and 40 sometimes (!) freezes the simulation on distributing connection fields with set_flatcfs (WTF?!)
return pmi.invoke(self.pmiobj,'get_min_matrix_radius')[0]
def __del_min_matrix_radius(self):
pmi.call(self.pmiobj,'set_min_matrix_radius',None)
min_matrix_radius = property(__get_min_matrix_radius,__set_min_matrix_radius, __del_min_matrix_radius)

No comments:

Post a Comment