You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
May I have a very simple question here about printin the version of Libcint in C.
Usually the major/minor/micro number are defined seperately. But, from the header file I see the version is given by, e.g.
#define CINT_VERSION 5.5.0
How can this information can be easily printed in a function like:
void CintVersion() { printf("Libcint version: %s\n", CINT_VERSION) };
However expending CINT_VERSION to 5.5.0 will show an error with the compiler. Maybe there is a way to overcome this issue.
Thank you so much for your suggestions in advance!
The text was updated successfully, but these errors were encountered:
May I have a very simple question here about printin the version of Libcint in C.
Usually the major/minor/micro number are defined seperately. But, from the header file I see the version is given by, e.g.
#define CINT_VERSION 5.5.0
How can this information can be easily printed in a function like:
void CintVersion() { printf("Libcint version: %s\n", CINT_VERSION) };
However expending CINT_VERSION to 5.5.0 will show an error with the compiler. Maybe there is a way to overcome this issue.
Thank you so much for your suggestions in advance!
The text was updated successfully, but these errors were encountered: