lib/Tools/browser
author oheimb
Fri, 15 Jan 1999 16:13:31 +0100
changeset 6133 4f224fd882f9
parent 3640 7554be69fd09
child 7766 444ac56ead91
permissions -rwxr-xr-x
removed empty line (in case of empty begin_state marker) before Level line added printing of subgoals number in Level line

#!/bin/bash
#
# $Id$
#
# DESCRIPTION: Isabelle theory graph browser


PRG=$(basename $0)

function usage()
{
  echo
  echo "Usage: $PRG [GRAPHFILE]"
  echo
  exit 1
}


## main

[ "$1" = "-?" -o $# -gt 1 ] && usage

export CLASSPATH=$ISABELLE_HOME/lib/browser

[ $# -ne 1 ] && cd $ISABELLE_BROWSER_INFO/graph/data

java GraphBrowser.GraphBrowser $1