Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed a gfortan compile-time error in MQC_Binary. #137

Merged
merged 5 commits into from
Sep 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading