This relates to Reference-ScaLAPACK/scalapack#162 (comment)
There it was suggested to replace:
if ( .not. X .and. Y .OR. X .and .not. Y)
if ( (.not. X .and. .not. Y) .OR. (X .and Y))
these could be replaced with:
Would these changes be accepted here?
This relates to Reference-ScaLAPACK/scalapack#162 (comment)
There it was suggested to replace:
these could be replaced with:
Would these changes be accepted here?