
package simulatedAnnealing;

/** presents information about the computaion*/
public interface ComputationObserver {
    /** displays the state*/
    public void updateDisplay(Object state);
    /** prints the status of the state
    @param value the value
    @packetsSent the total number of packets sent by the computation till now
    @packetsArrived the total number of packets which arrived back  till now*/
    public void updateStatus(double value,int packetsSent,int packetsArrived);
}


