summaryrefslogtreecommitdiff
path: root/main.py
diff options
context:
space:
mode:
Diffstat (limited to 'main.py')
-rw-r--r--main.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/main.py b/main.py
index 013ae50fc..1e9a09631 100644
--- a/main.py
+++ b/main.py
@@ -52,7 +52,7 @@ def main():
ljm_recv, ljm_send = Pipe(False)
p2 = Process(target=lj_matrix_multiple,
- args=(molecules, nuclear_charge, ljm_send))
+ args=(molecules, nuclear_charge, ljm_send, 1, 0.25))
procs.append(p2)
pipes.append(ljm_recv)
p2.start()
@@ -99,7 +99,7 @@ def main():
# cm_text = ','.join([str(field) for field in cm])\
# + ',' + date + '\n'
ljm_text = ','.join([str(field) for field in ljm])\
- + ',0.25,1,' + date + '\n'
+ + ',1,0.25,' + date + '\n'
# save_file.write(cm_text)
save_file.write(ljm_text)