and verification of real-time systems modeled as networks of timed automata, extended with data types (bounded integers, arrays, etc.). The tool is developed in collaboration between the Department of Information Technology at Uppsala University, Sweden and the Department of Computer Science at Aalborg University in Denmark. WWW: http://www.uppaal.com/ PR: ports/84975 Submitted by: Timothy Bourke
14 lines
341 B
Bash
14 lines
341 B
Bash
#!/bin/sh
|
|
|
|
JAR=%%JAVASHAREDIR%%/%%PORTNAME%%/uppaal2k.jar
|
|
ENGINE=%%JAVASHAREDIR%%/%%PORTNAME%%
|
|
|
|
DISPSERV=$(expr "$DISPLAY" : '^\(.*\):.*')
|
|
if [ -z "$DISPSERV" ]; then DISPSERV=$(hostname); fi
|
|
|
|
if [ "$DISPSERV" = "$(hostname)" ]; then
|
|
java -jar $JAR -enginePath $ENGINE $*
|
|
else
|
|
java -jar $JAR -enginePath $ENGINE -antialias off $*
|
|
fi
|
|
|