# Comments: # In Windows this file is called maple.ini # and it should be placed in the Users subdirectory # of Maple 8 . # In what follows change `D:/Grtii(6)/Lib` and # `D:/Grtii(6)/Metrics` to whatever is appropriate # to your machine. # # In Unix this file is called .mapleini and it # should be placed in your home directory and the # paths should be changed appropriately. # # grtw(); loads GRTensorII for Maple 8 in a typical # windows mode. # # grtc(); loads GRTensorII for Maple 8 in a typical # command line mode. # libname:=`D:/Grtii(6)/Lib`,libname: grtw := proc() readlib ( grii ): grlib(invar): grlib(dinvar): grlib(basislib): grlib(grtools): grlib(trigsin): grtensor(): kernelopts(gcfreq=5000000): grtensoroptions1(): metrics(): end: grtc := proc() readlib ( grii ): grlib(invar): grlib(dinvar): grlib(basislib): grlib(grtools): grlib(trigsin): grtensor(): kernelopts(gcfreq=5000000): kerneloptions(): grtensoroptions(): grtensoroptions1(): grtensoroptions2(): metrics(): end: kerneloptions:= proc() kernelopts(printbytes=false): end: grtensoroptions:= proc() global grOptionWindows; grOptionWindows:=false: end: grtensoroptions1:= proc() global grOptionTrace; grOptionTrace:=false: end: grtensoroptions2:= proc() global grOptionTermSize; grOptionTermSize:=1: end: metrics := proc() global grOptionMetricPath; grOptionMetricPath := `D:/Grtii(6)/Metrics`; end: