#! /bin/csh -f

set msglvl       =      1
set msgFile      =    res
set msgFile      = stdout
set nrowA        =    100
set ncolA        =    100
set ncolB        =     32
set seed         =      1

foreach majorA ( 0 1 )
   foreach majorB ( 0 1 )
      foreach majorD ( 0 1 )
         foreach nrowA ( 100 )
            echo ' nrowA = ' $nrowA
            foreach ncolD ( 100 )
               echo '    ncolD = ' $ncolD
               test_sd3Upd $msglvl $msgFile \
                           $majorA $majorB $majorD \
                           $nrowA $ncolD \
                           $seed 
            end
         end
      end
   end
end
