Skip to content

Latest commit

 

History

History
57 lines (41 loc) · 963 Bytes

File metadata and controls

57 lines (41 loc) · 963 Bytes

Demo Config

TEST - PASS

A demo with no logical predicates.

Demo Model

participant External as E
participant Sender as S
participant Receiver as R
E ->  S: SIG
S ->  R: MSG
R --> S: REC
S --> E: ACK

$$ \begin{aligned}

  1. & SIG(\mu, EXT, s) \rightarrow MSG(\mu, s, r) \
  2. & MSG(\mu, s, r) \rightarrow REC(\mu, r, s) \
  3. & REC(\mu, r, s) \rightarrow ACK(\mu, s, EXT) \ \end{aligned} $$

Here is the picture for the GFM:

Demo Model

Config Content

Public Part

  • Machines Addresses

    External: http://127.0.0.1:8001
    Sender:   http://127.0.0.1:8002
    Receiver: http://127.0.0.1:8003
    
  • Messages Paths

    {
        'SIG': ('External', 'Sender'),
        'MSG': ('Sender', 'Receiver'),
        'REC': ('Receiver', 'Sender'),
        'ACK': ('Sender', 'External')
    }

Private Part

Shown in .py files.