Zum Inhalt springen
Menü
Sie müssen registriert sein, um mit der Community zu interagieren.
Diese Frage wurde gekennzeichnet
2 Antworten
9882 Ansichten

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

Avatar
Verwerfen
Beste Antwort

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

Avatar
Verwerfen
Autor Beste Antwort

Thanks

Avatar
Verwerfen
Verknüpfte Beiträge Antworten Ansichten Aktivität
1
Mai 24
2640
1
Nov. 22
5003
2
Juli 22
3716
2
Juli 17
6820
5
Juli 15
6086