Class FloydWarshallAlg<V>
java.lang.Object
tools.refinery.interpreter.rete.itc.alg.fw.FloydWarshallAlg<V>
- All Implemented Interfaces:
IGraphObserver<V>
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
edgeDeleted
(V source, V target) Used to notify when an edge is deleted from the graph.void
edgeInserted
(V source, V target) Used to notify when an edge is inserted into the graph.void
nodeDeleted
(V n) Used to notify when a node is deleted from the graph.void
nodeInserted
(V n) Used to notify when a node is inserted into the graph.
-
Constructor Details
-
FloydWarshallAlg
-
-
Method Details
-
edgeInserted
Description copied from interface:IGraphObserver
Used to notify when an edge is inserted into the graph.- Specified by:
edgeInserted
in interfaceIGraphObserver<V>
- Parameters:
source
- the source of the edgetarget
- the target of the edge
-
edgeDeleted
Description copied from interface:IGraphObserver
Used to notify when an edge is deleted from the graph.- Specified by:
edgeDeleted
in interfaceIGraphObserver<V>
- Parameters:
source
- the source of the edgetarget
- the target of the edge
-
nodeInserted
Description copied from interface:IGraphObserver
Used to notify when a node is inserted into the graph.- Specified by:
nodeInserted
in interfaceIGraphObserver<V>
- Parameters:
n
- the node
-
nodeDeleted
Description copied from interface:IGraphObserver
Used to notify when a node is deleted from the graph.- Specified by:
nodeDeleted
in interfaceIGraphObserver<V>
- Parameters:
n
- the node
-
getTcRelation
-