Commit 440261d1 authored by Roland Kluge's avatar Roland Kluge
Browse files

Add a new generic graph element property for storing the reverse edge of

and edge
parent 81de3c5e
...@@ -30,4 +30,5 @@ public interface GenericGraphElementProperties { ...@@ -30,4 +30,5 @@ public interface GenericGraphElementProperties {
*/ */
public static final GraphElementProperty<Double> WEIGHT = new GraphElementProperty<>( public static final GraphElementProperty<Double> WEIGHT = new GraphElementProperty<>(
"WEIGHT", Double.class); "WEIGHT", Double.class);
GraphElementProperty<IEdge> REVERSE_EDGE = new GraphElementProperty<IEdge>("reverseEdge", IEdge.class);
} }
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment