Skip to content

Commit

Permalink
Merge pull request #137 from HratchianGroup/master
Browse files Browse the repository at this point in the history
Fixed a gfortan compile-time error in MQC_Binary.
  • Loading branch information
hphratchian authored Sep 9, 2024
2 parents bf9117e + 6e40144 commit c4cd72d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions releaseNotes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ in that case will be set to 0.
September 9, 2024
* MQCPack version set to 24.9.1
* Added MQC_Binary to the build list.
* Fixed a bug in MQC_Binary that caused a compile-time error with gfortran.

August 26, 2024
* MQCPack version set to 24.8.1
Expand Down
10 changes: 5 additions & 5 deletions src/mqc_binary.F03
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ function MQC_Bits_Initialize(nBits) result(mqc_bits_out)
!
!
implicit none
type(mqc_bits),intent(out)::mqc_bits_out
type(mqc_bits)::mqc_bits_out
integer(kind=int64),intent(in),optional::nBits
!
integer(kind=int64)::my_nBits,nIntegers
Expand Down Expand Up @@ -237,7 +237,7 @@ function MQC_BTest(mqc_bits_in,bitnum) result(bitValue)
implicit none
type(mqc_bits),intent(In)::mqc_bits_in
integer(kind=int64),intent(in)::bitNum
logical,intent(out)::bitValue
logical::bitValue
!
integer(kind=int64)::iInteger,iBitNum
!
Expand Down Expand Up @@ -310,7 +310,7 @@ function MQC_IAnd(mqc_bits_in1,mqc_bits_in2) result(mqc_bits_out)
!
implicit none
type(mqc_bits),intent(in)::mqc_bits_in1,mqc_bits_in2
type(mqc_bits),intent(out)::mqc_bits_out
type(mqc_bits)::mqc_bits_out
!
integer(kind=int64)::i
!
Expand Down Expand Up @@ -343,7 +343,7 @@ function MQC_IEOR(mqc_bits_in1,mqc_bits_in2) result(mqc_bits_out)
!
implicit none
type(mqc_bits),intent(in)::mqc_bits_in1,mqc_bits_in2
type(mqc_bits),intent(out)::mqc_bits_out
type(mqc_bits)::mqc_bits_out
!
integer(kind=int64)::i
!
Expand Down Expand Up @@ -376,7 +376,7 @@ function MQC_IOR(mqc_bits_in1,mqc_bits_in2) result(mqc_bits_out)
!
implicit none
type(mqc_bits),intent(in)::mqc_bits_in1,mqc_bits_in2
type(mqc_bits),intent(out)::mqc_bits_out
type(mqc_bits)::mqc_bits_out
!
integer(kind=int64)::i
!
Expand Down

0 comments on commit c4cd72d

Please sign in to comment.