algebramix_doc 0.3
ser_separable_root_op Struct Reference

#include <series_naive.hpp>

List of all members.

Static Public Member Functions


Detailed Description

Definition at line 525 of file series_naive.hpp.


Member Function Documentation

static S def ( const S &  me,
const S &  a,
nat  r 
) [inline, static]

Definition at line 573 of file series_naive.hpp.

References mmx::C.

                                       {
    typedef Scalar_type(S) C;
    C me0_r_1= binpow (me[0], r - 1);
    C me0_r= me[0] * me0_r_1;
    return (a - me0_r - binpow_no_tangent (me, r)) / (as<C> (r) * me0_r_1); }
static generic name ( ) [inline, static]

Definition at line 554 of file series_naive.hpp.

{ return "separable_root"; }
static nat nr_init ( ) [inline, static]

Definition at line 570 of file series_naive.hpp.

{ return 1; }
static S op ( const S &  x,
nat  r 
) [inline, static]

Definition at line 557 of file series_naive.hpp.

References mmx::separable_root().

{ return separable_root (x, r); }
static syntactic op ( const syntactic &  x,
const syntactic &  r 
) [inline, static]

Definition at line 560 of file series_naive.hpp.

                                              {
    return apply ("separable_root", x, r); }
static S op_init ( const S &  x,
nat  r,
const I &  i 
) [inline, static]

Definition at line 567 of file series_naive.hpp.

References mmx::separable_root_init().

                                          {
    return separable_root_init (x, r, i); }
static void set_op ( R &  x,
const S &  y,
nat  r 
) [inline, static]

Definition at line 564 of file series_naive.hpp.

References mmx::separable_root().

{ x= separable_root (y, r); }

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