* Outgoing edge on which this message must be sent
* @param msgValue
* Value of the message
*/
public void sendMessage(Edge e, double msgValue) {
Message aMsg = new Message(e.getSourceVertexID(), e.getDestVertexID(),
msgValue, this.getSuperStep());
this.gPartition.send(aMsg);
}