gapt.provers.viper.aip.axioms.Axiom.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gapt_3 Show documentation
Show all versions of gapt_3 Show documentation
General Architecture for Proof Theory
The newest version!
package gapt.provers.viper.aip.axioms
import gapt.expr.formula.Formula
import gapt.proofs.lk.LKProof
trait Axiom {
/**
* @return The formula representing the axiom.
*/
def formula: Formula
/**
* @return A proof of the axiom.
*/
def proof: LKProof
}