Difference between revisions of "Decomposition Plug-in User Guide"

From Event-B
Jump to navigationJump to search
imported>Renato
imported>Asiehsalehi
 
Line 167: Line 167:
  
 
[[Category:User documentation]]
 
[[Category:User documentation]]
[[Category:Work in progress]]
 
 
[[Category:Composition]]
 
[[Category:Composition]]
 
[[Category:Plugin]]
 
[[Category:Plugin]]
 +
[[Category:Design]]

Latest revision as of 15:25, 4 July 2013

Introduction

The Decomposition plug-in allows to decompose a model into sub-models.

See the Event-B Model Decomposition page for technical details on shared variables (A-style) decomposition.

Installing and Updating

Setup

The following steps will guide you through the setup process:

  1. Download Rodin for your platform from Sourceforge.
  2. Extract the downloaded zip file.
  3. Start Rodin from the folder where you extracted the zip file in the previous step.
  4. Install the Decomposition plug-in:
    1. In the menu choose Help -> Install New Software...
    2. In the Work with dropdown list, choose the location URL: Rodin - http://rodin-b-sharp.sourceforge.net/updates
    3. Select the Model Decomposition feature under the Composition and Decomposition category, then click the check box
    4. Click Next, after some time, the Install Details page appears
    5. Click Next and accept the license
    6. Click Finish
    7. A Security Warning window may appear: click OK
  5. Restart Rodin as suggested.

Now you are ready to use the Decomposition plug-in.

Update

The following steps will guide you through the update process:

  1. In Rodin open the preferences (Window -> Preferences or for Mac: Rodin -> Preferences)
  2. Find Install/Update -> Automatic Updates
  3. Select Automatically find new updates and notify me

As soon as Rodin finds a new update it will ask you if you would like to install it.

Release Notes

See the Decomposition Release History.

Decomposing

Running the Decompose Action

The Decompose action launches the decomposition wizard, which will perform the decomposition according to the preferences. It is available:

1. Either from the toolbar of the Event-B explorer. 2. Or from the contextual menu, when right-clicking on a machine.
Decompose explorer.png
Decompose contextual.png

Setting the Preferences

The different decomposition options are described below:

  • Decomposition style. The shared variables (A-style) or shared events (B-style) decomposition will be performed, according to the specified decomposition style.
  • Create new projects for sub-components. If checked, the decomposed sub-models are created in new projects.
  • Context decomposition. The contexts seen by the input machine are decomposed if and only if this option is checked; otherwise, they are copied from the initial model to the decomposed sub-models.

Decompose options.png

Selecting the Input Machine and Partitioning the Elements

The following information has to be provided in the wizard dialog:

  • Which machine will be decomposed.
  • Which sub-machines will be generated.
  • How the elements, and more precisely the events for shared variables (A-style) decomposition and the variables for shared events (B-style) decomposition, are partioned among these sub-machines.

Decompose partition.png

Importing / Exporting the Configuration

It is possible on the one hand to export a configuration to a file, and on the other hand to import a configuration from a file.

Thus, similarly to what it is possible to do with the decomposition wizard, the configuration file allows to replay the decomposition by persistently storing the decomposition settings.

The decomposition file is created from the wizard using the 'save button'
Pretty print view of the configuration file

When saving the decomposition file, static checks are run according to the style of decomposition chosen (shared variable or shared event). If an error occurs during the static check, it is displayed in the Rodin Problems view. Only after all the decomposition errors are fixed, the decomposition operation can be run. That is achieved by clicking on the brown button on the menu bar (on top) or by right-clicking in the mouse and selecting the option "Decompose Now":

Decomposition file button.png

In case an error occurs during the decomposition, a message is displayed and the user is asked to delete the possible created files. The error will be displayed in the 'Rodin Problems' view (usually located at the bottom of the screen).

Decomposition file error.png

NOTE: Re-running the decomposition operation will override all the existing generated components without asking any confirmation. This includes all the sub-components machines, contexts, composed machines and even projects (from version 1.2.3 onwards).

Shared Event Composition

If you have the shared event composition plug-in installed, after the decomposition has been applied (via wizard of via configuration file), a composition file is automatically created, expressing how the events of the original model where split. Note that currently this only works for a shared event decomposition.

Before the decomposition
Configuration file
After the decomposition
alt text
Composition file automatically generated after the decomposition has been applied

Reporting a Bug or Requesting a Feature

Please, use the SourceForge trackers to report a bug on existing features, or to request new features:

Error Messages

When running the decomposition

The decomposition is forbidden and an error message is displayed, if one of the following conditions applies:

  • The built INITIALISATION events of the sub-machines would define an action modifying at the same time a private variable and a shared variable.
    Action {0} of the INITIALISATION event modifies a private variable and a shared variable

See Ensuring that a shared variable is not refined by an initialization event for further explanations.

  • The sub-models shall be created in new Event-B projects, but one of the entered project names already exists.
    The project {0} should not exist
  • The same project name has been entered for two distinct sub-models.
    Duplicate sub-model names: {0}
  • For the shared event decomposition, the predicates (invariants, guards) and assignments (actions) must not refer to elements that belong to different sub-components. If we create sub-component C1 with element el1 and sub-component C2 with element el2 from the non-decomposed component C, then a predicate P(el1, el2) (like el1=el2) in C would generate this error while decomposing. The predicate/assignment is too complex since refers to elements that belong to different sub-components. So solve this issue, the user must explicitly separate the elements (by a further refinement or introducing an auxiliary parameter p representing the value of a variable: el1=el2 <=> p=el2 /\ el1 = p).
    Action/Guard {0} in event {1}.{2} is too complex to be decomposed (includes variables that do not belong to this sub-component):\n\nAvailable variables/parameters: {3}\n\nAvailable carrier sets/constants: {4}\n\nAction: {5}\n\nPlease simplify/separate variables before decomposing.
  • When decomposing, all the events (shared variable approach) or all the variables (shared event approach) must be selected and allocated to the sub-components in order for the decomposition to run. If there are events/variables unselected, an error of this kind occurs:
    All the {events/variables} in {MachineName} must be used as (subComponent) elements before decomposing.
    To fix this error, the user must allocate the unselected variables/events to any of the sub-components.
  • When a static check error exists in the decomposition file, the decomposition button will not work and the decomposition will not be run.
  • If an error occurs when running the decomposition, the user will be asked to delete the partial created sub-components.

