https://github.com/hpc-maths/GenEO
Revision 907bdfd332a7ec2c33ea11201cf029397cc15eab authored by Nicole Spillane on 20 May 2021, 09:54:10 UTC, committed by Nicole Spillane on 20 May 2021, 09:54:10 UTC
1 parent 7df0dea
Tip revision: 907bdfd332a7ec2c33ea11201cf029397cc15eab authored by Nicole Spillane on 20 May 2021, 09:54:10 UTC
the user can now specify directly the values of tau for the GenEO eigenvalue problems. A separate file for testing Apos has been created. The option PCNewH2addCS was removed as it is not a good choice for the H2 that is incorporated into H3.
the user can now specify directly the values of tau for the GenEO eigenvalue problems. A separate file for testing Apos has been created. The option PCNewH2addCS was removed as it is not a good choice for the H2 that is incorporated into H3.
Tip revision: 907bdfd
xvfb_bg
XVFB=/usr/bin/Xvfb
XVFBARGS=":1 -screen 0 1024x768x24 -ac +extension GLX +render -noreset"
PIDFILE=xvfb.pid
case "$1" in
start)
echo -n "Starting virtual X frame buffer: Xvfb"
start-stop-daemon --start --quiet --pidfile $PIDFILE --make-pidfile --background --exec $XVFB -- $XVFBARGS
echo "."
;;
stop)
echo -n "Stopping virtual X frame buffer: Xvfb"
start-stop-daemon --stop --quiet --pidfile $PIDFILE
echo "."
;;
restart)
$0 stop
$0 start
;;
*)
echo "Usage: /etc/init.d/xvfb {start|stop|restart}"
exit 1
esac
exit 0
Computing file changes ...