I changed my problem more clear here. there is two different model one is sender model and one is receiver model. I want to check the properties that message transmitted is not the same as the receiver receives.
MODULE main()
VAR
state : { informationsource, getinformation, transmitter, receiver, destination, ACK };
messageReceived : boolean;
messageTransmitted : boolean;
ASSIGN
init(state) := informationsource;
init(messageReceived) := FALSE;
next(state) := case
state = informationsource : getinformation;
state = getinformation : transmitter;
state = transmitter : receiver;
state = receiver & messageReceived = TRUE : destination;
TRUE : {destination, ACK} ;
esac;
LTLSPEC (G(state=receiver -> messageTransmited != messageReceived))