.getFunctionallyGroundedNodes();
ReferenceGroundedDecomposition dec1 = getDecomposition(model1);
Set<FunctionallyGroundedNode> fgNodes1 = dec1
.getFunctionallyGroundedNodes();
FunctionallyGroundedNode fgNode = selectFGNodeWithProperty(fgNodes,
new FunctionalPropertyNodeImpl(FOAF.mbox.getURI()));
FunctionallyGroundedNode fgNode1 = selectFGNodeWithProperty(fgNodes1,
new FunctionalPropertyNodeImpl(FOAF.mbox.getURI()));
System.out.println("Hash: " + fgNode.hashCode());
System.out.println("Hash1: " + fgNode1.hashCode());
System.out.println("Equals: " + fgNode.equals(fgNode1));
assertDiffer("Hashsed", fgNode.hashCode(), fgNode1.hashCode());
}