When running the static checker...

... on a machine file

The following rules are enforced on the machine files by the static checker, and errors are returned (in the Rodin Problems view) accordingly:

  • A shared variable shall be present in subsequent refinements.
    Shared variable {0} has disappeared
  • A shared variable shall still have the shared attribute in subsequent refinements.
    Inconsistent nature of shared variable {0}, shared expected
  • An external event shall be present in subsequent refinements.
    External event {0} has disappeared
  • An external event shall still have the external attribute in subsequent refinements.
    Inconsistent status of external event {0}, external expected
  • An external event shall have the extended attribute in subsequent refinements.
    Inconsistent status of external event {0}, extended expected
  • An external event shall not declare any additional parameter in subsequent refinements.
    Parameters cannot be added in external events
  • An external event shall not declare any additional guard in subsequent refinements.
    Guards cannot be added in external events
  • An external event shall not declare any additional action in subsequent refinements.
    Actions cannot be added in external events
  • An INITIALISATION event shall not contain an action modifying at the same time a private variable and a shared variable.
    Action {0} of the INITIALISATION event modifies a private variable and a shared variable
  • The actions of an INITIALISATION event modifying a shared variable shall be present and be syntactically equal in subsequent refinements.
    Action {0} of the INITIALISATION event has disappeared

For additional information, see:

... on a configuration file

  • In the configuration file, it is required only one component machine.
    Only one component machine may be decomposed
    Missing component name
    Component machine {0} not found
  • In the configuration file, it is required only one section.
    Component machine {0} does not have a configuration or Only one configuration is allowed per decomposition file
    • It is required to select the style between shared event or shared variable.
      Missing 'Style' definition
      Style {0} not recognised
    • It is required to select how to decompose the context between no decomposition or minimal decomposition.
      Missing 'Decomposition Context' definition
      Kind of decomposition context {0} not recognised
    • It is required to select how to decompose between New Project or Same Project.
      Missing 'New Project/Same Project Decomposition' definition
  • In the decomposition file, the subComponents must exist and have different labels.
    SubComponents not found and Ambiguous subComponent label {0}
    • All the subComponent elements derived from the component machine (variables or events) must be used before decomposing.
      All the {0} in {1} must be used as (subComponent) elements before decomposing
    • Each subComponent must have at least one subComponent element.
      SubComponent Elements not found for subComponent {0}
    • Depending on the select style of decomposition, the subComponent elements must exist and either variables or events.
      Invalid subComponent element
      {0} does not have expected type [shared variable:events; shared event:variables] or does not exist in component {1}

Tips and Tricks

Shared variables (A-style) decomposition

  • An invariant is missing in a sub-machine, but I would like to have it copied.
    For example, an invariant between a concrete variable and some abstract variable may be useful.
    A solution is to add a theorem based on the missing predicate in the non-decomposed machine. See the last paragraph about the invariants in the Event-B Model Decomposition page.
  • An axiom is missing in a sub-context, but I would like to have it copied.
    Such a situation may be encountered if the "Decompose contexts" option is checked.
    The workaround proposed for the invariants applies to the axioms as well.
    For example, if the non-decomposed context defines the axiom a \in S, and this axiom is not copied in a sub-context which contains the S carrier set but does not contain the a constant, then the information S \neq \emptyset is lost. In order to keep it, it is possible to add the theorem \exists x \qdot x \in S in the non-decomposed context.
  • A variable is tagged as private in a sub-machine, but I would like to have it tagged shared.
    Such a behavior is suitable if you want to prevent this variable from being further refined.
    A solution for such a variable v of a sub-machine M_i is to add a fake action v \bcmeq v in a event of the non-decomposed machine which is associated to the sub-machine M_j (M_i and M_j are distinct sub-machines) when performing the decomposition.
    In the first example below, the min variable will become private when performing the decomposition:
    Scenario1.png

    In the second example below, the min variable will become shared when performing the decomposition:
    Scenario2.png

Shared event (B-style) decomposition

  • When decomposing I am getting an error saying that the non-decomposed machine has complex actions/guards
    This usually means that a predicate/assignment is too complex to be decomposed automatically. If a predicate/assignment refers to variables that belong to different sub-components, that predicate/assignment cannot be decomposed automatically: the user must explicitly make the separation of the variables in the predicate/assignment. A solution can be add an additional parameter representing the value of the used variable. Consider v1 a variable that is a sub-set of carrier set S (v1 \subseteq S) and v2 that is an element of S (v2 \in S). The predicate v1 = S \backslash \{v2\} cannot be decomposed automatically if v1 and v2 belong to different sub-components. A possible solution is to add a parameter p: p = v2 \wedge v1 = S \backslash \{p\}.
  • Shared Event Composition
    The shared event composition plug-in can be used to see how the shared events are composed if this plug-in installed. Also it allows the generation of a composed machine that is a refinement of the non-decomposed machine. Below it is an example of just case: Machine cm11 was decomposed as seen in the decomposition file decompFile_cm11. And the shared events can be seen in shared event composition file cm11_cmp:

Machine cm11.png


DecompFile cm11.png



CompFile cm11 cmp.png