codac 1.5.6
Loading...
Searching...
No Matches
codac2_CtcAction.h
Go to the documentation of this file.
1
12#ifndef __CODAC2_CTCACTION_H__
13#define __CODAC2_CTCACTION_H__
14
15#include "codac2_Action.h"
16
17namespace codac2
18{
22 class CtcAction : public codac::Ctc
23 {
24 public:
25
26 CtcAction(Ctc& ctc, const OctaSym& s);
27 void contract(codac::IntervalVector& x);
28
29 protected:
30
31 codac::Ctc& _ctc;
32 const OctaSym _s, __s;
33 };
34}
35
36#endif