nelse003 / exhaustive_search

Testing exhaustive search algorithms for crystallographic occupancy refinement and surrounding problems
0 stars 0 forks source link

Correct format for function arguments? #61

Open nelse003 opened 6 years ago

nelse003 commented 6 years ago

What is more appropriate:

def plot_3d_fofc_occ(start_occ = params.validate.options.start_simul_occ,
                     end_occ = params.validate.options.end_simul_occ,
                     step=params.validate.options.step_simulation,
                     dataset_prefix=params.input.xtal_name,
                     set_b=params.validate.options.set_b,
                     out_dir=params.output.out_dir):

or

def plot_3d_fofc_occ(params):

Make code comply