#! /usr/local/tk3.2/bin/wish -f
#
# This file contains the routines for a "Graph" menu
# Input parameter
#  w - name of window
proc AddGraph w {
menubutton $w -text "Graph" -menu $w.m
menu $w.m
$w.m add command -label "Residual" -command nop
$w.m add command -label "x-y"      -command nop
$w.m add command -label "Pie"      -command nop
}

# Residual should do two graphs optionally (vs iteration and vs number of
# matrix-vector products or perhaps versus flops).
