-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathConstraintInterval.C
More file actions
83 lines (51 loc) · 1.24 KB
/
ConstraintInterval.C
File metadata and controls
83 lines (51 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
/****************************************************************
ConstraintInterval.C
Copyright (C)2015 William H. Majoros ([email protected]).
This is OPEN SOURCE SOFTWARE governed by the Gnu General Public
License (GPL) version 3, as described at www.opensource.org.
****************************************************************/
#include <iostream>
#include "ConstraintInterval.H"
using namespace std;
using namespace BOOM;
ConstraintInterval::ConstraintInterval()
{
// ctor
}
ConstraintInterval::ConstraintInterval(const Interval &interval,bool constrained)
: interval(interval), constrained(constrained)
{
// ctor
}
bool ConstraintInterval::isConstrained() const
{
return constrained;
}
const Interval &ConstraintInterval::getInterval() const
{
return interval;
}
Interval &ConstraintInterval::getInterval()
{
return interval;
}
bool ConstraintInterval::contains(int pos) const
{
return interval.contains(pos);
}
void ConstraintInterval::setBegin(int begin)
{
interval.setBegin(begin);
}
void ConstraintInterval::setEnd(int end)
{
interval.setEnd(end);
}
int ConstraintInterval::getBegin() const
{
return interval.getBegin();
}
int ConstraintInterval::getEnd() const
{
return interval.getEnd();
}