This project is a demonstrator of pattern instanciation on system engineering model (pseim), made by the MOISE project. It contains the metamodel of the pseim, graphical and textual editors, formal verification models (event-B) and examples.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

11 lines
241 B

model test {
component comp (in i1, in i2, out o1) {
component sc1(in i1, in i2, out o1, out o2)
component sc2(in i1, in i2, out o)
i1 -> sc1.i1
i2 -> sc1.i2
sc1.o1 -> sc2.i1
sc1.o2 -> sc2.i2
sc2.o -> o1
}
}