#! /bin/csh -f
#
#  test the DA2_invert2() method
#
#  created -- 97mar08, cca
#

set msglvl       =        1
set msgFile      =   stdout
set n            =       44
set inc1         =        1
set inc2         =       $n
set seed         =        1

foreach seed ( 1 2 3 4 )
   echo 'seed = ' $seed
   foreach n ( 100 101 102 )
      set inc1 = 1
      set inc2 = $n
      echo '   n = ' $n
      test_invert $msglvl $msgFile $n $inc1 $inc2 $seed
   end
end

