Go to the first, previous, next, last section, table of contents.


How to load Asir/Contrib

With loading `OpenXM/rc/asirrc', we can use most functions in Asir/Contrib. The OpenXM/Risa/Asir reads this file, which is specified by the ASIR_CONFIG environmental variable, when it starts. The file `names.rr' is the top level file of the Asir/Contrib. Most other files are loaded from `names.rr'. Some packages are not loaded from `names.rr' and they must be loaded individually.

A sample of `asirrc' to use Asir/Contrib.

load("gr")$
load("primdec")$
load("katsura")$
load("bfct")$
load("names.rr")$
load("oxrfc103.rr")$
User_asirrc=which(getenv("HOME")+"/.asirrc")$
if (type(User_asirrc)!=0) {
   if (!ctrl("quiet_mode")) print("Loading ~/.asirrc")$
   load(User_asirrc)$
}else{ }$
end$


Go to the first, previous, next, last section, table of contents.