Difference between revisions of "Generic Instantiation Proposal"

From Event-B
Jump to navigationJump to search
imported>Asiehsalehi
(Created page with "The initial proposal from Southampton is as follows. Proposal for generic instantiation of machines. == Issues: Instantia...")
 
imported>Laurent
 
Line 18: Line 18:
 
The second option consists in relaxing the conditions for generic instantiation by dropping the second implicit axiom (maximality). Then, a carrier set could be instantiated by any expression that denotes a non-empty set. However, dropping maximality does not come without strong consequences, because it is the justification for the type inference used in event-B:
 
The second option consists in relaxing the conditions for generic instantiation by dropping the second implicit axiom (maximality). Then, a carrier set could be instantiated by any expression that denotes a non-empty set. However, dropping maximality does not come without strong consequences, because it is the justification for the type inference used in event-B:
  
For instance, les us consider a context declaring a carrier set <math>S</math>, a constant <math>c</math> and the ''theorem'' <math>c\in S</math>. This context does not contain any axiom, but <math>c</math> is typed by inference in the theorem.  This context can easily be proved as the theorem can be deduced from typing. Then, this context could be instantiated by taking:
+
For instance, let us consider a context declaring a carrier set <math>S</math>, a constant <math>c</math> and the ''theorem'' <math>c\in S</math>. This context does not contain any axiom, but <math>c</math> is typed by inference in the theorem.  This context can easily be proved as the theorem can be deduced from typing. Then, this context could be instantiated by taking:
 
:<math>S\bcmeq 1\upto2</math>
 
:<math>S\bcmeq 1\upto2</math>
 
:<math>c\bcmeq 3</math>
 
:<math>c\bcmeq 3</math>

Latest revision as of 10:17, 5 December 2012

The initial proposal from Southampton is as follows. File:Proposal generic instantiation rodin.pdf.

Issues: Instantiation of Carrier Sets

Currently, the proposal mentions that the carrier sets can be instantiated with any set expressions (which contains existing carrier sets and constants).

However, besides the declared axioms in the development to be extended there are two implicit axioms for every carrier set S:

  1. non-emptiness:   S \neq \emptyset
  2. maximality: \forall x \qdot x \in S

There are two ways to tackle these implicit axioms:

  1. Restrict instantiation of carrier sets to type expressions
  2. Allow for general instantiation with some additions

In the first option, a carrier set can only be instantiated with an expression denoting a type. This can be syntactically verified. The advantage of this solution is that the two axioms are then verified implicitly, because any type expression satisfies these two axioms. Moreover, as type expressions are the only expressions that can satisfy both axioms, this is the only option which is viable if we are to consider that these two axioms must be fulfilled by an instantiation.

The second option consists in relaxing the conditions for generic instantiation by dropping the second implicit axiom (maximality). Then, a carrier set could be instantiated by any expression that denotes a non-empty set. However, dropping maximality does not come without strong consequences, because it is the justification for the type inference used in event-B:

For instance, let us consider a context declaring a carrier set S, a constant c and the theorem c\in S. This context does not contain any axiom, but c is typed by inference in the theorem. This context can easily be proved as the theorem can be deduced from typing. Then, this context could be instantiated by taking:

S\bcmeq 1\upto2
c\bcmeq 3

which would bring the instantiated theorem 3\in 1\upto2 which is obviously false.

Consequently, if we drop the maximality axiom, we have to generate additional proof obligations for showing that every instantiation of a constant belongs to the instantiation of its type.

However, there are more general issues. If a context contains theorem

\forall x\qdot x\in S

then using the same instantiation for S as above, one would obtain the instantiated theorem

\forall x\qdot x\in 1\upto2

which is also wrong. To mitigate this issue, all quantifications occurring in the initial context would need to be complemented by adding typing predicates for every quantified variables. For instance, the theorem above would be rewritten as

\forall x\qdot x\in S \limp x\in S

where we have added a typing predicate on the left-hand side of implication.

Similar issues happen for generic operators such as identity, where types need again to be explicited before instantiation (e.g., \id would become S\domres \id).

All this can be implemented in a tool, but it can be deceptive to users as the instantiated context can become quite different from the original context (when a lot of typing predicates and expressions have been added automatically by the instantiation plug-in).

In retrospect, the first option (instantiation only by type expressions) does not introduce any loss of generality. If one has a context with a carrier set S and wants to instantiate this carrier set with an arbitrary expression, it is always possible to modify the context by introducing an additional constant s and replace all (implicit or explicit) occurrences of S by s. This would be done in a manner similar to all the adjustments proposed for the second option above. However, all these adjustments would be made under the control of proof, rather than performed by a tool. Moreover, the user would have the opportunity to see exactly the consequences of replacing the carrier set by the constant and adjusting his model consequently. Finally, the advantage of the first option is that it keeps instantiation very simple, both for implementation in tools and for explaining how it works to prospective users.