# This is a MapleV initialization file for GRTensorII # =================================================== # Two paths need to be specified: # i)To tell maple where GRTensorII is (libname line) # ii)To tell GRTensorII where your metrics are (grOptionMetricPath). # ============== # In Windows 95/98/NT: # =============== # This file is called maple.ini # and it should be placed in the Lib subdirectory # of MapleV Release 5 if you have not installed the # patch "ec1patch", and in the Update subdirectory # of MapleV Release 5 if you have. # # A typical libname line is: # libname:=`c:/Grtii(5)/Lib`,libname: # # A typical metrics path is: # grOptionMetricPath := `c:/Grtii(5)/Metrics`; # ================ # In Unix: # ================= # This file is called .mapleinit and it # should be placed in your home directory . # You should also create a Metrics directory in your home directory. # # A typical libname line is: # libname:=`/usr/local/MapleVR5/Grtii(5)/Lib`, libname: # # A typical metrics path is: # grOptionMetricPath := `/home/yourname/Metrics`; # # ===================================================== # grtw(); loads GRTensorII for Release 5 in a typical # windows mode. # # grtc(); loads GRTensorII for Release 5 in a typical # command line mode. #=========================================== # # What follows is a working maple.ini file for Windows. # For Unix systems change the paths appropriately. # libname:=`c:/Grtii(5)/Lib`,libname: grtw := proc() readlib ( grii ): grtensor(): grtensoroptions1(): metrics(): end: grtc := proc() readlib ( grii ): grtensor(): kerneloptions(): grtensoroptions(): grtensoroptions1(): metrics(): end: kerneloptions:= proc() kernelopts(printbytes=false): end: grtensoroptions:= proc() global grOptionWindows; grOptionWindows:=false: end: grtensoroptions1:= proc() global grOptionTrace; grOptionTrace:=false: end: metrics := proc() global grOptionMetricPath; grOptionMetricPath := `c:/Grtii(5)/Metrics`; end: