codac 1.5.6
Loading...
Searching...
No Matches
codac2_CtcEllipse.h
Go to the documentation of this file.
1
9
10#pragma once
11
12#include "codac2_CtcWrapper.h"
13#include "codac2_OctaSym.h"
14
15namespace codac2
16{
17 class CtcEllipse0 : public Ctc<CtcEllipse0,IntervalVector>
18 {
19 public:
20
21 CtcEllipse0(const IntervalVector& q);
22 void contract(IntervalVector& x) const;
23
24 protected:
25
26 const IntervalVector _q, _qs;
27 };
28
29 class CtcEllipse : public Ctc<CtcEllipse,IntervalVector>
30 {
31 public:
32
33 CtcEllipse(const IntervalVector& q);
34 void contract(IntervalVector& x) const;
35 const IntervalVector& q() const;
36
37 protected:
38
39 IntervalVector contract_ith(const OctaSym& i, const IntervalVector& x) const;
40
41 const IntervalVector _q;
42 };
43}