# File diffeq.rb, line 70
def get_norms
set_z($norms)
i = 1 
while i <= $max_taylor  do 
tt = $y_higher[1][i]
m = tt.abs
if m > $norms[i] then
$norms[i] = m
end
if DEBUG == 1 then
puts "get norms i = " + i.to_s + "norms[i] = " + $norms[i].to_s + " eq_no = 1"
$stderr.puts "get norms i = " + i.to_s + "norms[i] = " + $norms[i].to_s + " eq_no = 1"
end
i = i + 1
end
return
end