1
0
Fork 0

Correct syntax err

parallel_struct_est
Filippo Martini 4 years ago
parent f1eed08e07
commit a3ea0534ae
  1. 2
      PyCTBN/PyCTBN/structure_estimator.py

@ -252,7 +252,7 @@ class StructureEstimator:
"""
ctpc_algo = StructureEstimator.one_iteration_of_CTPC_algorithm
shm_times = multiprocessing.shared_memory.SharedMemory(name='sh_times', create=True,
size=self._.times.nbytes)
size=self._times.nbytes)
shm_trajectories = multiprocessing.shared_memory.SharedMemory(name='sh_traj', create=True,
size=self._trajectories.nbytes)
times_arr = np.ndarray(self._times.shape, self._times.dtype,