ApplySubst returns the result of applying given substitution to this equality.
(s Subst)
| 1209 | |
| 1210 | // ApplySubst returns the result of applying given substitution to this equality. |
| 1211 | func (e Eq) ApplySubst(s Subst) Term { |
| 1212 | return Eq{e.Left.ApplySubst(s).(BaseTerm), e.Right.ApplySubst(s).(BaseTerm)} |
| 1213 | } |
| 1214 | |
| 1215 | // Ineq represents an inequality (apartness constraint) X != Y or X != c or c != X. |
| 1216 | type Ineq struct { |
nothing calls this directly
no test coverage detected