Compute the product structure K×={I,S,R,L}of the following two Kripke structures:
Question : Compute the product structure explicitly, remove all the unreachable states and the transitions from/to unreachable states, and then submit the final Kripke structure in the following form:
vars a,b,c,d;
init 0;
labels 0:a; 1:a,b; 2:a,b; 3:c; 4:c; 5:d;
transitions 0->1; 0->2; 1->3; 2->4; 2->5; 3->3; 4->4; 5->5;
Answer : the product structure of the above two Kripke structure is :
the representation will be :
vars a,b,c,d;
init 0;
labels 0:; 1:b; 2:a,b,c,d;
transitions 0->2; 2->0; 1->2; 2->2;
When submitting, it is showing as incorrect. Please tell me where I am wrong?