19package denoptim.graph.simplified;
21import denoptim.graph.AttachmentPoint;
22import denoptim.graph.Vertex;
55 this.invariant = v.getClass().getSimpleName() +
"RCV";
57 this.invariant = v.getClass().getSimpleName();
78 if (this.vertex==
null && other.
vertex!=
null)
80 else if (this.vertex!=
null && other.
vertex==
null)
83 return this.invariant.compareTo(other.
invariant);
String toString()
Do not use this to make SDF representations.
An attachment point (AP) is a possibility to attach a Vertex onto the vertex holding the AP (i....
APClass getAPClass()
Returns the Attachment Point class.
A vertex is a data structure that has an identity and holds a list of AttachmentPoints.
void setProperty(Object key, Object property)
This class represents a subgraph feature that defined the structure of a graph.
static final String REFTOVERTEXKERNEL
Property if Vertex used to store the reference to the corresponding Node.
Vertex vertex
Reference to the vertex we might be representing.
String invariant
Invariant representation used to compare.