public class StartAuxiliaryLoopComputationMacro extends AbstractProofMacro implements StartSideProofMacro
ProofMacro.ProgressBarListenerPROOF_MACRO_FINISHED_INFO_KEY_ORIGINAL_PROOF| Constructor and Description |
|---|
StartAuxiliaryLoopComputationMacro() |
| 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?
|
java.lang.String |
getCategory()
Gets the category of this macro.
|
java.lang.String |
getDescription()
Gets the description of this macro.
|
java.lang.String |
getName()
Gets the name of this macro.
|
applyTo, canApplyTo, getMaxSteps, getScriptCommandName, hasParameter, resetParams, setParameterclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitapplyTo, canApplyTo, getScriptCommandName, hasParameter, resetParams, setParameterpublic java.lang.String getName()
ProofMacrogetName in interface ProofMacronull constant stringpublic java.lang.String getCategory()
ProofMacronull if no submenu is to be created.getCategory in interface ProofMacronullpublic java.lang.String getDescription()
ProofMacrogetDescription in interface ProofMacronull constant stringpublic boolean canApplyTo(Proof proof, ImmutableList<Goal> goals, PosInOccurrence posInOcc)
ProofMacrocanApplyTo in interface 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) throws java.lang.Exception
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.applyTo in interface ProofMacrouic - 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)java.lang.InterruptedException - if the application of the macro has been interrupted.java.lang.Exception