mirror of
https://github.com/TREX-CoE/qmckl.git
synced 2024-11-19 20:42:50 +01:00
Handle output of ao_basis_type as a string
This commit is contained in:
parent
6b81f7965c
commit
fb43088c52
@ -29,6 +29,7 @@
|
|||||||
|
|
||||||
%cstring_bounded_output(char* function_name, 1024);
|
%cstring_bounded_output(char* function_name, 1024);
|
||||||
%cstring_bounded_output(char* message, 1024);
|
%cstring_bounded_output(char* message, 1024);
|
||||||
|
%cstring_bounded_output(char* const basis_type, 2);
|
||||||
|
|
||||||
/* This block is needed make SWIG convert NumPy arrays to/from from the C pointer and size_max argument.
|
/* This block is needed make SWIG convert NumPy arrays to/from from the C pointer and size_max argument.
|
||||||
NOTE: `numpy.i` interface file is not part of SWIG but it is included in the numpy distribution (under numpy/tools/swig/numpy.i)
|
NOTE: `numpy.i` interface file is not part of SWIG but it is included in the numpy distribution (under numpy/tools/swig/numpy.i)
|
||||||
|
@ -35,6 +35,9 @@ assert mo_num == 404
|
|||||||
|
|
||||||
pq.set_electron_coord(ctx, 'T', coord)
|
pq.set_electron_coord(ctx, 'T', coord)
|
||||||
|
|
||||||
|
ao_type = pq.get_ao_basis_type(ctx)
|
||||||
|
assert 'G' in ao_type
|
||||||
|
|
||||||
size_max = 5*walk_num*elec_num*mo_num
|
size_max = 5*walk_num*elec_num*mo_num
|
||||||
|
|
||||||
mo_vgl = pq.get_mo_basis_mo_vgl(ctx, size_max)
|
mo_vgl = pq.get_mo_basis_mo_vgl(ctx, size_max)
|
||||||
|
Loading…
Reference in New Issue
Block a user