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

gapt.expr.subst.ExprSubstitutable6.scala Maven / Gradle / Ivy

The newest version!
package gapt.expr.subst

import gapt.expr.ClosedUnderFOLSub
import gapt.expr.formula.fol.FOLFormula
import gapt.expr.formula.fol.FOLTerm

trait ExprSubstitutable6 extends ExprSubstitutable5 {
  implicit val FOLTermClosedUnderFOLSub: ClosedUnderFOLSub[FOLTerm] =
    (sub, x) => applySub(sub, x).asInstanceOf[FOLTerm]

  implicit val FOLFormulaClosedUnderFOLSub: ClosedUnderFOLSub[FOLFormula] =
    (sub, x) => applySub(sub, x).asInstanceOf[FOLFormula]
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy