ADMB Documentation  -a65f1c97
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
fvar_a57.cpp
Go to the documentation of this file.
1 /*
2  * $Id$
3  *
4  * Author: David Fournier
5  * Copyright (c) 2008-2012 Regents of the University of California
6  */
11 #include "fvar.hpp"
12 
13  void DF_unary_diff(void);
14 
20  {
23 
24  int mmin=indexmin();
25  int mmax=indexmax();
26  dvar_vector tmp(mmin,mmax);
28  for (int i=mmin; i<=mmax; i++)
29  {
30  tmp.elem_value(i)=-elem_value(i);
31  }
34  fp->save_dvar_vector_position(*this);
38  return(tmp);
39  }
40 
45  void DF_unary_diff(void)
46  {
48 
53  dvector dft1(t1_pos.indexmin(),t1_pos.indexmax());
55  //double xinv=1./x;
56  for (int i=t1_pos.indexmax(); i>=t1_pos.indexmin(); i--)
57  {
58  // tmp.elem_value(i)=t1.elem_value(i)-value(x);
59  //tmp.elem_value(i)=value(x)*t1.elem_value(i)/value(x);
60  dft1(i)=-dftmp(i);
61  }
62  dft1.save_dvector_derivatives(t1_pos);
63  }
dvar_vector operator-()
Description not yet available.
Definition: fvar_a57.cpp:19
double & elem_value(int i)
Definition: fvar.hpp:2226
Vector of double precision numbers.
Definition: dvector.h:50
Description not yet available.
Definition: fvar.hpp:4814
int indexmin() const
Definition: fvar.hpp:4827
ADMB variable vector.
Definition: fvar.hpp:2172
void verify_identifier_string(const char *)
Verifies gradient stack string.
Definition: cmpdif3.cpp:149
void set_gradient_stack(void(*func)(void), double *dep_addr, double *ind_addr1=NULL, double mult1=0, double *ind_addr2=NULL, double mult2=0)
Description not yet available.
Definition: fvar.hpp:1045
int indexmax() const
Definition: fvar.hpp:4831
dvar_vector_position restore_dvar_vector_position()
Definition: cmpdif4.cpp:69
void RETURN_ARRAYS_INCREMENT()
Definition: gradstrc.cpp:478
Author: David Fournier Copyright (c) 2008-2012 Regents of the University of California.
static _THREAD gradient_structure * _instance
int save_identifier_string(const char *)
Writes a gradient stack verification string.
Definition: cmpdif2.cpp:315
int indexmin() const
Definition: fvar.hpp:2287
void save_dvar_vector_position(const dvar_vector &v)
Definition: cmpdif3.cpp:214
static _THREAD DF_FILE * fp
Stores the adjoint gradient data that will be processed by gradcalc.
dvector restore_dvar_vector_derivatives(const dvar_vector_position &tmp)
Description not yet available.
Definition: cmpdif5.cpp:150
void DF_unary_diff(void)
Description not yet available.
Definition: fvar_a57.cpp:45
void RETURN_ARRAYS_DECREMENT()
Definition: gradstrc.cpp:511
static _THREAD grad_stack * GRAD_STACK1
class for things related to the gradient structures, including dimension of arrays, size of buffers, etc.
int indexmax() const
Definition: fvar.hpp:2292