Multiwfn official website: http://sobereva.com/multiwfn. Multiwfn forum in Chinese: http://bbs.keinsci.com/wfn
You are not logged in.
The file procgriddata.f90 has a current non-standard comparison between logicals that causes the following error with GFortran.
"Error: Logicals at (1) must be compared with .eqv. instead of =="
This currently prevents the build of https://github.com/digital-chemistry-la … -mac-build. It can be updated like this:
- write(10,*) count(cub_do==.true.)
+ write(10,*) count(cub_do .eqv. .true.)^M
Offline
Thanks!
Offline