All Downloads are FREE. Search and download functionalities are using the official Maven repository.

gapt.proofs.lk.rules.LogicalAxiom.scala Maven / Gradle / Ivy

The newest version!
package gapt.proofs.lk.rules

import gapt.expr.formula.Formula
import gapt.proofs.HOLSequent

/**
 * An LKProof consisting of a logical axiom:
 * 
 *    --------ax
 *     A :- A
 * 
* with A atomic. * * @param A The atom A. */ case class LogicalAxiom(A: Formula) extends InitialSequent { override def name: String = "ax" override def conclusion: HOLSequent = HOLSequent(Seq(A), Seq(A)) def mainFormula: Formula = A }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy