Direct Graphical Models  v.1.7.0
Graph3.cpp
1 #include "Graph3.h"
2 
3 namespace DirectGraphicalModels {
4 
5 void CGraph3::addTriplet(dword Node1, dword Node2, dword Node3)
6 {
7 }
8 
9 void CGraph3::addTriplet(dword Node1, dword Node2, dword Node3, const Mat &pot)
10 {
11 }
12 
13 void CGraph3::setTriplet(dword Node1, dword Node2, dword Node3, const Mat &pot)
14 {
15 }
16 
17 }
void addTriplet(dword Node1, dword Node2, dword Node3)
Adds an additional directed edge.
Definition: Graph3.cpp:5
void setTriplet(dword Node1, dword Node2, dword Node3, const Mat &pot)
Sets or changes the potentional of directed edge.
Definition: Graph3.cpp:13