-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChromaticVisitor.cpp
78 lines (63 loc) · 2.27 KB
/
ChromaticVisitor.cpp
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
/*
* File: ChromaticVisitor.cpp
* Author: ivek
*
* Created on January 9, 2012, 5:12 PM
*/
#include "ChromaticVisitor.h"
#include "TRow.h"
#include "VCol.h"
#include "TmpCol.h"
#include "XCol.h"
#include "SupportXCol.h"
#include "SigTRow.h"
#include "SigVCol.h"
#include "THyperRow.h"
#include "ShapeHyperCol.h"
#include "ScaleHyperCol.h"
#include "AuxCol.h"
#include "DirichletCol.h"
#include "DiscreteCol.h"
#include "DirichletHyperCol.h"
void ChromaticVisitor::visit(TRow *e, gl::iscope& scope, gl::icallback& schedule) {
e->updateFunction(scope, schedule);
}
void ChromaticVisitor::visit(VCol *e, gl::iscope& scope, gl::icallback& schedule) {
e->updateFunction(scope, schedule);
}
void ChromaticVisitor::visit(TmpCol *e, gl::iscope& scope, gl::icallback& schedule) {
e->updateFunction(scope, schedule);
}
void ChromaticVisitor::visit(XCol *e, gl::iscope& scope, gl::icallback& schedule) {
e->updateFunction(scope, schedule);
}
void ChromaticVisitor::visit(SupportXCol *e, gl::iscope& scope, gl::icallback& schedule) {
e->updateFunction(scope, schedule);
}
void ChromaticVisitor::visit(SigTRow *e, gl::iscope& scope, gl::icallback& schedule) {
e->updateFunction(scope, schedule);
}
void ChromaticVisitor::visit(SigVCol *e, gl::iscope& scope, gl::icallback& schedule) {
e->updateFunction(scope, schedule);
}
void ChromaticVisitor::visit(THyperRow *e, gl::iscope& scope, gl::icallback& schedule) {
e->updateFunction(scope, schedule);
}
void ChromaticVisitor::visit(ShapeHyperCol *e, gl::iscope& scope, gl::icallback& schedule) {
e->updateFunction(scope, schedule);
}
void ChromaticVisitor::visit(ScaleHyperCol *e, gl::iscope& scope, gl::icallback& schedule) {
e->updateFunction(scope, schedule);
}
void ChromaticVisitor::visit(AuxCol *e, gl::iscope& scope, gl::icallback& schedule) {
e->updateFunction(scope, schedule);
}
void ChromaticVisitor::visit(DirichletCol *e, gl::iscope& scope, gl::icallback& schedule) {
e->updateFunction(scope, schedule);
}
void ChromaticVisitor::visit(DiscreteCol *e, gl::iscope& scope, gl::icallback& schedule) {
e->updateFunction(scope, schedule);
}
void ChromaticVisitor::visit(DirichletHyperCol *e, gl::iscope& scope, gl::icallback& schedule) {
e->updateFunction(scope, schedule);
}