@@ -129,8 +129,8 @@ The general structure of the panel is illustrated figure~\ref{wp-tip-run}. The c
...
@@ -129,8 +129,8 @@ The general structure of the panel is illustrated figure~\ref{wp-tip-run}. The c
\verb+Have:+& formula from an assertion or an instruction in the code;\\
\verb+Have:+& formula from an assertion or an instruction in the code;\\
\verb+When:+& condition from a simplification performed by \textsf{Qed};\\
\verb+When:+& condition from a simplification performed by \textsf{Qed};\\
\verb+If:+& structured hypothesis from a conditional statement;\\
\verb+If:+& structured hypothesis from a conditional statement;\\
\verb+Either:+& structured disjunction from a switch statement.\\
\verb+Either:+& structured disjunction from a switch statement;\\
\verb+Stmt:+& labels and C-like instructions representing the memory updates during code execution;\\
\verb+Stmt:+& labels and C-like instructions representing memory updates in executions.\\
\end{tabular}
\end{tabular}
\end{quote}
\end{quote}
...
@@ -718,7 +718,8 @@ access to the API. A custom strategy must be an instance of class-type \lstinlin
...
@@ -718,7 +718,8 @@ access to the API. A custom strategy must be an instance of class-type \lstinlin
The actual heuristic code takes place in method \lstinline$#search$ which has the following type (consult the html API for details):
The actual heuristic code takes place in method \lstinline$#search$ which has the following type (consult the html API for details):
\begin{lstlisting}[language=ocaml]
\begin{lstlisting}[language=ocaml]
method search : (Strategy.strategy -> unit) -> Conditions.sequent -> unit
method search :
(Strategy.strategy -> unit) -> Conditions.sequent -> unit
\end{lstlisting}
\end{lstlisting}
This method takes two parameters: a strategy registration callback and the sequent to prove. Each heuristic
This method takes two parameters: a strategy registration callback and the sequent to prove. Each heuristic
...
@@ -732,8 +733,9 @@ we decide to register a split tactic, thanks to the helper function \lstinline$A
...
@@ -732,8 +733,9 @@ we decide to register a split tactic, thanks to the helper function \lstinline$A
\paragraph{Using Selections.} Tactics always need a \lstinline$selection$ target. Moreover, some tactics require additional parameters, also to be provided as \lstinline$selection$ values. Typically, consider the \lstinline$Auto.range$ tactic:
\paragraph{Using Selections.} Tactics always need a \lstinline$selection$ target. Moreover, some tactics require additional parameters, also to be provided as \lstinline$selection$ values. Typically, consider the \lstinline$Auto.range$ tactic:
Composition allows you to build new terms from existing ones, like when using the term composer from the graphical user interface. You access composers by their name, like in the term composer. The API for building new terms is as follows:
Composition allows you to build new terms from existing ones, like when using the term composer from the graphical user interface. You access composers by their name, like in the term composer. The API for building new terms is as follows:
\begin{lstlisting}[language=ocaml]
\begin{lstlisting}[language=ocaml]
val Tactical.int : int -> Tactical.selection
val Tactical.int :
val Tactical.cint : Integer.t -> Tactical.selection
int -> Tactical.selection
val Tactical.range : int -> int -> Tactical.selection
val Tactical.cint :
val Tactical.compose : string -> Tactical.selection list -> Tactical.selection
Integer.t -> Tactical.selection
val Tactical.range :
int -> int -> Tactical.selection
val Tactical.compose :
string -> Tactical.selection list -> Tactical.selection
\end{lstlisting}
\end{lstlisting}
For instance, provided you have two selected terms \lstinline$a$ and \lstinline$b$, you can build their sum using
For instance, provided you have two selected terms \lstinline$a$ and \lstinline$b$, you can build their sum using
...
@@ -780,13 +792,13 @@ sequence of hypothesis, and a goal to prove. Each hypothesis is represented by a
...
@@ -780,13 +792,13 @@ sequence of hypothesis, and a goal to prove. Each hypothesis is represented by a
and sequence = .... step list ... (* private type *)
and sequence = .... step list ... (* private type *)
and step = { condition : condition ; ... }
and step = { condition : condition ; ... }
and condition =
and condition =
| Have of Lang.F.pred (** hypothesis *)
| Have of Lang.F.pred (** Hypothesis *)
| Init of Lang.F.pred (** C-initializer initialization clause *)
| Init of Lang.F.pred (** C-initializer initialization clause *)
| Type of Lang.F.pred (** C/ACSL type constraints *)
| Type of Lang.F.pred (** C/ACSL type constraints *)
| Core of Lang.F.pred (** Common hypothesis factorization from WP *)
| Core of Lang.F.pred (** Common hypothesis factorization from WP *)
| When of Lang.F.pred (** hypothesis from tactical or simplification *)
| When of Lang.F.pred (** Hypothesis (tactical or simplification) *)