96 *method = fun.method[0];
99 for(
int i = 0; i < *n; i++) {
112 x = y = b = c = d = e = NULL;
121 (*this).copy_from(x);
143 for(
int i=0; i < *n; i++) {
147 spline_coef(method, n, x, y, b, c, d, e);
157 spline_eval(method, nu, u, v,
164 for (
int i=0; i<x.size(); i++) y[i] = (*
this)(x[i]);
185 void natural_spline(
int n, Type *x, Type *y, Type *b, Type *c, Type *d)
190 x--; y--; b--; c--; d--;
199 b[1] = t / (x[2]-x[1]);
201 c[1] = c[2] = d[1] = d[2] = 0.0;
211 c[2] = (y[2] - y[1])/d[1];
212 for( i=2 ; i<n ; i++) {
213 d[i] = x[i+1] - x[i];
214 b[i] = 2.0 * (d[i-1] + d[i]);
215 c[i+1] = (y[i+1] - y[i])/d[i];
216 c[i] = c[i+1] - c[i];
221 for(i=3 ; i<n ; i++) {
223 b[i] = b[i] - t*d[i-1];
224 c[i] = c[i] - t*c[i-1];
229 c[nm1] = c[nm1]/b[nm1];
230 for(i=n-2 ; i>1 ; i--)
231 c[i] = (c[i]-d[i]*c[i+1])/b[i];
239 b[1] = (y[2] - y[1])/d[1] - d[i] * c[2];
242 b[n] = (y[n] - y[nm1])/d[nm1] + d[nm1] * c[nm1];
243 for(i=2 ; i<n ; i++) {
244 b[i] = (y[i+1]-y[i])/d[i] - d[i]*(c[i+1]+2.0*c[i]);
245 d[i] = (c[i+1]-c[i])/d[i];
263 void fmm_spline(
int n, Type *x, Type *y, Type *b, Type *c, Type *d)
270 x--; y--; b--; c--; d--;
279 b[1] = t / (x[2]-x[1]);
281 c[1] = c[2] = d[1] = d[2] = 0.0;
291 c[2] = (y[2] - y[1])/d[1];
292 for(i=2 ; i<n ; i++) {
293 d[i] = x[i+1] - x[i];
294 b[i] = 2.0 * (d[i-1] + d[i]);
295 c[i+1] = (y[i+1] - y[i])/d[i];
296 c[i] = c[i+1] - c[i];
307 c[1] = c[3]/(x[4]-x[2]) - c[2]/(x[3]-x[1]);
308 c[n] = c[nm1]/(x[n] - x[n-2]) - c[n-2]/(x[nm1]-x[n-3]);
309 c[1] = c[1]*d[1]*d[1]/(x[4]-x[1]);
310 c[n] = -c[n]*d[nm1]*d[nm1]/(x[n]-x[n-3]);
315 for(i=2 ; i<=n ; i++) {
317 b[i] = b[i] - t*d[i-1];
318 c[i] = c[i] - t*c[i-1];
324 for(i=nm1 ; i>=1 ; i--)
325 c[i] = (c[i]-d[i]*c[i+1])/b[i];
330 b[n] = (y[n] - y[n-1])/d[n-1] + d[n-1]*(c[n-1]+ 2.0*c[n]);
331 for(i=1 ; i<=nm1 ; i++) {
332 b[i] = (y[i+1]-y[i])/d[i] - d[i]*(c[i+1]+2.0*c[i]);
333 d[i] = (c[i+1]-c[i])/d[i];
352 void periodic_spline(
int n, Type *x, Type *y,
353 Type *b, Type *c, Type *d, Type *e)
360 x--; y--; b--; c--; d--; e--;
362 if(n < 2 || y[1] != y[n]) {
368 b[1] = b[2] = c[1] = c[2] = d[1] = d[2] = 0.0;
371 b[1] = b[2] = b[3] = -(y[1] - y[2])*(x[1] - 2*x[2] + x[3])/(x[3]-x[2])/(x[2]-x[1]);
372 c[1] = -3*(y[1]-y[2])/(x[3]-x[2])/(x[2]-x[1]);
375 d[1] = -2*c[1]/3/(x[2]-x[1]);
376 d[2] = -d[1]*(x[2]-x[1])/(x[3]-x[2]);
392 B[nm1]= x[n] - x[nm1];
393 A[1] = 2.0 * (B[1] + B[nm1]);
394 C[1] = (y[2] - y[1])/B[1] - (y[n] - y[nm1])/B[nm1];
396 for(i = 2; i < n; i++) {
397 B[i] = x[i+1] - x[i];
398 A[i] = 2.0 * (B[i] + B[i-1]);
399 C[i] = (y[i+1] - y[i])/B[i] - (y[i] - y[i-1])/B[i-1];
409 E[1] = (x[n] - x[nm1])/L[1];
411 for(i = 1; i <= nm1 - 2; i++) {
413 if(i != 1) E[i] = -E[i-1] * M[i-1] / L[i];
414 L[i+1] = sqrt(A[i+1]-M[i]*M[i]);
417 M[nm1-1] = (B[nm1-1] - E[nm1-2] * M[nm1-2])/L[nm1-1];
418 L[nm1] = sqrt(A[nm1] - M[nm1-1]*M[nm1-1] - s);
427 for(i=2 ; i<=nm1-1 ; i++) {
428 Y[i] = (D[i] - M[i-1]*Y[i-1])/L[i];
429 s = s + E[i-1] * Y[i-1];
431 Y[nm1] = (D[nm1] - M[nm1-1] * Y[nm1-1] - s) / L[nm1];
435 X[nm1] = Y[nm1]/L[nm1];
436 X[nm1-1] = (Y[nm1-1] - M[nm1-1] * X[nm1])/L[nm1-1];
437 for(i=nm1-2 ; i>=1 ; i--)
438 X[i] = (Y[i] - M[i] * X[i+1] - E[i] * X[nm1])/L[i];
446 for(i=1 ; i<=nm1 ; i++) {
448 b[i] = (y[i+1]-y[i])/s - s*(c[i+1]+2.0*c[i]);
449 d[i] = (c[i+1]-c[i])/s;
467 void spline_coef(
int *method,
int *n, Type *x, Type *y,
468 Type *b, Type *c, Type *d, Type *e)
472 periodic_spline(*n, x, y, b, c, d, e);
break;
475 natural_spline(*n, x, y, b, c, d);
break;
478 fmm_spline(*n, x, y, b, c, d);
break;
482 void spline_eval(
int *method,
int *nu, Type *u, Type *v,
483 int *n, Type *x, Type *y, Type *b, Type *c, Type *d)
488 const int n_1 = *n - 1;
492 if(*method == 1 && *n > 1) {
494 for(l = 0; l < *nu; l++) {
497 v[l] = fmod(asDouble(u[l]-x[0]), asDouble(dx));
498 if(v[l] < 0.0) v[l] += dx;
503 for(l = 0; l < *nu; l++)
508 for(l = 0; l < *nu; l++) {
510 if(ul < x[i] || (i < n_1 && x[i+1] < ul)) {
523 tmp = (*method == 2 && ul < x[0]) ? 0.0 : d[i];
525 v[l] = y[i] + dx*(b[i] + dx*(c[i] + dx*tmp));
splinefun(const vector< Type > &x_, const vector< Type > &y_, int method_=3)
Construct spline function object.
Vector class used by TMB.
Type operator()(const Type &x_)
Evaluate spline - scalar argument case.
diff --git a/spmat_8hpp.html b/spmat_8hpp.html
index 9fc32d737..5fd342abb 100644
--- a/spmat_8hpp.html
+++ b/spmat_8hpp.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/spmat_8hpp_source.html b/spmat_8hpp_source.html
index 666d3a348..cd4a29aeb 100644
--- a/spmat_8hpp_source.html
+++ b/spmat_8hpp_source.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/start__parallel_8hpp_source.html b/start__parallel_8hpp_source.html
index 1c1b8abe0..b4ed45391 100644
--- a/start__parallel_8hpp_source.html
+++ b/start__parallel_8hpp_source.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/stirlerr_8cpp_source.html b/stirlerr_8cpp_source.html
index 42649c94a..15beec629 100644
--- a/stirlerr_8cpp_source.html
+++ b/stirlerr_8cpp_source.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structEigen_1_1Accessible__CholmodSupernodalLLT-members.html b/structEigen_1_1Accessible__CholmodSupernodalLLT-members.html
index ae937e99e..5c800fc4f 100644
--- a/structEigen_1_1Accessible__CholmodSupernodalLLT-members.html
+++ b/structEigen_1_1Accessible__CholmodSupernodalLLT-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structEigen_1_1Accessible__CholmodSupernodalLLT.html b/structEigen_1_1Accessible__CholmodSupernodalLLT.html
index 08dc552f4..dbcf10e99 100644
--- a/structEigen_1_1Accessible__CholmodSupernodalLLT.html
+++ b/structEigen_1_1Accessible__CholmodSupernodalLLT.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structR__inla_1_1spde__aniso__t-members.html b/structR__inla_1_1spde__aniso__t-members.html
index 1de4d6ff4..4a34ff023 100644
--- a/structR__inla_1_1spde__aniso__t-members.html
+++ b/structR__inla_1_1spde__aniso__t-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structR__inla_1_1spde__aniso__t.html b/structR__inla_1_1spde__aniso__t.html
index 0f40e4495..ba7cec37a 100644
--- a/structR__inla_1_1spde__aniso__t.html
+++ b/structR__inla_1_1spde__aniso__t.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structR__inla_1_1spde__t-members.html b/structR__inla_1_1spde__t-members.html
index 3f1e26865..9e2fd3ed6 100644
--- a/structR__inla_1_1spde__t-members.html
+++ b/structR__inla_1_1spde__t-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structR__inla_1_1spde__t.html b/structR__inla_1_1spde__t.html
index fbf5392cf..c12451aa5 100644
--- a/structR__inla_1_1spde__t.html
+++ b/structR__inla_1_1spde__t.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1ADFun-members.html b/structTMBad_1_1ADFun-members.html
index 331b57ce4..a9871308b 100644
--- a/structTMBad_1_1ADFun-members.html
+++ b/structTMBad_1_1ADFun-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1ADFun.html b/structTMBad_1_1ADFun.html
index ae740b18c..7f18d5235 100644
--- a/structTMBad_1_1ADFun.html
+++ b/structTMBad_1_1ADFun.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1ADFun__packed-members.html b/structTMBad_1_1ADFun__packed-members.html
index e27500f0f..6b9af1492 100644
--- a/structTMBad_1_1ADFun__packed-members.html
+++ b/structTMBad_1_1ADFun__packed-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1ADFun__packed.html b/structTMBad_1_1ADFun__packed.html
index 810759f7b..bb2651c41 100644
--- a/structTMBad_1_1ADFun__packed.html
+++ b/structTMBad_1_1ADFun__packed.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1Args-members.html b/structTMBad_1_1Args-members.html
index c15a5787f..e17cf9137 100644
--- a/structTMBad_1_1Args-members.html
+++ b/structTMBad_1_1Args-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1Args.html b/structTMBad_1_1Args.html
index 83f797b8e..f9c8f04f0 100644
--- a/structTMBad_1_1Args.html
+++ b/structTMBad_1_1Args.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1AtomOp-members.html b/structTMBad_1_1AtomOp-members.html
index 53a4cc35a..aa765919d 100644
--- a/structTMBad_1_1AtomOp-members.html
+++ b/structTMBad_1_1AtomOp-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1AtomOp.html b/structTMBad_1_1AtomOp.html
index 20a3c245a..4bbce9ada 100644
--- a/structTMBad_1_1AtomOp.html
+++ b/structTMBad_1_1AtomOp.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1Decomp2-members.html b/structTMBad_1_1Decomp2-members.html
index 78639c41d..a6a73e829 100644
--- a/structTMBad_1_1Decomp2-members.html
+++ b/structTMBad_1_1Decomp2-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1Decomp2.html b/structTMBad_1_1Decomp2.html
index 828784d40..0722823fb 100644
--- a/structTMBad_1_1Decomp2.html
+++ b/structTMBad_1_1Decomp2.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1Decomp3-members.html b/structTMBad_1_1Decomp3-members.html
index 36cb5413e..0a6895b77 100644
--- a/structTMBad_1_1Decomp3-members.html
+++ b/structTMBad_1_1Decomp3-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1Decomp3.html b/structTMBad_1_1Decomp3.html
index e941b2687..1f93caa1a 100644
--- a/structTMBad_1_1Decomp3.html
+++ b/structTMBad_1_1Decomp3.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1ForwardArgs-members.html b/structTMBad_1_1ForwardArgs-members.html
index df2ee4ac0..6136daa2b 100644
--- a/structTMBad_1_1ForwardArgs-members.html
+++ b/structTMBad_1_1ForwardArgs-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1ForwardArgs.html b/structTMBad_1_1ForwardArgs.html
index 415c4d972..c194bb1f2 100644
--- a/structTMBad_1_1ForwardArgs.html
+++ b/structTMBad_1_1ForwardArgs.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1IndirectAccessor-members.html b/structTMBad_1_1IndirectAccessor-members.html
index 0b79a4c90..2ab10b42f 100644
--- a/structTMBad_1_1IndirectAccessor-members.html
+++ b/structTMBad_1_1IndirectAccessor-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1IndirectAccessor.html b/structTMBad_1_1IndirectAccessor.html
index 11c37778b..3dd151729 100644
--- a/structTMBad_1_1IndirectAccessor.html
+++ b/structTMBad_1_1IndirectAccessor.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1Integral-members.html b/structTMBad_1_1Integral-members.html
index a9efa315c..0026be795 100644
--- a/structTMBad_1_1Integral-members.html
+++ b/structTMBad_1_1Integral-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1Integral.html b/structTMBad_1_1Integral.html
index babdd824b..c88e3f481 100644
--- a/structTMBad_1_1Integral.html
+++ b/structTMBad_1_1Integral.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1PackOp-members.html b/structTMBad_1_1PackOp-members.html
index e1d04d677..848fd595e 100644
--- a/structTMBad_1_1PackOp-members.html
+++ b/structTMBad_1_1PackOp-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1PackOp.html b/structTMBad_1_1PackOp.html
index 46b31942d..e05b3ae76 100644
--- a/structTMBad_1_1PackOp.html
+++ b/structTMBad_1_1PackOp.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1PackWrap-members.html b/structTMBad_1_1PackWrap-members.html
index 3f94e6480..043079165 100644
--- a/structTMBad_1_1PackWrap-members.html
+++ b/structTMBad_1_1PackWrap-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1PackWrap.html b/structTMBad_1_1PackWrap.html
index b0ddaf27b..c4b224a42 100644
--- a/structTMBad_1_1PackWrap.html
+++ b/structTMBad_1_1PackWrap.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1ParalOp-members.html b/structTMBad_1_1ParalOp-members.html
index d86a6554c..5c0c10bf0 100644
--- a/structTMBad_1_1ParalOp-members.html
+++ b/structTMBad_1_1ParalOp-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1ParalOp.html b/structTMBad_1_1ParalOp.html
index 2c5e743f2..61a566476 100644
--- a/structTMBad_1_1ParalOp.html
+++ b/structTMBad_1_1ParalOp.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1ParametersChanged-members.html b/structTMBad_1_1ParametersChanged-members.html
index c3a5ac8d2..76d3870d3 100644
--- a/structTMBad_1_1ParametersChanged-members.html
+++ b/structTMBad_1_1ParametersChanged-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1ParametersChanged.html b/structTMBad_1_1ParametersChanged.html
index 1d053c797..887f9a554 100644
--- a/structTMBad_1_1ParametersChanged.html
+++ b/structTMBad_1_1ParametersChanged.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1ReverseArgs-members.html b/structTMBad_1_1ReverseArgs-members.html
index bd2bda34e..4e1b038af 100644
--- a/structTMBad_1_1ReverseArgs-members.html
+++ b/structTMBad_1_1ReverseArgs-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1ReverseArgs.html b/structTMBad_1_1ReverseArgs.html
index 0ec8a1408..92ce0e28f 100644
--- a/structTMBad_1_1ReverseArgs.html
+++ b/structTMBad_1_1ReverseArgs.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1SegmentRef-members.html b/structTMBad_1_1SegmentRef-members.html
index 107b04533..d85a5ec00 100644
--- a/structTMBad_1_1SegmentRef-members.html
+++ b/structTMBad_1_1SegmentRef-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1SegmentRef.html b/structTMBad_1_1SegmentRef.html
index 7730e8b69..1e12db390 100644
--- a/structTMBad_1_1SegmentRef.html
+++ b/structTMBad_1_1SegmentRef.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1SpJacFun__config-members.html b/structTMBad_1_1SpJacFun__config-members.html
index bfd41ccc3..c5fb342c5 100644
--- a/structTMBad_1_1SpJacFun__config-members.html
+++ b/structTMBad_1_1SpJacFun__config-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1SpJacFun__config.html b/structTMBad_1_1SpJacFun__config.html
index 217156a0e..d88df3ca6 100644
--- a/structTMBad_1_1SpJacFun__config.html
+++ b/structTMBad_1_1SpJacFun__config.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1StdWrap-members.html b/structTMBad_1_1StdWrap-members.html
index be89cd9b0..d37703384 100644
--- a/structTMBad_1_1StdWrap-members.html
+++ b/structTMBad_1_1StdWrap-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1StdWrap.html b/structTMBad_1_1StdWrap.html
index ba12dd753..d0855cc19 100644
--- a/structTMBad_1_1StdWrap.html
+++ b/structTMBad_1_1StdWrap.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1UnpkOp-members.html b/structTMBad_1_1UnpkOp-members.html
index 64dc6353f..af3901e03 100644
--- a/structTMBad_1_1UnpkOp-members.html
+++ b/structTMBad_1_1UnpkOp-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1UnpkOp.html b/structTMBad_1_1UnpkOp.html
index 5aa682b6c..15877f495 100644
--- a/structTMBad_1_1UnpkOp.html
+++ b/structTMBad_1_1UnpkOp.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1ad__plain__index-members.html b/structTMBad_1_1ad__plain__index-members.html
index e9df09dbe..457303570 100644
--- a/structTMBad_1_1ad__plain__index-members.html
+++ b/structTMBad_1_1ad__plain__index-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1ad__plain__index.html b/structTMBad_1_1ad__plain__index.html
index 5d33f9184..42d38e71c 100644
--- a/structTMBad_1_1ad__plain__index.html
+++ b/structTMBad_1_1ad__plain__index.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1adaptive-members.html b/structTMBad_1_1adaptive-members.html
index 3ef79ba40..4283fc666 100644
--- a/structTMBad_1_1adaptive-members.html
+++ b/structTMBad_1_1adaptive-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1adaptive.html b/structTMBad_1_1adaptive.html
index 54a84fe76..9aa353b9d 100644
--- a/structTMBad_1_1adaptive.html
+++ b/structTMBad_1_1adaptive.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1autopar-members.html b/structTMBad_1_1autopar-members.html
index d3f1fad41..0861b43cb 100644
--- a/structTMBad_1_1autopar-members.html
+++ b/structTMBad_1_1autopar-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1autopar.html b/structTMBad_1_1autopar.html
index 45d81e67b..6f06d3c3f 100644
--- a/structTMBad_1_1autopar.html
+++ b/structTMBad_1_1autopar.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1clique-members.html b/structTMBad_1_1clique-members.html
index af254af5d..0f3b5bb5c 100644
--- a/structTMBad_1_1clique-members.html
+++ b/structTMBad_1_1clique-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1clique.html b/structTMBad_1_1clique.html
index 35a1f98b9..028c59331 100644
--- a/structTMBad_1_1clique.html
+++ b/structTMBad_1_1clique.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1control-members.html b/structTMBad_1_1control-members.html
index ac5da6631..2e715aa03 100644
--- a/structTMBad_1_1control-members.html
+++ b/structTMBad_1_1control-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1control.html b/structTMBad_1_1control.html
index 0607c1725..56741fb5a 100644
--- a/structTMBad_1_1control.html
+++ b/structTMBad_1_1control.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1forbid__remap-members.html b/structTMBad_1_1forbid__remap-members.html
index 79987cba6..a9e50ac54 100644
--- a/structTMBad_1_1forbid__remap-members.html
+++ b/structTMBad_1_1forbid__remap-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1forbid__remap.html b/structTMBad_1_1forbid__remap.html
index 86cd95798..3f1ef90cc 100644
--- a/structTMBad_1_1forbid__remap.html
+++ b/structTMBad_1_1forbid__remap.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1global-members.html b/structTMBad_1_1global-members.html
index fa90a4758..54df9d55e 100644
--- a/structTMBad_1_1global-members.html
+++ b/structTMBad_1_1global-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1global.html b/structTMBad_1_1global.html
index 9b1ceb03a..386fda60b 100644
--- a/structTMBad_1_1global.html
+++ b/structTMBad_1_1global.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1global_1_1AddDependencies-members.html b/structTMBad_1_1global_1_1AddDependencies-members.html
index 2d9cd84fb..b5ceb6fe7 100644
--- a/structTMBad_1_1global_1_1AddDependencies-members.html
+++ b/structTMBad_1_1global_1_1AddDependencies-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1global_1_1AddDependencies.html b/structTMBad_1_1global_1_1AddDependencies.html
index 9c46af4c7..bb194f9a3 100644
--- a/structTMBad_1_1global_1_1AddDependencies.html
+++ b/structTMBad_1_1global_1_1AddDependencies.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1global_1_1AddForwardFromEval.html b/structTMBad_1_1global_1_1AddForwardFromEval.html
index f39428cd7..1fb0d53ff 100644
--- a/structTMBad_1_1global_1_1AddForwardFromEval.html
+++ b/structTMBad_1_1global_1_1AddForwardFromEval.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1global_1_1AddForwardFromEval_3_01OperatorBase_00_011_01_4-members.html b/structTMBad_1_1global_1_1AddForwardFromEval_3_01OperatorBase_00_011_01_4-members.html
index a1dac9445..84509dda5 100644
--- a/structTMBad_1_1global_1_1AddForwardFromEval_3_01OperatorBase_00_011_01_4-members.html
+++ b/structTMBad_1_1global_1_1AddForwardFromEval_3_01OperatorBase_00_011_01_4-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1global_1_1AddForwardFromEval_3_01OperatorBase_00_011_01_4.html b/structTMBad_1_1global_1_1AddForwardFromEval_3_01OperatorBase_00_011_01_4.html
index 0d2a82838..36ee85afb 100644
--- a/structTMBad_1_1global_1_1AddForwardFromEval_3_01OperatorBase_00_011_01_4.html
+++ b/structTMBad_1_1global_1_1AddForwardFromEval_3_01OperatorBase_00_011_01_4.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1global_1_1AddForwardFromEval_3_01OperatorBase_00_012_01_4-members.html b/structTMBad_1_1global_1_1AddForwardFromEval_3_01OperatorBase_00_012_01_4-members.html
index 81ea6fa2c..85026edae 100644
--- a/structTMBad_1_1global_1_1AddForwardFromEval_3_01OperatorBase_00_012_01_4-members.html
+++ b/structTMBad_1_1global_1_1AddForwardFromEval_3_01OperatorBase_00_012_01_4-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1global_1_1AddForwardFromEval_3_01OperatorBase_00_012_01_4.html b/structTMBad_1_1global_1_1AddForwardFromEval_3_01OperatorBase_00_012_01_4.html
index e51bdf014..073d36260 100644
--- a/structTMBad_1_1global_1_1AddForwardFromEval_3_01OperatorBase_00_012_01_4.html
+++ b/structTMBad_1_1global_1_1AddForwardFromEval_3_01OperatorBase_00_012_01_4.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1global_1_1AddForwardIncrReverseDecr-members.html b/structTMBad_1_1global_1_1AddForwardIncrReverseDecr-members.html
index 41f7954ee..953eff5d5 100644
--- a/structTMBad_1_1global_1_1AddForwardIncrReverseDecr-members.html
+++ b/structTMBad_1_1global_1_1AddForwardIncrReverseDecr-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1global_1_1AddForwardIncrReverseDecr.html b/structTMBad_1_1global_1_1AddForwardIncrReverseDecr.html
index 8ce6d45db..8aa2af737 100644
--- a/structTMBad_1_1global_1_1AddForwardIncrReverseDecr.html
+++ b/structTMBad_1_1global_1_1AddForwardIncrReverseDecr.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1global_1_1AddForwardMarkReverseMark-members.html b/structTMBad_1_1global_1_1AddForwardMarkReverseMark-members.html
index b4c061565..ca7b30b2f 100644
--- a/structTMBad_1_1global_1_1AddForwardMarkReverseMark-members.html
+++ b/structTMBad_1_1global_1_1AddForwardMarkReverseMark-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1global_1_1AddForwardMarkReverseMark.html b/structTMBad_1_1global_1_1AddForwardMarkReverseMark.html
index 5376094be..790896caf 100644
--- a/structTMBad_1_1global_1_1AddForwardMarkReverseMark.html
+++ b/structTMBad_1_1global_1_1AddForwardMarkReverseMark.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1global_1_1AddForwardReverse-members.html b/structTMBad_1_1global_1_1AddForwardReverse-members.html
index 5a5f6d0ac..b9d447d36 100644
--- a/structTMBad_1_1global_1_1AddForwardReverse-members.html
+++ b/structTMBad_1_1global_1_1AddForwardReverse-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1global_1_1AddForwardReverse.html b/structTMBad_1_1global_1_1AddForwardReverse.html
index 93a5fc7eb..f87af0d28 100644
--- a/structTMBad_1_1global_1_1AddForwardReverse.html
+++ b/structTMBad_1_1global_1_1AddForwardReverse.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1global_1_1AddIncrementDecrement-members.html b/structTMBad_1_1global_1_1AddIncrementDecrement-members.html
index 450653660..c3bfa5b91 100644
--- a/structTMBad_1_1global_1_1AddIncrementDecrement-members.html
+++ b/structTMBad_1_1global_1_1AddIncrementDecrement-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1global_1_1AddIncrementDecrement.html b/structTMBad_1_1global_1_1AddIncrementDecrement.html
index 00d604599..fa7e1b5d3 100644
--- a/structTMBad_1_1global_1_1AddIncrementDecrement.html
+++ b/structTMBad_1_1global_1_1AddIncrementDecrement.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1global_1_1AddInputSizeOutputSize-members.html b/structTMBad_1_1global_1_1AddInputSizeOutputSize-members.html
index 6b395ee87..66c64adb7 100644
--- a/structTMBad_1_1global_1_1AddInputSizeOutputSize-members.html
+++ b/structTMBad_1_1global_1_1AddInputSizeOutputSize-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1global_1_1AddInputSizeOutputSize.html b/structTMBad_1_1global_1_1AddInputSizeOutputSize.html
index ae57dcc3f..8e90b0f53 100644
--- a/structTMBad_1_1global_1_1AddInputSizeOutputSize.html
+++ b/structTMBad_1_1global_1_1AddInputSizeOutputSize.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1global_1_1CPL-members.html b/structTMBad_1_1global_1_1CPL-members.html
index c13fd48c1..ec8a9a30b 100644
--- a/structTMBad_1_1global_1_1CPL-members.html
+++ b/structTMBad_1_1global_1_1CPL-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1global_1_1CPL.html b/structTMBad_1_1global_1_1CPL.html
index 3b756e458..f6a0977ed 100644
--- a/structTMBad_1_1global_1_1CPL.html
+++ b/structTMBad_1_1global_1_1CPL.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1global_1_1Complete-members.html b/structTMBad_1_1global_1_1Complete-members.html
index 62578adc3..220f9501e 100644
--- a/structTMBad_1_1global_1_1Complete-members.html
+++ b/structTMBad_1_1global_1_1Complete-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1global_1_1Complete.html b/structTMBad_1_1global_1_1Complete.html
index b0ebadc54..dc9068d84 100644
--- a/structTMBad_1_1global_1_1Complete.html
+++ b/structTMBad_1_1global_1_1Complete.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1global_1_1DynamicOperator-members.html b/structTMBad_1_1global_1_1DynamicOperator-members.html
index 83dc9ce01..b0771bc44 100644
--- a/structTMBad_1_1global_1_1DynamicOperator-members.html
+++ b/structTMBad_1_1global_1_1DynamicOperator-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1global_1_1DynamicOperator.html b/structTMBad_1_1global_1_1DynamicOperator.html
index 045a2da25..7981abe44 100644
--- a/structTMBad_1_1global_1_1DynamicOperator.html
+++ b/structTMBad_1_1global_1_1DynamicOperator.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1global_1_1DynamicOutputOperator-members.html b/structTMBad_1_1global_1_1DynamicOutputOperator-members.html
index 9ac9d64be..d125931e7 100644
--- a/structTMBad_1_1global_1_1DynamicOutputOperator-members.html
+++ b/structTMBad_1_1global_1_1DynamicOutputOperator-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1global_1_1DynamicOutputOperator.html b/structTMBad_1_1global_1_1DynamicOutputOperator.html
index e143237bf..40829ff4b 100644
--- a/structTMBad_1_1global_1_1DynamicOutputOperator.html
+++ b/structTMBad_1_1global_1_1DynamicOutputOperator.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1global_1_1Fused-members.html b/structTMBad_1_1global_1_1Fused-members.html
index 7bba80bf0..e1f49c3c5 100644
--- a/structTMBad_1_1global_1_1Fused-members.html
+++ b/structTMBad_1_1global_1_1Fused-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1global_1_1Fused.html b/structTMBad_1_1global_1_1Fused.html
index 79e3a98c0..da5b10179 100644
--- a/structTMBad_1_1global_1_1Fused.html
+++ b/structTMBad_1_1global_1_1Fused.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1global_1_1NullOp-members.html b/structTMBad_1_1global_1_1NullOp-members.html
index 5883e0223..3d5ad9638 100644
--- a/structTMBad_1_1global_1_1NullOp-members.html
+++ b/structTMBad_1_1global_1_1NullOp-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1global_1_1NullOp.html b/structTMBad_1_1global_1_1NullOp.html
index c5e193c33..2f805266f 100644
--- a/structTMBad_1_1global_1_1NullOp.html
+++ b/structTMBad_1_1global_1_1NullOp.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1global_1_1NullOp2-members.html b/structTMBad_1_1global_1_1NullOp2-members.html
index a8a4f0273..cf44a8fe3 100644
--- a/structTMBad_1_1global_1_1NullOp2-members.html
+++ b/structTMBad_1_1global_1_1NullOp2-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1global_1_1NullOp2.html b/structTMBad_1_1global_1_1NullOp2.html
index 55d0338bd..7f1905d3f 100644
--- a/structTMBad_1_1global_1_1NullOp2.html
+++ b/structTMBad_1_1global_1_1NullOp2.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1global_1_1Operator-members.html b/structTMBad_1_1global_1_1Operator-members.html
index 0176c1ce3..eb6b85f25 100644
--- a/structTMBad_1_1global_1_1Operator-members.html
+++ b/structTMBad_1_1global_1_1Operator-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1global_1_1Operator.html b/structTMBad_1_1global_1_1Operator.html
index 966abbb72..86b44442a 100644
--- a/structTMBad_1_1global_1_1Operator.html
+++ b/structTMBad_1_1global_1_1Operator.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1global_1_1OperatorPure-members.html b/structTMBad_1_1global_1_1OperatorPure-members.html
index b5b5080f0..dfbef19af 100644
--- a/structTMBad_1_1global_1_1OperatorPure-members.html
+++ b/structTMBad_1_1global_1_1OperatorPure-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1global_1_1OperatorPure.html b/structTMBad_1_1global_1_1OperatorPure.html
index 129b8ad9b..3fb1ed240 100644
--- a/structTMBad_1_1global_1_1OperatorPure.html
+++ b/structTMBad_1_1global_1_1OperatorPure.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1global_1_1RefOp-members.html b/structTMBad_1_1global_1_1RefOp-members.html
index 92745f9f3..0d30a1a0e 100644
--- a/structTMBad_1_1global_1_1RefOp-members.html
+++ b/structTMBad_1_1global_1_1RefOp-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1global_1_1RefOp.html b/structTMBad_1_1global_1_1RefOp.html
index 8f0bba4dd..cf90ff88a 100644
--- a/structTMBad_1_1global_1_1RefOp.html
+++ b/structTMBad_1_1global_1_1RefOp.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1global_1_1ReferenceCounter-members.html b/structTMBad_1_1global_1_1ReferenceCounter-members.html
index cf9f21319..c5492b22d 100644
--- a/structTMBad_1_1global_1_1ReferenceCounter-members.html
+++ b/structTMBad_1_1global_1_1ReferenceCounter-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1global_1_1ReferenceCounter.html b/structTMBad_1_1global_1_1ReferenceCounter.html
index ea1313d77..f7663af41 100644
--- a/structTMBad_1_1global_1_1ReferenceCounter.html
+++ b/structTMBad_1_1global_1_1ReferenceCounter.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1global_1_1Rep-members.html b/structTMBad_1_1global_1_1Rep-members.html
index dab7c465d..101b912c9 100644
--- a/structTMBad_1_1global_1_1Rep-members.html
+++ b/structTMBad_1_1global_1_1Rep-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1global_1_1Rep.html b/structTMBad_1_1global_1_1Rep.html
index a0c83d266..cc2d09f80 100644
--- a/structTMBad_1_1global_1_1Rep.html
+++ b/structTMBad_1_1global_1_1Rep.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1global_1_1RepCompress-members.html b/structTMBad_1_1global_1_1RepCompress-members.html
index 807e2a690..06a804eef 100644
--- a/structTMBad_1_1global_1_1RepCompress-members.html
+++ b/structTMBad_1_1global_1_1RepCompress-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1global_1_1RepCompress.html b/structTMBad_1_1global_1_1RepCompress.html
index 480011b91..f92a5cc14 100644
--- a/structTMBad_1_1global_1_1RepCompress.html
+++ b/structTMBad_1_1global_1_1RepCompress.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1global_1_1ZeroOp-members.html b/structTMBad_1_1global_1_1ZeroOp-members.html
index e043cde5b..aa8c415cc 100644
--- a/structTMBad_1_1global_1_1ZeroOp-members.html
+++ b/structTMBad_1_1global_1_1ZeroOp-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1global_1_1ZeroOp.html b/structTMBad_1_1global_1_1ZeroOp.html
index 4f21433ce..90c220526 100644
--- a/structTMBad_1_1global_1_1ZeroOp.html
+++ b/structTMBad_1_1global_1_1ZeroOp.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1global_1_1ad__aug-members.html b/structTMBad_1_1global_1_1ad__aug-members.html
index da620dc0d..3e7bdd430 100644
--- a/structTMBad_1_1global_1_1ad__aug-members.html
+++ b/structTMBad_1_1global_1_1ad__aug-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1global_1_1ad__aug.html b/structTMBad_1_1global_1_1ad__aug.html
index 147eb7292..34ac20fc7 100644
--- a/structTMBad_1_1global_1_1ad__aug.html
+++ b/structTMBad_1_1global_1_1ad__aug.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1global_1_1ad__plain_1_1CopyOp-members.html b/structTMBad_1_1global_1_1ad__plain_1_1CopyOp-members.html
index b0fa0a045..4c3572f6b 100644
--- a/structTMBad_1_1global_1_1ad__plain_1_1CopyOp-members.html
+++ b/structTMBad_1_1global_1_1ad__plain_1_1CopyOp-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1global_1_1ad__plain_1_1CopyOp.html b/structTMBad_1_1global_1_1ad__plain_1_1CopyOp.html
index c361f2858..8d2314e1b 100644
--- a/structTMBad_1_1global_1_1ad__plain_1_1CopyOp.html
+++ b/structTMBad_1_1global_1_1ad__plain_1_1CopyOp.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1global_1_1ad__plain_1_1ValOp-members.html b/structTMBad_1_1global_1_1ad__plain_1_1ValOp-members.html
index 986c41bfc..e403f9bf4 100644
--- a/structTMBad_1_1global_1_1ad__plain_1_1ValOp-members.html
+++ b/structTMBad_1_1global_1_1ad__plain_1_1ValOp-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1global_1_1ad__plain_1_1ValOp.html b/structTMBad_1_1global_1_1ad__plain_1_1ValOp.html
index 194052a73..7592c4fd1 100644
--- a/structTMBad_1_1global_1_1ad__plain_1_1ValOp.html
+++ b/structTMBad_1_1global_1_1ad__plain_1_1ValOp.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1global_1_1ad__segment-members.html b/structTMBad_1_1global_1_1ad__segment-members.html
index 1f12a05d9..492a872b7 100644
--- a/structTMBad_1_1global_1_1ad__segment-members.html
+++ b/structTMBad_1_1global_1_1ad__segment-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1global_1_1ad__segment.html b/structTMBad_1_1global_1_1ad__segment.html
index c53cfa5a7..82f903aea 100644
--- a/structTMBad_1_1global_1_1ad__segment.html
+++ b/structTMBad_1_1global_1_1ad__segment.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1global_1_1hash__config-members.html b/structTMBad_1_1global_1_1hash__config-members.html
index 6036d53ac..ac617b9a6 100644
--- a/structTMBad_1_1global_1_1hash__config-members.html
+++ b/structTMBad_1_1global_1_1hash__config-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1global_1_1hash__config.html b/structTMBad_1_1global_1_1hash__config.html
index 610306b57..d623b71a6 100644
--- a/structTMBad_1_1global_1_1hash__config.html
+++ b/structTMBad_1_1global_1_1hash__config.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1global_1_1if__else.html b/structTMBad_1_1global_1_1if__else.html
index 7f23716a2..9353ccfe5 100644
--- a/structTMBad_1_1global_1_1if__else.html
+++ b/structTMBad_1_1global_1_1if__else.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1global_1_1no__filter-members.html b/structTMBad_1_1global_1_1no__filter-members.html
index b44e14843..a25c0ee10 100644
--- a/structTMBad_1_1global_1_1no__filter-members.html
+++ b/structTMBad_1_1global_1_1no__filter-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1global_1_1no__filter.html b/structTMBad_1_1global_1_1no__filter.html
index c5344d321..4a50430ea 100644
--- a/structTMBad_1_1global_1_1no__filter.html
+++ b/structTMBad_1_1global_1_1no__filter.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1global_1_1operation__stack-members.html b/structTMBad_1_1global_1_1operation__stack-members.html
index 69ab60f5f..c9ae07c42 100644
--- a/structTMBad_1_1global_1_1operation__stack-members.html
+++ b/structTMBad_1_1global_1_1operation__stack-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1global_1_1operation__stack.html b/structTMBad_1_1global_1_1operation__stack.html
index 69df2244a..0d3625887 100644
--- a/structTMBad_1_1global_1_1operation__stack.html
+++ b/structTMBad_1_1global_1_1operation__stack.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1global_1_1print__config-members.html b/structTMBad_1_1global_1_1print__config-members.html
index c396b6a0d..98c1caf1a 100644
--- a/structTMBad_1_1global_1_1print__config-members.html
+++ b/structTMBad_1_1global_1_1print__config-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1global_1_1print__config.html b/structTMBad_1_1global_1_1print__config.html
index 3514c8118..ebc577e48 100644
--- a/structTMBad_1_1global_1_1print__config.html
+++ b/structTMBad_1_1global_1_1print__config.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1graph-members.html b/structTMBad_1_1graph-members.html
index beaed9781..91d89c1dd 100644
--- a/structTMBad_1_1graph-members.html
+++ b/structTMBad_1_1graph-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1graph.html b/structTMBad_1_1graph.html
index e9ce7fb5f..a99c0d955 100644
--- a/structTMBad_1_1graph.html
+++ b/structTMBad_1_1graph.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1intervals-members.html b/structTMBad_1_1intervals-members.html
index 191f0c842..7a0053fb3 100644
--- a/structTMBad_1_1intervals-members.html
+++ b/structTMBad_1_1intervals-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1intervals.html b/structTMBad_1_1intervals.html
index 0d485a554..c8118f12e 100644
--- a/structTMBad_1_1intervals.html
+++ b/structTMBad_1_1intervals.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1multivariate__index-members.html b/structTMBad_1_1multivariate__index-members.html
index 7e4124e04..f28029bb7 100644
--- a/structTMBad_1_1multivariate__index-members.html
+++ b/structTMBad_1_1multivariate__index-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1multivariate__index.html b/structTMBad_1_1multivariate__index.html
index 95f9ffb6d..4605de394 100644
--- a/structTMBad_1_1multivariate__index.html
+++ b/structTMBad_1_1multivariate__index.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1mvIntegral-members.html b/structTMBad_1_1mvIntegral-members.html
index 326004e30..f72cfd849 100644
--- a/structTMBad_1_1mvIntegral-members.html
+++ b/structTMBad_1_1mvIntegral-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1mvIntegral.html b/structTMBad_1_1mvIntegral.html
index d86912c38..5a42fb1d1 100644
--- a/structTMBad_1_1mvIntegral.html
+++ b/structTMBad_1_1mvIntegral.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1old__state-members.html b/structTMBad_1_1old__state-members.html
index 252c237a3..6d3419536 100644
--- a/structTMBad_1_1old__state-members.html
+++ b/structTMBad_1_1old__state-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1old__state.html b/structTMBad_1_1old__state.html
index 95ab53cbc..8f7100ec6 100644
--- a/structTMBad_1_1old__state.html
+++ b/structTMBad_1_1old__state.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1omp__shared__ptr-members.html b/structTMBad_1_1omp__shared__ptr-members.html
index dfda71652..9cb773a61 100644
--- a/structTMBad_1_1omp__shared__ptr-members.html
+++ b/structTMBad_1_1omp__shared__ptr-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1omp__shared__ptr.html b/structTMBad_1_1omp__shared__ptr.html
index b172fe8f7..026cec9f2 100644
--- a/structTMBad_1_1omp__shared__ptr.html
+++ b/structTMBad_1_1omp__shared__ptr.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1op__info-members.html b/structTMBad_1_1op__info-members.html
index 319427471..fb8ef9906 100644
--- a/structTMBad_1_1op__info-members.html
+++ b/structTMBad_1_1op__info-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1op__info.html b/structTMBad_1_1op__info.html
index 9e5759b49..b00922ea5 100644
--- a/structTMBad_1_1op__info.html
+++ b/structTMBad_1_1op__info.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1period-members.html b/structTMBad_1_1period-members.html
index d0d6e3852..428bd78f4 100644
--- a/structTMBad_1_1period-members.html
+++ b/structTMBad_1_1period-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1period.html b/structTMBad_1_1period.html
index eea79b79e..78f654df3 100644
--- a/structTMBad_1_1period.html
+++ b/structTMBad_1_1period.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1periodic-members.html b/structTMBad_1_1periodic-members.html
index 395ebb284..2c116be26 100644
--- a/structTMBad_1_1periodic-members.html
+++ b/structTMBad_1_1periodic-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1periodic.html b/structTMBad_1_1periodic.html
index 8622d9a99..2da207fbb 100644
--- a/structTMBad_1_1periodic.html
+++ b/structTMBad_1_1periodic.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1retaping__derivative__table-members.html b/structTMBad_1_1retaping__derivative__table-members.html
index f555f65a9..8948182d6 100644
--- a/structTMBad_1_1retaping__derivative__table-members.html
+++ b/structTMBad_1_1retaping__derivative__table-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1retaping__derivative__table.html b/structTMBad_1_1retaping__derivative__table.html
index e64428583..de65ca1f7 100644
--- a/structTMBad_1_1retaping__derivative__table.html
+++ b/structTMBad_1_1retaping__derivative__table.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1segment__ref-members.html b/structTMBad_1_1segment__ref-members.html
index 1aec4357f..07ece3d9b 100644
--- a/structTMBad_1_1segment__ref-members.html
+++ b/structTMBad_1_1segment__ref-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1segment__ref.html b/structTMBad_1_1segment__ref.html
index abe3d11e2..dbf40ae2f 100644
--- a/structTMBad_1_1segment__ref.html
+++ b/structTMBad_1_1segment__ref.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1sequential__reduction-members.html b/structTMBad_1_1sequential__reduction-members.html
index 3a23dd197..565cb8e58 100644
--- a/structTMBad_1_1sequential__reduction-members.html
+++ b/structTMBad_1_1sequential__reduction-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1sequential__reduction.html b/structTMBad_1_1sequential__reduction.html
index be8d79a00..1c199e603 100644
--- a/structTMBad_1_1sequential__reduction.html
+++ b/structTMBad_1_1sequential__reduction.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1sr__grid-members.html b/structTMBad_1_1sr__grid-members.html
index 4046f7466..a215ef3ba 100644
--- a/structTMBad_1_1sr__grid-members.html
+++ b/structTMBad_1_1sr__grid-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1sr__grid.html b/structTMBad_1_1sr__grid.html
index b1696ecbe..d7f33379f 100644
--- a/structTMBad_1_1sr__grid.html
+++ b/structTMBad_1_1sr__grid.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1standard__derivative__table-members.html b/structTMBad_1_1standard__derivative__table-members.html
index 641cc1813..5e7637fa6 100644
--- a/structTMBad_1_1standard__derivative__table-members.html
+++ b/structTMBad_1_1standard__derivative__table-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structTMBad_1_1standard__derivative__table.html b/structTMBad_1_1standard__derivative__table.html
index cacbd25b8..9c6a31b5d 100644
--- a/structTMBad_1_1standard__derivative__table.html
+++ b/structTMBad_1_1standard__derivative__table.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structarray-members.html b/structarray-members.html
index e75164918..f1be8ae0c 100644
--- a/structarray-members.html
+++ b/structarray-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structarray.html b/structarray.html
index 10eefb5cc..88c49256d 100644
--- a/structarray.html
+++ b/structarray.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structatomic_1_1AtomicGlobal-members.html b/structatomic_1_1AtomicGlobal-members.html
index 6a72d000b..ceadf4c13 100644
--- a/structatomic_1_1AtomicGlobal-members.html
+++ b/structatomic_1_1AtomicGlobal-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structatomic_1_1AtomicGlobal.html b/structatomic_1_1AtomicGlobal.html
index c71f4f529..abb755cb2 100644
--- a/structatomic_1_1AtomicGlobal.html
+++ b/structatomic_1_1AtomicGlobal.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structatomic_1_1AtomicLocal-members.html b/structatomic_1_1AtomicLocal-members.html
index 2f94c4a87..a6a542ee8 100644
--- a/structatomic_1_1AtomicLocal-members.html
+++ b/structatomic_1_1AtomicLocal-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structatomic_1_1AtomicLocal.html b/structatomic_1_1AtomicLocal.html
index 277f81d8f..8e06517a0 100644
--- a/structatomic_1_1AtomicLocal.html
+++ b/structatomic_1_1AtomicLocal.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structconfig__struct-members.html b/structconfig__struct-members.html
index 6075c0b2f..2e175f112 100644
--- a/structconfig__struct-members.html
+++ b/structconfig__struct-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structconfig__struct.html b/structconfig__struct.html
index 7223541fa..9a687e990 100644
--- a/structconfig__struct.html
+++ b/structconfig__struct.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structdata__indicator-members.html b/structdata__indicator-members.html
index 3f6319159..fbaafa7e7 100644
--- a/structdata__indicator-members.html
+++ b/structdata__indicator-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structdata__indicator.html b/structdata__indicator.html
index 2d148f84d..faa1fc283 100644
--- a/structdata__indicator.html
+++ b/structdata__indicator.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structgauss__kronrod_1_1Integral-members.html b/structgauss__kronrod_1_1Integral-members.html
index aca3f0d40..496a81e96 100644
--- a/structgauss__kronrod_1_1Integral-members.html
+++ b/structgauss__kronrod_1_1Integral-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structgauss__kronrod_1_1Integral.html b/structgauss__kronrod_1_1Integral.html
index 25450d6f3..bf5f6311f 100644
--- a/structgauss__kronrod_1_1Integral.html
+++ b/structgauss__kronrod_1_1Integral.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structgauss__kronrod_1_1control-members.html b/structgauss__kronrod_1_1control-members.html
index 821e9666c..928022cc9 100644
--- a/structgauss__kronrod_1_1control-members.html
+++ b/structgauss__kronrod_1_1control-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structgauss__kronrod_1_1control.html b/structgauss__kronrod_1_1control.html
index 25ac25cf6..114780294 100644
--- a/structgauss__kronrod_1_1control.html
+++ b/structgauss__kronrod_1_1control.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structgauss__kronrod_1_1mvIntegral-members.html b/structgauss__kronrod_1_1mvIntegral-members.html
index b8d552961..ddee8dc50 100644
--- a/structgauss__kronrod_1_1mvIntegral-members.html
+++ b/structgauss__kronrod_1_1mvIntegral-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structgauss__kronrod_1_1mvIntegral.html b/structgauss__kronrod_1_1mvIntegral.html
index f2e605d26..835d2f8ee 100644
--- a/structgauss__kronrod_1_1mvIntegral.html
+++ b/structgauss__kronrod_1_1mvIntegral.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structmatrix-members.html b/structmatrix-members.html
index 8464419b4..1a72453e5 100644
--- a/structmatrix-members.html
+++ b/structmatrix-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structmatrix.html b/structmatrix.html
index c185dbdf4..5d3daf46b 100644
--- a/structmatrix.html
+++ b/structmatrix.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structnewton_1_1HessianSolveVector-members.html b/structnewton_1_1HessianSolveVector-members.html
index 61c2e55cc..e88e4374e 100644
--- a/structnewton_1_1HessianSolveVector-members.html
+++ b/structnewton_1_1HessianSolveVector-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structnewton_1_1HessianSolveVector.html b/structnewton_1_1HessianSolveVector.html
index f5c1e2ccb..ce5810843 100644
--- a/structnewton_1_1HessianSolveVector.html
+++ b/structnewton_1_1HessianSolveVector.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structnewton_1_1NewtonOperator-members.html b/structnewton_1_1NewtonOperator-members.html
index eecd38c2c..aa0aeab11 100644
--- a/structnewton_1_1NewtonOperator-members.html
+++ b/structnewton_1_1NewtonOperator-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structnewton_1_1NewtonOperator.html b/structnewton_1_1NewtonOperator.html
index 86d09d521..f0bca0915 100644
--- a/structnewton_1_1NewtonOperator.html
+++ b/structnewton_1_1NewtonOperator.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structnewton_1_1TagOp-members.html b/structnewton_1_1TagOp-members.html
index b7ac25a1c..dabdf1341 100644
--- a/structnewton_1_1TagOp-members.html
+++ b/structnewton_1_1TagOp-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structnewton_1_1TagOp.html b/structnewton_1_1TagOp.html
index f0c48493c..975a5334f 100644
--- a/structnewton_1_1TagOp.html
+++ b/structnewton_1_1TagOp.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structnewton_1_1jacobian__dense__t-members.html b/structnewton_1_1jacobian__dense__t-members.html
index df7cde9af..31806be23 100644
--- a/structnewton_1_1jacobian__dense__t-members.html
+++ b/structnewton_1_1jacobian__dense__t-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structnewton_1_1jacobian__dense__t.html b/structnewton_1_1jacobian__dense__t.html
index 37f074aef..f45add456 100644
--- a/structnewton_1_1jacobian__dense__t.html
+++ b/structnewton_1_1jacobian__dense__t.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structnewton_1_1jacobian__sparse__plus__lowrank__t-members.html b/structnewton_1_1jacobian__sparse__plus__lowrank__t-members.html
index 2bc9e312d..f3c9081c4 100644
--- a/structnewton_1_1jacobian__sparse__plus__lowrank__t-members.html
+++ b/structnewton_1_1jacobian__sparse__plus__lowrank__t-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structnewton_1_1jacobian__sparse__plus__lowrank__t.html b/structnewton_1_1jacobian__sparse__plus__lowrank__t.html
index 410380a49..c41cbd2d5 100644
--- a/structnewton_1_1jacobian__sparse__plus__lowrank__t.html
+++ b/structnewton_1_1jacobian__sparse__plus__lowrank__t.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structnewton_1_1jacobian__sparse__t-members.html b/structnewton_1_1jacobian__sparse__t-members.html
index c6e9d3a51..7a73cce25 100644
--- a/structnewton_1_1jacobian__sparse__t-members.html
+++ b/structnewton_1_1jacobian__sparse__t-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structnewton_1_1jacobian__sparse__t.html b/structnewton_1_1jacobian__sparse__t.html
index 0a1bbc8e3..fa250fe72 100644
--- a/structnewton_1_1jacobian__sparse__t.html
+++ b/structnewton_1_1jacobian__sparse__t.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structnewton_1_1newton__config-members.html b/structnewton_1_1newton__config-members.html
index 403d04ece..f67bac7a9 100644
--- a/structnewton_1_1newton__config-members.html
+++ b/structnewton_1_1newton__config-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structnewton_1_1newton__config.html b/structnewton_1_1newton__config.html
index bc55d9428..24f24f940 100644
--- a/structnewton_1_1newton__config.html
+++ b/structnewton_1_1newton__config.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structnewton_1_1safe__eval-members.html b/structnewton_1_1safe__eval-members.html
index 529839daa..d0009335a 100644
--- a/structnewton_1_1safe__eval-members.html
+++ b/structnewton_1_1safe__eval-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structnewton_1_1safe__eval.html b/structnewton_1_1safe__eval.html
index 35cf1951b..180ff1e23 100644
--- a/structnewton_1_1safe__eval.html
+++ b/structnewton_1_1safe__eval.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structparallel__accumulator-members.html b/structparallel__accumulator-members.html
index fd18d205d..e1827bb6a 100644
--- a/structparallel__accumulator-members.html
+++ b/structparallel__accumulator-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structparallel__accumulator.html b/structparallel__accumulator.html
index 7310fe581..301499eb5 100644
--- a/structparallel__accumulator.html
+++ b/structparallel__accumulator.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structradix_1_1radix-members.html b/structradix_1_1radix-members.html
index 6d7abe893..0a5765125 100644
--- a/structradix_1_1radix-members.html
+++ b/structradix_1_1radix-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structradix_1_1radix.html b/structradix_1_1radix.html
index 622608453..40de6b3e8 100644
--- a/structradix_1_1radix.html
+++ b/structradix_1_1radix.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structsparse__matrix__exponential_1_1config-members.html b/structsparse__matrix__exponential_1_1config-members.html
index 5ff117381..8ac0a0f08 100644
--- a/structsparse__matrix__exponential_1_1config-members.html
+++ b/structsparse__matrix__exponential_1_1config-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structsparse__matrix__exponential_1_1config.html b/structsparse__matrix__exponential_1_1config.html
index 27623e584..ab26e7fc1 100644
--- a/structsparse__matrix__exponential_1_1config.html
+++ b/structsparse__matrix__exponential_1_1config.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structsparse__matrix__exponential_1_1expm__generator-members.html b/structsparse__matrix__exponential_1_1expm__generator-members.html
index 62957b36e..c6890a2d2 100644
--- a/structsparse__matrix__exponential_1_1expm__generator-members.html
+++ b/structsparse__matrix__exponential_1_1expm__generator-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structsparse__matrix__exponential_1_1expm__generator.html b/structsparse__matrix__exponential_1_1expm__generator.html
index 10bc2e288..8ab57d57d 100644
--- a/structsparse__matrix__exponential_1_1expm__generator.html
+++ b/structsparse__matrix__exponential_1_1expm__generator.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structsparse__matrix__exponential_1_1expm__series-members.html b/structsparse__matrix__exponential_1_1expm__series-members.html
index 41d4c3217..55d6b89eb 100644
--- a/structsparse__matrix__exponential_1_1expm__series-members.html
+++ b/structsparse__matrix__exponential_1_1expm__series-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structsparse__matrix__exponential_1_1expm__series.html b/structsparse__matrix__exponential_1_1expm__series.html
index 24e9bab17..a6a57a14f 100644
--- a/structsparse__matrix__exponential_1_1expm__series.html
+++ b/structsparse__matrix__exponential_1_1expm__series.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structtmbutils_1_1Concat-members.html b/structtmbutils_1_1Concat-members.html
index f0ea169ac..f98794c9a 100644
--- a/structtmbutils_1_1Concat-members.html
+++ b/structtmbutils_1_1Concat-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structtmbutils_1_1Concat.html b/structtmbutils_1_1Concat.html
index c2fe52670..7b6bb06d3 100644
--- a/structtmbutils_1_1Concat.html
+++ b/structtmbutils_1_1Concat.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structtmbutils_1_1array-members.html b/structtmbutils_1_1array-members.html
index b9942cfe5..344c60f3b 100644
--- a/structtmbutils_1_1array-members.html
+++ b/structtmbutils_1_1array-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structtmbutils_1_1array.html b/structtmbutils_1_1array.html
index b2d18d94b..4007b8f27 100644
--- a/structtmbutils_1_1array.html
+++ b/structtmbutils_1_1array.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structtmbutils_1_1interpol2D-members.html b/structtmbutils_1_1interpol2D-members.html
index 0a2f6b09d..c1bbfc94a 100644
--- a/structtmbutils_1_1interpol2D-members.html
+++ b/structtmbutils_1_1interpol2D-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structtmbutils_1_1interpol2D.html b/structtmbutils_1_1interpol2D.html
index 2da9c7ea4..bbbe394b4 100644
--- a/structtmbutils_1_1interpol2D.html
+++ b/structtmbutils_1_1interpol2D.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structtmbutils_1_1interpol2D__config-members.html b/structtmbutils_1_1interpol2D__config-members.html
index baeb8f71f..7e6ca81b8 100644
--- a/structtmbutils_1_1interpol2D__config-members.html
+++ b/structtmbutils_1_1interpol2D__config-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structtmbutils_1_1interpol2D__config.html b/structtmbutils_1_1interpol2D__config.html
index 7652fa1da..01304483f 100644
--- a/structtmbutils_1_1interpol2D__config.html
+++ b/structtmbutils_1_1interpol2D__config.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structtmbutils_1_1matexp-members.html b/structtmbutils_1_1matexp-members.html
index 122d60ff8..9e1297adb 100644
--- a/structtmbutils_1_1matexp-members.html
+++ b/structtmbutils_1_1matexp-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structtmbutils_1_1matexp.html b/structtmbutils_1_1matexp.html
index 14de8a8ad..263cfe2eb 100644
--- a/structtmbutils_1_1matexp.html
+++ b/structtmbutils_1_1matexp.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structtmbutils_1_1matexp_3_01scalartype_00_012_01_4-members.html b/structtmbutils_1_1matexp_3_01scalartype_00_012_01_4-members.html
index ae1771bc0..a12103c10 100644
--- a/structtmbutils_1_1matexp_3_01scalartype_00_012_01_4-members.html
+++ b/structtmbutils_1_1matexp_3_01scalartype_00_012_01_4-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structtmbutils_1_1matexp_3_01scalartype_00_012_01_4.html b/structtmbutils_1_1matexp_3_01scalartype_00_012_01_4.html
index d28efee24..e518ca98f 100644
--- a/structtmbutils_1_1matexp_3_01scalartype_00_012_01_4.html
+++ b/structtmbutils_1_1matexp_3_01scalartype_00_012_01_4.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structtmbutils_1_1matrix-members.html b/structtmbutils_1_1matrix-members.html
index af3106088..441630d40 100644
--- a/structtmbutils_1_1matrix-members.html
+++ b/structtmbutils_1_1matrix-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structtmbutils_1_1matrix.html b/structtmbutils_1_1matrix.html
index fbdd67cd4..eebe24b99 100644
--- a/structtmbutils_1_1matrix.html
+++ b/structtmbutils_1_1matrix.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structtmbutils_1_1vector-members.html b/structtmbutils_1_1vector-members.html
index 465470a2d..3426c33d4 100644
--- a/structtmbutils_1_1vector-members.html
+++ b/structtmbutils_1_1vector-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structtmbutils_1_1vector.html b/structtmbutils_1_1vector.html
index fa2405437..0b8751ddc 100644
--- a/structtmbutils_1_1vector.html
+++ b/structtmbutils_1_1vector.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structvector-members.html b/structvector-members.html
index a57591fe9..66764bb2b 100644
--- a/structvector-members.html
+++ b/structvector-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structvector.html b/structvector.html
index 9fe62299b..75ea52f4c 100644
--- a/structvector.html
+++ b/structvector.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structvectorize_1_1vector-members.html b/structvectorize_1_1vector-members.html
index 7eae37eba..90f9967e0 100644
--- a/structvectorize_1_1vector-members.html
+++ b/structvectorize_1_1vector-members.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/structvectorize_1_1vector.html b/structvectorize_1_1vector.html
index 15353dd04..a36b5e5fe 100644
--- a/structvectorize_1_1vector.html
+++ b/structvectorize_1_1vector.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/supernodal__inverse__subset_8hpp_source.html b/supernodal__inverse__subset_8hpp_source.html
index ca9f59050..ff68a30e9 100644
--- a/supernodal__inverse__subset_8hpp_source.html
+++ b/supernodal__inverse__subset_8hpp_source.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/thetalog_8cpp-example.html b/thetalog_8cpp-example.html
index 1aae81ecb..6e7eb2fd6 100644
--- a/thetalog_8cpp-example.html
+++ b/thetalog_8cpp-example.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/tiny__ad_2integrate_2integrate_8hpp_source.html b/tiny__ad_2integrate_2integrate_8hpp_source.html
index 780cb1e06..352ad5662 100644
--- a/tiny__ad_2integrate_2integrate_8hpp_source.html
+++ b/tiny__ad_2integrate_2integrate_8hpp_source.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/tiny__ad_8hpp_source.html b/tiny__ad_8hpp_source.html
index 188110c82..d3fc64d28 100644
--- a/tiny__ad_8hpp_source.html
+++ b/tiny__ad_8hpp_source.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/tiny__valarray_8hpp_source.html b/tiny__valarray_8hpp_source.html
index 6781fd464..997b62c9c 100644
--- a/tiny__valarray_8hpp_source.html
+++ b/tiny__valarray_8hpp_source.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/tiny__vec_8hpp_source.html b/tiny__vec_8hpp_source.html
index 95241f733..50cf558bf 100644
--- a/tiny__vec_8hpp_source.html
+++ b/tiny__vec_8hpp_source.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/tmb__core_8hpp.html b/tmb__core_8hpp.html
index efda19d2a..02bea8fd5 100644
--- a/tmb__core_8hpp.html
+++ b/tmb__core_8hpp.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/tmb__core_8hpp_source.html b/tmb__core_8hpp_source.html
index a48f72fc5..c7d8fd95a 100644
--- a/tmb__core_8hpp_source.html
+++ b/tmb__core_8hpp_source.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/tmb__enable__header__only_8hpp.html b/tmb__enable__header__only_8hpp.html
index 323452849..bd1a35d4a 100644
--- a/tmb__enable__header__only_8hpp.html
+++ b/tmb__enable__header__only_8hpp.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/tmb__enable__header__only_8hpp_source.html b/tmb__enable__header__only_8hpp_source.html
index 581e5cb20..8036e0ccb 100644
--- a/tmb__enable__header__only_8hpp_source.html
+++ b/tmb__enable__header__only_8hpp_source.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/tmb__enable__precompile_8hpp.html b/tmb__enable__precompile_8hpp.html
index cca4defb0..cb9ab0d1e 100644
--- a/tmb__enable__precompile_8hpp.html
+++ b/tmb__enable__precompile_8hpp.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/tmb__enable__precompile_8hpp_source.html b/tmb__enable__precompile_8hpp_source.html
index 8bbaa5d7d..55f653428 100644
--- a/tmb__enable__precompile_8hpp_source.html
+++ b/tmb__enable__precompile_8hpp_source.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/tmbad__allow__comparison_8hpp_source.html b/tmbad__allow__comparison_8hpp_source.html
index c8e26b3dc..599c9aa04 100644
--- a/tmbad__allow__comparison_8hpp_source.html
+++ b/tmbad__allow__comparison_8hpp_source.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/tmbad__atomic__macro_8hpp_source.html b/tmbad__atomic__macro_8hpp_source.html
index 0a15dbff6..927991d53 100644
--- a/tmbad__atomic__macro_8hpp_source.html
+++ b/tmbad__atomic__macro_8hpp_source.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/tmbutils_2vectorize_8hpp.html b/tmbutils_2vectorize_8hpp.html
index 650d6c4bb..52e6ad78d 100644
--- a/tmbutils_2vectorize_8hpp.html
+++ b/tmbutils_2vectorize_8hpp.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/tmbutils_2vectorize_8hpp_source.html b/tmbutils_2vectorize_8hpp_source.html
index 670e4570c..2387832e3 100644
--- a/tmbutils_2vectorize_8hpp_source.html
+++ b/tmbutils_2vectorize_8hpp_source.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/tmbutils_8hpp.html b/tmbutils_8hpp.html
index 1d7192ff0..5c701c4f7 100644
--- a/tmbutils_8hpp.html
+++ b/tmbutils_8hpp.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/tmbutils_8hpp_source.html b/tmbutils_8hpp_source.html
index bb3b3df9a..9f3c04861 100644
--- a/tmbutils_8hpp_source.html
+++ b/tmbutils_8hpp_source.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/tmbutils__extra_8hpp_source.html b/tmbutils__extra_8hpp_source.html
index 4ea7982e5..1a5053bf3 100644
--- a/tmbutils__extra_8hpp_source.html
+++ b/tmbutils__extra_8hpp_source.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/toggle__thread__safe__R_8hpp.html b/toggle__thread__safe__R_8hpp.html
index 39f132b63..646c83f4b 100644
--- a/toggle__thread__safe__R_8hpp.html
+++ b/toggle__thread__safe__R_8hpp.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/toggle__thread__safe__R_8hpp_source.html b/toggle__thread__safe__R_8hpp_source.html
index d267f4e27..d1e54b279 100644
--- a/toggle__thread__safe__R_8hpp_source.html
+++ b/toggle__thread__safe__R_8hpp_source.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/toms708_8cpp_source.html b/toms708_8cpp_source.html
index 9ccd0b0b5..baa738ee1 100644
--- a/toms708_8cpp_source.html
+++ b/toms708_8cpp_source.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/transform2_8cpp-example.html b/transform2_8cpp-example.html
index 0c8dcc443..9e77894ac 100644
--- a/transform2_8cpp-example.html
+++ b/transform2_8cpp-example.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/transform_8cpp-example.html b/transform_8cpp-example.html
index d54a4364e..7dfbaaea0 100644
--- a/transform_8cpp-example.html
+++ b/transform_8cpp-example.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/transform_parallel_8cpp-example.html b/transform_parallel_8cpp-example.html
index 79ac2969f..1fb846cd8 100644
--- a/transform_parallel_8cpp-example.html
+++ b/transform_parallel_8cpp-example.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/tweedie_8cpp-example.html b/tweedie_8cpp-example.html
index 0a7f59853..3f00c7985 100644
--- a/tweedie_8cpp-example.html
+++ b/tweedie_8cpp-example.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/tweedie_8cpp_source.html b/tweedie_8cpp_source.html
index 1d6fd9d6e..9334a40af 100644
--- a/tweedie_8cpp_source.html
+++ b/tweedie_8cpp_source.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/tweedie_8hpp_source.html b/tweedie_8hpp_source.html
index fca61db1c..60551da4a 100644
--- a/tweedie_8hpp_source.html
+++ b/tweedie_8hpp_source.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/validation_2MVRandomWalkValidation_8cpp-example.html b/validation_2MVRandomWalkValidation_8cpp-example.html
index 77de40d73..ad59b45d5 100644
--- a/validation_2MVRandomWalkValidation_8cpp-example.html
+++ b/validation_2MVRandomWalkValidation_8cpp-example.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/validation_2randomwalkvalidation_8cpp-example.html b/validation_2randomwalkvalidation_8cpp-example.html
index 3efe3e72e..abc346e9d 100644
--- a/validation_2randomwalkvalidation_8cpp-example.html
+++ b/validation_2randomwalkvalidation_8cpp-example.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/validation_2rickervalidation_8cpp-example.html b/validation_2rickervalidation_8cpp-example.html
index 983a4b8ef..62739f672 100644
--- a/validation_2rickervalidation_8cpp-example.html
+++ b/validation_2rickervalidation_8cpp-example.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/vector_8hpp.html b/vector_8hpp.html
index b2960c586..0e6adf1ca 100644
--- a/vector_8hpp.html
+++ b/vector_8hpp.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|
diff --git a/vector_8hpp_source.html b/vector_8hpp_source.html
index ff0e0a19b..07c853f3e 100644
--- a/vector_8hpp_source.html
+++ b/vector_8hpp_source.html
@@ -28,7 +28,7 @@
TMB Documentation
- v1.9.8
+ v1.9.9
|