You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, Synapse objects are doing redundant work on checking and assigning RNGSettings values. See if the RNGSettings checking and assigning can be moved to the Simulator.
ifcell.rng_settingsisNone:
self.rng_setting=bluecellulab.RNGSettings(
mode='Compatibility',
base_seed=base_seed)
elifbase_seedisnotNone:
raiseException('Synapse: base_seed and RNGSettings cant ''be used together')
else:
self.rng_settings=cell.rng_settings
The text was updated successfully, but these errors were encountered:
Currently, Synapse objects are doing redundant work on checking and assigning RNGSettings values. See if the RNGSettings checking and assigning can be moved to the Simulator.
The text was updated successfully, but these errors were encountered: