Skip to Content
Menu
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
To pytanie dostało ostrzeżenie
2 Odpowiedzi
9787 Widoki

How is it possible to make a condition with :

A & ( (B & C) | (D & E) | (F & G) )


??


 


( and if you can explain how it works .. because in the documentation, it's very light )

Thank you very much

Awatar
Odrzuć
Najlepsza odpowiedź

Hello Julien, 
your domain should be this : 
 &, A, '|', '|', &, B, C, &, D, E, &, F, G
To get it, you need to follow this step by step: 

Considering  : 
Q = (B & C) | (D & E)
A & ( (B & C) | (D & E) | (F & G) )  =  A & ( Q | (F & G) )

SO it would be : 

&, A,  Q | (F & G)
&, A, |, Q, (F & G)
&, A, |, Q, &, F, G      (M)

Now for Q it will be  : 

Q = (B & C) | (D & E)
|, (B &C), (D & E)

|, &, B, C, &, D, E
Take that and replace it in (M), you will get

&, A, |, |, &, B, C, &, D, E, &, F, G

Upvote if this helps!
Thank you

Awatar
Odrzuć
Autor Najlepsza odpowiedź

Thanks

Awatar
Odrzuć
Powiązane posty Odpowiedzi Widoki Czynność
1
maj 24
2533
1
lis 22
4870
2
lip 22
3582
2
lip 17
6710
5
lip 15
6031