I want to write this statement in property "If input at time t is 0 and input at time t+1 is 1 then system reset will be one " I am writing it like this,
xin(t)==0 && xin(t+1)==1 --> reset==1.
but it is showing error "function expected". how can i write a function .
Thanks