Difference between pages "Event-B Qualitative Probability User Guide" and "Extending Refinement Actions"

From Event-B
(Difference between pages)
Jump to navigationJump to search
imported>Son
 
imported>Laurent
(Filled purpose.)
 
Line 1: Line 1:
[[User:Son]] is in charge of the plug-in.
 
 
{{TOCright}}
 
{{TOCright}}
  
== Introduction ==
+
== Purpose==
Event-B Qualitative Probability plug-in provides supports for reasoning about termination with probability 1 (almost-certain termination).
 
For more details about the principles on XEvent-B, see the [[Qualitative Probability | Qualitative Probability page]].
 
  
== Installing and Updating ==
+
The GUI of Rodin 2.1 provides two actions for creating a new component from an existing one.  These actions are available as entries in the context menu of event-B components in the ''Event-B Explorer'':
The plug-in is available through the main Rodin Update Site under '''Modelling Extension''' category.
+
:* {{Menu|<math>\sqsubseteq</math> Refine}} for machines
 +
:* {{Menu|<math>\sqsubseteq</math> Extend}} for contexts
  
== News ==
+
In release 2.1, these actions are hard-coded in the event-B UI plug-in. They copy some of the elements of the selected component into the new component and massage the latter so that it statically checks and does not produce any proof obligation.
* 23.11.2011: Version 0.2.1 released for Rodin 2.3.*
 
* 10.04.2012: Version 0.2.1 is compatible with Rodin 2.4.*
 
* 14.05.2012: Version 0.2.1 is compatible with Rodin 2.5.*
 
* 09.03.2015: Version 0.2.2 is compatible with Rodin 3.x.x
 
  
== Technical References ==
+
The purpose of this development is to allow external plug-ins to contribute to these actions.  
* S. Hallerstede, T.S. Hoang. '''Qualitative Probabilistic Modelling in Event-B'''. In ''IFM 2007: Integrated Formal Methods, 6th International Conference Proceedings'', Oxford, UK, July 2-5, 2007, volume 4591 of LNCS © Springer-Verlag. [http://dx.doi.org/10.1007/978-3-540-73210-5_16 Springer website]
 
** Initial idea about probabilistic convergence event.
 
** New modelling elements: Variant bound
 
** New proof obligations: '''PRV''', '''BND''', '''FINACT'''.
 
** Example: Resolve contention in IEEE 1395 (Firewire protocol).
 
  
* E. Yilmaz, T.S. Hoang. '''Development of Rabin’s Choice Coordination Algorithm in Event-B'''.  In ''Automated Verification of Critical Systems 2010'', volume 35 of ''Electronic Communications of the EASST'' © EASST. [http://journal.ub.tu-berlin.de/eceasst/article/view/548 EASST website]
+
==API==
** Probablistic convergence event with refinement
 
** Constraints on how (not-) to refine probabilistic events.
 
** Example: Rabin's Choice Coordination Algorithm.
 
  
== Usage ==
 
We illustrate the usage of the plug-in using the example of contention resolving (part of IEEE 1394 Firewire protocol). The description of the problem is as follows.
 
  
Two processes in contention use a probabilistic protocol to resolve the problem. In each step, each process probabilisitcally choose to communicate in either short or long delay.  The contention is resolved when the processes choose different delays.
+
[[Category:Developer documentation]]
 
 
We start with a non-deterministic model of the system
 
* Boolean variables <math>x</math> and <math>y</math> represent the choice for each process: <math>TRUE</math> for short delay <math>FALSE</math> for long delay.
 
 
 
* Resolving contention is model as an event of the model with guard <math>x = y</math> (i.e. keep trying when the choices are identical).
 
[[Image:contention-nondet.jpg|480px|alt=Alt|Nondeterminsitc modelling of Contention problem]]
 
 
 
 
 
=== Probabilistic Modelling ===
 
* Set event '''resolve''' to be probabilistic convergence by setting its convergence attribute to be ''convergent'' and the probabilistic attribute of '''resolve''' from ''standard'' to ''probabilistic''.
 
[[Image:contention-prob.jpg|400px|alt=Alt|Probabilistic modelling of contention]]
 
 
 
* Set <math>\Bool \setminus \{x, y\}</math> as the variant of the model
 
[[Image:contention-variant.jpg|150px|alt=Alt|Variant for the probabilistic convergent event]]
 
 
 
* Create a new bound element (right-click on the machine name and choose ''Add Child''/Event-B Bound Element).
 
[[Image:contention-bound-create.jpg|500px|alt=Alt|Create the bound element]]
 
 
 
* Set <math>\Bool</math> as the bound of the model
 
[[Image:contention-bound.jpg|100px|alt=Alt|Bound for the probabilistic convergent event]]
 
 
 
* Save the model
 
 
 
=== Proof Obligations ===
 
* The model should have 3 proof obligations including '''resolve/PRV'''.
 
[[Image:contention-po.jpg]]
 
 
 
* The goal of proof obligation '''resolve/PRV''' is <math>\exists x^\prime, y^\prime \qdot \Bool \setminus \{x^\prime, y^\prime\} \subset \Bool \setminus \{x, y\}</math>.  With hypothesis <math>x = y</math> (from the guard of the event), the proof obligation can be discharged by instantiating different values for <math>x^\prime</math> and <math>y^\prime</math> (e.g. <math>\True</math> for <math>x^\prime</math> and <math>\False</math> for <math>y^\prime</math>). Alternatively, the obligation can be interactively discharge using '''p1''' (AterlierB Predicate Prover on lasso'd hypotheses) directly as shown below
 
[[Image:resolve-prv.jpg]]
 
 
 
== Explanations for some warning and error messages ==
 
 
 
* '''Missing variant''' warning
 
** Problem: [[Image:contention-novariant.jpg|500px|alt=Alt|Missing variant]]
 
** Explanation: User needs to provide a variant for probabilistic convergence events.
 
** Solution: Add a variant to the model
 
 
 
 
 
* '''Missing bound''' error
 
** Problem: [[Image:contention-nobound.jpg|400px|alt=Alt|Missing bound]]
 
** Explanation: The variant for probabilistic events need to be bounded above.
 
** Solution: Add a bound to the model (using Edit page of the standard Rodin editor).
 
 
 
== Additional features to be investigated/implemented ==
 
* ''Proof hints'': Select event guards when creating proof obligations, such as PRV and BND
 
 
 
* ''Finer-grain for probabilisitc attribute''. The probabilistic attribute might/should be attached to individual assignment and/or parameter of the event.
 

Revision as of 14:08, 31 March 2011

Contents

Purpose

The GUI of Rodin 2.1 provides two actions for creating a new component from an existing one. These actions are available as entries in the context menu of event-B components in the Event-B Explorer:

  • \sqsubseteq Refine for machines
  • \sqsubseteq Extend for contexts

In release 2.1, these actions are hard-coded in the event-B UI plug-in. They copy some of the elements of the selected component into the new component and massage the latter so that it statically checks and does not produce any proof obligation.

The purpose of this development is to allow external plug-ins to contribute to these actions.

API