mirror of
https://github.com/TREX-CoE/qmckl.git
synced 2024-11-03 20:54:09 +01:00
Fixed Fortran interface of Jastrow (2)
This commit is contained in:
parent
a3a649898f
commit
e66950bbea
@ -978,7 +978,7 @@ interface
|
||||
end function qmckl_set_jastrow_aord_num
|
||||
|
||||
integer(qmckl_exit_code) function qmckl_set_jastrow_bord_num (context, &
|
||||
aord_num) bind(C)
|
||||
bord_num) bind(C)
|
||||
use, intrinsic :: iso_c_binding
|
||||
import
|
||||
implicit none
|
||||
@ -987,7 +987,7 @@ interface
|
||||
end function qmckl_set_jastrow_bord_num
|
||||
|
||||
integer(qmckl_exit_code) function qmckl_set_jastrow_cord_num (context, &
|
||||
aord_num) bind(C)
|
||||
cord_num) bind(C)
|
||||
use, intrinsic :: iso_c_binding
|
||||
import
|
||||
implicit none
|
||||
@ -1010,8 +1010,8 @@ interface
|
||||
import
|
||||
implicit none
|
||||
integer (qmckl_context) , intent(in) , value :: context
|
||||
integer(c_int64_t), intent(in) :: type_nucl_vector(size_max)
|
||||
integer(c_int64_t), intent(in), value :: size_max
|
||||
integer(c_int64_t), intent(in) :: type_nucl_vector(size_max)
|
||||
end function qmckl_set_jastrow_type_nucl_vector
|
||||
|
||||
integer(qmckl_exit_code) function qmckl_set_jastrow_aord_vector(context, &
|
||||
@ -1020,8 +1020,8 @@ interface
|
||||
import
|
||||
implicit none
|
||||
integer (qmckl_context) , intent(in) , value :: context
|
||||
double precision, intent(in) :: aord_vector(size_max)
|
||||
integer(c_int64_t), intent(in), value :: size_max
|
||||
double precision, intent(in) :: aord_vector(size_max)
|
||||
end function qmckl_set_jastrow_aord_vector
|
||||
|
||||
integer(qmckl_exit_code) function qmckl_set_jastrow_bord_vector(context, &
|
||||
@ -1030,8 +1030,8 @@ interface
|
||||
import
|
||||
implicit none
|
||||
integer (qmckl_context) , intent(in) , value :: context
|
||||
double precision, intent(in) :: bord_vector(size_max)
|
||||
integer(c_int64_t), intent(in), value :: size_max
|
||||
double precision, intent(in) :: bord_vector(size_max)
|
||||
end function qmckl_set_jastrow_bord_vector
|
||||
|
||||
integer(qmckl_exit_code) function qmckl_set_jastrow_cord_vector(context, &
|
||||
@ -1040,8 +1040,8 @@ interface
|
||||
import
|
||||
implicit none
|
||||
integer (qmckl_context) , intent(in) , value :: context
|
||||
double precision, intent(in) :: cord_vector(size_max)
|
||||
integer(c_int64_t), intent(in), value :: size_max
|
||||
double precision, intent(in) :: cord_vector(size_max)
|
||||
end function qmckl_set_jastrow_cord_vector
|
||||
|
||||
end interface
|
||||
|
Loading…
Reference in New Issue
Block a user