@@ -283,6 +283,8 @@ def relax(self, restart_from_ens = False, get_stress = False,
283283 matrix. If None, the content of self.start_pop will be used.
284284 sobol : bool, optional (Default = False)
285285 Defines if the calculation uses random Gaussian generator or Sobol Gaussian generator.
286+ sobol_scramble : bool, optional (Default = False)
287+ Set the optional scrambling of the generated numbers taken from the Sobol sequence.
286288
287289 Returns
288290 -------
@@ -326,7 +328,7 @@ def relax(self, restart_from_ens = False, get_stress = False,
326328 self .minim .ensemble .dyn_0 = self .minim .dyn .Copy ()
327329
328330 if pop != start_pop or not restart_from_ens :
329- self .minim .ensemble .generate (self .N_configs , sobol = sobol sobol_scramble = sobol_scramble )
331+ self .minim .ensemble .generate (self .N_configs , sobol = sobol , sobol_scramble = sobol_scramble )
330332
331333 # Compute energies and forces
332334 self .minim .ensemble .compute_ensemble (self .calc , get_stress ,
@@ -437,6 +439,8 @@ def vc_relax(self, target_press = 0, static_bulk_modulus = 100,
437439 If true (default False) the volume is fixed, therefore only the cell shape is relaxed.
438440 sobol : bool, optional (Default = False)
439441 Defines if the calculation uses random Gaussian generator or Sobol Gaussian generator.
442+ sobol_scramble : bool, optional (Default = False)
443+ Set the optional scrambling of the generated numbers taken from the Sobol sequence.
440444
441445 Returns
442446 -------
0 commit comments