| Package | Description |
|---|---|
| org.processmining.fuzzyminer.models.causalgraph |
| Modifier and Type | Method and Description |
|---|---|
FuzzyDirectedGraphNode |
FuzzyCausalGraph.addNode(java.lang.String nodeLabel)
We build fuzzyCausalGraph with a strong limitation: we do not ever have two nodes with the same
label.
|
FuzzyDirectedGraphNode |
FuzzyCausalGraph.getNode(java.lang.String label) |
| Modifier and Type | Method and Description |
|---|---|
void |
FuzzyCausalGraph.addSureEdge(FuzzyDirectedGraphNode sourceNode,
FuzzyDirectedGraphNode targetNode,
double value1,
double value2) |
void |
FuzzyCausalGraph.addUncertainEdge(FuzzyDirectedGraphNode sourceNode,
FuzzyDirectedGraphNode targetNode,
double value1,
double value2) |
| Constructor and Description |
|---|
FuzzyDirectedGraphEdge(FuzzyDirectedGraphNode source,
FuzzyDirectedGraphNode target) |
FuzzyDirectedSureGraphEdge(FuzzyDirectedGraphNode source,
FuzzyDirectedGraphNode target) |
FuzzyDirectedSureGraphEdge(FuzzyDirectedGraphNode source,
FuzzyDirectedGraphNode target,
double value1,
double value2) |
FuzzyDirectedUncertainGraphEdge(FuzzyDirectedGraphNode source,
FuzzyDirectedGraphNode target) |
FuzzyDirectedUncertainGraphEdge(FuzzyDirectedGraphNode source,
FuzzyDirectedGraphNode target,
double value1,
double value2) |