File: hes_minor_det.cpp

package info (click to toggle)
cppad 2025.00.00.2-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 11,552 kB
  • sloc: cpp: 112,594; sh: 5,972; ansic: 179; python: 71; sed: 12; makefile: 10
file content (89 lines) | stat: -rw-r--r-- 2,159 bytes parent folder | download
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
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-or-later
// SPDX-FileCopyrightText: Bradley M. Bell <bradbell@seanet.com>
// SPDX-FileContributor: 2003-22 Bradley M. Bell
// ----------------------------------------------------------------------------

/*
{xrst_begin hes_minor_det.cpp}

Gradient of Determinant Using Expansion by Minors: Example and Test
###################################################################

{xrst_literal
   // BEGIN C++
   // END C++
}

{xrst_end hes_minor_det.cpp}
*/
// BEGIN C++
// Complex examples should supppress conversion warnings
# include <cppad/wno_conversion.hpp>

# include <cppad/cppad.hpp>
# include <cppad/speed/det_by_minor.hpp>
# include <complex>

typedef std::complex<double>     Complex;
typedef CppAD::AD<Complex>       ADComplex;
typedef CPPAD_TESTVECTOR(ADComplex)   ADVector;

// ----------------------------------------------------------------------------

bool HesMinorDet(void)
{  bool ok = true;

   using namespace CppAD;

   size_t n = 2;

   // object for computing determinants
   det_by_minor<ADComplex> Det(n);

   // independent and dependent variable vectors
   CPPAD_TESTVECTOR(ADComplex)  X(n * n);
   CPPAD_TESTVECTOR(ADComplex)  D(1);

   // value of the independent variable
   size_t i;
   for(i = 0; i < n * n; i++)
      X[i] = Complex( double(i), -double(i) );

   // set the independent variables
   Independent(X);

   // comupute the determinant
   D[0] = Det(X);

   // create the function object
   ADFun<Complex> f(X, D);

   // argument value
   CPPAD_TESTVECTOR(Complex)     x( n * n );
   for(i = 0; i < n * n; i++)
      x[i] = Complex( double(2 * i) , double(i) );

   // first derivative of the determinant
   CPPAD_TESTVECTOR(Complex) H( n * n * n * n);
   H = f.Hessian(x, 0);

   /*
   f(x)     = x[0] * x[3] - x[1] * x[2]
   f'(x)    = ( x[3], -x[2], -x[1], x[0] )
   */
   Complex zero(0., 0.);
   Complex one(1., 0.);
   Complex Htrue[]  = {
      zero, zero, zero,  one,
      zero, zero, -one, zero,
      zero, -one, zero, zero,
         one, zero, zero, zero
   };
   for( i = 0; i < n*n*n*n; i++)
      ok &= Htrue[i] == H[i];

   return ok;

}

// END C++