ApplySubst returns the result of applying given substitution to this inequality.
(s Subst)
| 1233 | |
| 1234 | // ApplySubst returns the result of applying given substitution to this inequality. |
| 1235 | func (e Ineq) ApplySubst(s Subst) Term { |
| 1236 | return Ineq{e.Left.ApplySubst(s).(BaseTerm), e.Right.ApplySubst(s).(BaseTerm)} |
| 1237 | } |
| 1238 | |
| 1239 | // Clause represents a clause (a rule of the form "A." or "A :- B1, ..., Bn."). |
| 1240 | // When a clause has a body, the resulting relation can be transformed. |
nothing calls this directly
no test coverage detected