-
Notifications
You must be signed in to change notification settings - Fork 0
/
NEWS
102 lines (66 loc) · 3.2 KB
/
NEWS
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
sparseHessianFD 0.3.3.5
- Minor changes for compatibility with Roxygen2 version 7.1.
- New API for Matrix 1.3: replaced deprecated giveCsparse arguments
with repr.
- Added pkgdown website.
sparseHessianFD 0.3.3.4
- Fix typo in inst/doc/replication.R.
sparseHessianFD 0.3.3.3
- Replaced deprecated Matrix package functions rBind and cBind with
their rbind and cbind counterparts.
sparseHessianFD 0.3.3.2
- References Journal of Statistical Software paper.
sparseHessianFD 0.3.3.1
- Modified registration of native routines in src/init.c to be
compatible with new Rcpp naming convention.
sparseHessianFD 0.3.3
- Updated version as accepted at Journal of Statistical Software
- Explicit registration of native routines, as required by R 3.4.0.
sparseHessianFD 0.3.2
- Added implementation of the complex step method.
- Revised vignette.
- The ‘direct’ argument to the sparseHessianFD initializer was removed
(defunct).
sparseHessianFD 0.3.0
- An even more major rewrite of the package. All ACM code was removed,
and replaced with original R/C++ implementations.
- The sparseHessianFD class is now implemented as an R reference
class, and not as an Rcpp module. The sparseHessianFD.new function
is deprecated. Instead, use sparseHessianFD to initialize an object.
Initialization once again takes place in a single step.
- The ‘direct’ computation method has been removed. All computation
uses the ‘indirect’ triangular substitution method. The ‘direct’
argument in the initializer for the sparseHessianFD class is now
deprecated, and remains solely for compatibility with older versions
of the package.
- There is a new vignette with a lot more detail about what the
package does and how it works.
- New matrix helper functions Matrix.to.Pointers and
Coord.to.Pointers. The Coord.to.Pattern.Matrix function is
deprecated. Use the spMatrix or sparseMatrix functions in the Matrix
package instead.
- With the removal of ACM-copyrighted code, this package is now
licensed under the MPL 2.0.
sparseHessianFD 0.2.0 (Jan. 28, 2015)
- Essentially a complete re-write of the package.
- New vignette, using a binary choice model as an example. Functions
for this model are in binary.R. Access sample simluated data with
data(binary).
- Documentation written using roxygen2
- Added unit tests using testthat
- Core class has been renamed sparseHessianFD. Construction and
initialization are now two separate steps.
- New function sparseHessianFD.new is a wrapper around the
construction and initialization steps.
- Deprecated functions in Version 0.2.0
- new.sparse.hessian.object. Use sparseHessianFD.new instead.
- Coord.to.Sym.Pattern.Matrix. Use Coord.to.Pattern.Matrix
instead, with option symmetric=TRUE.
- Sym.CSC.to.Matrix. Use the spMatrix function in the Matrix
package instead.
sparseHessianFD 0.1.1 (Nov. 5, 2013)
- Removed functions for sampling from, and computing the density of, a
multivariate normal distribution. These functions are now available
in the sparseMVN package.
sparseHessianFD 0.1.0 (Nov. 5, 2012)
- Initial upload to CRAN.