head	1.1;
access;
symbols
	charm6_1:1.1
	charm_6_0_1:1.1
	charm6_0_1:1.1
	charm6_0:1.1;
locks; strict;
comment	@# @;


1.1
date	2007.11.08.19.29.50;	author idooley2;	state Exp;
branches;
next	;
commitid	4dee473363994567;


desc
@@


1.1
log
@Adding a projections wrapper that enables the evaluation of assertions(which are off by default).
@
text
@#!/bin/sh

jarpath="`dirname $0`/projections.jar"

if test -x /usr/bin/cygpath
then 
  if test "`uname -o`" = "Cygwin"
  then
    jarpath=`/usr/bin/cygpath -w -a $jarpath`
  fi 
fi

java -enableassertions \
  -ms256000000 -mx1000000000 \
  -classpath $jarpath \
  projections.analysis.ProjMain $*
@
