Can Fortran be forced to abide by the order of arguments in an and conditional
I am looping through indices and I am checking if I am not in the first loop interation and another condition. I don’t want the second condition to be evaluated if the first is .False.. do i = 1, n if ( i /= 1 .and. var(i) > var(i-1) ) then do something end if… Read More Can Fortran be forced to abide by the order of arguments in an and conditional