-
Notifications
You must be signed in to change notification settings - Fork 0
/
DgBoundedRF_template.h
76 lines (55 loc) · 2.8 KB
/
DgBoundedRF_template.h
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
////////////////////////////////////////////////////////////////////////////////
//
// DgBoundedRF_template.h: DgBoundedRF template class definition.
//
// Version 6.1 - Kevin Sahr, 5/23/13
//
////////////////////////////////////////////////////////////////////////////////
#include <cstdint>
template<class A, class B, class DB>
DgBoundedRF<A, B, DB>::DgBoundedRF (const DgDiscRF<A, B, DB>& rfIn,
const A& firstAddIn, const A& lastAddIn, const A& endAddIn, bool zBasedIn)
: DgBoundedRFBase<B, DB> (rfIn, *rfIn.makeLocation(firstAddIn),
*rfIn.makeLocation(lastAddIn), *rfIn.makeLocation(endAddIn), zBasedIn),
discRF_(rfIn),
firstAdd_(firstAddIn), lastAdd_(lastAddIn), endAdd_(endAddIn)
{
} // DgBoundedRF<A, B, DB>::DgBoundedRF
////////////////////////////////////////////////////////////////////////////////
template<class A, class B, class DB> bool
DgBoundedRF<A, B, DB>::validLocation (const DgLocation& loc, bool convert) const
{
return validAddress(*discRF().getAddress(loc));
} // bool DgBoundedRF<A, B, DB>::validLocation
////////////////////////////////////////////////////////////////////////////////
template<class A, class B, class DB> DgLocation&
DgBoundedRF<A, B, DB>::incrementLocation (DgLocation& loc, bool convert) const
{
const A* add = discRF().getAddress(loc);
incrementAddress(const_cast<A&>(*add)); // cheat for speed
return loc;
} // DgLocation& DgBoundedRF<A, B, DB>::incrementLocation
////////////////////////////////////////////////////////////////////////////////
template<class A, class B, class DB> DgLocation&
DgBoundedRF<A, B, DB>::decrementLocation (DgLocation& loc, bool convert) const
{
const A* add = discRF().getAddress(loc);
decrementAddress(const_cast<A&>(*add)); // cheat for speed
return loc;
} // DgLocation& DgBoundedRF<A, B, DB>::decrementLocation
////////////////////////////////////////////////////////////////////////////////
template<class A, class B, class DB> std::uint64_t
DgBoundedRF<A, B, DB>::seqNum (const DgLocation& loc, bool convert) const
{
const A* add = discRF().getAddress(loc);
return seqNumAddress(*add);
} // std::uint64_t DgBoundedRF<A, B, DB>::seqNum
////////////////////////////////////////////////////////////////////////////////
template<class A, class B, class DB> DgLocation*
DgBoundedRF<A, B, DB>::locFromSeqNum (std::uint64_t sNum) const
{
A add = addFromSeqNum(sNum);
return discRF().makeLocation(add);
} // DgLocation* DgBoundedRF<A, B, DB>::locFromSeqNum
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////