#include <func.h>
Inheritance diagram for SepFunc:
Public Member Functions | |
SepFunc (int n, Pointer< ostream > out_func_p_=out_out_p, Pointer< ostream > out_func_log_p_=out_log_p) | |
Constructor for one block. | |
SepFunc (const vector< ivector > &block_, Pointer< ostream > out_func_p_=out_out_p, Pointer< ostream > out_func_log_p_=out_log_p) | |
Constructor for a block-structure. | |
SepFunc (const SepFunc &f) | |
Copy constructor. | |
void | set_dim () |
Sets the dimension to the correct value. | |
virtual void | print (ostream &out) const |
Print's out information about this function. | |
Public Attributes | |
vector< ivector > | block |
The block's of indices. |
Definition at line 740 of file func.h.
SepFunc::SepFunc | ( | int | n, | |
Pointer< ostream > | out_func_p_ = out_out_p , |
|||
Pointer< ostream > | out_func_log_p_ = out_log_p | |||
) | [inline] |
Constructor for one block.
n | The size of the first block. | |
out_func_p_ | An ostream to print function-related output to, default is out_out_p. | |
out_func_log_p_ | An ostream to print function-related logging-output to, default is out_func_p. |
Definition at line 751 of file func.h.
References block.
SepFunc::SepFunc | ( | const vector< ivector > & | block_, | |
Pointer< ostream > | out_func_p_ = out_out_p , |
|||
Pointer< ostream > | out_func_log_p_ = out_log_p | |||
) | [inline] |
Constructor for a block-structure.
block_ | The block-structure. | |
out_func_p_ | An ostream to print function-related output to, default is out_out_p. | |
out_func_log_p_ | An ostream to print function-related logging-output to, default is out_func_p. |
Definition at line 763 of file func.h.
References set_dim().
SepFunc::SepFunc | ( | const SepFunc & | f | ) | [inline] |
void SepFunc::set_dim | ( | ) | [inline] |
virtual void SepFunc::print | ( | ostream & | out | ) | const [inline, virtual] |
vector<ivector> SepFunc::block |