开发者

efficient renaming of variables in first-order formulae

开发者 https://www.devze.com 2023-04-13 03:18 出处:网络
edit2: Taking the hint that de Bruijn indices might be easier to work with, I\'ve reformulated much of the internal representation of formulae to use a mixed de Bruijn representation ala Connor McBrid

edit2: Taking the hint that de Bruijn indices might be easier to work with, I've reformulated much of the internal representation of formulae to use a mixed de Bruijn representation ala Connor McBride's paper. This greatly simplified some algorithms regarding syntax that had to deal with α-equivalence, but made others more complicated. In any case, this means that free variables can be standardized apart and bound variables have canonical names represented by their binding distance. This isn't totally satisfactory, but it's at least a better start.

edit1: I realized the problem constraints aren't sufficient t开发者_运维技巧o guarantee standardization of variables. In particular, iteration of quantifiers means that variables in binders must be standardized apart first. So there is probably no escaping a solution that requires multiple passes over each abstract syntax tree. The suggestion to use de Bruijn indices is a fairly good solution generally, but it won't give standardization easily without breaking the notation and its utility.

original: Let V be an infinite set of variables indexed by the natural numbers, fv(φ) denote the free variables of φ, and bv(φ) denote the bound variables of φ, for any first-order formula φ. The problem I'm trying to solve is the following.

Let φ and ψ be first-order formulae. Find substitutions θ1 and θ2 such that: (a) fv1(φ)), fv2(φ)), bv1(φ)), and bv2(ψ)) are disjoint; (b) the union of fv1(φ)), fv2(φ)), bv1(φ)), and bv2(ψ)) is isomorphic to an initial segment of the natural numbers; and (c) all variables in bv1(φ)) are less than all variables in bv2(ψ)) are less than all variables in fv1(ψ)) are less than all variables in fv2(ψ)).

The difficulty is that the set of bound and free variables in a formula isn't necessarily disjoint, and quantifiers may be iterated, meaning that naive substitution produces accidental variable capture, and so forth.

An inefficient solution is the following. Given φ and ψ, first standardize apart the free variables of φ and ψ such that all free variables in the standardized terms are greater than the largest bound variable plus the number of binding operators in φ and ψ, giving φ' and ψ'. Then rename the bound variables of φ' starting from x0. Then the bound variables of ψ'. Then the free variables of φ'. Then the free variables of ψ'.

What I would like is a more efficient method of satisfying the problem constraints. That is, a solution that doesn't require the initial standardization that renames free variables. Standardizing variables apart efficiently isn't a problem. However, the additional constraint is giving me trouble.


Use De Bruijn idices for sure. Also, notice that they all positive. Then you can use the negative numbers during the unification process. If you want to use fresh indices, use a global one.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号