Skip to content

Commit

Permalink
Removing file 1 and file 2 from Molpro's input file (#720)
Browse files Browse the repository at this point in the history
Removing tow lines from Molpro's input file to write file 1 and file 2
due to an error that I'm encountering while running ARC or executing the
Molpro job. Changed the tests accordingly.
  • Loading branch information
calvinp0 authored Dec 17, 2023
2 parents 70fe03c + 23461db commit 3b46df6
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
2 changes: 0 additions & 2 deletions arc/job/adapters/molpro.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,6 @@

input_template = """***,${label}
memory,${memory},m;
file,1,file1.int !allocate permanent integral file
file,2,file2.wfu !allocate permanent wave-function (dump) file
geometry={angstrom;
${xyz}}
Expand Down
4 changes: 0 additions & 4 deletions arc/job/adapters/molpro_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,6 @@ def test_write_input_file(self):
content_1 = f.read()
job_1_expected_input_file = """***,spc1
memory,40,m;
file,1,file1.int !allocate permanent integral file
file,2,file2.wfu !allocate permanent wave-function (dump) file
geometry={angstrom;
O 0.00000000 0.00000000 1.00000000}
Expand Down Expand Up @@ -108,8 +106,6 @@ def test_write_input_file(self):
content_2 = f.read()
job_2_expected_input_file = """***,spc1
memory,40,m;
file,1,file1.int !allocate permanent integral file
file,2,file2.wfu !allocate permanent wave-function (dump) file
geometry={angstrom;
O 0.00000000 0.00000000 1.00000000}
Expand Down

0 comments on commit 3b46df6

Please sign in to comment.