basix_doc 0.1
mul_sub_op Struct Reference

#include <operators.hpp>

List of all members.

Public Types

Static Public Member Functions


Detailed Description

Definition at line 618 of file operators.hpp.


Member Typedef Documentation

typedef mul_sub_op acc_op

Definition at line 622 of file operators.hpp.

typedef no_op clr_op

Definition at line 621 of file operators.hpp.

typedef sub_op nomul_op

Definition at line 619 of file operators.hpp.

typedef mul_op rhs_op

Definition at line 620 of file operators.hpp.


Member Function Documentation

static generic name ( ) [inline, static]

Definition at line 623 of file operators.hpp.

References mmx::GEN_MUL_SUB.

{ return GEN_MUL_SUB; }
static C neutral ( ) [inline, static]

Definition at line 625 of file operators.hpp.

{ return 0; }
static C op ( const C x,
const C y,
const C z 
) [inline, static]

Definition at line 629 of file operators.hpp.

{ return x - y * z; }
static void set_neutral ( R &  r) [inline, static]

Definition at line 627 of file operators.hpp.

References mmx::set_zero().

{ set_zero (r); }
static void set_op ( R &  x,
const C1 &  y,
const C2 z 
) [inline, static]

Definition at line 631 of file operators.hpp.

References mmx::mul_sub().

{ mul_sub (x, y, z); }

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