Difference between revisions of "D23 Improvements to Existing Provers"

From Event-B
Jump to navigationJump to search
imported>Pascal
imported>Pascal
Line 14: Line 14:
  
 
Areas of improvement for provers can be summarized as follows:
 
Areas of improvement for provers can be summarized as follows:
* reducing proving time and effort
+
* Reducing proving time and effort.
: New Proof Rules
+
: New proof rules.
* reflecting prover implementation corrections
+
* Reflecting prover implementation corrections.
: Reasoner Versioning
+
: Reasoner versioning.
* reducing proof storage space
+
* Reducing proof storage space.
: Proof Purging
+
: Proof purging.
: Proof Simplifying
+
: Proof simplifying.
: Non textual Database Storage
+
: Non textual database storage.
* facilitating manual proof review or reuse
+
* Facilitating manual proof review or reuse.
: Proof Skeleton View
+
: Proof skeleton view.
: Copy paste from skeleton to edited proof
+
: Copy / paste from skeleton to edited proof.
* Prover API evolution
+
* Prover API evolution.
: New Tactic Provider API
+
: New tactic provider API.
 
 
  
 
= Choices / Decisions =
 
= Choices / Decisions =

Revision as of 14:29, 17 November 2009

Overview

All along the lifecycle of the provers, the following improvements can be achieved by:

  • Adding new useful proof rules (to prove sequents that are hard to prove or even not provable at all).
  • Correcting bugs in implementations of existing proof rules.
  • Implementing new tools to help the user to do proofs.
  • Evolving the prover API to fit with the needs of prover plug-in developers.

Part of implemented rules and user interface features come from user feedback, mainly through SourceForge feature requests. SourceForge bugs are also an important source of input for corrections.

Systerel is in charge of existing prover improvements. University of Southampton gave feedback for the definition of prover API evolution.

Motivations

Areas of improvement for provers can be summarized as follows:

  • Reducing proving time and effort.
New proof rules.
  • Reflecting prover implementation corrections.
Reasoner versioning.
  • Reducing proof storage space.
Proof purging.
Proof simplifying.
Non textual database storage.
  • Facilitating manual proof review or reuse.
Proof skeleton view.
Copy / paste from skeleton to edited proof.
  • Prover API evolution.
New tactic provider API.

Choices / Decisions

Proof storage in database ? TODO A more generical way to contribute tactics (New tactic provider API)


Available Documentation

The following pages give useful information about prover improvements:

  • Prover Rules
See http://wiki.event-b.org/index.php/Inference_Rules
See http://wiki.event-b.org/index.php/All_Rewrite_Rules
  • Proof Skeleton View
See http://wiki.event-b.org/index.php/Proof_Skeleton_View
  • Proof Purger
See http://wiki.event-b.org/index.php/Proof_Purger_Interface
  • Prover API evolution
See http://wiki.event-b.org/index.php/New_Tactic_Providers
  • Versioned Reasoners
See http://wiki.event-b.org/index.php/Versioned_Reasoners


Planning

Proof storage in database ? TODO