basix_doc 0.1
invert_op Struct Reference

#include <operators.hpp>

List of all members.

Static Public Member Functions


Detailed Description

Definition at line 657 of file operators.hpp.


Member Function Documentation

static C def ( const C me,
const C f 
) [inline, static]

Definition at line 669 of file operators.hpp.

References mmx::C, mmx::lshiftz(), and mmx::rshiftz().

                                {
    return (C(1) - lshiftz (me * rshiftz (f))) / f[0]; }
static C diff_op ( const C me,
const C x 
) [inline, static]

Definition at line 666 of file operators.hpp.

References mmx::derive(), and mmx::square().

                                    {
    (void) me; return -derive (x) / square (x); }
static generic name ( ) [inline, static]

Definition at line 658 of file operators.hpp.

References mmx::GEN_INVERT.

{ return GEN_INVERT; }
static C op ( const C x) [inline, static]

Definition at line 660 of file operators.hpp.

References mmx::invert().

{ return invert (x); }
static void set_op ( C x) [inline, static]

Definition at line 662 of file operators.hpp.

References mmx::invert().

{ x= invert (x); }
static void set_op ( R &  x,
const C y 
) [inline, static]

Definition at line 664 of file operators.hpp.

References mmx::invert().

{ x= invert (y); }

The documentation for this struct was generated from the following file:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines