# File Sode.tmp.rb, line 242
def echo_eq_db

  $eq_dep_data.each_key {|id|
    puts "id = " + id
    puts "degree = " + $eq_dep_data[id].degree.to_s
    puts "priority = " + $eq_dep_data[id].priority.to_s
    $eq_dep_data[id].rhs_dat.each_key {|id2|
      puts "id2 = " + id2
      puts "$eq_dep_data[id].rhs_dat[id2] = " + $eq_dep_data[id].rhs_dat_val(id2).to_s
    }
  }
end