| 2268 | } |
| 2269 | |
| 2270 | expr expr::subst_simplify(const vector<pair<expr, expr>> &repls) const { |
| 2271 | if (repls.empty()) |
| 2272 | return *this; |
| 2273 | return subst(repls).simplify(); |
| 2274 | } |
| 2275 | |
| 2276 | expr expr::subst(const expr &from, const expr &to) const { |
| 2277 | C(from, to); |
no test coverage detected