Thanks!
OK, the source code will be updated in the next release.
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