Skip to content
Snippets Groups Projects
Commit c2ae18ed authored by Florian Rabe's avatar Florian Rabe
Browse files

no message

parent 2f6ba67d
No related branches found
No related tags found
No related merge requests found
......@@ -148,7 +148,7 @@ object NoneIsReal extends ComputationRule(Units.qe) {
}
object DimEq extends TypeBasedEqualityRule(Nil,Units.dimensions ? "dimension") {
def applicableToTerm(tm: Term) = true
def applicableToTerm(solver: Solver, tm: Term) = true
override def apply(solver: Solver)(tm1: Term, tm2: Term, tp: Term)(implicit stack: Stack, history: History): Option[Boolean] = {
val (t1,t2) = (Normalize.dims(tm1)(solver,stack,history),Normalize.dims(tm2)(solver,stack,history))
......@@ -162,7 +162,7 @@ object DimEq extends TypeBasedEqualityRule(Nil,Units.dimensions ? "dimension") {
}
object UnitEq extends TypeBasedEqualityRule(Nil,Units.units ? "unit") {
def applicableToTerm(tm: Term) = true
def applicableToTerm(solver: Solver, tm: Term) = true
override def apply(solver: Solver)(tm1: Term, tm2: Term, tp: Term)(implicit stack: Stack, history: History): Option[Boolean] = {
val (t1,t2) = (Normalize.units(tm1)(solver,stack,history),Normalize.units(tm2)(solver,stack,history))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment