Skip to content

Commit

Permalink
aobasis: Fix allocation of sphi in create_primitive_basis_set
Browse files Browse the repository at this point in the history
  • Loading branch information
oschuett committed Jul 22, 2020
1 parent 61852fc commit 21a643d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/aobasis/basis_set_types.F
Original file line number Diff line number Diff line change
Expand Up @@ -476,7 +476,7 @@ SUBROUTINE create_primitive_basis_set(basis_set, pbasis)
ALLOCATE (pbasis%norm_cgf(ncgf))
ALLOCATE (pbasis%cphi(maxco, ncgf))
pbasis%cphi = 0.0_dp
ALLOCATE (pbasis%sphi(maxco, ncgf))
ALLOCATE (pbasis%sphi(maxco, nsgf))
pbasis%sphi = 0.0_dp
ALLOCATE (pbasis%scon(maxco, ncgf))
pbasis%scon = 0.0_dp
Expand Down

0 comments on commit 21a643d

Please sign in to comment.