Learn R Programming

rkeops (version 1.4.2.2)

create_dllname: Create name of shared library from formula and arguments

Description

Using input formula and arguments along with current value of "precision" option, the function dllname creates a hashed name for the shared library where the operators defined by the formula and arguments will be compiled.

Usage

create_dllname(formula, args)

Value

dll name (text string)

Arguments

formula

text string

args

vector of text string

Author

Ghislain Durif

Details

When compiling a user-defined operators, a shared object (so) library (or dynamic link library, dll) file is created in the directory build_dir specified in compile options of rkeops. For every new operators, such a file is created.

The shared library file associated to a user-defined operator has a unique name so that it can be reused without compilation when calling again the associated operator.