Skip to content

Releases: nlmixrdevelopment/dparser-R

v1.3.1-2

03 Apr 17:49
dec1721
Compare
Choose a tag to compare

This CRAN release updates dparser to a more recent version that fixes a minor memory leak. This release also fixes the USBAN and CSAN unsanitized behaviors.

Dparser 0.1.7

05 Oct 16:05
Compare
Choose a tag to compare

This tag suppresseses some warnings and successfully compiles on all versions of R.

Dparser R port CRAN initial release

30 Apr 03:12
Compare
Choose a tag to compare

A Scannerless GLR parser/parser generator. Note that GLR standing for "generalized LR", where L stands for "left-to-right" and
R stands for "rightmost (derivation)". For more information see https://en.wikipedia.org/wiki/GLR_parser. This parser is based on the Tomita
(1987) algorithm. (Paper can be found at http://acl-arc.comp.nus.edu.sg/archives/acl-arc-090501d3/data/pdf/anthology-PDF/J/J87/J87-1004.pdf).
The original dparser package documentation can be found at http://dparser.sourceforge.net/. This allows you to add mini-languages to R (like
RxODE's ODE mini-language Wang, Hallow, and James 2015 DOI:10.1002/psp4.12052) or to parse other languages like NONMEM to automatically translate
them to R code. To use this in your code, add a LinkingTo 'dparser' in your DESCRIPTION file and instead of using '#include <dparse.h>' use
'#include <dparser.h>'. This also provides a R-based port of the make_dparser http://dparser.sourceforge.net/d/make_dparser.cat command called
'mkdparser'. Additionally you can parse an arbitrary grammar within R using the 'dparse' function.