Software Resources in the Natural Language Group
page by ulrich germann

Software Resources in the Natural Language Group

CPLEX 6.6

Licence Status: One single user licence on liszt
Small print: One person may run one process at a time on liszt only.
Location: /usr/ilog/cplex66 on liszt
Note: This directory is not accessible through nfs. You will have to compile and use programs that use CPLEX on liszt.
Documentation: We do have printed manuals as well as Online Documentation (internal use only)

Data Display Debugger
(an x-windows interface to the (Gnu) debugger; similar to xxgdb but with fancier graphics)

Licence Status: Gnu Public Licence (GPL)
Location:
Solaris: /opt/winter/bin/ddd
Linux: /nfs/liszt/nlg/bin/ddd

GNU G++

Licence Status: Gnu Public Licence (GPL)
Location:
Solaris: /nfs/mendels3/nlg/software/gcc-2.95.2
Linux: /nfs/liszt/nlg/
Note: In your Makefile (always use gmake (= gnu make)) include:
ifeq ($(OS), sunos_5.5.1)
NLGDIR = /nfs/mendels3/nlg
CC = $(NLGDIR)/software/gcc-2.95.2/bin/gcc
CXX = $(NLGDIR)/software/gcc-2.95.2/bin/g++
else
ifeq ($(OS),linux_2.2.14-5.0smp)
CC = /nfs/liszt/nlg/bin/gcc
CXX = /nfs/liszt/nlg/bin/g++
endif
endif