Skip to content

Commit ad8b9a6

Browse files
committed
Removed unnecessary function argument.
1 parent 5049cf2 commit ad8b9a6

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

structure_threader/wrappers/maverick_wrapper.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ def _gen_files_list(output_params, no_tests):
203203

204204
return files_list, no_tests
205205

206-
def _write_normalized_output(evidence, k_list, parameters, ti_in_use):
206+
def _write_normalized_output(evidence, k_list, ti_in_use):
207207
"""
208208
Writes the normalized output file.
209209
"""
@@ -292,8 +292,7 @@ def _write_normalized_output(evidence, k_list, parameters, ti_in_use):
292292
outfile.write(diff[1])
293293
outfile.write("\n")
294294
if evidence is not None:
295-
bestk = _write_normalized_output(evidence, k_list, mav_params,
296-
ti_in_use)
295+
bestk = _write_normalized_output(evidence, k_list, ti_in_use)
297296
outfile.close()
298297

299298
return bestk
@@ -304,6 +303,9 @@ def maverick_normalization(x_mean, x_sd, klist, draws=int(1e6), limit=95):
304303
Performs TI normalization as in the original implementation from MavericK.
305304
This is essentially a port from the C++ code written by Bob Verity.
306305
"""
306+
print(x_mean)
307+
print(x_sd)
308+
print(klist)
307309
# subtract maximum value from x_mean (this has no effect on final outcome
308310
# but prevents under/overflow)
309311
# Just like in the original implementation (even though it should not be

0 commit comments

Comments
 (0)