forward.3.man

来自「COOOL:CWP面向对象最优化库(CWP Object Oriented Op」· MAN 代码 · 共 64 行

MAN
64
字号
FORWARD(virtual)     FORWARD OPERATORS      FORWARD(virtual)                                                     Jun  1 15:18NAME    ForwardSYNOPSIS    #include <Forward.hh>    class Forward        \fIPublic members\fP            Forward();            Forward(int verbose);            virtual ~Forward();            int isValid() const;            void verbose(const int);            virtual const char* className() const;            virtual List<double> dataList(Model<long>& p) = 0;            virtual List<double> dataList(Model<double>& p) = 0;            int experiments();            virtual Vector<double> adjointOp(Vector<double>& v);            virtual Vector<double> forwardOp(Vector<double>& v);        \fIProtected members\fP            int ndata;            int isVerbose;        \fIPrivate members\fP            long secret_identifier;DESCRIPTION    Forward      is a class for forward operators in optimization.       Currently, COOOL takes two classes of Forward operators:       SlaveForward which communicates with a user-defined       objective-function evaluation programs, and LinForward       which is a Matrix for linear optimization problems.      This class cannot not be used directly.      See also SlaveForward, LinForward, DirectObjFcn, MisFit;    CAVEATS     Forward currently only takes Models either double      or long integer. It is mostly because I tried to avoid using     templates, due to the guliness of template features in G++.      Hopefully, this could be changed soon.CONSTANTS    long  magic_tag = 0xf0f0;DEFINED MACROS    FORWARD_HHINCLUDED FILES    "Vector.hh"    "List.hh"    "Model.hh"SOURCE FILES    Forward.cc

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?