public class FinishAuxiliaryMethodComputationMacro extends AbstractFinishAuxiliaryComputationMacro
ProofMacro.ProgressBarListener| Constructor and Description |
|---|
FinishAuxiliaryMethodComputationMacro() |
| Modifier and Type | Method and Description |
|---|---|
ProofMacroFinishedInfo |
applyTo(UserInterfaceControl uic,
Proof proof,
ImmutableList<Goal> goals,
PosInOccurrence posInOcc,
ProverTaskListener listener)
Apply this macro on the given goals.
|
boolean |
canApplyTo(Proof proof,
ImmutableList<Goal> goals,
PosInOccurrence posInOcc)
Can this macro be applied on the given goals?
|
addContractApplicationTaclets, calculateResultingTerm, getCategory, getDescription, getNameapplyTo, canApplyTo, getMaxSteps, getScriptCommandName, hasParameter, resetParams, setParameterpublic FinishAuxiliaryMethodComputationMacro()
public boolean canApplyTo(Proof proof, ImmutableList<Goal> goals, PosInOccurrence posInOcc)
ProofMacroproof - the current Proof (not null)goals - the goals (not null)posInOcc - the position in occurrence (may be null)true, if the macro is allowed to be appliedpublic ProofMacroFinishedInfo applyTo(UserInterfaceControl uic, Proof proof, ImmutableList<Goal> goals, PosInOccurrence posInOcc, ProverTaskListener listener)
ProofMacroInterruptedException.
A ProverTaskListener can be provided to which the progress will
be reported. If no reports are desired, null cna be used for
this parameter. If more than one listener is needed, consider combining
them using a single listener object using the composite pattern.uic - the UserInterfaceControl to useproof - the current Proof (not null)goals - the goals (not null)posInOcc - the position in occurrence (may be null)listener - the listener to use for progress reports (may be
null)