json_azmul_op.cpp

View page source

Json azmul Operator: Example and Test

Source Code

# include <cppad/cppad.hpp>

bool azmul_op(void)
{  bool ok = true;
   using CppAD::vector;
   using CppAD::AD;
   using CppAD::NearEqual;
   double eps99 = 99.0 * std::numeric_limits<double>::epsilon();
   //
   // AD graph example
   // node_1 : p[0]
   // node_2 : p[1]
   // node_3 : x[0]
   // node_4 : x[1]
   // node_5 : azmul(p[0], p[1])
   // node_6 : azmul(x[0], x[1])
   // node_7 = azmul(p[0], p[1]) + azmul(x[0], x[1])
   // y[0]   = azmul(p[0], p[1]) + azmul(x[0], x[1])
   // use single quote to avoid having to escape double quote
   std::string json =
      "{\n"
      "   'function_name'  : 'azmul_op example',\n"
      "   'op_define_vec'  : [ 2, [\n"
      "       { 'op_code':1, 'name':'add',   'n_arg':2 } ,\n"
      "       { 'op_code':2, 'name':'azmul', 'n_arg':2 } ]\n"
      "   ],\n"
      "   'n_dynamic_ind'  : 2,\n"
      "   'n_variable_ind' : 2,\n"
      "   'constant_vec'   : [ 0, [ ] ],\n"
      "   'op_usage_vec'   : [ 3, [\n"
      "       [ 2, 1, 2 ] ,\n" // azmul(p[0], p[1])
      "       [ 2, 3, 4 ] ,\n" // azmul(x[0], )
      "       [ 1, 5, 6 ] ]\n" // azmul(p[0], p[1]) + azmul(x[0], x[1])
      "   ],\n"
      "   'dependent_vec' : [ 1, [7] ] \n"
      "}\n";
   // Convert the single quote to double quote
   for(size_t i = 0; i < json.size(); ++i)
      if( json[i] == '\'' ) json[i] = '"';
   //
   // f(x, p) = azmul(p_0, p_1) + azmul(x_0, x_1);
   CppAD::ADFun<double> f;
   f.from_json(json);
   //
   ok &= f.Domain() == 2;
   ok &= f.Range() == 1;
   ok &= f.size_dyn_ind() == 2;
   //
   // set independent variables and parameters
   vector<double> p(2), x(2);
   p[0] = 2.0;
   p[1] = 3.0;
   x[0] = 4.0;
   x[1] = 5.0;
   //
   // compute y = f(x, p)
   f.new_dynamic(p);
   vector<double> y = f.Forward(0, x);
   //
   // check result
   double check_y0 = 0.0;
   if( p[0] != 0.0 )
      check_y0 += p[0] * p[1];
   if( x[0] != 0.0 )
      check_y0 += x[0] * x[1];
   ok &= NearEqual(y[0], check_y0, eps99, eps99);
   // -----------------------------------------------------------------------
   // Convert to Json graph and back again
   json = f.to_json();
   // std::cout << "json = " << json;
   f.from_json(json);
   // -----------------------------------------------------------------------
   ok &= f.Domain() == 2;
   ok &= f.Range() == 1;
   ok &= f.size_dyn_ind() == 2;
   //
   // set independent variables and parameters
   p[0] = 0.0;
   p[1] = std::numeric_limits<double>::quiet_NaN();
   x[0] = 2.0;
   x[1] = 3.0;
   //
   // compute y = f(x, p)
   f.new_dynamic(p);
   y = f.Forward(0, x);
   //
   // check result
   check_y0 = 0.0;
   if( p[0] != 0.0 )
      check_y0 += p[0] * p[1];
   if( x[0] != 0.0 )
      check_y0 += x[0] * x[1];
   ok &= NearEqual(y[0], check_y0, eps99, eps99);
   //
   return ok;
}