-
Notifications
You must be signed in to change notification settings - Fork 0
/
NAMESPACE
76 lines (66 loc) · 1.98 KB
/
NAMESPACE
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
###____________________ IMPORTS ___________________________________
## Base R - packages ----------------------
importFrom("graphics", abline, legend, matplot, plot)
importFrom("methods", as, is, new,
cbind2, rbind2)
importFrom("stats", approx, confint, integrate, median, nlminb,
optim, optimHess, pchisq, qchisq, qnorm, rnorm,
runif, sd, splinefun, uniroot, var, ks.test)
importFrom("utils", as.relistable, relist,
head, tail)
## Windows specific imports
if(.Platform$OS.type == "windows"){
importFrom("utils", shortPathName)
}
## TMB:::install.contrib
importFrom("utils", download.file, file_test, unzip)
## TMB:::.onLoad
importFrom("utils", packageVersion)
## Recommended R - packages ----------------------
importClassesFrom("Matrix")# all currently (FIXME) , corMatrix, dgCMatrix, dgTMatrix, dpoMatrix)
importMethodsFrom("Matrix", coerce, cov2cor, determinant, drop,
"%*%", crossprod,tcrossprod,
t, diag, chol2inv, solve, colSums,rowSums)
importFrom("Matrix",
Cholesky, forceSymmetric, invPerm,
tril, triu, Diagonal)
###____________________ EXPORTS ___________________________________
export(benchmark,
checkConsistency,
compile,
config,
dynlib,
FreeADFun,
gdbsource,
MakeADFun,
newton,
newtonOption,
normalize,
oneStepPredict,
openmp,
plot.parallelBenchmark,
plot.tmbprofile,
precompile,
print.backtrace,
print.checkConsistency,
print.sdreport,
Rinterface,
runExample,
runSymbolicAnalysis,
sdreport,
SR,
summary.checkConsistency,
summary.sdreport,
template,
tmbprofile,
tmbroot)
## Methods :
S3method(confint, tmbprofile)
S3method(plot, tmbprofile)
S3method(print, sdreport)
S3method(summary, sdreport)
S3method(as.list, sdreport)
S3method(plot, parallelBenchmark)
S3method(print, backtrace)
S3method(print, checkConsistency)
S3method(summary, checkConsistency)