Skip to content

Commit

Permalink
Merge pull request #57 from thompsonresearchgroup/master
Browse files Browse the repository at this point in the history
Fock build using symmetry and Raffenetti integrals, as well a number of other changes
  • Loading branch information
leethomo86 authored Feb 6, 2020
2 parents 5b537b9 + f0094d4 commit 4e6dcc1
Show file tree
Hide file tree
Showing 6 changed files with 1,051 additions and 322 deletions.
2 changes: 1 addition & 1 deletion examples/diishf/diishf.F03
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ program diishf
write(iOut,'(A,I3)') 'Iteration: ',iter+1
!
! form G matrix
Gmat = contraction(eris,wavefunc%density_matrix)
Gmat = contraction([eris],wavefunc%density_matrix)
call Gmat%print(iOut,'G(P)')
!
! form Fock matrix and save
Expand Down
12 changes: 6 additions & 6 deletions examples/hartreefock/OUTPUT/out
Original file line number Diff line number Diff line change
Expand Up @@ -236,11 +236,11 @@ Iteration: 2
Orthogonal MO coefficients
Alpha Array
1 2
1 0.000000 -1.000000
1 0.000000 1.000000
2 1.000000 0.000000
Beta Array
1 2
1 0.000000 -1.000000
1 0.000000 1.000000
2 1.000000 0.000000
Orbital energies
Alpha Array
Expand All @@ -252,12 +252,12 @@ Iteration: 2
MO coefficients
Alpha Array
1 2
1 0.707069 0.707145
2 0.707069 -0.707145
1 0.707069 -0.707145
2 0.707069 0.707145
Beta Array
1 2
1 0.707069 0.707145
2 0.707069 -0.707145
1 0.707069 -0.707145
2 0.707069 0.707145
Density matrix
Alpha Array
1 2
Expand Down
2 changes: 1 addition & 1 deletion examples/hartreefock/hartreefock.F03
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ program hartreefock
write(iOut,'(A,I3)') 'Iteration: ',iter
!
! form G matrix
Gmat = contraction(eris,wavefunc%density_matrix)
Gmat = contraction([eris],wavefunc%density_matrix)
call Gmat%print(iOut,'G(P)')
!
! form Fock matrix
Expand Down
Loading

0 comments on commit 4e6dcc1

Please sign in to comment.