git @ Cat's Eye Technologies Eqthy / c0e1f2d
Checkpoint fixing subst to support checking Socks and Shoes Chris Pressey 2 years ago
3 changed file(s) with 21 addition(s) and 6 deletion(s). Raw diff Collapse all Expand all
66 inv(mul(A, B)) = mul(inv(B), inv(A))
77 proof
88 e = e
9 mul(A, inv(A)) = e [by #inv on LHS]
9 mul(A, inv(A)) = e
1010 mul(mul(A, B), inv(mul(A, B))) = e [by substitution of mul(A, B) into A]
11 mul(mul(A, B), inv(mul(A, B))) = mul(A, inv(A)) [by #inv on RHS]
11 mul(mul(A, B), inv(mul(A, B))) = mul(A, inv(A))
12 mul(mul(A, B), inv(mul(A, B))) = mul(mul(A, e), inv(A))
1213
13 // s4 = check (invIntroR "a" [2] s3) "((a*b)*~(a*b))=(a*~a)"
14 // s5 = check (identIntroR [2,1] s4) "((a*b)*~(a*b))=((a*e)*~a)"
1514 // s6 = check (invIntroR "b" [2,1,2] s5) "((a*b)*~(a*b))=((a*(b*~b))*~a)"
1615 // s7 = check (assocR [2,1] s6) "((a*b)*~(a*b))=(((a*b)*~b)*~a)"
1716 // s8 = check (assocL [2] s7) "((a*b)*~(a*b))=((a*b)*(~b*~a))"
8686 raise NotImplementedError(str(term))
8787
8888
89 def subst_at_index(term, unifier, index):
90 if not unifier.success:
91 return term
92 if not index:
93 return subst(term, unifier)
94 if len(index) and isinstance(term, Term):
95 position = index[0]
96 new_subterm = subst_at_index(term.subterms[position], unifier, index[1:])
97 subterms = term.subterms[:]
98 subterms[position] = new_subterm
99 return Term(term.ctor, subterms)
100 else:
101 raise NotImplementedError('{} at {}'.format(str(term), index))
102
103
89104 def replace(term, target, replacement):
90105 if term == target:
91106 return replacement
00 # TODO: these should probably come from a "eqthy.hints" module
11 from eqthy.parser import Substitution, Congruence
2 from eqthy.terms import Eqn, all_matches, subst, render, RewriteRule, replace
2 from eqthy.terms import Eqn, all_matches, subst, subst_at_index, render, RewriteRule, replace
33
44
55 class DerivationError(Exception):
9393
9494 self.log(" Trying to rewrite rhs {} with {}", render(prev.eqn.rhs), render(rule))
9595 for rewritten_rhs in self.all_rewrites(rule, prev.eqn.rhs):
96 self.log(" Using {}, rewrote {} to {}", render(rule), render(prev.eqn.rhs), render(rewritten_rhs))
9697 rewritten_eqn = Eqn(prev.eqn.lhs, rewritten_rhs)
9798 if step.eqn == rewritten_eqn:
9899 self.log(" Can rewrite rhs to obtain: {}", render(rewritten_eqn))
102103 matches = all_matches(rule.pattern, term)
103104 rewrites = []
104105 for (index, unifier) in matches:
105 rewrites.append(subst(rule.substitution, unifier))
106 rewrites.append(subst_at_index(rule.substitution, unifier, index))
106107 return rewrites