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
The code stdlib_sorting_sort.f90 was failing on some systems becasue it
improperlly assumed short circuiting
do while( i >= 0 .and. array(i) > key )
should have been
do while( i >= 0 )
if (array(i) <= key ) exit
[ticket: X]
0 commit comments