List of all members | Static Public Member Functions
casadi::UnaryOperation< OP_ASSIGN > Struct Reference

Simple assignment. More...

#include <calculus.hpp>

Detailed Description

Definition at line 593 of file calculus.hpp.

Static Public Member Functions

template<typename T >
static void fcn (const T &x, T &f)
 
template<typename T >
static void der (const T &x, const T &f, T *d)
 

Member Function Documentation

◆ der()

template<typename T >
static void casadi::UnaryOperation< OP_ASSIGN >::der ( const T &  x,
const T &  f,
T *  d 
)
inlinestatic

Definition at line 596 of file calculus.hpp.

596 { d[0] = 1; }

◆ fcn()

template<typename T >
static void casadi::UnaryOperation< OP_ASSIGN >::fcn ( const T &  x,
T &  f 
)
inlinestatic

Definition at line 595 of file calculus.hpp.

595 { f = x;}

The documentation for this struct was generated from the following file: