# 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/2000: # =============== # 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. In Maple 6 it should # be in the Bin.Wnt subdirectory. # # A typical libname line is: # libname:=`c:/Grtii(5)/Lib`,libname: # # A typical metrics path is: # grOptionMetricPath := `c:/Grtii(5)/Metrics`; # # (Replace 5 by 6 for Maple 6 default GRTensorII installation). # ================ # 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: # # (Replace 5 by 6 for Maple 6 default GRTensorII installation). # # A typical metrics path is: # grOptionMetricPath := `/home/yourname/Metrics`; # # ===================================================== # grtw(); loads GRTensorII for Maple 6 and Maple Release 5 in a typical # windows mode. # # grtc(); loads GRTensorII for Maple 6 and Maple 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. # # Use of the option kernelopts(gcfreq=5000000): will speed up Maple over # the default (250000) in most calculations if you have at least 24 MB of # RAM. (Thanks to E.S. Cheb-Terrab for this.) libname:=`c:/Grtii(6)/Lib`,libname: grtw := proc() readlib ( grii ): grtensor(): interface(warnlevel=0): kernelopts(gcfreq=5000000): grtensoroptions1(): metrics(): end: grtc := proc() readlib ( grii ): grtensor(): kernelopts(gcfreq=5000000): 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(6)/Metrics`; end: