Modus Ponens generalized

From Event-B
Revision as of 07:11, 5 May 2011 by imported>Billaude (New page: This page describe the design of a tactic replacing a predicate <math> P </math> in either an hypothesis or a goal by <math>\btrue</math> (respectively <math>\bfalse</math> ) if <math>P</m...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

This page describe the design of a tactic replacing a predicate  P in either an hypothesis or a goal by \btrue (respectively \bfalse ) if P (respectively \lnotP) is an hypothesis. That tactic is slightly different from the one requested : Feature Request #3137918


Objective

A sequent can be simplified by finding every occurrence of an hypothesis in the others hypothesis or goal, and replacing it by \btrue or \bfalse as explained below:

\frac{P,\varphi(\btrue) \vdash G}{P,\varphi(P) \vdash G} \qquad 
\frac{P,\varphi(\bfalse) \vdash G}{\lnot P,\varphi(P) \vdash G} \qquad 
\frac{P \vdash \varphi(\btrue)}{P \vdash \varphi(P)} \qquad 
\frac{P \vdash \varphi(\bfalse)}{\lnot P \vdash \varphi(P)}

Contrary to the Feature Request, the rule is applied on every occurrence of P and not only on the one appearing in a disjunctive form. Also, not to make explode the analyzing-time of a sequent, only goal and visible (or selected, it is still in discussion) hypothesis can be re-written, using every hypothesis (global and local). The analyzing-time performance of a sequent can be problematic since every predicate of goal and visible (or selected) hypothesis are checked. But it is still worthy because it may simplify a lot, and so make proof obligation more legible to humans.


Legacy

There already exist a reasoner that does a part of that tactic : autoImpF (ImpE automatic). It looks for implicative hypothesis in a sequent. Among the predicates computed by breaking possible conjunctions in the left side of the implication, it checks if some appear in selected hypothesis. In that case, every predicates which are hypothesis (global or local) are removed from the left-sided-predicate of the implication. If it remains no predicates, then the right side of the implication is re-written as a list of conjunction, else implication is re-written without the removed predicates (possibly none).

Then this reasoner can be considered as "intelligent" because it finds itself the positions where apply, which infer a code hard to read. On the contrary, as reasoners are in the trust-base, they should be easily understandable.

Modifications are provided to make it more legible.


Design Decision

The main drawback of this tactic is its execution time. Indeed, each (actually it is not the case but it helps to see how greedy this tactics can be) sub-predicate of each goal and visible (or selected) hypothesis is compared to the others hypothesis (global and local). Several strategies can be applied in order to reduce that execution-time :

  • Each hypothesis must be scanned only once to avoid accumulating predicate's running time. From that point of view, two decisions can be inferred :
    • A given predicate is compared once to every hypothesis. For instance, we do not try to find every occurrence of an hypothesis among the goal and the visible (or selected) hypothesis. In that case, each predicate would be scanned many times, accumulating execution time.
    • That tactic apply the rules specified here-above everywhere it is possible. Thus, from this set of hypothesis :
      • \lnot P_1
      • P_1 \limp P_2
      • (P_1 \limp P_2) \limp P_3
  1. We will reach immediatly :
    • \lnot P_1
    • \bfalse \limp P_2
    • \btrue \limp P_3
  2. Which will be re-written to :
    • \lnot P_1
    • \btrue
    • P_3
  1. Instead of writing :
    • \lnot P_1
    • \bfalse \limp P_2
    • (P_1 \limp P_2) \limp P_3
  2. Re-written :
    • \lnot P_1
    • \btrue
    • (P_1 \limp P_2) \limp P_3
  3. And then :
    • \lnot P_1
    • \btrue
    • (\bfalse \limp P_2) \limp P_3
  4. Re-written :
    • \lnot P_1
    • \btrue
    • P_3
  • When a predicate match an hypothesis, its children must not be analyzed.
\lnot P_1
P_1 \limp P_2
(P_1 \limp P_2) \limp P_3
In that example, the sub-predicate (P_1 \limp P_2) of the third predicate match to the second one. It has to be replaced by \btrue, and all its children have to be not analyzed (even if P_1 could have been replaced by \bfalse because of the first predicate).
  • In the case of n-ary predicates, each possibility is not tested.
P \lor Q
P \lor R \lor Q \lor S \lor T
\lnot P \land \lnot Q \limp R
In that example, P \lor Q could be replaced by \btrue in the second predicate. In order not to add more calculation time, this kind of replacement is not computed.

That reasoner can be considered as "intelligent", similarly to autoImpF because it computes by its own where it has to apply the rules.


Implementation

In this part is explained how the previous choices have been implemented with Java.

First, every hypothesis are stocked in a HashMap. The key is the hypothesis itself, its value is \bfalse if the hypothesis is a negation, \btrue else. Because the HashMap provides a constant-time performance for the basic operations (get and put), it is very relevant for what we have to do (add hypothesis to it and recover it to compare with a predicate).

Then, we look first in the goal if one of the rule can be applied. If so, we record the goal itself as key in a new HashMap, as well as a List of all the positions were a rule can be applied. In the same HashMap, visible (or selected) hypothesis are record following the same procedure.

Once this job done, every sub-predicate recorded in the second HashMap (a predicate plus a position) is controlled as being (itself or its negation form) an hypothesis. Thus, it is ensured that the algorithm matching sub-predicate with an hypothesis did not mistake (control of the HashMap's work). If it's the case, replacement is proceeded.