66 ++n; |
66 ++n; |
67 } |
67 } |
68 } |
68 } |
69 |
69 |
70 //Compile Graph |
70 //Compile Graph |
71 template void hugo::checkCompileStaticGraph<skeleton::StaticGraph> |
71 template void lemon::checkCompileStaticGraph<skeleton::StaticGraph> |
72 (skeleton::StaticGraph &); |
72 (skeleton::StaticGraph &); |
73 |
73 |
74 template void hugo::checkCompileGraph<skeleton::ExtendableGraph> |
74 template void lemon::checkCompileGraph<skeleton::ExtendableGraph> |
75 (skeleton::ExtendableGraph &); |
75 (skeleton::ExtendableGraph &); |
76 |
76 |
77 template void hugo::checkCompileErasableGraph<skeleton::ErasableGraph> |
77 template void lemon::checkCompileErasableGraph<skeleton::ErasableGraph> |
78 (skeleton::ErasableGraph &); |
78 (skeleton::ErasableGraph &); |
79 |
79 |
80 //Compile SmartGraph |
80 //Compile SmartGraph |
81 template void hugo::checkCompileGraph<SmartGraph>(SmartGraph &); |
81 template void lemon::checkCompileGraph<SmartGraph>(SmartGraph &); |
82 template void hugo::checkCompileGraphFindEdge<SmartGraph>(SmartGraph &); |
82 template void lemon::checkCompileGraphFindEdge<SmartGraph>(SmartGraph &); |
83 |
83 |
84 //Compile SymSmartGraph |
84 //Compile SymSmartGraph |
85 template void hugo::checkCompileGraph<SymSmartGraph>(SymSmartGraph &); |
85 template void lemon::checkCompileGraph<SymSmartGraph>(SymSmartGraph &); |
86 template void hugo::checkCompileGraphFindEdge<SymSmartGraph>(SymSmartGraph &); |
86 template void lemon::checkCompileGraphFindEdge<SymSmartGraph>(SymSmartGraph &); |
87 |
87 |
88 //Compile ListGraph |
88 //Compile ListGraph |
89 template void hugo::checkCompileGraph<ListGraph>(ListGraph &); |
89 template void lemon::checkCompileGraph<ListGraph>(ListGraph &); |
90 template void hugo::checkCompileErasableGraph<ListGraph>(ListGraph &); |
90 template void lemon::checkCompileErasableGraph<ListGraph>(ListGraph &); |
91 template void hugo::checkCompileGraphFindEdge<ListGraph>(ListGraph &); |
91 template void lemon::checkCompileGraphFindEdge<ListGraph>(ListGraph &); |
92 |
92 |
93 |
93 |
94 //Compile SymListGraph |
94 //Compile SymListGraph |
95 template void hugo::checkCompileGraph<SymListGraph>(SymListGraph &); |
95 template void lemon::checkCompileGraph<SymListGraph>(SymListGraph &); |
96 template void hugo::checkCompileErasableGraph<SymListGraph>(SymListGraph &); |
96 template void lemon::checkCompileErasableGraph<SymListGraph>(SymListGraph &); |
97 template void hugo::checkCompileGraphFindEdge<SymListGraph>(SymListGraph &); |
97 template void lemon::checkCompileGraphFindEdge<SymListGraph>(SymListGraph &); |
98 |
98 |
99 //Compile FullGraph |
99 //Compile FullGraph |
100 template void hugo::checkCompileStaticGraph<FullGraph>(FullGraph &); |
100 template void lemon::checkCompileStaticGraph<FullGraph>(FullGraph &); |
101 template void hugo::checkCompileGraphFindEdge<FullGraph>(FullGraph &); |
101 template void lemon::checkCompileGraphFindEdge<FullGraph>(FullGraph &); |
102 |
102 |
103 //Compile EdgeSet <ListGraph> |
103 //Compile EdgeSet <ListGraph> |
104 template void hugo::checkCompileGraph<EdgeSet <ListGraph> > |
104 template void lemon::checkCompileGraph<EdgeSet <ListGraph> > |
105 (EdgeSet <ListGraph> &); |
105 (EdgeSet <ListGraph> &); |
106 template void hugo::checkCompileGraphEraseEdge<EdgeSet <ListGraph> > |
106 template void lemon::checkCompileGraphEraseEdge<EdgeSet <ListGraph> > |
107 (EdgeSet <ListGraph> &); |
107 (EdgeSet <ListGraph> &); |
108 template void hugo::checkCompileGraphFindEdge<EdgeSet <ListGraph> > |
108 template void lemon::checkCompileGraphFindEdge<EdgeSet <ListGraph> > |
109 (EdgeSet <ListGraph> &); |
109 (EdgeSet <ListGraph> &); |
110 |
110 |
111 //Compile EdgeSet <NodeSet> |
111 //Compile EdgeSet <NodeSet> |
112 template void hugo::checkCompileGraph<EdgeSet <NodeSet> >(EdgeSet <NodeSet> &); |
112 template void lemon::checkCompileGraph<EdgeSet <NodeSet> >(EdgeSet <NodeSet> &); |
113 template void hugo::checkCompileGraphEraseEdge<EdgeSet <NodeSet> > |
113 template void lemon::checkCompileGraphEraseEdge<EdgeSet <NodeSet> > |
114 (EdgeSet <NodeSet> &); |
114 (EdgeSet <NodeSet> &); |
115 template void hugo::checkCompileGraphFindEdge<EdgeSet <NodeSet> > |
115 template void lemon::checkCompileGraphFindEdge<EdgeSet <NodeSet> > |
116 (EdgeSet <NodeSet> &); |
116 (EdgeSet <NodeSet> &); |
117 |
117 |
118 |
118 |
119 int main() |
119 int main() |
120 { |
120 { |