#!/bin/sh # This is a shell archive, meaning: # 1. Remove everything above the #!/bin/sh line. # 2. Save the resulting text in a file. # 3. Execute the file with /bin/sh (not csh) to create the files: # Group.ax.eq.clauses # Group.ax.g.clauses # Group.ax.p.clauses # Lemmas.eq.clauses # Lemmas.p.clauses # README # commutator.desc # commutator.ver1.clauses # commutator.ver1.in # commutator.ver1.out # commutator.ver2.clauses # commutator.ver2.in # commutator.ver2.out # cyclic.desc # cyclic.ver3.in # cyclic.ver3.out # ident1.desc # ident1.ver1.clauses # ident1.ver1.in # ident1.ver1.out # ident2.desc # ident2.ver1.clauses # ident2.ver1.in # ident2.ver1.out # index.desc # index.ver1.clauses # index.ver1.in # index.ver1.out # index.ver2.clauses # index.ver2.in # index.ver2.out # invers1.desc # invers1.ver1.clauses # invers1.ver1.in # invers1.ver1.out # invers2.desc # invers2.ver1.clauses # invers2.ver1.in # invers2.ver1.out # order2.desc # order2.ver3.clauses # order2.ver3.in # order2.ver3.out # order2.ver4.clauses # order2.ver4.in # order2.ver4.out # order3.desc # order3.ver3.clauses # order3.ver3.in # order3.ver3.out # order3.ver4.clauses # order3.ver4.in # order3.ver4.out # xsquared.desc # xsquared.ver1.clauses # xsquared.ver1.in # xsquared.ver1.out # xsquared.ver2.clauses # xsquared.ver2.in # xsquared.ver2.out # This archive created: Tue Aug 16 11:16:14 1988 export PATH; PATH=/bin:$PATH if test -f 'Group.ax.eq.clauses' then echo shar: over-writing existing file "'Group.ax.eq.clauses'" fi cat << \SHAR_EOF > 'Group.ax.eq.clauses' % problem-set/algebra/groups/Group.ax.eq.clauses % created : 07/21/86 % revised : 08/11/88 % description: % % The following axioms define a group; the equality substitution axioms for % f and g as well as the symmetry and transitivity axioms for equality are % not included, since the problem is being represented in extended first order % predicate calculus, where equality is built in. % representation: % % declare_predicate(1,[O]). % declare_predicate(2,[EQUAL]). % declare_function(1,[g]). % declare_functions(2,[f,l]). % declare_constants([e,a,b,c,d,h,j,k]). % declare_variables([x,y,z]). % % O(x) : membership in a subgroup of index 2 (see index) % g(x) : inverse of x % f(x,y) : names the product of x and y % l(x,y) : names an element in O (see index) % e : identity element % For any x and y in the group x*y is also in the group. No clause is needed % here since this is an instance of reflexivity given as EQUAL(x,x). % There exists an identity element 'e' defined below. % left identity EQUAL(f(e,x),x). % right identity EQUAL(f(x,e),x). % For any x in the group, there exists an element y such that x*y = y*x = e. % left inverse EQUAL(f(g(x),x),e). % right inverse EQUAL(f(x,g(x)),e). % The operation '*' is associative EQUAL(f(f(x,y),z),f(x,f(y,z))). % The operation '*' is well-defined. No clause is needed here since this % is an instance of reflexivity given as EQUAL(x,x). % reflexivity EQUAL(x,x). SHAR_EOF if test -f 'Group.ax.g.clauses' then echo shar: over-writing existing file "'Group.ax.g.clauses'" fi cat << \SHAR_EOF > 'Group.ax.g.clauses' % problem-set/algebra/groups/Group.ax.g.clauses % created : 07/22/86 % revised : 08/15/88 % description: % % The following are the usual axioms of a group with an additional argument % in the usual predicates and functions to identify the group. % representation: % % declare_predicates(2,[EL,EQUAL]). % declare_predicate(4,[P]). % declare_functions(1,[e,k,r,s,p1,p2,p3,q1,q2,q3]). % declare_functions(2,[g,m]). % declare_function(3,[f]). % declare_constants([a,b,c,d,i,h,j,d1,d2,d3,G,G1,G2]). % declare_variables([x,y,z,w,xg,yg,xy,yz,xyz]). % % EL(x,y) : x is an element of group y % P(x,y,z,w) : in group x, the product of y and z is w % e(x) : names the identity element of group x % k(x) : names an isomorphism (see order2.ver3, order3.ver3) % r(x) : is a possible isomorphism (see order2.ver4) % s(x) : is a possible isomorphism (see order2.ver4) % p1(x) : is a possible isomorphism (see order3.ver4) % p2(x) : is a possible isomorphism (see order3.ver4) % p3(x) : is a possible isomorphism (see order3.ver4) % q1(x) : is a possible isomorphism (see order3.ver4) % q2(x) : is a possible isomorphism (see order3.ver4) % q3(x) : is a possible isomorphism (see order3.ver4) % g(x,y) : in group x, names inverse of y % m(x,y) : in group x, names an element which does not equal any power of % y; (see cyclic) % f(x,y,z) : in group x, names the product of y and z % i : identity element in group G named % closure property -EL(x,xg) | -EL(y,xg) | P(xg,x,y,f(xg,x,y)). -EL(x,xg) | -EL(y,xg) | EL(f(xg,x,y),xg). % the operation is well defined -P(xg,x,y,z) | -P(xg,x,y,w) | EQUAL(w,z). -P(xg,x,z,y) | -P(xg,x,w,y) | EQUAL(w,z). -P(xg,z,y,x) | -P(xg,w,y,x) | EQUAL(w,z). % existence of identity EL(e(xg),xg). P(xg,e(xg),x,x). P(xg,x,e(xg),x). % existence of inverses -EL(x,xg) | EL(g(xg,x),xg). P(xg,g(xg,x),x,e(xg)). P(xg,x,g(xg,x),e(xg)). % associative property -P(xg,x,y,xy) | -P(xg,y,z,yz) | -P(xg,xy,z,xyz) | P(xg,x,xy,xyz). -P(xg,x,y,xy) | -P(xg,y,z,yz) | -P(xg,x,yz,xyz) | P(xg,xy,z,xyz). % equality axioms EQUAL(x,x). -EQUAL(x,y) | EQUAL(y,x). -EQUAL(x,y) | -EQUAL(y,z) | EQUAL(x,z). % equality substitution axioms -EQUAL(xg,yg)| -P(xg,x,y,z) | P(yg,x,y,z). -EQUAL(x,y) | -P(xg,x,z,w) | P(xg,y,z,w). -EQUAL(x,y) | -P(xg,w,x,z) | P(xg,w,y,z). -EQUAL(x,y) | -P(xg,w,z,x) | P(xg,w,z,y). -EQUAL(xg,yg)| EQUAL(f(xg,x,y),f(yg,x,y)). -EQUAL(x,y) | EQUAL(f(xg,x,z),f(xg,y,z)). -EQUAL(x,y) | EQUAL(f(xg,z,x),f(xg,z,y)). -EQUAL(xg,yg)| EQUAL(g(xg,x),g(yg,x)). -EQUAL(x,y) | EQUAL(g(xg,x),g(xg,y)). -EQUAL(xg,yg)| -EL(x,xg) | EL(x,yg). -EQUAL(x,y) | -EL(x,xg) | EL(y,xg). -EQUAL(xg,yg)| EQUAL(e(xg),e(yg)). SHAR_EOF if test -f 'Group.ax.p.clauses' then echo shar: over-writing existing file "'Group.ax.p.clauses'" fi cat << \SHAR_EOF > 'Group.ax.p.clauses' % problem-set/algebra/groups/Group.ax.p.clauses % created : 07/09/86 % revised : 08/15/88 % description: % % The following are the standard axioms for a group, p-formulation % representation: % % declare_predicate(1,[O]). % declare_predicate(2,[EQUAL]). % declare_predicate(3,[P]). % declare_functions(1,[g,k]). % declare_functions(2,[f,l]). % declare_constants([e,a,b,c,d,h,j,k]). % declare_variables([x,y,z,u,v,w]). % % O(x) : used for membership in a subgroup of index 2 (see index) % P(x,y) : product of x and y is z % g(x) : inverse of x % k(x) : used to name some inverse of x (see ident2) % f(x,y) : names the product of x and y % l(x,y) : names an element of the subgroup of index 2 (see index) % e : identity element % existence of identity P(e,x,x). P(x,e,x). % existence of inverse P(g(x),x,e). P(x,g(x),e). % closure P(x,y,f(x,y)). % associative property -P(x,y,u) | -P(y,z,v) | -P(u,z,w) | P(x,v,w). -P(x,y,u) | -P(y,z,v) | -P(x,v,w) | P(u,z,w). % the operation is well defined -P(x,y,z) | -P(x,y,w) | EQUAL(z,w) . -P(x,z,y) | -P(x,w,y) | EQUAL(z,w) . -P(z,y,x) | -P(w,y,x) | EQUAL(z,w) . % equality axioms EQUAL(x,x). -EQUAL(x,y) | EQUAL(y,x). -EQUAL(x,y) | -EQUAL(y,z) | EQUAL(x,z). % equality substitution axioms -EQUAL(x,y) | -P(x,w,z) | P(y,w,z). -EQUAL(x,y) | -P(w,x,z) | P(w,y,z). -EQUAL(x,y) | -P(w,z,x) | P(w,z,y). -EQUAL(x,y) | EQUAL(f(x,w),f(y,w)). -EQUAL(x,y) | EQUAL(f(w,x),f(w,y)). -EQUAL(x,y) | EQUAL(g(x),g(y)). SHAR_EOF if test -f 'Lemmas.eq.clauses' then echo shar: over-writing existing file "'Lemmas.eq.clauses'" fi cat << \SHAR_EOF > 'Lemmas.eq.clauses' % problem-set/algebra/groups/Lemmas.eq.clauses % created : 07/27/86 % revised : 08/11/88 % description: % % ....... Lemmas proved ....... % representation: % % declare_predicate(1,[O]). % declare_predicate(2,[EQUAL]). % declare_function(1,[g]). % declare_functions(2,[f,l]). % declare_constants([e,a,b,c,d,h,j,k]). % declare_variables([x,y,z]). % % O(x) : membership in a subgroup of index 2 (see index) % g(x) : inverse of x % f(x,y) : names the product of x and y % l(x,y) : names an element in O (see index) % e : identity element % inverse of inverse of an element is the element itself EQUAL(g(g(x)),x). % inverse of identity is identity EQUAL(g(e),e). % inverse of the product = product of the inverses in the reverse order EQUAL(g(f(x,y)),f(g(y),g(x))). SHAR_EOF if test -f 'Lemmas.p.clauses' then echo shar: over-writing existing file "'Lemmas.p.clauses'" fi cat << \SHAR_EOF > 'Lemmas.p.clauses' % problem-set/algebra/groups/Lemmas.p.clauses % created : 08/26/86 % revised : 08/11/88 % description: % % The following identities may be established % representation: % % declare_predicate(1,[O]). % declare_predicate(2,[EQUAL]). % declare_predicate(3,[P]). % declare_functions(1,[g,k]). % declare_functions(2,[f,l]). % declare_constants([e,a,b,c,d,h,j,k]). % declare_variables([x,y,z,u,v,w]). % % O(x) : used for membership in a subgroup of index 2 (see index) % P(x,y) : product of x and y is z % g(x) : inverse of x % k(x) : used to name some inverse of x (see ident2) % f(x,y) : names the product of x and y % l(x,y) : names an element of the subgroup of index 2 (see index) % e : identity element % inverse of inverse of x is equal to x EQUAL(g(g(x)),x). % inverse of identity is identity EQUAL(g(e),e). SHAR_EOF if test -f 'README' then echo shar: over-writing existing file "'README'" fi cat << \SHAR_EOF > 'README' problem-set/algebra/groups/README created : 06/30/86 revised : 08/12/88 Contents of 'groups' : ---------------------- NOTE : These problems have come from 'Problems & Experiments from & With Automated Theorem-Proving programs' by McCharen, Overbeek, & Wos [Aug. 1976]. Main File Headings ---------------------------------------------------------------------- README : You are currently here; a description of all the files in the directory problem-set/algebra/groups. Group.ax.p.clauses : standard group axioms, in a p-formulation. Group.ax.eq.clauses : standard group axioms, in an equality formulation. Group.ax.g.clauses : standard group axioms, in a revised p-formulation whereby the group is specified in each predicate, so that one may work problems involving more than one group. Lemmas.p.clauses : lemmas proven in the p-formulation. Lemmas.eq.clauses : lemmas proven in the equality formulation. xsquared : Theorem: if, for all x in G, x*x=e then G is abelian (commutative); i.e., for all x,y in G, x*y=y*x. invers1 : Theorem: the inverse is unique; i.e., if ab=ba=e and ac=ca=e, then b=c [e is the identity]. ident1 : Theorem: the right identity axiom is dependant on the rest of the axiom set; i.e., if e is the left identity, then e is also a right identity. invers2 : Theorem: the right inverse axiom is dependant on the rest of the axiom set; i.e., each element has a right inverse. ident2 : Theorem: the right identity axiom is dependant on the rest of the axiom set; i.e., each element has a right identity. Note that this is a corollary to ident1, but also that the proof is different due to the introduction of a skolem function for the right identity of each element of the group. commutator : Theorem: (commutator thm.) if, for all x in G, x*x*x=e then {{x,y},y}=e, where {x,y}=x*y*inverse(x)*inverse(y) is the commutator of x and y. index : Theorem: all subgroups of index 2 are normal; i.e., if O is a subgroup of G and there are exactly 2 cosets in G/O, then O is normal [that is, for all x in G and y in O, x*y*inverse(x) is back in O]. order2 : Theorem: all groups of order 2 are isomorphic; i.e., if G1 has exactly 2 elements and G2 has exactly 2 elements then there exists an isomorphism [a one-to-one and onto homomorphism] between them. order3 : Theorem: all groups of order 3 are isomorphic; i.e., if G1 and G2 each have exactly 3 elements, then there exists an isomorphism [a one-to-one and onto homomorphism] between them. cyclic : Theorem: all groups of order 5 are cyclic; i.e., there exists an element in G which generates all other elements by taking powers of that element. ---------------------------------------------------------------------- For each problem, there are several standard files, which include one probname.desc file and at least one of each of probname.ver#.in, probname.ver#.clauses, and probname.ver#.out. These contain the following: probname.desc : contains the Natural Language Description of the problem, where available, as well as complete details on each formulation and each version. probname.ver#.in : contains the problem specification, input clauses, and strategy for OTTER; this file is ready to run. In this particular directory, each .ver1 file uses the regular p-formulation; each .ver2 file uses an equality formulation; and each .ver3 and .ver4 file uses an extended p-formulation which specifies in which group each statement is true. probname.ver#.clauses : contains the description, commentary, and the actual clauses (including the denial of the conclusion) used for probname.ver#.in, without any strategy; note that comments always are on lines beginning with a %, preceding the clauses to which they refer, and that clauses terminate with periods. probname.ver#.out : contains the output from running probname.ver#.in with OTTER, with proof if one is found, and with statistics on the clauses generated and CPU time used. HOW TO RUN : ---------------------------------------------------------------------- Invoke OTTER by using the following command : otter < probname.ver#.in [ > outfile ] [ & ] NOTE : '> outfile' may be used to send all output to a file named outfile; '&' may be used to run the program in the background. SHAR_EOF if test -f 'commutator.desc' then echo shar: over-writing existing file "'commutator.desc'" fi cat << \SHAR_EOF > 'commutator.desc' problem-set/algebra/groups/commutator.desc created : 07/09/86 revised : 08/11/88 Natural Language Description: Theorem: (commutator thm.) if, for all x in G, x*x*x=e then {{x,y},y}=e, where {x,y}=x*y*inverse(x)*inverse(y) is the commutator of x and y. Versions : commutator.ver1 : uses hyperresolution and a standard p-formulation. created : 7/9/86 from McCharen, Overbeek, & Wos [Aug. 1976]. verified for ITP : no proof in 2979 kept clauses. translated for OTTER : caw. verified for OTTER : no proof in 5287 kept clauses. commutator.ver2 : uses UR resolution, paramodulation and demodulation with a standard p-formulation. created : 08/11/88, Cynthia A. Wick verified for ITP : no. translated for OTTER : caw. verified for OTTER : no proof in 8215 kept clauses. SHAR_EOF if test -f 'commutator.ver1.clauses' then echo shar: over-writing existing file "'commutator.ver1.clauses'" fi cat << \SHAR_EOF > 'commutator.ver1.clauses' % problem-set/algebra/groups/commutator.ver1.clauses % created : 07/09/86 % revised : 08/12/88 % description: % % Theorem: (commutator thm.) if, for all x in G, x*x*x=e then % {{x,y},y}=e, where {x,y}=x*y*inverse(x)*inverse(y) is the % commutator of x and y. % representation: % % declare_predicate(1,[O]). % declare_predicate(2,[EQUAL]). % declare_predicate(3,[P]). % declare_functions(1,[g,k]). % declare_functions(2,[f,l]). % declare_constants([e,a,b,c,d,h,j,k]). % declare_variables([x,y,z,u,v,w]). % % O(x) : used for membership in a subgroup of index 2 (see index) % P(x,y) : product of x and y is z % g(x) : inverse of x % k(x) : used to name some inverse of x (see ident2) % f(x,y) : names the product of x and y % l(x,y) : names an element of the subgroup of index 2 (see index) % e : identity element % existence of identity P(e,x,x). P(x,e,x). % existence of inverse P(g(x),x,e). P(x,g(x),e). % closure P(x,y,f(x,y)). % associative property -P(x,y,u) | -P(y,z,v) | -P(u,z,w) | P(x,v,w). -P(x,y,u) | -P(y,z,v) | -P(x,v,w) | P(u,z,w). % the operation is well defined -P(x,y,z) | -P(x,y,w) | EQUAL(z,w) . % equality axioms EQUAL(x,x). -EQUAL(x,y) | EQUAL(y,x). -EQUAL(x,y) | -EQUAL(y,z) | EQUAL(x,z). % equality substitution axioms -EQUAL(x,y) | -P(x,w,z) | P(y,w,z). -EQUAL(x,y) | -P(w,x,z) | P(w,y,z). -EQUAL(x,y) | -P(w,z,x) | P(w,z,y). -EQUAL(x,y) | EQUAL(f(x,w),f(y,w)). -EQUAL(x,y) | EQUAL(f(w,x),f(w,y)). -EQUAL(x,y) | EQUAL(g(x),g(y)). % x cubed is equal to x -P(x,x,y) | P(x,y,e). -P(x,x,y) | P(y,x,e). % denial of the theorem P(a,b,c). P(c,g(a),d). P(d,g(b),h). P(h,b,j). P(j,g(h),k). -P(k,g(b),e). SHAR_EOF if test -f 'commutator.ver1.in' then echo shar: over-writing existing file "'commutator.ver1.in'" fi cat << \SHAR_EOF > 'commutator.ver1.in' % problem-set/algebra/groups/commutator.ver1.in % created : 07/09/86 % revised : 08/12/88 % description: % % Theorem: (commutator thm.) if, for all x in G, x*x*x=e then % {{x,y},y}=e, where {x,y}=x*y*inverse(x)*inverse(y) is the % commutator of x and y. % representation: % % declare_predicate(1,[O]). % declare_predicate(2,[EQUAL]). % declare_predicate(3,[P]). % declare_functions(1,[g,k]). % declare_functions(2,[f,l]). % declare_constants([e,a,b,c,d,h,j,k]). % declare_variables([x,y,z,u,v,w]). % % O(x) : used for membership in a subgroup of index 2 (see index) % P(x,y) : product of x and y is z % g(x) : inverse of x % k(x) : used to name some inverse of x (see ident2) % f(x,y) : names the product of x and y % l(x,y) : names an element of the subgroup of index 2 (see index) % e : identity element set(hyper_res). set(back_demod). set(factor). set(Unit_deletion). assign(max_kept,5000). list(axioms). % existence of identity P(e,x,x). P(x,e,x). % existence of inverse P(g(x),x,e). P(x,g(x),e). % closure P(x,y,f(x,y)). % associative property -P(x,y,u) | -P(y,z,v) | -P(u,z,w) | P(x,v,w). -P(x,y,u) | -P(y,z,v) | -P(x,v,w) | P(u,z,w). % the operation is well defined -P(x,y,z) | -P(x,y,w) | EQUAL(z,w) . % equality axioms EQUAL(x,x). -EQUAL(x,y) | EQUAL(y,x). -EQUAL(x,y) | -EQUAL(y,z) | EQUAL(x,z). % equality substitution axioms -EQUAL(x,y) | -P(x,w,z) | P(y,w,z). -EQUAL(x,y) | -P(w,x,z) | P(w,y,z). -EQUAL(x,y) | -P(w,z,x) | P(w,z,y). -EQUAL(x,y) | EQUAL(f(x,w),f(y,w)). -EQUAL(x,y) | EQUAL(f(w,x),f(w,y)). -EQUAL(x,y) | EQUAL(g(x),g(y)). % x cubed is equal to x -P(x,x,y) | P(x,y,e). -P(x,x,y) | P(y,x,e). end_of_list. list(sos). % denial of the theorem P(a,b,c). P(c,g(a),d). P(d,g(b),h). P(h,b,j). P(j,g(h),k). -P(k,g(b),e). end_of_list. list(demodulators). EQUAL(g(e),e). EQUAL(f(x,e),x). EQUAL(f(e,x),x). EQUAL(f(x,g(x)),e). EQUAL(f(g(x),x),e). EQUAL(g(g(x)),x). end_of_list. SHAR_EOF if test -f 'commutator.ver1.out' then echo shar: over-writing existing file "'commutator.ver1.out'" fi cat << \SHAR_EOF > 'commutator.ver1.out' OTTER version 0.91, 14 June 1988. set(hyper_res). set(back_demod). set(factor). set(Unit_deletion). assign(max_kept,5000). list(axioms). 1 P(e,x,x). 2 P(x,e,x). 3 P(g(x),x,e). 4 P(x,g(x),e). 5 P(x,y,f(x,y)). 6 -P(x,y,u) | -P(y,z,v) | -P(u,z,w) | P(x,v,w). 7 -P(x,y,u) | -P(y,z,v) | -P(x,v,w) | P(u,z,w). 8 -P(x,y,z) | -P(x,y,w) | EQUAL(z,w). 9 EQUAL(x,x). 10 -EQUAL(x,y) | EQUAL(y,x). 11 -EQUAL(x,y) | -EQUAL(y,z) | EQUAL(x,z). 12 -EQUAL(x,y) | -P(x,w,z) | P(y,w,z). 13 -EQUAL(x,y) | -P(w,x,z) | P(w,y,z). 14 -EQUAL(x,y) | -P(w,z,x) | P(w,z,y). 15 -EQUAL(x,y) | EQUAL(f(x,w),f(y,w)). 16 -EQUAL(x,y) | EQUAL(f(w,x),f(w,y)). 17 -EQUAL(x,y) | EQUAL(g(x),g(y)). 18 -P(x,x,y) | P(x,y,e). 19 -P(x,x,y) | P(y,x,e). end_of_list. list(sos). 20 P(a,b,c). 21 P(c,g(a),d). 22 P(d,g(b),h). 23 P(h,b,j). 24 P(j,g(h),k). 25 -P(k,g(b),e). end_of_list. list(demodulators). 26 EQUAL(g(e),e). 27 EQUAL(f(x,e),x). 28 EQUAL(f(e,x),x). 29 EQUAL(f(x,g(x)),e). 30 EQUAL(f(g(x),x),e). 31 EQUAL(g(g(x)),x). end_of_list. new given clause: 20 P(a,b,c). ** KEPT: 32 (20,8,5) EQUAL(f(a,b),c). ---> New Demodulator: 33 (32) EQUAL(f(a,b),c). ** KEPT: 34 (20,7,5,5) P(f(x,a),b,f(x,c)). ** KEPT: 35 (20,7,5,3) P(f(g(c),a),b,e). ** KEPT: 36 (20,7,3,5) P(e,b,f(g(a),c)). ** KEPT: 37 (20,7,5,5) P(c,x,f(a,f(b,x))). ** KEPT: 38 (20,7,4,5,27) P(c,g(b),a). ** KEPT: 39 (20,6,5,5) P(x,c,f(f(x,a),b)). ** KEPT: 40 (20,6,3,5,28) P(g(a),c,b). ** KEPT: 41 (20,6,5,5) P(a,f(b,x),f(c,x)). ** KEPT: 42 (20,6,5,4) P(a,f(b,g(c)),e). ** KEPT: 43 (20,6,4,5) P(a,e,f(c,g(b))). >>>> Starting back demodulation with: 33 (32) EQUAL(f(a,b),c). new given clause: 23 P(h,b,j). ** KEPT: 44 (23,8,5) EQUAL(f(h,b),j). ---> New Demodulator: 45 (44) EQUAL(f(h,b),j). ** KEPT: 46 (23,7,5,5) P(f(x,h),b,f(x,j)). ** KEPT: 47 (23,7,5,3) P(f(g(j),h),b,e). ** KEPT: 48 (23,7,3,5) P(e,b,f(g(h),j)). ** KEPT: 49 (23,7,5,5) P(j,x,f(h,f(b,x))). ** KEPT: 50 (23,7,4,5,27) P(j,g(b),h). ** KEPT: 51 (23,6,5,5) P(x,j,f(f(x,h),b)). ** KEPT: 52 (23,6,3,5,28) P(g(h),j,b). ** KEPT: 53 (23,6,5,5) P(h,f(b,x),f(j,x)). ** KEPT: 54 (23,6,5,4) P(h,f(b,g(j)),e). ** KEPT: 55 (23,6,4,5) P(h,e,f(j,g(b))). >>>> Starting back demodulation with: 45 (44) EQUAL(f(h,b),j). new given clause: 21 P(c,g(a),d). ** KEPT: 56 (21,8,5) EQUAL(f(c,g(a)),d). ---> New Demodulator: 57 (56) EQUAL(f(c,g(a)),d). ** KEPT: 58 (21,7,5,5) P(f(x,c),g(a),f(x,d)). ** KEPT: 59 (21,7,5,3) P(f(g(d),c),g(a),e). ** KEPT: 60 (21,7,3,5) P(e,g(a),f(g(c),d)). ** KEPT: 61 (21,7,5,5) P(d,x,f(c,f(g(a),x))). ** KEPT: 62 (21,7,4,5,31,27) P(d,a,c). ** KEPT: 63 (21,6,20,5) P(a,f(b,g(a)),d). ** KEPT: 64 (21,6,5,5) P(x,d,f(f(x,c),g(a))). ** KEPT: 65 (21,6,3,5,28) P(g(c),d,g(a)). ** KEPT: 66 (21,6,5,5) P(c,f(g(a),x),f(d,x)). ** KEPT: 67 (21,6,5,4) P(c,f(g(a),g(d)),e). ** KEPT: 68 (21,6,4,5,31) P(c,e,f(d,a)). >>>> Starting back demodulation with: 57 (56) EQUAL(f(c,g(a)),d). new given clause: 62 (21,7,4,5,31,27) P(d,a,c). ** KEPT: 69 (62,8,5) EQUAL(f(d,a),c). ---> New Demodulator: 70 (69) EQUAL(f(d,a),c). ** KEPT: 71 (62,7,5,5) P(f(x,d),a,f(x,c)). ** KEPT: 72 (62,7,5,3) P(f(g(c),d),a,e). ** KEPT: 73 (62,7,3,5) P(e,a,f(g(d),c)). ** KEPT: 74 (62,7,20,5) P(c,b,f(d,c)). ** KEPT: 75 (62,7,5,5) P(c,x,f(d,f(a,x))). ** KEPT: 76 (62,6,5,5) P(x,c,f(f(x,d),a)). ** KEPT: 77 (62,6,3,5,28) P(g(d),c,a). ** KEPT: 78 (62,6,20,5) P(d,c,f(c,b)). ** KEPT: 79 (62,6,5,5) P(d,f(a,x),f(c,x)). ** KEPT: 80 (62,6,5,4) P(d,f(a,g(c)),e). >>>> Starting back demodulation with: 70 (69) EQUAL(f(d,a),c). >> back demodulating: 68 (21,6,4,5,31) P(c,e,f(d,a)). new given clause: 22 P(d,g(b),h). ** KEPT: 81 (22,8,5) EQUAL(f(d,g(b)),h). ---> New Demodulator: 82 (81) EQUAL(f(d,g(b)),h). ** KEPT: 83 (22,7,5,5) P(f(x,d),g(b),f(x,h)). ** KEPT: 84 (22,7,5,3) P(f(g(h),d),g(b),e). ** KEPT: 85 (22,7,3,5) P(e,g(b),f(g(d),h)). ** KEPT: 86 (22,7,5,5) P(h,x,f(d,f(g(b),x))). ** KEPT: 87 (22,7,4,5,31,27) P(h,b,d). ** KEPT: 88 (22,6,21,5) P(c,f(g(a),g(b)),h). ** KEPT: 89 (22,6,5,5) P(x,h,f(f(x,d),g(b))). ** KEPT: 90 (22,6,3,5,28) P(g(d),h,g(b)). ** KEPT: 91 (22,6,5,23,30) P(d,e,j). ** KEPT: 92 (22,6,5,5) P(d,f(g(b),x),f(h,x)). ** KEPT: 93 (22,6,5,4) P(d,f(g(b),g(h)),e). >>>> Starting back demodulation with: 82 (81) EQUAL(f(d,g(b)),h). new given clause: 87 (22,7,4,5,31,27) P(h,b,d). ** KEPT: 94 (87,8,23) EQUAL(j,d). ---> New Demodulator: 95 (94) EQUAL(j,d). ** KEPT: 96 (87,7,5,5) P(f(x,h),b,f(x,d)). ** KEPT: 97 (87,7,5,3) P(f(g(d),h),b,e). ** KEPT: 98 (87,7,3,5) P(e,b,f(g(h),d)). ** KEPT: 99 (87,7,5,5) P(d,x,f(h,f(b,x))). ** KEPT: 100 (87,6,5,5) P(x,d,f(f(x,h),b)). ** KEPT: 101 (87,6,3,5,28) P(g(h),d,b). ** KEPT: 102 (87,6,5,62) P(h,f(b,a),c). ** KEPT: 103 (87,6,5,5) P(h,f(b,x),f(d,x)). ** KEPT: 104 (87,6,5,4) P(h,f(b,g(d)),e). >>>> Starting back demodulation with: 95 (94) EQUAL(j,d). >> back demodulating: 23 P(h,b,j). >> back demodulating: 24 P(j,g(h),k). ** KEPT: 105 (24,95) P(d,g(h),k). >> back demodulating: 46 (23,7,5,5) P(f(x,h),b,f(x,j)). >> back demodulating: 47 (23,7,5,3) P(f(g(j),h),b,e). >> back demodulating: 54 (23,6,5,4) P(h,f(b,g(j)),e). >> back demodulating: 48 (23,7,3,5) P(e,b,f(g(h),j)). >> back demodulating: 49 (23,7,5,5) P(j,x,f(h,f(b,x))). >> back demodulating: 50 (23,7,4,5,27) P(j,g(b),h). >> back demodulating: 51 (23,6,5,5) P(x,j,f(f(x,h),b)). >> back demodulating: 52 (23,6,3,5,28) P(g(h),j,b). >> back demodulating: 53 (23,6,5,5) P(h,f(b,x),f(j,x)). >> back demodulating: 55 (23,6,4,5) P(h,e,f(j,g(b))). >> back demodulating: 91 (22,6,5,23,30) P(d,e,j). >> back demodulating: 45 (44) EQUAL(f(h,b),j). ** KEPT: 106 (45,95) EQUAL(f(h,b),d). ---> New Demodulator: 107 (106) EQUAL(f(h,b),d). >> back demodulating: 44 (23,8,5) EQUAL(f(h,b),j). >>>> Starting back demodulation with: 107 (106) EQUAL(f(h,b),d). new given clause: 94 (87,8,23) EQUAL(j,d). new given clause: 25 -P(k,g(b),e). new given clause: 32 (20,8,5) EQUAL(f(a,b),c). new given clause: 38 (20,7,4,5,27) P(c,g(b),a). ** KEPT: 108 (38,8,5) EQUAL(f(c,g(b)),a). ---> New Demodulator: 109 (108) EQUAL(f(c,g(b)),a). ** KEPT: 110 (38,7,5,62) P(f(d,c),g(b),c). ** KEPT: 111 (38,7,5,5) P(f(x,c),g(b),f(x,a)). ** KEPT: 112 (38,7,5,3) P(f(g(a),c),g(b),e). ** KEPT: 113 (38,7,3,5) P(e,g(b),f(g(c),a)). ** KEPT: 114 (38,7,5,5) P(a,x,f(c,f(g(b),x))). ** KEPT: 115 (38,6,62,5) P(d,f(a,g(b)),a). ** KEPT: 116 (38,6,5,5) P(x,a,f(f(x,c),g(b))). ** KEPT: 117 (38,6,3,5,28) P(g(c),a,g(b)). ** KEPT: 118 (38,6,5,5) P(c,f(g(b),x),f(a,x)). ** KEPT: 119 (38,6,5,4) P(c,f(g(b),g(a)),e). >>>> Starting back demodulation with: 109 (108) EQUAL(f(c,g(b)),a). >> back demodulating: 43 (20,6,4,5) P(a,e,f(c,g(b))). new given clause: 40 (20,6,3,5,28) P(g(a),c,b). ** KEPT: 120 (40,8,5) EQUAL(f(g(a),c),b). ---> New Demodulator: 121 (120) EQUAL(f(g(a),c),b). ** KEPT: 122 (40,7,5,62) P(f(g(a),d),a,b). ** KEPT: 123 (40,7,5,87) P(f(h,g(a)),c,d). ** KEPT: 124 (40,7,5,5) P(f(x,g(a)),c,f(x,b)). ** KEPT: 125 (40,7,5,3) P(f(g(b),g(a)),c,e). ** KEPT: 126 (40,7,21,5) P(b,g(a),f(g(a),d)). ** KEPT: 127 (40,7,5,5) P(b,x,f(g(a),f(c,x))). ** KEPT: 128 (40,7,4,5,27) P(b,g(c),g(a)). ** KEPT: 129 (40,6,5,5) P(x,b,f(f(x,g(a)),c)). ** KEPT: 130 (40,6,21,5) P(g(a),d,f(b,g(a))). ** KEPT: 131 (40,6,5,5) P(g(a),f(c,x),f(b,x)). ** KEPT: 132 (40,6,4,5) P(g(a),e,f(b,g(c))). >>>> Starting back demodulation with: 121 (120) EQUAL(f(g(a),c),b). >> back demodulating: 36 (20,7,3,5) P(e,b,f(g(a),c)). >> back demodulating: 112 (38,7,5,3) P(f(g(a),c),g(b),e). new given clause: 69 (62,8,5) EQUAL(f(d,a),c). new given clause: 77 (62,6,3,5,28) P(g(d),c,a). ** KEPT: 133 (77,8,5) EQUAL(f(g(d),c),a). ---> New Demodulator: 134 (133) EQUAL(f(g(d),c),a). ** KEPT: 135 (77,7,5,20) P(f(g(d),a),b,a). ** KEPT: 136 (77,7,5,5) P(f(x,g(d)),c,f(x,a)). ** KEPT: 137 (77,7,5,3) P(f(g(a),g(d)),c,e). ** KEPT: 138 (77,7,38,5) P(a,g(b),f(g(d),a)). ** KEPT: 139 (77,7,5,5) P(a,x,f(g(d),f(c,x))). ** KEPT: 140 (77,7,4,5,27) P(a,g(c),g(d)). ** KEPT: 141 (77,6,5,5) P(x,a,f(f(x,g(d)),c)). ** KEPT: 142 (77,6,38,5) P(g(d),a,f(a,g(b))). ** KEPT: 143 (77,6,5,20) P(g(d),f(c,b),c). ** KEPT: 144 (77,6,5,5) P(g(d),f(c,x),f(a,x)). ** KEPT: 145 (77,6,4,5) P(g(d),e,f(a,g(c))). >>>> Starting back demodulation with: 134 (133) EQUAL(f(g(d),c),a). >> back demodulating: 59 (21,7,5,3) P(f(g(d),c),g(a),e). >> back demodulating: 73 (62,7,3,5) P(e,a,f(g(d),c)). new given clause: 101 (87,6,3,5,28) P(g(h),d,b). ** KEPT: 146 (101,8,5) EQUAL(f(g(h),d),b). ---> New Demodulator: 147 (146) EQUAL(f(g(h),d),b). ** KEPT: 148 (101,7,5,21) P(f(g(h),c),g(a),b). ** KEPT: 149 (101,7,5,20) P(f(a,g(h)),d,c). ** KEPT: 150 (101,7,5,5) P(f(x,g(h)),d,f(x,b)). ** KEPT: 151 (101,7,5,3) P(f(g(b),g(h)),d,e). ** KEPT: 152 (101,7,62,5) P(b,a,f(g(h),c)). ** KEPT: 153 (101,7,5,5) P(b,x,f(g(h),f(d,x))). ** KEPT: 154 (101,7,4,5,27) P(b,g(d),g(h)). ** KEPT: 155 (101,6,5,5) P(x,b,f(f(x,g(h)),d)). ** KEPT: 156 (101,6,62,5) P(g(h),c,f(b,a)). ** KEPT: 157 (101,6,5,5) P(g(h),f(d,x),f(b,x)). ** KEPT: 158 (101,6,4,5) P(g(h),e,f(b,g(d))). >>>> Starting back demodulation with: 147 (146) EQUAL(f(g(h),d),b). >> back demodulating: 84 (22,7,5,3) P(f(g(h),d),g(b),e). >> back demodulating: 98 (87,7,3,5) P(e,b,f(g(h),d)). new given clause: 105 (24,95) P(d,g(h),k). ** KEPT: 159 (105,8,5) EQUAL(f(d,g(h)),k). ---> New Demodulator: 160 (159) EQUAL(f(d,g(h)),k). ** KEPT: 161 (105,7,101,5) P(b,g(h),f(g(h),k)). ** KEPT: 162 (105,7,5,5) P(f(x,d),g(h),f(x,k)). ** KEPT: 163 (105,7,5,3) P(f(g(k),d),g(h),e). ** KEPT: 164 (105,7,3,5) P(e,g(h),f(g(d),k)). ** KEPT: 165 (105,7,101,5) P(k,d,f(d,b)). ** KEPT: 166 (105,7,5,5) P(k,x,f(d,f(g(h),x))). ** KEPT: 167 (105,7,4,5,31,27) P(k,h,d). ** KEPT: 168 (105,6,87,5) P(h,f(b,g(h)),k). ** KEPT: 169 (105,6,21,5) P(c,f(g(a),g(h)),k). ** KEPT: 170 (105,6,101,5) P(g(h),k,f(b,g(h))). ** KEPT: 171 (105,6,5,5) P(x,k,f(f(x,d),g(h))). ** KEPT: 172 (105,6,3,5,28) P(g(d),k,g(h)). ** KEPT: 173 (105,6,101,5) P(d,b,f(k,d)). ** KEPT: 174 (105,6,5,5) P(d,f(g(h),x),f(k,x)). ** KEPT: 175 (105,6,5,4) P(d,f(g(h),g(k)),e). ** KEPT: 176 (105,6,4,5,31) P(d,e,f(k,h)). >>>> Starting back demodulation with: 160 (159) EQUAL(f(d,g(h)),k). new given clause: 167 (105,7,4,5,31,27) P(k,h,d). ** KEPT: 177 (167,8,5) EQUAL(f(k,h),d). ---> New Demodulator: 178 (177) EQUAL(f(k,h),d). ** KEPT: 179 (167,7,5,22) P(f(k,d),g(b),d). ** KEPT: 180 (167,7,5,101) P(f(g(h),k),h,b). ** KEPT: 181 (167,7,5,5) P(f(x,k),h,f(x,d)). ** KEPT: 182 (167,7,5,3) P(f(g(d),k),h,e). ** KEPT: 183 (167,7,3,5) P(e,h,f(g(k),d)). ** KEPT: 184 (167,7,5,5) P(d,x,f(k,f(h,x))). ** KEPT: 185 (167,6,5,5) P(x,d,f(f(x,k),h)). ** KEPT: 186 (167,6,3,5,28) P(g(k),d,h). ** KEPT: 187 (167,6,5,62) P(k,f(h,a),c). ** KEPT: 188 (167,6,5,22) P(k,f(h,g(b)),h). ** KEPT: 189 (167,6,5,5) P(k,f(h,x),f(d,x)). ** KEPT: 190 (167,6,5,4) P(k,f(h,g(d)),e). >>>> Starting back demodulation with: 178 (177) EQUAL(f(k,h),d). >> back demodulating: 176 (105,6,4,5,31) P(d,e,f(k,h)). new given clause: 106 (45,95) EQUAL(f(h,b),d). new given clause: 177 (167,8,5) EQUAL(f(k,h),d). new given clause: 186 (167,6,3,5,28) P(g(k),d,h). ** KEPT: 191 (186,8,5) EQUAL(f(g(k),d),h). ---> New Demodulator: 192 (191) EQUAL(f(g(k),d),h). ** KEPT: 193 (186,7,5,87) P(f(g(k),h),b,h). ** KEPT: 194 (186,7,5,21) P(f(g(k),c),g(a),h). ** KEPT: 195 (186,7,5,5) P(f(x,g(k)),d,f(x,h)). ** KEPT: 196 (186,7,5,3) P(f(g(h),g(k)),d,e). ** KEPT: 197 (186,7,62,5) P(h,a,f(g(k),c)). ** KEPT: 198 (186,7,22,5) P(h,g(b),f(g(k),h)). ** KEPT: 199 (186,7,5,5) P(h,x,f(g(k),f(d,x))). ** KEPT: 200 (186,7,4,5,27) P(h,g(d),g(k)). ** KEPT: 201 (186,6,5,5) P(x,h,f(f(x,g(k)),d)). ** KEPT: 202 (186,6,62,5) P(g(k),c,f(h,a)). ** KEPT: 203 (186,6,22,5) P(g(k),h,f(h,g(b))). ** KEPT: 204 (186,6,5,87) P(g(k),f(d,b),d). ** KEPT: 205 (186,6,5,5) P(g(k),f(d,x),f(h,x)). ** KEPT: 206 (186,6,4,5) P(g(k),e,f(h,g(d))). >>>> Starting back demodulation with: 192 (191) EQUAL(f(g(k),d),h). >> back demodulating: 163 (105,7,5,3) P(f(g(k),d),g(h),e). >> back demodulating: 183 (167,7,3,5) P(e,h,f(g(k),d)). new given clause: 56 (21,8,5) EQUAL(f(c,g(a)),d). new given clause: 65 (21,6,3,5,28) P(g(c),d,g(a)). ** KEPT: 207 (65,8,5) EQUAL(f(g(c),d),g(a)). ** KEPT: 208 (65,7,5,167) P(f(g(c),k),h,g(a)). ** KEPT: 209 (65,7,5,87) P(f(g(c),h),b,g(a)). ** KEPT: 210 (65,7,5,2) P(f(g(c),d),e,g(a)). ** KEPT: 211 (65,7,5,5) P(f(x,g(c)),d,f(x,g(a))). ** KEPT: 212 (65,7,5,4) P(f(a,g(c)),d,e). ** KEPT: 213 (65,7,105,5) P(g(a),g(h),f(g(c),k)). ** KEPT: 214 (65,7,22,5) P(g(a),g(b),f(g(c),h)). ** KEPT: 215 (65,7,5,5) P(g(a),x,f(g(c),f(d,x))). ** KEPT: 216 (65,7,4,5,27) P(g(a),g(d),g(c)). ** KEPT: 217 (65,7,2,5) P(g(a),e,f(g(c),d)). ** KEPT: 218 (65,6,1,5) P(e,f(g(c),d),g(a)). ** KEPT: 219 (65,6,5,5) P(x,g(a),f(f(x,g(c)),d)). ** KEPT: 220 (65,6,105,5) P(g(c),k,f(g(a),g(h))). ** KEPT: 221 (65,6,22,5) P(g(c),h,f(g(a),g(b))). ** KEPT: 222 (65,6,5,40) P(g(c),f(d,c),b). ** KEPT: 223 (65,6,5,5) P(g(c),f(d,x),f(g(a),x)). ** KEPT: 224 (65,6,4,5) P(g(c),e,f(g(a),g(d))). new given clause: 74 (62,7,20,5) P(c,b,f(d,c)). ** KEPT: 225 (74,8,5) EQUAL(f(d,c),f(c,b)). ** KEPT: 226 (74,7,5,101) P(f(c,g(h)),d,f(d,c)). ** KEPT: 227 (74,7,5,2) P(f(c,b),e,f(d,c)). ** KEPT: 228 (74,7,77,5) P(a,b,f(g(d),f(d,c))). ** KEPT: 229 (74,7,40,5) P(b,b,f(g(a),f(d,c))). ** KEPT: 230 (74,7,5,5) P(f(x,c),b,f(x,f(d,c))). ** KEPT: 231 (74,7,5,3) P(f(g(f(d,c)),c),b,e). ** KEPT: 232 (74,7,3,5) P(e,b,f(g(c),f(d,c))). ** KEPT: 233 (74,7,5,5) P(f(d,c),x,f(c,f(b,x))). ** KEPT: 234 (74,7,2,5) P(f(d,c),e,f(c,b)). ** KEPT: 235 (74,6,20,5) P(a,f(b,b),f(d,c)). ** KEPT: 236 (74,6,1,5) P(e,f(c,b),f(d,c)). ** KEPT: 237 (74,6,77,20) P(g(d),f(d,c),c). ** KEPT: 238 (74,6,40,5) P(g(a),f(d,c),f(b,b)). ** KEPT: 239 (74,6,5,5) P(x,f(d,c),f(f(x,c),b)). ** KEPT: 240 (74,6,1,5) P(e,f(d,c),f(c,b)). ** KEPT: 241 (74,6,5,5) P(c,f(b,x),f(f(d,c),x)). ** KEPT: 242 (74,6,5,4) P(c,f(b,g(f(d,c))),e). ** KEPT: 243 (74,6,4,5) P(c,e,f(f(d,c),g(b))). new given clause: 78 (62,6,20,5) P(d,c,f(c,b)). ** KEPT: 244 (78,7,5,62) P(f(d,d),a,f(c,b)). ** KEPT: 245 (78,7,186,5) P(h,c,f(g(k),f(c,b))). ** KEPT: 246 (78,7,101,5) P(b,c,f(g(h),f(c,b))). ** KEPT: 247 (78,7,65,5) P(g(a),c,f(g(c),f(c,b))). ** KEPT: 248 (78,7,5,5) P(f(x,d),c,f(x,f(c,b))). ** KEPT: 249 (78,7,5,3) P(f(g(f(c,b)),d),c,e). ** KEPT: 250 (78,7,3,5) P(e,c,f(g(d),f(c,b))). ** KEPT: 251 (78,7,74,5) P(f(c,b),b,f(d,f(d,c))). ** KEPT: 252 (78,7,38,62) P(f(c,b),g(b),c). ** KEPT: 253 (78,7,21,5) P(f(c,b),g(a),f(d,d)). ** KEPT: 254 (78,7,5,5) P(f(c,b),x,f(d,f(c,x))). ** KEPT: 255 (78,7,4,5,27) P(f(c,b),g(c),d). ** KEPT: 256 (78,6,167,5) P(k,f(h,c),f(c,b)). ** KEPT: 257 (78,6,87,5) P(h,f(b,c),f(c,b)). ** KEPT: 258 (78,6,186,5) P(g(k),f(c,b),f(h,c)). ** KEPT: 259 (78,6,101,5) P(g(h),f(c,b),f(b,c)). ** KEPT: 260 (78,6,65,40) P(g(c),f(c,b),b). ** KEPT: 261 (78,6,5,5) P(x,f(c,b),f(f(x,d),c)). ** KEPT: 262 (78,6,74,5) P(d,f(d,c),f(f(c,b),b)). ** KEPT: 263 (78,6,38,5) P(d,a,f(f(c,b),g(b))). ** KEPT: 264 (78,6,21,5) P(d,d,f(f(c,b),g(a))). ** KEPT: 265 (78,6,5,5) P(d,f(c,x),f(f(c,b),x)). ** KEPT: 266 (78,6,5,4) P(d,f(c,g(f(c,b))),e). ** KEPT: 267 (78,6,4,5) P(d,e,f(f(c,b),g(c))). new given clause: 81 (22,8,5) EQUAL(f(d,g(b)),h). new given clause: 90 (22,6,3,5,28) P(g(d),h,g(b)). ** KEPT: 268 (90,8,5) EQUAL(f(g(d),h),g(b)). ** KEPT: 269 (90,7,5,186) P(f(g(d),g(k)),d,g(b)). ** KEPT: 270 (90,7,5,2) P(f(g(d),h),e,g(b)). ** KEPT: 271 (90,7,5,38) P(f(c,g(d)),h,a). ** KEPT: 272 (90,7,5,5) P(f(x,g(d)),h,f(x,g(b))). ** KEPT: 273 (90,7,5,4) P(f(b,g(d)),h,e). ** KEPT: 274 (90,7,5,5) P(g(b),x,f(g(d),f(h,x))). ** KEPT: 275 (90,7,4,5,27) P(g(b),g(h),g(d)). ** KEPT: 276 (90,7,2,5) P(g(b),e,f(g(d),h)). ** KEPT: 277 (90,6,1,5) P(e,f(g(d),h),g(b)). ** KEPT: 278 (90,6,5,5) P(x,g(b),f(f(x,g(d)),h)). ** KEPT: 279 (90,6,5,5) P(g(d),f(h,x),f(g(b),x)). ** KEPT: 280 (90,6,4,5) P(g(d),e,f(g(b),g(h))). new given clause: 102 (87,6,5,62) P(h,f(b,a),c). ** KEPT: 281 (102,8,5) EQUAL(f(h,f(b,a)),c). ---> New Demodulator: 282 (281) EQUAL(f(h,f(b,a)),c). ** KEPT: 283 (102,7,167,5) P(d,f(b,a),f(k,c)). ** KEPT: 284 (102,7,90,77) P(g(b),f(b,a),a). ** KEPT: 285 (102,7,5,78) P(f(d,h),f(b,a),f(c,b)). ** KEPT: 286 (102,7,5,77) P(f(g(d),h),f(b,a),a). ** KEPT: 287 (102,7,5,40) P(f(g(a),h),f(b,a),b). ** KEPT: 288 (102,7,5,5) P(f(x,h),f(b,a),f(x,c)). ** KEPT: 289 (102,7,5,3) P(f(g(c),h),f(b,a),e). ** KEPT: 290 (102,7,3,5) P(e,f(b,a),f(g(h),c)). ** KEPT: 291 (102,7,5,5) P(c,x,f(h,f(f(b,a),x))). ** KEPT: 292 (102,7,4,5,27) P(c,g(f(b,a)),h). ** KEPT: 293 (102,6,186,5) P(g(k),f(d,f(b,a)),c). ** KEPT: 294 (102,6,22,5) P(d,f(g(b),f(b,a)),c). ** KEPT: 295 (102,6,167,5) P(k,c,f(d,f(b,a))). ** KEPT: 296 (102,6,90,5) P(g(d),c,f(g(b),f(b,a))). ** KEPT: 297 (102,6,5,5) P(x,c,f(f(x,h),f(b,a))). ** KEPT: 298 (102,6,5,74) P(h,f(f(b,a),b),f(d,c)). ** KEPT: 299 (102,6,5,38) P(h,f(f(b,a),g(b)),a). ** KEPT: 300 (102,6,5,21) P(h,f(f(b,a),g(a)),d). ** KEPT: 301 (102,6,5,5) P(h,f(f(b,a),x),f(c,x)). ** KEPT: 302 (102,6,5,4) P(h,f(f(b,a),g(c)),e). ** KEPT: 303 (102,6,4,5) P(h,e,f(c,g(f(b,a)))). >>>> Starting back demodulation with: 282 (281) EQUAL(f(h,f(b,a)),c). new given clause: 108 (38,8,5) EQUAL(f(c,g(b)),a). new given clause: 117 (38,6,3,5,28) P(g(c),a,g(b)). ** KEPT: 304 (117,8,5) EQUAL(f(g(c),a),g(b)). ** KEPT: 305 (117,7,5,77) P(f(g(c),g(d)),c,g(b)). ** KEPT: 306 (117,7,5,2) P(f(g(c),a),e,g(b)). ** KEPT: 307 (117,7,5,22) P(f(d,g(c)),a,h). ** KEPT: 308 (117,7,5,5) P(f(x,g(c)),a,f(x,g(b))). ** KEPT: 309 (117,7,5,4) P(f(b,g(c)),a,e). ** KEPT: 310 (117,7,5,5) P(g(b),x,f(g(c),f(a,x))). ** KEPT: 311 (117,7,4,5,27) P(g(b),g(a),g(c)). ** KEPT: 312 (117,7,2,5) P(g(b),e,f(g(c),a)). ** KEPT: 313 (117,6,1,5) P(e,f(g(c),a),g(b)). ** KEPT: 314 (117,6,5,5) P(x,g(b),f(f(x,g(c)),a)). ** KEPT: 315 (117,6,5,5) P(g(c),f(a,x),f(g(b),x)). ** KEPT: 316 (117,6,4,5) P(g(c),e,f(g(b),g(a))). new given clause: 120 (40,8,5) EQUAL(f(g(a),c),b). new given clause: 128 (40,7,4,5,27) P(b,g(c),g(a)). ** KEPT: 317 (128,8,5) EQUAL(f(b,g(c)),g(a)). ** KEPT: 318 (128,7,5,2) P(f(b,g(c)),e,g(a)). ** KEPT: 319 (128,7,87,5) P(d,g(c),f(h,g(a))). ** KEPT: 320 (128,7,74,21) P(f(d,c),g(c),d). ** KEPT: 321 (128,7,5,5) P(f(x,b),g(c),f(x,g(a))). ** KEPT: 322 (128,7,3,5) P(e,g(c),f(g(b),g(a))). ** KEPT: 323 (128,7,5,5) P(g(a),x,f(b,f(g(c),x))). ** KEPT: 324 (128,6,101,5) P(g(h),f(d,g(c)),g(a)). ** KEPT: 325 (128,6,1,5) P(e,f(b,g(c)),g(a)). ** KEPT: 326 (128,6,87,5) P(h,g(a),f(d,g(c))). ** KEPT: 327 (128,6,74,5) P(c,g(a),f(f(d,c),g(c))). ** KEPT: 328 (128,6,5,5) P(x,g(a),f(f(x,b),g(c))). ** KEPT: 329 (128,6,1,5) P(e,g(a),f(b,g(c))). ** KEPT: 330 (128,6,5,5) P(b,f(g(c),x),f(g(a),x)). ** KEPT: 331 (128,6,5,4,31) P(b,f(g(c),a),e). new given clause: 133 (77,8,5) EQUAL(f(g(d),c),a). new given clause: 140 (77,7,4,5,27) P(a,g(c),g(d)). ** KEPT: 332 (140,8,5) EQUAL(f(a,g(c)),g(d)). ** KEPT: 333 (140,7,5,2) P(f(a,g(c)),e,g(d)). ** KEPT: 334 (140,7,117,5) P(g(b),g(c),f(g(c),g(d))). ** KEPT: 335 (140,7,5,5) P(f(x,a),g(c),f(x,g(d))). ** KEPT: 336 (140,7,3,5) P(e,g(c),f(g(a),g(d))). ** KEPT: 337 (140,7,5,5) P(g(d),x,f(a,f(g(c),x))). ** KEPT: 338 (140,6,38,5) P(c,f(g(b),g(c)),g(d)). ** KEPT: 339 (140,6,1,5) P(e,f(a,g(c)),g(d)). ** KEPT: 340 (140,6,117,5) P(g(c),g(d),f(g(b),g(c))). ** KEPT: 341 (140,6,5,5) P(x,g(d),f(f(x,a),g(c))). ** KEPT: 342 (140,6,1,5) P(e,g(d),f(a,g(c))). ** KEPT: 343 (140,6,5,90) P(a,f(g(c),h),g(b)). ** KEPT: 344 (140,6,5,5) P(a,f(g(c),x),f(g(d),x)). ** KEPT: 345 (140,6,5,4,31) P(a,f(g(c),d),e). new given clause: 146 (101,8,5) EQUAL(f(g(h),d),b). new given clause: 154 (101,7,4,5,27) P(b,g(d),g(h)). ** KEPT: 346 (154,8,5) EQUAL(f(b,g(d)),g(h)). ** KEPT: 347 (154,7,5,140) P(f(b,a),g(c),g(h)). ** KEPT: 348 (154,7,5,2) P(f(b,g(d)),e,g(h)). ** KEPT: 349 (154,7,74,5) P(f(d,c),g(d),f(c,g(h))). ** KEPT: 350 (154,7,20,5) P(c,g(d),f(a,g(h))). ** KEPT: 351 (154,7,5,105) P(f(d,b),g(d),k). ** KEPT: 352 (154,7,5,5) P(f(x,b),g(d),f(x,g(h))). ** KEPT: 353 (154,7,3,5) P(e,g(d),f(g(b),g(h))). ** KEPT: 354 (154,7,5,5) P(g(h),x,f(b,f(g(d),x))). ** KEPT: 355 (154,6,40,5) P(g(a),f(c,g(d)),g(h)). ** KEPT: 356 (154,6,1,5) P(e,f(b,g(d)),g(h)). ** KEPT: 357 (154,6,74,5) P(c,g(h),f(f(d,c),g(d))). ** KEPT: 358 (154,6,20,5) P(a,g(h),f(c,g(d))). ** KEPT: 359 (154,6,5,5) P(x,g(h),f(f(x,b),g(d))). ** KEPT: 360 (154,6,1,5) P(e,g(h),f(b,g(d))). ** KEPT: 361 (154,6,5,5) P(b,f(g(d),x),f(g(h),x)). ** KEPT: 362 (154,6,5,4,31) P(b,f(g(d),h),e). new given clause: 159 (105,8,5) EQUAL(f(d,g(h)),k). new given clause: 165 (105,7,101,5) P(k,d,f(d,b)). ** KEPT: 363 (165,8,5) EQUAL(f(k,d),f(d,b)). ** KEPT: 364 (165,7,5,167) P(f(k,k),h,f(d,b)). ** KEPT: 365 (165,7,5,21) P(f(k,c),g(a),f(d,b)). ** KEPT: 366 (165,7,5,2) P(f(k,d),e,f(d,b)). ** KEPT: 367 (165,7,5,5) P(f(x,k),d,f(x,f(d,b))). ** KEPT: 368 (165,7,5,3) P(f(g(f(d,b)),k),d,e). ** KEPT: 369 (165,7,3,5) P(e,d,f(g(k),f(d,b))). ** KEPT: 370 (165,7,105,5) P(f(d,b),g(h),f(k,k)). ** KEPT: 371 (165,7,78,5) P(f(d,b),c,f(k,f(c,b))). ** KEPT: 372 (165,7,62,5) P(f(d,b),a,f(k,c)). ** KEPT: 373 (165,7,22,167) P(f(d,b),g(b),d). ** KEPT: 374 (165,7,5,5) P(f(d,b),x,f(k,f(d,x))). ** KEPT: 375 (165,7,2,5) P(f(d,b),e,f(k,d)). ** KEPT: 376 (165,6,1,5) P(e,f(k,d),f(d,b)). ** KEPT: 377 (165,6,5,5) P(x,f(d,b),f(f(x,k),d)). ** KEPT: 378 (165,6,1,5) P(e,f(d,b),f(k,d)). ** KEPT: 379 (165,6,105,5) P(k,k,f(f(d,b),g(h))). ** KEPT: 380 (165,6,78,5) P(k,f(c,b),f(f(d,b),c)). ** KEPT: 381 (165,6,62,5) P(k,c,f(f(d,b),a)). ** KEPT: 382 (165,6,22,5) P(k,h,f(f(d,b),g(b))). ** KEPT: 383 (165,6,5,5) P(k,f(d,x),f(f(d,b),x)). ** KEPT: 384 (165,6,5,4) P(k,f(d,g(f(d,b))),e). ** KEPT: 385 (165,6,4,5) P(k,e,f(f(d,b),g(d))). new given clause: 172 (105,6,3,5,28) P(g(d),k,g(h)). ** KEPT: 386 (172,8,5) EQUAL(f(g(d),k),g(h)). ** KEPT: 387 (172,7,5,2) P(f(g(d),k),e,g(h)). ** KEPT: 388 (172,7,5,5) P(f(x,g(d)),k,f(x,g(h))). ** KEPT: 389 (172,7,5,4) P(f(h,g(d)),k,e). ** KEPT: 390 (172,7,165,5) P(g(h),d,f(g(d),f(d,b))). ** KEPT: 391 (172,7,5,5) P(g(h),x,f(g(d),f(k,x))). ** KEPT: 392 (172,7,4,5,27) P(g(h),g(k),g(d)). ** KEPT: 393 (172,7,2,5) P(g(h),e,f(g(d),k)). ** KEPT: 394 (172,6,140,5) P(a,f(g(c),k),g(h)). ** KEPT: 395 (172,6,1,5) P(e,f(g(d),k),g(h)). ** KEPT: 396 (172,6,5,5) P(x,g(h),f(f(x,g(d)),k)). ** KEPT: 397 (172,6,165,101) P(g(d),f(d,b),b). ** KEPT: 398 (172,6,5,101) P(g(d),f(k,d),b). ** KEPT: 399 (172,6,5,5) P(g(d),f(k,x),f(g(h),x)). ** KEPT: 400 (172,6,4,5) P(g(d),e,f(g(h),g(k))). new given clause: 173 (105,6,101,5) P(d,b,f(k,d)). ** KEPT: 401 (173,7,5,40) P(f(d,g(a)),c,f(k,d)). ** KEPT: 402 (173,7,186,5) P(h,b,f(g(k),f(k,d))). ** KEPT: 403 (173,7,165,5) P(f(d,b),b,f(k,f(k,d))). ** KEPT: 404 (173,7,101,5) P(b,b,f(g(h),f(k,d))). ** KEPT: 405 (173,7,65,5) P(g(a),b,f(g(c),f(k,d))). ** KEPT: 406 (173,7,5,5) P(f(x,d),b,f(x,f(k,d))). ** KEPT: 407 (173,7,5,3) P(f(g(f(k,d)),d),b,e). ** KEPT: 408 (173,7,3,5) P(e,b,f(g(d),f(k,d))). ** KEPT: 409 (173,7,154,105) P(f(k,d),g(d),k). ** KEPT: 410 (173,7,128,5) P(f(k,d),g(c),f(d,g(a))). ** KEPT: 411 (173,7,5,5) P(f(k,d),x,f(d,f(b,x))). ** KEPT: 412 (173,6,87,5) P(h,f(b,b),f(k,d)). ** KEPT: 413 (173,6,21,5) P(c,f(g(a),b),f(k,d)). ** KEPT: 414 (173,6,186,87) P(g(k),f(k,d),d). ** KEPT: 415 (173,6,165,5) P(k,f(k,d),f(f(d,b),b)). ** KEPT: 416 (173,6,101,5) P(g(h),f(k,d),f(b,b)). ** KEPT: 417 (173,6,65,5) P(g(c),f(k,d),f(g(a),b)). ** KEPT: 418 (173,6,5,5) P(x,f(k,d),f(f(x,d),b)). ** KEPT: 419 (173,6,154,5) P(d,g(h),f(f(k,d),g(d))). ** KEPT: 420 (173,6,128,5) P(d,g(a),f(f(k,d),g(c))). ** KEPT: 421 (173,6,5,5) P(d,f(b,x),f(f(k,d),x)). ** KEPT: 422 (173,6,5,4) P(d,f(b,g(f(k,d))),e). ** KEPT: 423 (173,6,4,5) P(d,e,f(f(k,d),g(b))). new given clause: 187 (167,6,5,62) P(k,f(h,a),c). ** KEPT: 424 (187,8,5) EQUAL(f(k,f(h,a)),c). ---> New Demodulator: 425 (424) EQUAL(f(k,f(h,a)),c). ** KEPT: 426 (187,7,172,77) P(g(h),f(h,a),a). ** KEPT: 427 (187,7,5,78) P(f(d,k),f(h,a),f(c,b)). ** KEPT: 428 (187,7,5,77) P(f(g(d),k),f(h,a),a). ** KEPT: 429 (187,7,5,40) P(f(g(a),k),f(h,a),b). ** KEPT: 430 (187,7,5,5) P(f(x,k),f(h,a),f(x,c)). ** KEPT: 431 (187,7,5,3) P(f(g(c),k),f(h,a),e). ** KEPT: 432 (187,7,3,5) P(e,f(h,a),f(g(k),c)). ** KEPT: 433 (187,7,5,5) P(c,x,f(k,f(f(h,a),x))). ** KEPT: 434 (187,7,4,5,27) P(c,g(f(h,a)),k). ** KEPT: 435 (187,6,105,5) P(d,f(g(h),f(h,a)),c). ** KEPT: 436 (187,6,172,5) P(g(d),c,f(g(h),f(h,a))). ** KEPT: 437 (187,6,5,5) P(x,c,f(f(x,k),f(h,a))). ** KEPT: 438 (187,6,5,74) P(k,f(f(h,a),b),f(d,c)). ** KEPT: 439 (187,6,5,38) P(k,f(f(h,a),g(b)),a). ** KEPT: 440 (187,6,5,21) P(k,f(f(h,a),g(a)),d). ** KEPT: 441 (187,6,5,5) P(k,f(f(h,a),x),f(c,x)). ** KEPT: 442 (187,6,5,4) P(k,f(f(h,a),g(c)),e). ** KEPT: 443 (187,6,4,5) P(k,e,f(c,g(f(h,a)))). >>>> Starting back demodulation with: 425 (424) EQUAL(f(k,f(h,a)),c). new given clause: 191 (186,8,5) EQUAL(f(g(k),d),h). new given clause: 200 (186,7,4,5,27) P(h,g(d),g(k)). ** KEPT: 444 (200,8,5) EQUAL(f(h,g(d)),g(k)). ** KEPT: 445 (200,7,5,140) P(f(h,a),g(c),g(k)). ** KEPT: 446 (200,7,5,2) P(f(h,g(d)),e,g(k)). ** KEPT: 447 (200,7,90,5) P(g(b),g(d),f(g(d),g(k))). ** KEPT: 448 (200,7,5,5) P(f(x,h),g(d),f(x,g(k))). ** KEPT: 449 (200,7,3,5) P(e,g(d),f(g(h),g(k))). ** KEPT: 450 (200,7,5,5) P(g(k),x,f(h,f(g(d),x))). ** KEPT: 451 (200,6,22,5) P(d,f(g(b),g(d)),g(k)). ** KEPT: 452 (200,6,1,5) P(e,f(h,g(d)),g(k)). ** KEPT: 453 (200,6,90,5) P(g(d),g(k),f(g(b),g(d))). ** KEPT: 454 (200,6,5,5) P(x,g(k),f(f(x,h),g(d))). ** KEPT: 455 (200,6,1,5) P(e,g(k),f(h,g(d))). ** KEPT: 456 (200,6,5,5) P(h,f(g(d),x),f(g(k),x)). ** KEPT: 457 (200,6,5,4,31) P(h,f(g(d),k),e). new given clause: 35 (20,7,5,3) P(f(g(c),a),b,e). ** KEPT: 458 (35,8,5) EQUAL(f(f(g(c),a),b),e). ---> New Demodulator: 459 (458) EQUAL(f(f(g(c),a),b),e). ** KEPT: 460 (35,7,5,101) P(f(f(g(c),a),g(h)),d,e). ** KEPT: 461 (35,7,5,40) P(f(f(g(c),a),g(a)),c,e). ** KEPT: 462 (35,7,5,5,27) P(f(x,f(g(c),a)),b,x). ** KEPT: 463 (35,7,3,5,27) P(e,b,g(f(g(c),a))). ** KEPT: 464 (35,7,154,5) P(e,g(d),f(f(g(c),a),g(h))). ** KEPT: 465 (35,7,128,5) P(e,g(c),f(f(g(c),a),g(a))). ** KEPT: 466 (35,7,5,5) P(e,x,f(f(g(c),a),f(b,x))). ** KEPT: 467 (35,6,5,5) P(x,e,f(f(x,f(g(c),a)),b)). ** KEPT: 468 (35,6,3,5,28) P(g(f(g(c),a)),e,b). ** KEPT: 469 (35,6,154,5,28) P(f(g(c),a),g(h),g(d)). ** KEPT: 470 (35,6,128,5,28) P(f(g(c),a),g(a),g(c)). ** KEPT: 471 (35,6,5,5,28) P(f(g(c),a),f(b,x),x). >>>> Starting back demodulation with: 459 (458) EQUAL(f(f(g(c),a),b),e). new given clause: 42 (20,6,5,4) P(a,f(b,g(c)),e). ** KEPT: 472 (42,8,5) EQUAL(f(a,f(b,g(c))),e). ---> New Demodulator: 473 (472) EQUAL(f(a,f(b,g(c))),e). ** KEPT: 474 (42,7,117,5,27) P(g(b),f(b,g(c)),g(c)). ** KEPT: 475 (42,7,62,5,27) P(c,f(b,g(c)),d). ** KEPT: 476 (42,7,5,5,27) P(f(x,a),f(b,g(c)),x). ** KEPT: 477 (42,7,5,5) P(e,x,f(a,f(f(b,g(c)),x))). ** KEPT: 478 (42,7,4,5,27) P(e,g(f(b,g(c))),a). ** KEPT: 479 (42,6,77,5) P(g(d),f(c,f(b,g(c))),e). ** KEPT: 480 (42,6,38,5) P(c,f(g(b),f(b,g(c))),e). ** KEPT: 481 (42,6,117,5) P(g(c),e,f(g(b),f(b,g(c)))). ** KEPT: 482 (42,6,62,5) P(d,e,f(c,f(b,g(c)))). ** KEPT: 483 (42,6,5,5) P(x,e,f(f(x,a),f(b,g(c)))). ** KEPT: 484 (42,6,5,5,28) P(a,f(f(b,g(c)),x),x). ** KEPT: 485 (42,6,4,5,28) P(a,e,g(f(b,g(c)))). >>>> Starting back demodulation with: 473 (472) EQUAL(f(a,f(b,g(c))),e). new given clause: 63 (21,6,20,5) P(a,f(b,g(a)),d). ** KEPT: 486 (63,8,5) EQUAL(f(a,f(b,g(a))),d). ---> New Demodulator: 487 (486) EQUAL(f(a,f(b,g(a))),d). ** KEPT: 488 (63,7,117,65) P(g(b),f(b,g(a)),g(a)). ** KEPT: 489 (63,7,117,5) P(g(b),f(b,g(a)),f(g(c),d)). ** KEPT: 490 (63,7,62,5) P(c,f(b,g(a)),f(d,d)). ** KEPT: 491 (63,7,5,186) P(f(g(k),a),f(b,g(a)),h). ** KEPT: 492 (63,7,5,165) P(f(k,a),f(b,g(a)),f(d,b)). ** KEPT: 493 (63,7,5,101) P(f(g(h),a),f(b,g(a)),b). ** KEPT: 494 (63,7,5,5) P(f(x,a),f(b,g(a)),f(x,d)). ** KEPT: 495 (63,7,5,3) P(f(g(d),a),f(b,g(a)),e). ** KEPT: 496 (63,7,3,5) P(e,f(b,g(a)),f(g(a),d)). ** KEPT: 497 (63,7,5,5) P(d,x,f(a,f(f(b,g(a)),x))). ** KEPT: 498 (63,7,4,5,27) P(d,g(f(b,g(a))),a). ** KEPT: 499 (63,6,77,5) P(g(d),f(c,f(b,g(a))),d). ** KEPT: 500 (63,6,38,5) P(c,f(g(b),f(b,g(a))),d). ** KEPT: 501 (63,6,117,5) P(g(c),d,f(g(b),f(b,g(a)))). ** KEPT: 502 (63,6,62,5) P(d,d,f(c,f(b,g(a)))). ** KEPT: 503 (63,6,5,5) P(x,d,f(f(x,a),f(b,g(a)))). ** KEPT: 504 (63,6,5,173) P(a,f(f(b,g(a)),b),f(k,d)). ** KEPT: 505 (63,6,5,105) P(a,f(f(b,g(a)),g(h)),k). ** KEPT: 506 (63,6,5,78) P(a,f(f(b,g(a)),c),f(c,b)). ** KEPT: 507 (63,6,5,62) P(a,f(f(b,g(a)),a),c). ** KEPT: 508 (63,6,5,22) P(a,f(f(b,g(a)),g(b)),h). ** KEPT: 509 (63,6,5,5) P(a,f(f(b,g(a)),x),f(d,x)). ** KEPT: 510 (63,6,5,4) P(a,f(f(b,g(a)),g(d)),e). ** KEPT: 511 (63,6,4,5) P(a,e,f(d,g(f(b,g(a))))). >>>> Starting back demodulation with: 487 (486) EQUAL(f(a,f(b,g(a))),d). new given clause: 72 (62,7,5,3) P(f(g(c),d),a,e). ** KEPT: 512 (72,8,5) EQUAL(f(f(g(c),d),a),e). ---> New Demodulator: 513 (512) EQUAL(f(f(g(c),d),a),e). ** KEPT: 514 (72,7,5,77) P(f(f(g(c),d),g(d)),c,e). ** KEPT: 515 (72,7,5,38) P(f(f(g(c),d),c),g(b),e). ** KEPT: 516 (72,7,5,5,27) P(f(x,f(g(c),d)),a,x). ** KEPT: 517 (72,7,3,5,27) P(e,a,g(f(g(c),d))). ** KEPT: 518 (72,7,140,5) P(e,g(c),f(f(g(c),d),g(d))). ** KEPT: 519 (72,7,63,5) P(e,f(b,g(a)),f(f(g(c),d),d)). ** KEPT: 520 (72,7,42,5,27) P(e,f(b,g(c)),f(g(c),d)). ** KEPT: 521 (72,7,20,5) P(e,b,f(f(g(c),d),c)). ** KEPT: 522 (72,7,5,5) P(e,x,f(f(g(c),d),f(a,x))). ** KEPT: 523 (72,6,5,5) P(x,e,f(f(x,f(g(c),d)),a)). ** KEPT: 524 (72,6,3,5,28) P(g(f(g(c),d)),e,a). ** KEPT: 525 (72,6,140,5,28) P(f(g(c),d),g(d),g(c)). ** KEPT: 526 (72,6,63,5,28) P(f(g(c),d),d,f(b,g(a))). ** KEPT: 527 (72,6,42,5,28) P(f(g(c),d),e,f(b,g(c))). ** KEPT: 528 (72,6,20,5,28) P(f(g(c),d),c,b). ** KEPT: 529 (72,6,5,5,28) P(f(g(c),d),f(a,x),x). >>>> Starting back demodulation with: 513 (512) EQUAL(f(f(g(c),d),a),e). new given clause: 80 (62,6,5,4) P(d,f(a,g(c)),e). ** KEPT: 530 (80,8,5) EQUAL(f(d,f(a,g(c))),e). ---> New Demodulator: 531 (530) EQUAL(f(d,f(a,g(c))),e). ** KEPT: 532 (80,7,186,5,27) P(h,f(a,g(c)),g(k)). ** KEPT: 533 (80,7,165,5,27) P(f(d,b),f(a,g(c)),k). ** KEPT: 534 (80,7,101,5,27) P(b,f(a,g(c)),g(h)). ** KEPT: 535 (80,7,65,5,27) P(g(a),f(a,g(c)),g(c)). ** KEPT: 536 (80,7,5,5,27) P(f(x,d),f(a,g(c)),x). ** KEPT: 537 (80,7,5,5) P(e,x,f(d,f(f(a,g(c)),x))). ** KEPT: 538 (80,7,4,5,27) P(e,g(f(a,g(c))),d). ** KEPT: 539 (80,6,167,5) P(k,f(h,f(a,g(c))),e). ** KEPT: 540 (80,6,87,5) P(h,f(b,f(a,g(c))),e). ** KEPT: 541 (80,6,63,5) P(a,f(f(b,g(a)),f(a,g(c))),e). ** KEPT: 542 (80,6,21,5) P(c,f(g(a),f(a,g(c))),e). ** KEPT: 543 (80,6,186,5) P(g(k),e,f(h,f(a,g(c)))). ** KEPT: 544 (80,6,165,5) P(k,e,f(f(d,b),f(a,g(c)))). ** KEPT: 545 (80,6,101,5) P(g(h),e,f(b,f(a,g(c)))). ** KEPT: 546 (80,6,65,5) P(g(c),e,f(g(a),f(a,g(c)))). ** KEPT: 547 (80,6,5,5) P(x,e,f(f(x,d),f(a,g(c)))). ** KEPT: 548 (80,6,5,5,28) P(d,f(f(a,g(c)),x),x). ** KEPT: 549 (80,6,4,5,28) P(d,e,g(f(a,g(c)))). >>>> Starting back demodulation with: 531 (530) EQUAL(f(d,f(a,g(c))),e). new given clause: 97 (87,7,5,3) P(f(g(d),h),b,e). ** KEPT: 550 (97,8,5) EQUAL(f(f(g(d),h),b),e). ---> New Demodulator: 551 (550) EQUAL(f(f(g(d),h),b),e). ** KEPT: 552 (97,7,5,101) P(f(f(g(d),h),g(h)),d,e). ** KEPT: 553 (97,7,5,40) P(f(f(g(d),h),g(a)),c,e). ** KEPT: 554 (97,7,5,5,27) P(f(x,f(g(d),h)),b,x). ** KEPT: 555 (97,7,3,5,27) P(e,b,g(f(g(d),h))). ** KEPT: 556 (97,7,154,5) P(e,g(d),f(f(g(d),h),g(h))). ** KEPT: 557 (97,7,128,5) P(e,g(c),f(f(g(d),h),g(a))). ** KEPT: 558 (97,7,5,5) P(e,x,f(f(g(d),h),f(b,x))). ** KEPT: 559 (97,6,5,5) P(x,e,f(f(x,f(g(d),h)),b)). ** KEPT: 560 (97,6,3,5,28) P(g(f(g(d),h)),e,b). ** KEPT: 561 (97,6,154,5,28) P(f(g(d),h),g(h),g(d)). ** KEPT: 562 (97,6,128,5,28) P(f(g(d),h),g(a),g(c)). ** KEPT: 563 (97,6,5,5,28) P(f(g(d),h),f(b,x),x). >>>> Starting back demodulation with: 551 (550) EQUAL(f(f(g(d),h),b),e). 563 back subsumes: 286 (102,7,5,77) P(f(g(d),h),f(b,a),a). new given clause: 104 (87,6,5,4) P(h,f(b,g(d)),e). ** KEPT: 564 (104,8,5) EQUAL(f(h,f(b,g(d))),e). ---> New Demodulator: 565 (564) EQUAL(f(h,f(b,g(d))),e). ** KEPT: 566 (104,7,167,5,27) P(d,f(b,g(d)),k). ** KEPT: 567 (104,7,90,5,27) P(g(b),f(b,g(d)),g(d)). ** KEPT: 568 (104,7,5,5,27) P(f(x,h),f(b,g(d)),x). ** KEPT: 569 (104,7,5,5) P(e,x,f(h,f(f(b,g(d)),x))). ** KEPT: 570 (104,7,4,5,27) P(e,g(f(b,g(d))),h). ** KEPT: 571 (104,6,186,5) P(g(k),f(d,f(b,g(d))),e). ** KEPT: 572 (104,6,22,5) P(d,f(g(b),f(b,g(d))),e). ** KEPT: 573 (104,6,167,5) P(k,e,f(d,f(b,g(d)))). ** KEPT: 574 (104,6,90,5) P(g(d),e,f(g(b),f(b,g(d)))). ** KEPT: 575 (104,6,5,5) P(x,e,f(f(x,h),f(b,g(d)))). ** KEPT: 576 (104,6,5,5,28) P(h,f(f(b,g(d)),x),x). ** KEPT: 577 (104,6,4,5,28) P(h,e,g(f(b,g(d)))). >>>> Starting back demodulation with: 565 (564) EQUAL(f(h,f(b,g(d))),e). new given clause: 110 (38,7,5,62) P(f(d,c),g(b),c). ** KEPT: 578 (110,8,5) EQUAL(f(f(d,c),g(b)),c). ---> New Demodulator: 579 (578) EQUAL(f(f(d,c),g(b)),c). ** KEPT: 580 (110,7,5,117) P(f(f(d,c),g(c)),a,c). ** KEPT: 581 (110,7,5,90) P(f(f(d,c),g(d)),h,c). ** KEPT: 582 (110,7,5,78) P(f(d,f(d,c)),g(b),f(c,b)). ** KEPT: 583 (110,7,5,77) P(f(g(d),f(d,c)),g(b),a). ** KEPT: 584 (110,7,5,40) P(f(g(a),f(d,c)),g(b),b). ** KEPT: 585 (110,7,5,5) P(f(x,f(d,c)),g(b),f(x,c)). ** KEPT: 586 (110,7,5,3) P(f(g(c),f(d,c)),g(b),e). ** KEPT: 587 (110,7,3,5) P(e,g(b),f(g(f(d,c)),c)). ** KEPT: 588 (110,7,5,5) P(c,x,f(f(d,c),f(g(b),x))). ** KEPT: 589 (110,6,5,5) P(x,c,f(f(x,f(d,c)),g(b))). ** KEPT: 590 (110,6,3,5,28) P(g(f(d,c)),c,g(b)). ** KEPT: 591 (110,6,5,38) P(f(d,c),f(g(b),g(b)),a). ** KEPT: 592 (110,6,5,21) P(f(d,c),f(g(b),g(a)),d). ** KEPT: 593 (110,6,5,5) P(f(d,c),f(g(b),x),f(c,x)). ** KEPT: 594 (110,6,5,4) P(f(d,c),f(g(b),g(c)),e). >>>> Starting back demodulation with: 579 (578) EQUAL(f(f(d,c),g(b)),c). >> back demodulating: 243 (74,6,4,5) P(c,e,f(f(d,c),g(b))). new given clause: 115 (38,6,62,5) P(d,f(a,g(b)),a). ** KEPT: 595 (115,8,5) EQUAL(f(d,f(a,g(b))),a). ---> New Demodulator: 596 (595) EQUAL(f(d,f(a,g(b))),a). ** KEPT: 597 (115,7,186,5) P(h,f(a,g(b)),f(g(k),a)). ** KEPT: 598 (115,7,165,5) P(f(d,b),f(a,g(b)),f(k,a)). ** KEPT: 599 (115,7,101,5) P(b,f(a,g(b)),f(g(h),a)). ** KEPT: 600 (115,7,65,117) P(g(a),f(a,g(b)),g(b)). ** KEPT: 601 (115,7,65,5) P(g(a),f(a,g(b)),f(g(c),a)). ** KEPT: 602 (115,7,5,72) P(f(f(g(c),d),d),f(a,g(b)),e). ** KEPT: 603 (115,7,5,62) P(f(d,d),f(a,g(b)),c). ** KEPT: 604 (115,7,5,5) P(f(x,d),f(a,g(b)),f(x,a)). ** KEPT: 605 (115,7,5,3) P(f(g(a),d),f(a,g(b)),e). ** KEPT: 606 (115,7,3,5) P(e,f(a,g(b)),f(g(d),a)). ** KEPT: 607 (115,7,5,5) P(a,x,f(d,f(f(a,g(b)),x))). ** KEPT: 608 (115,7,4,5,27) P(a,g(f(a,g(b))),d). ** KEPT: 609 (115,6,167,5) P(k,f(h,f(a,g(b))),a). ** KEPT: 610 (115,6,87,5) P(h,f(b,f(a,g(b))),a). ** KEPT: 611 (115,6,63,5) P(a,f(f(b,g(a)),f(a,g(b))),a). ** KEPT: 612 (115,6,21,5) P(c,f(g(a),f(a,g(b))),a). ** KEPT: 613 (115,6,186,5) P(g(k),a,f(h,f(a,g(b)))). ** KEPT: 614 (115,6,165,5) P(k,a,f(f(d,b),f(a,g(b)))). ** KEPT: 615 (115,6,101,5) P(g(h),a,f(b,f(a,g(b)))). ** KEPT: 616 (115,6,65,5) P(g(c),a,f(g(a),f(a,g(b)))). ** KEPT: 617 (115,6,5,5) P(x,a,f(f(x,d),f(a,g(b)))). ** KEPT: 618 (115,6,5,140) P(d,f(f(a,g(b)),g(c)),g(d)). ** KEPT: 619 (115,6,5,63) P(d,f(f(a,g(b)),f(b,g(a))),d). ** KEPT: 620 (115,6,5,42) P(d,f(f(a,g(b)),f(b,g(c))),e). ** KEPT: 621 (115,6,5,20) P(d,f(f(a,g(b)),b),c). ** KEPT: 622 (115,6,5,5) P(d,f(f(a,g(b)),x),f(a,x)). ** KEPT: 623 (115,6,5,4) P(d,f(f(a,g(b)),g(a)),e). ** KEPT: 624 (115,6,4,5) P(d,e,f(a,g(f(a,g(b))))). >>>> Starting back demodulation with: 596 (595) EQUAL(f(d,f(a,g(b))),a). new given clause: 122 (40,7,5,62) P(f(g(a),d),a,b). ** KEPT: 625 (122,8,5) EQUAL(f(f(g(a),d),a),b). ---> New Demodulator: 626 (625) EQUAL(f(f(g(a),d),a),b). ** KEPT: 627 (122,7,5,115) P(f(f(g(a),d),d),f(a,g(b)),b). ** KEPT: 628 (122,7,5,77) P(f(f(g(a),d),g(d)),c,b). ** KEPT: 629 (122,7,5,38) P(f(f(g(a),d),c),g(b),b). ** KEPT: 630 (122,7,5,173) P(f(d,f(g(a),d)),a,f(k,d)). ** KEPT: 631 (122,7,5,97) P(f(f(g(d),h),f(g(a),d)),a,e). ** KEPT: 632 (122,7,5,87) P(f(h,f(g(a),d)),a,d). ** KEPT: 633 (122,7,5,74) P(f(c,f(g(a),d)),a,f(d,c)). ** KEPT: 634 (122,7,5,35) P(f(f(g(c),a),f(g(a),d)),a,e). ** KEPT: 635 (122,7,5,20) P(f(a,f(g(a),d)),a,c). ** KEPT: 636 (122,7,5,5) P(f(x,f(g(a),d)),a,f(x,b)). ** KEPT: 637 (122,7,5,3) P(f(g(b),f(g(a),d)),a,e). ** KEPT: 638 (122,7,3,5) P(e,a,f(g(f(g(a),d)),b)). ** KEPT: 639 (122,7,140,5) P(b,g(c),f(f(g(a),d),g(d))). ** KEPT: 640 (122,7,63,5) P(b,f(b,g(a)),f(f(g(a),d),d)). ** KEPT: 641 (122,7,42,5,27) P(b,f(b,g(c)),f(g(a),d)). ** KEPT: 642 (122,7,20,5) P(b,b,f(f(g(a),d),c)). ** KEPT: 643 (122,7,5,5) P(b,x,f(f(g(a),d),f(a,x))). ** KEPT: 644 (122,6,5,5) P(x,b,f(f(x,f(g(a),d)),a)). ** KEPT: 645 (122,6,3,5,28) P(g(f(g(a),d)),b,a). ** KEPT: 646 (122,6,140,128) P(f(g(a),d),g(d),g(a)). ** KEPT: 647 (122,6,140,5) P(f(g(a),d),g(d),f(b,g(c))). ** KEPT: 648 (122,6,63,5) P(f(g(a),d),d,f(b,f(b,g(a)))). ** KEPT: 649 (122,6,42,5) P(f(g(a),d),e,f(b,f(b,g(c)))). ** KEPT: 650 (122,6,20,5) P(f(g(a),d),c,f(b,b)). ** KEPT: 651 (122,6,5,154) P(f(g(a),d),f(a,g(d)),g(h)). ** KEPT: 652 (122,6,5,5) P(f(g(a),d),f(a,x),f(b,x)). ** KEPT: 653 (122,6,4,5) P(f(g(a),d),e,f(b,g(a))). >>>> Starting back demodulation with: 626 (625) EQUAL(f(f(g(a),d),a),b). new given clause: 123 (40,7,5,87) P(f(h,g(a)),c,d). ** KEPT: 654 (123,8,5) EQUAL(f(f(h,g(a)),c),d). ---> New Demodulator: 655 (654) EQUAL(f(f(h,g(a)),c),d). ** KEPT: 656 (123,7,5,187) P(f(f(h,g(a)),k),f(h,a),d). ** KEPT: 657 (123,7,5,110) P(f(f(h,g(a)),f(d,c)),g(b),d). ** KEPT: 658 (123,7,5,102) P(f(f(h,g(a)),h),f(b,a),d). ** KEPT: 659 (123,7,5,62) P(f(f(h,g(a)),d),a,d). ** KEPT: 660 (123,7,5,20) P(f(f(h,g(a)),a),b,d). ** KEPT: 661 (123,7,5,186) P(f(g(k),f(h,g(a))),c,h). ** KEPT: 662 (123,7,5,165) P(f(k,f(h,g(a))),c,f(d,b)). ** KEPT: 663 (123,7,5,101) P(f(g(h),f(h,g(a))),c,b). ** KEPT: 664 (123,7,5,65) P(f(g(c),f(h,g(a))),c,g(a)). ** KEPT: 665 (123,7,5,5) P(f(x,f(h,g(a))),c,f(x,d)). ** KEPT: 666 (123,7,5,3) P(f(g(d),f(h,g(a))),c,e). ** KEPT: 667 (123,7,3,5) P(e,c,f(g(f(h,g(a))),d)). ** KEPT: 668 (123,7,74,5) P(d,b,f(f(h,g(a)),f(d,c))). ** KEPT: 669 (123,7,38,5) P(d,g(b),f(f(h,g(a)),a)). ** KEPT: 670 (123,7,21,5) P(d,g(a),f(f(h,g(a)),d)). ** KEPT: 671 (123,7,5,5) P(d,x,f(f(h,g(a)),f(c,x))). ** KEPT: 672 (123,6,5,5) P(x,d,f(f(x,f(h,g(a))),c)). ** KEPT: 673 (123,6,3,5,28) P(g(f(h,g(a))),d,c). ** KEPT: 674 (123,6,74,173) P(f(h,g(a)),f(d,c),f(k,d)). ** KEPT: 675 (123,6,74,5) P(f(h,g(a)),f(d,c),f(d,b)). ** KEPT: 676 (123,6,38,22) P(f(h,g(a)),a,h). ** KEPT: 677 (123,6,21,5) P(f(h,g(a)),d,f(d,g(a))). ** KEPT: 678 (123,6,5,173) P(f(h,g(a)),f(c,b),f(k,d)). ** KEPT: 679 (123,6,5,115) P(f(h,g(a)),f(c,f(a,g(b))),a). ** KEPT: 680 (123,6,5,105) P(f(h,g(a)),f(c,g(h)),k). ** KEPT: 681 (123,6,5,80) P(f(h,g(a)),f(c,f(a,g(c))),e). ** KEPT: 682 (123,6,5,78) P(f(h,g(a)),f(c,c),f(c,b)). ** KEPT: 683 (123,6,5,62) P(f(h,g(a)),f(c,a),c). ** KEPT: 684 (123,6,5,5) P(f(h,g(a)),f(c,x),f(d,x)). ** KEPT: 685 (123,6,5,4) P(f(h,g(a)),f(c,g(d)),e). ** KEPT: 686 (123,6,4,5) P(f(h,g(a)),e,f(d,g(c))). >>>> Starting back demodulation with: 655 (654) EQUAL(f(f(h,g(a)),c),d). new given clause: 135 (77,7,5,20) P(f(g(d),a),b,a). ** KEPT: 687 (135,8,5) EQUAL(f(f(g(d),a),b),a). ---> New Demodulator: 688 (687) EQUAL(f(f(g(d),a),b),a). ** KEPT: 689 (135,7,5,122) P(f(f(g(d),a),f(g(a),d)),a,a). ** KEPT: 690 (135,7,5,101) P(f(f(g(d),a),g(h)),d,a). ** KEPT: 691 (135,7,5,40) P(f(f(g(d),a),g(a)),c,a). ** KEPT: 692 (135,7,5,122) P(f(f(g(a),d),f(g(d),a)),b,b). ** KEPT: 693 (135,7,5,117) P(f(g(c),f(g(d),a)),b,g(b)). ** KEPT: 694 (135,7,5,72) P(f(f(g(c),d),f(g(d),a)),b,e). ** KEPT: 695 (135,7,5,62) P(f(d,f(g(d),a)),b,c). ** KEPT: 696 (135,7,5,5) P(f(x,f(g(d),a)),b,f(x,a)). ** KEPT: 697 (135,7,5,3) P(f(g(a),f(g(d),a)),b,e). ** KEPT: 698 (135,7,3,5) P(e,b,f(g(f(g(d),a)),a)). ** KEPT: 699 (135,7,154,5) P(a,g(d),f(f(g(d),a),g(h))). ** KEPT: 700 (135,7,128,5) P(a,g(c),f(f(g(d),a),g(a))). ** KEPT: 701 (135,7,5,5) P(a,x,f(f(g(d),a),f(b,x))). ** KEPT: 702 (135,6,5,5) P(x,a,f(f(x,f(g(d),a)),b)). ** KEPT: 703 (135,6,3,5,28) P(g(f(g(d),a)),a,b). ** KEPT: 704 (135,6,154,5) P(f(g(d),a),g(h),f(a,g(d))). ** KEPT: 705 (135,6,128,140) P(f(g(d),a),g(a),g(d)). ** KEPT: 706 (135,6,128,5) P(f(g(d),a),g(a),f(a,g(c))). ** KEPT: 707 (135,6,5,63) P(f(g(d),a),f(b,f(b,g(a))),d). ** KEPT: 708 (135,6,5,42) P(f(g(d),a),f(b,f(b,g(c))),e). ** KEPT: 709 (135,6,5,20) P(f(g(d),a),f(b,b),c). ** KEPT: 710 (135,6,5,5) P(f(g(d),a),f(b,x),f(a,x)). ** KEPT: 711 (135,6,4,5) P(f(g(d),a),e,f(a,g(b))). >>>> Starting back demodulation with: 688 (687) EQUAL(f(f(g(d),a),b),a). new given clause: 143 (77,6,5,20) P(g(d),f(c,b),c). ** KEPT: 712 (143,8,5) EQUAL(f(g(d),f(c,b)),c). ---> New Demodulator: 713 (712) EQUAL(f(g(d),f(c,b)),c). ** KEPT: 714 (143,7,5,123) P(f(f(h,g(a)),g(d)),f(c,b),d). ** KEPT: 715 (143,7,5,77) P(f(g(d),g(d)),f(c,b),a). ** KEPT: 716 (143,7,5,40) P(f(g(a),g(d)),f(c,b),b). ** KEPT: 717 (143,7,5,5) P(f(x,g(d)),f(c,b),f(x,c)). ** KEPT: 718 (143,7,5,3) P(f(g(c),g(d)),f(c,b),e). ** KEPT: 719 (143,7,5,5) P(c,x,f(g(d),f(f(c,b),x))). ** KEPT: 720 (143,7,4,5,27) P(c,g(f(c,b)),g(d)). ** KEPT: 721 (143,6,140,5) P(a,f(g(c),f(c,b)),c). ** KEPT: 722 (143,6,5,5) P(x,c,f(f(x,g(d)),f(c,b))). ** KEPT: 723 (143,6,5,74) P(g(d),f(f(c,b),b),f(d,c)). ** KEPT: 724 (143,6,5,38) P(g(d),f(f(c,b),g(b)),a). ** KEPT: 725 (143,6,5,21) P(g(d),f(f(c,b),g(a)),d). ** KEPT: 726 (143,6,5,5) P(g(d),f(f(c,b),x),f(c,x)). ** KEPT: 727 (143,6,5,4) P(g(d),f(f(c,b),g(c)),e). ** KEPT: 728 (143,6,4,5) P(g(d),e,f(c,g(f(c,b)))). >>>> Starting back demodulation with: 713 (712) EQUAL(f(g(d),f(c,b)),c). >> back demodulating: 250 (78,7,3,5) P(e,c,f(g(d),f(c,b))). new given clause: 149 (101,7,5,20) P(f(a,g(h)),d,c). ** KEPT: 729 (149,8,5) EQUAL(f(f(a,g(h)),d),c). ---> New Demodulator: 730 (729) EQUAL(f(f(a,g(h)),d),c). ** KEPT: 731 (149,7,5,167) P(f(f(a,g(h)),k),h,c). ** KEPT: 732 (149,7,5,123) P(f(f(a,g(h)),f(h,g(a))),c,c). ** KEPT: 733 (149,7,5,87) P(f(f(a,g(h)),h),b,c). ** KEPT: 734 (149,7,5,63) P(f(f(a,g(h)),a),f(b,g(a)),c). ** KEPT: 735 (149,7,5,21) P(f(f(a,g(h)),c),g(a),c). ** KEPT: 736 (149,7,5,123) P(f(f(h,g(a)),f(a,g(h))),d,d). ** KEPT: 737 (149,7,5,78) P(f(d,f(a,g(h))),d,f(c,b)). ** KEPT: 738 (149,7,5,77) P(f(g(d),f(a,g(h))),d,a). ** KEPT: 739 (149,7,5,40) P(f(g(a),f(a,g(h))),d,b). ** KEPT: 740 (149,7,5,5) P(f(x,f(a,g(h))),d,f(x,c)). ** KEPT: 741 (149,7,5,3) P(f(g(c),f(a,g(h))),d,e). ** KEPT: 742 (149,7,3,5) P(e,d,f(g(f(a,g(h))),c)). ** KEPT: 743 (149,7,173,5) P(c,b,f(f(a,g(h)),f(k,d))). ** KEPT: 744 (149,7,115,5) P(c,f(a,g(b)),f(f(a,g(h)),a)). ** KEPT: 745 (149,7,105,5) P(c,g(h),f(f(a,g(h)),k)). ** KEPT: 746 (149,7,80,5,27) P(c,f(a,g(c)),f(a,g(h))). ** KEPT: 747 (149,7,78,5) P(c,c,f(f(a,g(h)),f(c,b))). ** KEPT: 748 (149,7,62,5) P(c,a,f(f(a,g(h)),c)). ** KEPT: 749 (149,7,22,5) P(c,g(b),f(f(a,g(h)),h)). ** KEPT: 750 (149,7,5,5) P(c,x,f(f(a,g(h)),f(d,x))). ** KEPT: 751 (149,6,5,5) P(x,c,f(f(x,f(a,g(h))),d)). ** KEPT: 752 (149,6,3,5,28) P(g(f(a,g(h))),c,d). ** KEPT: 753 (149,6,173,74) P(f(a,g(h)),f(k,d),f(d,c)). ** KEPT: 754 (149,6,173,5) P(f(a,g(h)),f(k,d),f(c,b)). ** KEPT: 755 (149,6,115,5) P(f(a,g(h)),a,f(c,f(a,g(b)))). ** KEPT: 756 (149,6,105,5) P(f(a,g(h)),k,f(c,g(h))). ** KEPT: 757 (149,6,80,5) P(f(a,g(h)),e,f(c,f(a,g(c)))). ** KEPT: 758 (149,6,78,5) P(f(a,g(h)),f(c,b),f(c,c)). ** KEPT: 759 (149,6,62,5) P(f(a,g(h)),c,f(c,a)). ** KEPT: 760 (149,6,22,38) P(f(a,g(h)),h,a). ** KEPT: 761 (149,6,5,74) P(f(a,g(h)),f(d,b),f(d,c)). ** KEPT: 762 (149,6,5,21) P(f(a,g(h)),f(d,g(a)),d). ** KEPT: 763 (149,6,5,5) P(f(a,g(h)),f(d,x),f(c,x)). ** KEPT: 764 (149,6,5,4) P(f(a,g(h)),f(d,g(c)),e). ** KEPT: 765 (149,6,4,5) P(f(a,g(h)),e,f(c,g(d))). >>>> Starting back demodulation with: 730 (729) EQUAL(f(f(a,g(h)),d),c). new given clause: 152 (101,7,62,5) P(b,a,f(g(h),c)). ** KEPT: 766 (152,8,5) EQUAL(f(g(h),c),f(b,a)). ** KEPT: 767 (152,7,5,135) P(f(b,f(g(d),a)),b,f(g(h),c)). ** KEPT: 768 (152,7,5,115) P(f(b,d),f(a,g(b)),f(g(h),c)). ** KEPT: 769 (152,7,5,77) P(f(b,g(d)),c,f(g(h),c)). ** KEPT: 770 (152,7,5,38) P(f(b,c),g(b),f(g(h),c)). ** KEPT: 771 (152,7,5,2) P(f(b,a),e,f(g(h),c)). ** KEPT: 772 (152,7,173,5) P(f(k,d),a,f(d,f(g(h),c))). ** KEPT: 773 (152,7,135,5) P(a,a,f(f(g(d),a),f(g(h),c))). ** KEPT: 774 (152,7,97,5) P(e,a,f(f(g(d),h),f(g(h),c))). ** KEPT: 775 (152,7,87,5) P(d,a,f(h,f(g(h),c))). ** KEPT: 776 (152,7,74,5) P(f(d,c),a,f(c,f(g(h),c))). ** KEPT: 777 (152,7,35,5) P(e,a,f(f(g(c),a),f(g(h),c))). ** KEPT: 778 (152,7,20,5) P(c,a,f(a,f(g(h),c))). ** KEPT: 779 (152,7,5,5) P(f(x,b),a,f(x,f(g(h),c))). ** KEPT: 780 (152,7,5,3) P(f(g(f(g(h),c)),b),a,e). ** KEPT: 781 (152,7,3,5) P(e,a,f(g(b),f(g(h),c))). ** KEPT: 782 (152,7,140,154) P(f(g(h),c),g(c),g(h)). ** KEPT: 783 (152,7,140,5) P(f(g(h),c),g(c),f(b,g(d))). ** KEPT: 784 (152,7,63,5) P(f(g(h),c),f(b,g(a)),f(b,d)). ** KEPT: 785 (152,7,42,5,27) P(f(g(h),c),f(b,g(c)),b). ** KEPT: 786 (152,7,20,5) P(f(g(h),c),b,f(b,c)). ** KEPT: 787 (152,7,5,5) P(f(g(h),c),x,f(b,f(a,x))). ** KEPT: 788 (152,7,2,5) P(f(g(h),c),e,f(b,a)). ** KEPT: 789 (152,6,122,5) P(f(g(a),d),f(a,a),f(g(h),c)). ** KEPT: 790 (152,6,40,5) P(g(a),f(c,a),f(g(h),c)). ** KEPT: 791 (152,6,173,5) P(d,f(g(h),c),f(f(k,d),a)). ** KEPT: 792 (152,6,135,5) P(f(g(d),a),f(g(h),c),f(a,a)). ** KEPT: 793 (152,6,97,5,28) P(f(g(d),h),f(g(h),c),a). ** KEPT: 794 (152,6,87,62) P(h,f(g(h),c),c). ** KEPT: 795 (152,6,74,5) P(c,f(g(h),c),f(f(d,c),a)). ** KEPT: 796 (152,6,35,5,28) P(f(g(c),a),f(g(h),c),a). ** KEPT: 797 (152,6,20,5) P(a,f(g(h),c),f(c,a)). ** KEPT: 798 (152,6,5,5) P(x,f(g(h),c),f(f(x,b),a)). ** KEPT: 799 (152,6,3,5,28) P(g(b),f(g(h),c),a). ** KEPT: 800 (152,6,1,5) P(e,f(g(h),c),f(b,a)). ** KEPT: 801 (152,6,140,5) P(b,g(d),f(f(g(h),c),g(c))). ** KEPT: 802 (152,6,63,5) P(b,d,f(f(g(h),c),f(b,g(a)))). ** KEPT: 803 (152,6,42,5) P(b,e,f(f(g(h),c),f(b,g(c)))). ** KEPT: 804 (152,6,20,5) P(b,c,f(f(g(h),c),b)). ** KEPT: 805 (152,6,5,5) P(b,f(a,x),f(f(g(h),c),x)). ** KEPT: 806 (152,6,5,4) P(b,f(a,g(f(g(h),c))),e). ** KEPT: 807 (152,6,4,5) P(b,e,f(f(g(h),c),g(a))). new given clause: 156 (101,6,62,5) P(g(h),c,f(b,a)). ** KEPT: 808 (156,7,5,187) P(f(g(h),k),f(h,a),f(b,a)). ** KEPT: 809 (156,7,5,149) P(f(g(h),f(a,g(h))),d,f(b,a)). ** KEPT: 810 (156,7,5,143) P(f(g(h),g(d)),f(c,b),f(b,a)). ** KEPT: 811 (156,7,5,110) P(f(g(h),f(d,c)),g(b),f(b,a)). ** KEPT: 812 (156,7,5,20) P(f(g(h),a),b,f(b,a)). ** KEPT: 813 (156,7,5,5) P(f(x,g(h)),c,f(x,f(b,a))). ** KEPT: 814 (156,7,5,3) P(f(g(f(b,a)),g(h)),c,e). ** KEPT: 815 (156,7,74,5) P(f(b,a),b,f(g(h),f(d,c))). ** KEPT: 816 (156,7,38,5) P(f(b,a),g(b),f(g(h),a)). ** KEPT: 817 (156,7,21,101) P(f(b,a),g(a),b). ** KEPT: 818 (156,7,5,5) P(f(b,a),x,f(g(h),f(c,x))). ** KEPT: 819 (156,6,172,5) P(g(d),f(k,c),f(b,a)). ** KEPT: 820 (156,6,5,5) P(x,f(b,a),f(f(x,g(h)),c)). ** KEPT: 821 (156,6,74,5) P(g(h),f(d,c),f(f(b,a),b)). ** KEPT: 822 (156,6,38,5) P(g(h),a,f(f(b,a),g(b))). ** KEPT: 823 (156,6,21,5) P(g(h),d,f(f(b,a),g(a))). ** KEPT: 824 (156,6,5,5) P(g(h),f(c,x),f(f(b,a),x)). ** KEPT: 825 (156,6,5,4) P(g(h),f(c,g(f(b,a))),e). ** KEPT: 826 (156,6,4,5) P(g(h),e,f(f(b,a),g(c))). new given clause: 168 (105,6,87,5) P(h,f(b,g(h)),k). ** KEPT: 827 (168,8,5) EQUAL(f(h,f(b,g(h))),k). ---> New Demodulator: 828 (827) EQUAL(f(h,f(b,g(h))),k). ** KEPT: 829 (168,7,167,5) P(d,f(b,g(h)),f(k,k)). ** KEPT: 830 (168,7,90,172) P(g(b),f(b,g(h)),g(h)). ** KEPT: 831 (168,7,90,5) P(g(b),f(b,g(h)),f(g(d),k)). ** KEPT: 832 (168,7,5,5) P(f(x,h),f(b,g(h)),f(x,k)). ** KEPT: 833 (168,7,5,3) P(f(g(k),h),f(b,g(h)),e). ** KEPT: 834 (168,7,3,5) P(e,f(b,g(h)),f(g(h),k)). ** KEPT: 835 (168,7,5,5) P(k,x,f(h,f(f(b,g(h)),x))). ** KEPT: 836 (168,7,4,5,27) P(k,g(f(b,g(h))),h). ** KEPT: 837 (168,6,186,5) P(g(k),f(d,f(b,g(h))),k). ** KEPT: 838 (168,6,22,5) P(d,f(g(b),f(b,g(h))),k). ** KEPT: 839 (168,6,167,5) P(k,k,f(d,f(b,g(h)))). ** KEPT: 840 (168,6,90,5) P(g(d),k,f(g(b),f(b,g(h)))). ** KEPT: 841 (168,6,5,5) P(x,k,f(f(x,h),f(b,g(h)))). ** KEPT: 842 (168,6,5,187) P(h,f(f(b,g(h)),f(h,a)),c). ** KEPT: 843 (168,6,5,167) P(h,f(f(b,g(h)),h),d). ** KEPT: 844 (168,6,5,165) P(h,f(f(b,g(h)),d),f(d,b)). ** KEPT: 845 (168,6,5,5) P(h,f(f(b,g(h)),x),f(k,x)). ** KEPT: 846 (168,6,5,4) P(h,f(f(b,g(h)),g(k)),e). ** KEPT: 847 (168,6,4,5) P(h,e,f(k,g(f(b,g(h))))). >>>> Starting back demodulation with: 828 (827) EQUAL(f(h,f(b,g(h))),k). new given clause: 179 (167,7,5,22) P(f(k,d),g(b),d). ** KEPT: 848 (179,8,5) EQUAL(f(f(k,d),g(b)),d). ---> New Demodulator: 849 (848) EQUAL(f(f(k,d),g(b)),d). ** KEPT: 850 (179,7,5,117) P(f(f(k,d),g(c)),a,d). ** KEPT: 851 (179,7,5,90) P(f(f(k,d),g(d)),h,d). ** KEPT: 852 (179,7,5,186) P(f(g(k),f(k,d)),g(b),h). ** KEPT: 853 (179,7,5,165) P(f(k,f(k,d)),g(b),f(d,b)). ** KEPT: 854 (179,7,5,149) P(f(f(a,g(h)),f(k,d)),g(b),c). ** KEPT: 855 (179,7,5,101) P(f(g(h),f(k,d)),g(b),b). ** KEPT: 856 (179,7,5,65) P(f(g(c),f(k,d)),g(b),g(a)). ** KEPT: 857 (179,7,5,5) P(f(x,f(k,d)),g(b),f(x,d)). ** KEPT: 858 (179,7,5,3) P(f(g(d),f(k,d)),g(b),e). ** KEPT: 859 (179,7,3,5) P(e,g(b),f(g(f(k,d)),d)). ** KEPT: 860 (179,7,5,5) P(d,x,f(f(k,d),f(g(b),x))). ** KEPT: 861 (179,6,5,5) P(x,d,f(f(x,f(k,d)),g(b))). ** KEPT: 862 (179,6,3,5,28) P(g(f(k,d)),d,g(b)). ** KEPT: 863 (179,6,5,115) P(f(k,d),f(g(b),f(a,g(b))),a). ** KEPT: 864 (179,6,5,105) P(f(k,d),f(g(b),g(h)),k). ** KEPT: 865 (179,6,5,80) P(f(k,d),f(g(b),f(a,g(c))),e). ** KEPT: 866 (179,6,5,78) P(f(k,d),f(g(b),c),f(c,b)). ** KEPT: 867 (179,6,5,62) P(f(k,d),f(g(b),a),c). ** KEPT: 868 (179,6,5,22) P(f(k,d),f(g(b),g(b)),h). ** KEPT: 869 (179,6,5,5) P(f(k,d),f(g(b),x),f(d,x)). ** KEPT: 870 (179,6,5,4) P(f(k,d),f(g(b),g(d)),e). >>>> Starting back demodulation with: 849 (848) EQUAL(f(f(k,d),g(b)),d). >> back demodulating: 423 (173,6,4,5) P(d,e,f(f(k,d),g(b))). new given clause: 180 (167,7,5,101) P(f(g(h),k),h,b). ** KEPT: 871 (180,8,5) EQUAL(f(f(g(h),k),h),b). ---> New Demodulator: 872 (871) EQUAL(f(f(g(h),k),h),b). ** KEPT: 873 (180,7,5,186) P(f(f(g(h),k),g(k)),d,b). ** KEPT: 874 (180,7,5,22) P(f(f(g(h),k),d),g(b),b). ** KEPT: 875 (180,7,5,173) P(f(d,f(g(h),k)),h,f(k,d)). ** KEPT: 876 (180,7,5,135) P(f(f(g(d),a),f(g(h),k)),h,a). ** KEPT: 877 (180,7,5,97) P(f(f(g(d),h),f(g(h),k)),h,e). ** KEPT: 878 (180,7,5,87) P(f(h,f(g(h),k)),h,d). ** KEPT: 879 (180,7,5,74) P(f(c,f(g(h),k)),h,f(d,c)). ** KEPT: 880 (180,7,5,35) P(f(f(g(c),a),f(g(h),k)),h,e). ** KEPT: 881 (180,7,5,20) P(f(a,f(g(h),k)),h,c). ** KEPT: 882 (180,7,5,5) P(f(x,f(g(h),k)),h,f(x,b)). ** KEPT: 883 (180,7,5,3) P(f(g(b),f(g(h),k)),h,e). ** KEPT: 884 (180,7,3,5) P(e,h,f(g(f(g(h),k)),b)). ** KEPT: 885 (180,7,200,5) P(b,g(d),f(f(g(h),k),g(k))). ** KEPT: 886 (180,7,168,5) P(b,f(b,g(h)),f(f(g(h),k),k)). ** KEPT: 887 (180,7,104,5,27) P(b,f(b,g(d)),f(g(h),k)). ** KEPT: 888 (180,7,102,5) P(b,f(b,a),f(f(g(h),k),c)). ** KEPT: 889 (180,7,87,5) P(b,b,f(f(g(h),k),d)). ** KEPT: 890 (180,7,5,5) P(b,x,f(f(g(h),k),f(h,x))). ** KEPT: 891 (180,6,5,5) P(x,b,f(f(x,f(g(h),k)),h)). ** KEPT: 892 (180,6,3,5,28) P(g(f(g(h),k)),b,h). ** KEPT: 893 (180,6,200,154) P(f(g(h),k),g(k),g(h)). ** KEPT: 894 (180,6,200,5) P(f(g(h),k),g(k),f(b,g(d))). ** KEPT: 895 (180,6,168,5) P(f(g(h),k),k,f(b,f(b,g(h)))). ** KEPT: 896 (180,6,104,5) P(f(g(h),k),e,f(b,f(b,g(d)))). ** KEPT: 897 (180,6,102,5) P(f(g(h),k),c,f(b,f(b,a))). ** KEPT: 898 (180,6,87,5) P(f(g(h),k),d,f(b,b)). ** KEPT: 899 (180,6,5,154) P(f(g(h),k),f(h,g(d)),g(h)). ** KEPT: 900 (180,6,5,128) P(f(g(h),k),f(h,g(c)),g(a)). ** KEPT: 901 (180,6,5,5) P(f(g(h),k),f(h,x),f(b,x)). ** KEPT: 902 (180,6,5,4) P(f(g(h),k),f(h,g(b)),e). ** KEPT: 903 (180,6,4,5) P(f(g(h),k),e,f(b,g(h))). >>>> Starting back demodulation with: 872 (871) EQUAL(f(f(g(h),k),h),b). 901 back subsumes: 808 (156,7,5,187) P(f(g(h),k),f(h,a),f(b,a)). new given clause: 182 (167,7,5,3) P(f(g(d),k),h,e). ** KEPT: 904 (182,8,5) EQUAL(f(f(g(d),k),h),e). ---> New Demodulator: 905 (904) EQUAL(f(f(g(d),k),h),e). ** KEPT: 906 (182,7,5,186) P(f(f(g(d),k),g(k)),d,e). ** KEPT: 907 (182,7,5,22) P(f(f(g(d),k),d),g(b),e). ** KEPT: 908 (182,7,5,5,27) P(f(x,f(g(d),k)),h,x). ** KEPT: 909 (182,7,3,5,27) P(e,h,g(f(g(d),k))). ** KEPT: 910 (182,7,200,5) P(e,g(d),f(f(g(d),k),g(k))). ** KEPT: 911 (182,7,168,5) P(e,f(b,g(h)),f(f(g(d),k),k)). ** KEPT: 912 (182,7,104,5,27) P(e,f(b,g(d)),f(g(d),k)). ** KEPT: 913 (182,7,102,5) P(e,f(b,a),f(f(g(d),k),c)). ** KEPT: 914 (182,7,87,5) P(e,b,f(f(g(d),k),d)). ** KEPT: 915 (182,7,5,5) P(e,x,f(f(g(d),k),f(h,x))). ** KEPT: 916 (182,6,5,5) P(x,e,f(f(x,f(g(d),k)),h)). ** KEPT: 917 (182,6,3,5,28) P(g(f(g(d),k)),e,h). ** KEPT: 918 (182,6,200,5,28) P(f(g(d),k),g(k),g(d)). ** KEPT: 919 (182,6,168,5,28) P(f(g(d),k),k,f(b,g(h))). ** KEPT: 920 (182,6,104,5,28) P(f(g(d),k),e,f(b,g(d))). ** KEPT: 921 (182,6,102,5,28) P(f(g(d),k),c,f(b,a)). ** KEPT: 922 (182,6,87,5,28) P(f(g(d),k),d,b). ** KEPT: 923 (182,6,5,5,28) P(f(g(d),k),f(h,x),x). >>>> Starting back demodulation with: 905 (904) EQUAL(f(f(g(d),k),h),e). 923 back subsumes: 428 (187,7,5,77) P(f(g(d),k),f(h,a),a). new given clause: 188 (167,6,5,22) P(k,f(h,g(b)),h). ** KEPT: 924 (188,8,5) EQUAL(f(k,f(h,g(b))),h). ---> New Demodulator: 925 (924) EQUAL(f(k,f(h,g(b))),h). ** KEPT: 926 (188,7,172,90) P(g(h),f(h,g(b)),g(b)). ** KEPT: 927 (188,7,172,5) P(g(h),f(h,g(b)),f(g(d),h)). ** KEPT: 928 (188,7,5,182) P(f(f(g(d),k),k),f(h,g(b)),e). ** KEPT: 929 (188,7,5,180) P(f(f(g(h),k),k),f(h,g(b)),b). ** KEPT: 930 (188,7,5,167) P(f(k,k),f(h,g(b)),d). ** KEPT: 931 (188,7,5,5) P(f(x,k),f(h,g(b)),f(x,h)). ** KEPT: 932 (188,7,3,5) P(e,f(h,g(b)),f(g(k),h)). ** KEPT: 933 (188,7,5,5) P(h,x,f(k,f(f(h,g(b)),x))). ** KEPT: 934 (188,7,4,5,27) P(h,g(f(h,g(b))),k). ** KEPT: 935 (188,6,168,5) P(h,f(f(b,g(h)),f(h,g(b))),h). ** KEPT: 936 (188,6,105,5) P(d,f(g(h),f(h,g(b))),h). ** KEPT: 937 (188,6,172,5) P(g(d),h,f(g(h),f(h,g(b)))). ** KEPT: 938 (188,6,5,5) P(x,h,f(f(x,k),f(h,g(b)))). ** KEPT: 939 (188,6,5,200) P(k,f(f(h,g(b)),g(d)),g(k)). ** KEPT: 940 (188,6,5,168) P(k,f(f(h,g(b)),f(b,g(h))),k). ** KEPT: 941 (188,6,5,104) P(k,f(f(h,g(b)),f(b,g(d))),e). ** KEPT: 942 (188,6,5,102) P(k,f(f(h,g(b)),f(b,a)),c). ** KEPT: 943 (188,6,5,87) P(k,f(f(h,g(b)),b),d). ** KEPT: 944 (188,6,5,5) P(k,f(f(h,g(b)),x),f(h,x)). ** KEPT: 945 (188,6,5,4) P(k,f(f(h,g(b)),g(h)),e). ** KEPT: 946 (188,6,4,5) P(k,e,f(h,g(f(h,g(b))))). >>>> Starting back demodulation with: 925 (924) EQUAL(f(k,f(h,g(b))),h). new given clause: 190 (167,6,5,4) P(k,f(h,g(d)),e). ** KEPT: 947 (190,8,5) EQUAL(f(k,f(h,g(d))),e). ---> New Demodulator: 948 (947) EQUAL(f(k,f(h,g(d))),e). ** KEPT: 949 (190,7,172,5,27) P(g(h),f(h,g(d)),g(d)). ** KEPT: 950 (190,7,5,5,27) P(f(x,k),f(h,g(d)),x). ** KEPT: 951 (190,7,5,5) P(e,x,f(k,f(f(h,g(d)),x))). ** KEPT: 952 (190,7,4,5,27) P(e,g(f(h,g(d))),k). ** KEPT: 953 (190,6,168,5) P(h,f(f(b,g(h)),f(h,g(d))),e). ** KEPT: 954 (190,6,105,5) P(d,f(g(h),f(h,g(d))),e). ** KEPT: 955 (190,6,172,5) P(g(d),e,f(g(h),f(h,g(d)))). ** KEPT: 956 (190,6,5,5) P(x,e,f(f(x,k),f(h,g(d)))). ** KEPT: 957 (190,6,5,5,28) P(k,f(f(h,g(d)),x),x). ** KEPT: 958 (190,6,4,5,28) P(k,e,g(f(h,g(d)))). >>>> Starting back demodulation with: 948 (947) EQUAL(f(k,f(h,g(d))),e). 950 back subsumes: 899 (180,6,5,154) P(f(g(h),k),f(h,g(d)),g(h)). new given clause: 193 (186,7,5,87) P(f(g(k),h),b,h). ** KEPT: 959 (193,8,5) EQUAL(f(f(g(k),h),b),h). ---> New Demodulator: 960 (959) EQUAL(f(f(g(k),h),b),h). ** KEPT: 961 (193,7,5,180) P(f(f(g(k),h),f(g(h),k)),h,h). ** KEPT: 962 (193,7,5,122) P(f(f(g(k),h),f(g(a),d)),a,h). ** KEPT: 963 (193,7,5,101) P(f(f(g(k),h),g(h)),d,h). ** KEPT: 964 (193,7,5,40) P(f(f(g(k),h),g(a)),c,h). ** KEPT: 965 (193,7,5,182) P(f(f(g(d),k),f(g(k),h)),b,e). ** KEPT: 966 (193,7,5,180) P(f(f(g(h),k),f(g(k),h)),b,b). ** KEPT: 967 (193,7,5,167) P(f(k,f(g(k),h)),b,d). ** KEPT: 968 (193,7,5,90) P(f(g(d),f(g(k),h)),b,g(b)). ** KEPT: 969 (193,7,5,5) P(f(x,f(g(k),h)),b,f(x,h)). ** KEPT: 970 (193,7,5,3) P(f(g(h),f(g(k),h)),b,e). ** KEPT: 971 (193,7,3,5) P(e,b,f(g(f(g(k),h)),h)). ** KEPT: 972 (193,7,154,5) P(h,g(d),f(f(g(k),h),g(h))). ** KEPT: 973 (193,7,152,5) P(h,a,f(f(g(k),h),f(g(h),c))). ** KEPT: 974 (193,7,128,5) P(h,g(c),f(f(g(k),h),g(a))). ** KEPT: 975 (193,7,5,5) P(h,x,f(f(g(k),h),f(b,x))). ** KEPT: 976 (193,6,5,5) P(x,h,f(f(x,f(g(k),h)),b)). ** KEPT: 977 (193,6,3,5,28) P(g(f(g(k),h)),h,b). ** KEPT: 978 (193,6,154,200) P(f(g(k),h),g(h),g(k)). ** KEPT: 979 (193,6,154,5) P(f(g(k),h),g(h),f(h,g(d))). ** KEPT: 980 (193,6,152,5) P(f(g(k),h),f(g(h),c),f(h,a)). ** KEPT: 981 (193,6,128,5) P(f(g(k),h),g(a),f(h,g(c))). ** KEPT: 982 (193,6,5,168) P(f(g(k),h),f(b,f(b,g(h))),k). ** KEPT: 983 (193,6,5,104) P(f(g(k),h),f(b,f(b,g(d))),e). ** KEPT: 984 (193,6,5,102) P(f(g(k),h),f(b,f(b,a)),c). ** KEPT: 985 (193,6,5,87) P(f(g(k),h),f(b,b),d). ** KEPT: 986 (193,6,5,5) P(f(g(k),h),f(b,x),f(h,x)). ** KEPT: 987 (193,6,4,5) P(f(g(k),h),e,f(h,g(b))). >>>> Starting back demodulation with: 960 (959) EQUAL(f(f(g(k),h),b),h). new given clause: 197 (186,7,62,5) P(h,a,f(g(k),c)). ** KEPT: 988 (197,8,5) EQUAL(f(g(k),c),f(h,a)). ** KEPT: 989 (197,7,5,135) P(f(h,f(g(d),a)),b,f(g(k),c)). ** KEPT: 990 (197,7,5,115) P(f(h,d),f(a,g(b)),f(g(k),c)). ** KEPT: 991 (197,7,5,77) P(f(h,g(d)),c,f(g(k),c)). ** KEPT: 992 (197,7,5,38) P(f(h,c),g(b),f(g(k),c)). ** KEPT: 993 (197,7,5,2) P(f(h,a),e,f(g(k),c)). ** KEPT: 994 (197,7,182,5) P(e,a,f(f(g(d),k),f(g(k),c))). ** KEPT: 995 (197,7,180,5) P(b,a,f(f(g(h),k),f(g(k),c))). ** KEPT: 996 (197,7,167,5) P(d,a,f(k,f(g(k),c))). ** KEPT: 997 (197,7,90,5) P(g(b),a,f(g(d),f(g(k),c))). ** KEPT: 998 (197,7,5,5) P(f(x,h),a,f(x,f(g(k),c))). ** KEPT: 999 (197,7,5,3) P(f(g(f(g(k),c)),h),a,e). ** KEPT: 1000 (197,7,3,5) P(e,a,f(g(h),f(g(k),c))). ** KEPT: 1001 (197,7,140,200) P(f(g(k),c),g(c),g(k)). ** KEPT: 1002 (197,7,140,5) P(f(g(k),c),g(c),f(h,g(d))). ** KEPT: 1003 (197,7,63,5) P(f(g(k),c),f(b,g(a)),f(h,d)). ** KEPT: 1004 (197,7,42,5,27) P(f(g(k),c),f(b,g(c)),h). ** KEPT: 1005 (197,7,20,5) P(f(g(k),c),b,f(h,c)). ** KEPT: 1006 (197,7,5,5) P(f(g(k),c),x,f(h,f(a,x))). ** KEPT: 1007 (197,7,2,5) P(f(g(k),c),e,f(h,a)). ** KEPT: 1008 (197,6,193,152) P(f(g(k),h),f(g(h),c),f(g(k),c)). ** KEPT: 1009 (197,6,188,5) P(k,f(f(h,g(b)),a),f(g(k),c)). ** KEPT: 1010 (197,6,22,5) P(d,f(g(b),a),f(g(k),c)). ** KEPT: 1011 (197,6,182,5,28) P(f(g(d),k),f(g(k),c),a). ** KEPT: 1012 (197,6,180,152) P(f(g(h),k),f(g(k),c),f(g(h),c)). ** KEPT: 1013 (197,6,180,5) P(f(g(h),k),f(g(k),c),f(b,a)). ** KEPT: 1014 (197,6,167,62) P(k,f(g(k),c),c). ** KEPT: 1015 (197,6,90,5) P(g(d),f(g(k),c),f(g(b),a)). ** KEPT: 1016 (197,6,5,5) P(x,f(g(k),c),f(f(x,h),a)). ** KEPT: 1017 (197,6,3,5,28) P(g(h),f(g(k),c),a). ** KEPT: 1018 (197,6,1,5) P(e,f(g(k),c),f(h,a)). ** KEPT: 1019 (197,6,140,5) P(h,g(d),f(f(g(k),c),g(c))). ** KEPT: 1020 (197,6,63,5) P(h,d,f(f(g(k),c),f(b,g(a)))). ** KEPT: 1021 (197,6,42,5) P(h,e,f(f(g(k),c),f(b,g(c)))). ** KEPT: 1022 (197,6,20,5) P(h,c,f(f(g(k),c),b)). ** KEPT: 1023 (197,6,5,5) P(h,f(a,x),f(f(g(k),c),x)). ** KEPT: 1024 (197,6,5,4) P(h,f(a,g(f(g(k),c))),e). ** KEPT: 1025 (197,6,4,5) P(h,e,f(f(g(k),c),g(a))). new given clause: 202 (186,6,62,5) P(g(k),c,f(h,a)). ** KEPT: 1026 (202,7,5,149) P(f(g(k),f(a,g(h))),d,f(h,a)). ** KEPT: 1027 (202,7,5,143) P(f(g(k),g(d)),f(c,b),f(h,a)). ** KEPT: 1028 (202,7,5,110) P(f(g(k),f(d,c)),g(b),f(h,a)). ** KEPT: 1029 (202,7,5,20) P(f(g(k),a),b,f(h,a)). ** KEPT: 1030 (202,7,5,5) P(f(x,g(k)),c,f(x,f(h,a))). ** KEPT: 1031 (202,7,5,3) P(f(g(f(h,a)),g(k)),c,e). ** KEPT: 1032 (202,7,74,5) P(f(h,a),b,f(g(k),f(d,c))). ** KEPT: 1033 (202,7,38,5) P(f(h,a),g(b),f(g(k),a)). ** KEPT: 1034 (202,7,21,186) P(f(h,a),g(a),h). ** KEPT: 1035 (202,7,5,5) P(f(h,a),x,f(g(k),f(c,x))). ** KEPT: 1036 (202,6,5,5) P(x,f(h,a),f(f(x,g(k)),c)). ** KEPT: 1037 (202,6,74,5) P(g(k),f(d,c),f(f(h,a),b)). ** KEPT: 1038 (202,6,38,5) P(g(k),a,f(f(h,a),g(b))). ** KEPT: 1039 (202,6,21,5) P(g(k),d,f(f(h,a),g(a))). ** KEPT: 1040 (202,6,5,5) P(g(k),f(c,x),f(f(h,a),x)). ** KEPT: 1041 (202,6,5,4) P(g(k),f(c,g(f(h,a))),e). ** KEPT: 1042 (202,6,4,5) P(g(k),e,f(f(h,a),g(c))). new given clause: 204 (186,6,5,87) P(g(k),f(d,b),d). ** KEPT: 1043 (204,8,5) EQUAL(f(g(k),f(d,b)),d). ---> New Demodulator: 1044 (1043) EQUAL(f(g(k),f(d,b)),d). ** KEPT: 1045 (204,7,5,186) P(f(g(k),g(k)),f(d,b),h). ** KEPT: 1046 (204,7,5,149) P(f(f(a,g(h)),g(k)),f(d,b),c). ** KEPT: 1047 (204,7,5,101) P(f(g(h),g(k)),f(d,b),b). ** KEPT: 1048 (204,7,5,65) P(f(g(c),g(k)),f(d,b),g(a)). ** KEPT: 1049 (204,7,5,5) P(f(x,g(k)),f(d,b),f(x,d)). ** KEPT: 1050 (204,7,5,3) P(f(g(d),g(k)),f(d,b),e). ** KEPT: 1051 (204,7,5,5) P(d,x,f(g(k),f(f(d,b),x))). ** KEPT: 1052 (204,7,4,5,27) P(d,g(f(d,b)),g(k)). ** KEPT: 1053 (204,6,200,5) P(h,f(g(d),f(d,b)),d). ** KEPT: 1054 (204,6,5,5) P(x,d,f(f(x,g(k)),f(d,b))). ** KEPT: 1055 (204,6,5,173) P(g(k),f(f(d,b),b),f(k,d)). ** KEPT: 1056 (204,6,5,115) P(g(k),f(f(d,b),f(a,g(b))),a). ** KEPT: 1057 (204,6,5,105) P(g(k),f(f(d,b),g(h)),k). ** KEPT: 1058 (204,6,5,80) P(g(k),f(f(d,b),f(a,g(c))),e). ** KEPT: 1059 (204,6,5,78) P(g(k),f(f(d,b),c),f(c,b)). ** KEPT: 1060 (204,6,5,62) P(g(k),f(f(d,b),a),c). ** KEPT: 1061 (204,6,5,22) P(g(k),f(f(d,b),g(b)),h). ** KEPT: 1062 (204,6,5,5) P(g(k),f(f(d,b),x),f(d,x)). ** KEPT: 1063 (204,6,5,4) P(g(k),f(f(d,b),g(d)),e). ** KEPT: 1064 (204,6,4,5) P(g(k),e,f(d,g(f(d,b)))). >>>> Starting back demodulation with: 1044 (1043) EQUAL(f(g(k),f(d,b)),d). >> back demodulating: 369 (165,7,3,5) P(e,d,f(g(k),f(d,b))). new given clause: 207 (65,8,5) EQUAL(f(g(c),d),g(a)). ** KEPT: 1065 (207,17,31) EQUAL(g(f(g(c),d)),a). ---> New Demodulator: 1066 (1065) EQUAL(g(f(g(c),d)),a). ** KEPT: 1067 (207,16) EQUAL(f(x,f(g(c),d)),f(x,g(a))). ** KEPT: 1068 (207,15) EQUAL(f(f(g(c),d),x),f(g(a),x)). ** KEPT: 1069 (207,13,5) P(x,g(a),f(x,f(g(c),d))). ** KEPT: 1070 (207,12,5) P(g(a),x,f(f(g(c),d),x)). >>>> Starting back demodulation with: 1066 (1065) EQUAL(g(f(g(c),d)),a). >> back demodulating: 517 (72,7,3,5,27) P(e,a,g(f(g(c),d))). >> back demodulating: 524 (72,6,3,5,28) P(g(f(g(c),d)),e,a). new given clause: 212 (65,7,5,4) P(f(a,g(c)),d,e). ** KEPT: 1071 (212,8,5) EQUAL(f(f(a,g(c)),d),e). ---> New Demodulator: 1072 (1071) EQUAL(f(f(a,g(c)),d),e). ** KEPT: 1073 (212,7,5,204) P(f(f(a,g(c)),g(k)),f(d,b),e). ** KEPT: 1074 (212,7,5,179) P(f(f(a,g(c)),f(k,d)),g(b),e). ** KEPT: 1075 (212,7,5,167) P(f(f(a,g(c)),k),h,e). ** KEPT: 1076 (212,7,5,123) P(f(f(a,g(c)),f(h,g(a))),c,e). ** KEPT: 1077 (212,7,5,87) P(f(f(a,g(c)),h),b,e). ** KEPT: 1078 (212,7,5,63) P(f(f(a,g(c)),a),f(b,g(a)),e). ** KEPT: 1079 (212,7,5,21) P(f(f(a,g(c)),c),g(a),e). ** KEPT: 1080 (212,7,5,5,27) P(f(x,f(a,g(c))),d,x). ** KEPT: 1081 (212,7,3,5,27) P(e,d,g(f(a,g(c)))). ** KEPT: 1082 (212,7,173,5) P(e,b,f(f(a,g(c)),f(k,d))). ** KEPT: 1083 (212,7,115,5) P(e,f(a,g(b)),f(f(a,g(c)),a)). ** KEPT: 1084 (212,7,105,5) P(e,g(h),f(f(a,g(c)),k)). ** KEPT: 1085 (212,7,78,5) P(e,c,f(f(a,g(c)),f(c,b))). ** KEPT: 1086 (212,7,62,5) P(e,a,f(f(a,g(c)),c)). ** KEPT: 1087 (212,7,22,5) P(e,g(b),f(f(a,g(c)),h)). ** KEPT: 1088 (212,7,5,5) P(e,x,f(f(a,g(c)),f(d,x))). ** KEPT: 1089 (212,6,5,5) P(x,e,f(f(x,f(a,g(c))),d)). ** KEPT: 1090 (212,6,3,5,28) P(g(f(a,g(c))),e,d). ** KEPT: 1091 (212,6,173,5,28) P(f(a,g(c)),f(k,d),b). ** KEPT: 1092 (212,6,105,5,28) P(f(a,g(c)),k,g(h)). ** KEPT: 1093 (212,6,78,5,28) P(f(a,g(c)),f(c,b),c). ** KEPT: 1094 (212,6,62,5,28) P(f(a,g(c)),c,a). ** KEPT: 1095 (212,6,22,5,28) P(f(a,g(c)),h,g(b)). ** KEPT: 1096 (212,6,5,5,28) P(f(a,g(c)),f(d,x),x). >>>> Starting back demodulation with: 1072 (1071) EQUAL(f(f(a,g(c)),d),e). new given clause: 216 (65,7,4,5,27) P(g(a),g(d),g(c)). ** KEPT: 1097 (216,8,5) EQUAL(f(g(a),g(d)),g(c)). ** KEPT: 1098 (216,7,5,2) P(f(g(a),g(d)),e,g(c)). ** KEPT: 1099 (216,7,5,128) P(f(b,g(a)),g(d),g(a)). ** KEPT: 1100 (216,7,5,5) P(f(x,g(a)),g(d),f(x,g(c))). ** KEPT: 1101 (216,7,5,5) P(g(c),x,f(g(a),f(g(d),x))). ** KEPT: 1102 (216,6,128,5) P(b,f(g(c),g(d)),g(c)). ** KEPT: 1103 (216,6,1,5) P(e,f(g(a),g(d)),g(c)). ** KEPT: 1104 (216,6,5,5) P(x,g(c),f(f(x,g(a)),g(d))). ** KEPT: 1105 (216,6,5,117) P(g(a),f(g(d),a),g(b)). ** KEPT: 1106 (216,6,5,5) P(g(a),f(g(d),x),f(g(c),x)). new given clause: 222 (65,6,5,40) P(g(c),f(d,c),b). ** KEPT: 1107 (222,8,5) EQUAL(f(g(c),f(d,c)),b). ---> New Demodulator: 1108 (1107) EQUAL(f(g(c),f(d,c)),b). ** KEPT: 1109 (222,7,5,193) P(f(f(g(k),h),g(c)),f(d,c),h). ** KEPT: 1110 (222,7,5,173) P(f(d,g(c)),f(d,c),f(k,d)). ** KEPT: 1111 (222,7,5,135) P(f(f(g(d),a),g(c)),f(d,c),a). ** KEPT: 1112 (222,7,5,97) P(f(f(g(d),h),g(c)),f(d,c),e). ** KEPT: 1113 (222,7,5,87) P(f(h,g(c)),f(d,c),d). ** KEPT: 1114 (222,7,5,35) P(f(f(g(c),a),g(c)),f(d,c),e). ** KEPT: 1115 (222,7,5,5) P(f(x,g(c)),f(d,c),f(x,b)). ** KEPT: 1116 (222,7,5,3) P(f(g(b),g(c)),f(d,c),e). ** KEPT: 1117 (222,7,5,5) P(b,x,f(g(c),f(f(d,c),x))). ** KEPT: 1118 (222,7,4,5,27) P(b,g(f(d,c)),g(c)). ** KEPT: 1119 (222,6,216,5) P(g(a),f(g(d),f(d,c)),b). ** KEPT: 1120 (222,6,5,5) P(x,b,f(f(x,g(c)),f(d,c))). ** KEPT: 1121 (222,6,5,154) P(g(c),f(f(d,c),g(d)),g(h)). ** KEPT: 1122 (222,6,5,152) P(g(c),f(f(d,c),a),f(g(h),c)). ** KEPT: 1123 (222,6,5,128) P(g(c),f(f(d,c),g(c)),g(a)). ** KEPT: 1124 (222,6,5,5) P(g(c),f(f(d,c),x),f(b,x)). ** KEPT: 1125 (222,6,4,5) P(g(c),e,f(b,g(f(d,c)))). >>>> Starting back demodulation with: 1108 (1107) EQUAL(f(g(c),f(d,c)),b). >> back demodulating: 232 (74,7,3,5) P(e,b,f(g(c),f(d,c))). >> back demodulating: 586 (110,7,5,3) P(f(g(c),f(d,c)),g(b),e). new given clause: 225 (74,8,5) EQUAL(f(d,c),f(c,b)). ** KEPT: 1126 (225,17) EQUAL(g(f(d,c)),g(f(c,b))). ** KEPT: 1127 (225,16) EQUAL(f(x,f(d,c)),f(x,f(c,b))). ** KEPT: 1128 (225,15) EQUAL(f(f(d,c),x),f(f(c,b),x)). ** KEPT: 1129 (225,13,5) P(x,f(c,b),f(x,f(d,c))). ** KEPT: 1130 (225,13,3) P(g(f(d,c)),f(c,b),e). ** KEPT: 1131 (225,12,5) P(f(c,b),x,f(f(d,c),x)). ** KEPT: 1132 (225,12,4) P(f(c,b),g(f(d,c)),e). new given clause: 237 (74,6,77,20) P(g(d),f(d,c),c). ** KEPT: 1133 (237,8,5) EQUAL(f(g(d),f(d,c)),c). ---> New Demodulator: 1134 (1133) EQUAL(f(g(d),f(d,c)),c). ** KEPT: 1135 (237,7,5,202) P(f(g(k),g(d)),f(d,c),f(h,a)). ** KEPT: 1136 (237,7,5,156) P(f(g(h),g(d)),f(d,c),f(b,a)). ** KEPT: 1137 (237,7,5,123) P(f(f(h,g(a)),g(d)),f(d,c),d). ** KEPT: 1138 (237,7,5,77) P(f(g(d),g(d)),f(d,c),a). ** KEPT: 1139 (237,7,5,40) P(f(g(a),g(d)),f(d,c),b). ** KEPT: 1140 (237,7,5,5) P(f(x,g(d)),f(d,c),f(x,c)). ** KEPT: 1141 (237,7,5,3) P(f(g(c),g(d)),f(d,c),e). ** KEPT: 1142 (237,7,5,5) P(c,x,f(g(d),f(f(d,c),x))). ** KEPT: 1143 (237,7,4,5,27) P(c,g(f(d,c)),g(d)). ** KEPT: 1144 (237,6,5,5) P(x,c,f(f(x,g(d)),f(d,c))). ** KEPT: 1145 (237,6,5,74) P(g(d),f(f(d,c),b),f(d,c)). ** KEPT: 1146 (237,6,5,21) P(g(d),f(f(d,c),g(a)),d). ** KEPT: 1147 (237,6,5,5) P(g(d),f(f(d,c),x),f(c,x)). ** KEPT: 1148 (237,6,5,4) P(g(d),f(f(d,c),g(c)),e). ** KEPT: 1149 (237,6,4,5) P(g(d),e,f(c,g(f(d,c)))). >>>> Starting back demodulation with: 1134 (1133) EQUAL(f(g(d),f(d,c)),c). >> back demodulating: 228 (74,7,77,5) P(a,b,f(g(d),f(d,c))). >> back demodulating: 583 (110,7,5,77) P(f(g(d),f(d,c)),g(b),a). >> back demodulating: 1119 (222,6,216,5) P(g(a),f(g(d),f(d,c)),b). new given clause: 252 (78,7,38,62) P(f(c,b),g(b),c). ** KEPT: 1150 (252,8,5) EQUAL(f(f(c,b),g(b)),c). ---> New Demodulator: 1151 (1150) EQUAL(f(f(c,b),g(b)),c). ** KEPT: 1152 (252,7,5,117) P(f(f(c,b),g(c)),a,c). ** KEPT: 1153 (252,7,5,90) P(f(f(c,b),g(d)),h,c). ** KEPT: 1154 (252,7,5,202) P(f(g(k),f(c,b)),g(b),f(h,a)). ** KEPT: 1155 (252,7,5,156) P(f(g(h),f(c,b)),g(b),f(b,a)). ** KEPT: 1156 (252,7,5,123) P(f(f(h,g(a)),f(c,b)),g(b),d). ** KEPT: 1157 (252,7,5,78) P(f(d,f(c,b)),g(b),f(c,b)). ** KEPT: 1158 (252,7,5,40) P(f(g(a),f(c,b)),g(b),b). ** KEPT: 1159 (252,7,5,5) P(f(x,f(c,b)),g(b),f(x,c)). ** KEPT: 1160 (252,7,5,3) P(f(g(c),f(c,b)),g(b),e). ** KEPT: 1161 (252,7,3,5) P(e,g(b),f(g(f(c,b)),c)). ** KEPT: 1162 (252,7,5,5) P(c,x,f(f(c,b),f(g(b),x))). ** KEPT: 1163 (252,6,5,5) P(x,c,f(f(x,f(c,b)),g(b))). ** KEPT: 1164 (252,6,3,5,28) P(g(f(c,b)),c,g(b)). ** KEPT: 1165 (252,6,5,38) P(f(c,b),f(g(b),g(b)),a). ** KEPT: 1166 (252,6,5,21) P(f(c,b),f(g(b),g(a)),d). ** KEPT: 1167 (252,6,5,5) P(f(c,b),f(g(b),x),f(c,x)). ** KEPT: 1168 (252,6,5,4) P(f(c,b),f(g(b),g(c)),e). >>>> Starting back demodulation with: 1151 (1150) EQUAL(f(f(c,b),g(b)),c). >> back demodulating: 263 (78,6,38,5) P(d,a,f(f(c,b),g(b))). >> back demodulating: 724 (143,6,5,38) P(g(d),f(f(c,b),g(b)),a). new given clause: 255 (78,7,4,5,27) P(f(c,b),g(c),d). ** KEPT: 1169 (255,8,5) EQUAL(f(f(c,b),g(c)),d). ---> New Demodulator: 1170 (1169) EQUAL(f(f(c,b),g(c)),d). ** KEPT: 1171 (255,7,5,216) P(f(f(c,b),g(a)),g(d),d). ** KEPT: 1172 (255,7,5,212) P(f(f(a,g(c)),f(c,b)),g(c),e). ** KEPT: 1173 (255,7,5,186) P(f(g(k),f(c,b)),g(c),h). ** KEPT: 1174 (255,7,5,165) P(f(k,f(c,b)),g(c),f(d,b)). ** KEPT: 1175 (255,7,5,149) P(f(f(a,g(h)),f(c,b)),g(c),c). ** KEPT: 1176 (255,7,5,101) P(f(g(h),f(c,b)),g(c),b). ** KEPT: 1177 (255,7,5,65) P(f(g(c),f(c,b)),g(c),g(a)). ** KEPT: 1178 (255,7,5,5) P(f(x,f(c,b)),g(c),f(x,d)). ** KEPT: 1179 (255,7,3,5) P(e,g(c),f(g(f(c,b)),d)). ** KEPT: 1180 (255,7,5,5) P(d,x,f(f(c,b),f(g(c),x))). ** KEPT: 1181 (255,6,5,5) P(x,d,f(f(x,f(c,b)),g(c))). ** KEPT: 1182 (255,6,3,5,28) P(g(f(c,b)),d,g(c)). ** KEPT: 1183 (255,6,5,173) P(f(c,b),f(g(c),b),f(k,d)). ** KEPT: 1184 (255,6,5,115) P(f(c,b),f(g(c),f(a,g(b))),a). ** KEPT: 1185 (255,6,5,105) P(f(c,b),f(g(c),g(h)),k). ** KEPT: 1186 (255,6,5,80) P(f(c,b),f(g(c),f(a,g(c))),e). ** KEPT: 1187 (255,6,5,62) P(f(c,b),f(g(c),a),c). ** KEPT: 1188 (255,6,5,22) P(f(c,b),f(g(c),g(b)),h). ** KEPT: 1189 (255,6,5,5) P(f(c,b),f(g(c),x),f(d,x)). ** KEPT: 1190 (255,6,5,4) P(f(c,b),f(g(c),g(d)),e). >>>> Starting back demodulation with: 1170 (1169) EQUAL(f(f(c,b),g(c)),d). >> back demodulating: 267 (78,6,4,5) P(d,e,f(f(c,b),g(c))). >> back demodulating: 727 (143,6,5,4) P(g(d),f(f(c,b),g(c)),e). >> back demodulating: 1152 (252,7,5,117) P(f(f(c,b),g(c)),a,c). new given clause: 260 (78,6,65,40) P(g(c),f(c,b),b). ** KEPT: 1191 (260,8,5) EQUAL(f(g(c),f(c,b)),b). ---> New Demodulator: 1192 (1191) EQUAL(f(g(c),f(c,b)),b). ** KEPT: 1193 (260,7,5,193) P(f(f(g(k),h),g(c)),f(c,b),h). ** KEPT: 1194 (260,7,5,173) P(f(d,g(c)),f(c,b),f(k,d)). ** KEPT: 1195 (260,7,5,135) P(f(f(g(d),a),g(c)),f(c,b),a). ** KEPT: 1196 (260,7,5,97) P(f(f(g(d),h),g(c)),f(c,b),e). ** KEPT: 1197 (260,7,5,87) P(f(h,g(c)),f(c,b),d). ** KEPT: 1198 (260,7,5,35) P(f(f(g(c),a),g(c)),f(c,b),e). ** KEPT: 1199 (260,7,5,5) P(f(x,g(c)),f(c,b),f(x,b)). ** KEPT: 1200 (260,7,5,3) P(f(g(b),g(c)),f(c,b),e). ** KEPT: 1201 (260,7,255,5) P(b,g(c),f(g(c),d)). ** KEPT: 1202 (260,7,5,5) P(b,x,f(g(c),f(f(c,b),x))). ** KEPT: 1203 (260,7,4,5,27) P(b,g(f(c,b)),g(c)). ** KEPT: 1204 (260,6,5,5) P(x,b,f(f(x,g(c)),f(c,b))). ** KEPT: 1205 (260,6,255,5) P(g(c),d,f(b,g(c))). ** KEPT: 1206 (260,6,5,154) P(g(c),f(f(c,b),g(d)),g(h)). ** KEPT: 1207 (260,6,5,152) P(g(c),f(f(c,b),a),f(g(h),c)). ** KEPT: 1208 (260,6,5,5) P(g(c),f(f(c,b),x),f(b,x)). ** KEPT: 1209 (260,6,4,5) P(g(c),e,f(b,g(f(c,b)))). >>>> Starting back demodulation with: 1192 (1191) EQUAL(f(g(c),f(c,b)),b). >> back demodulating: 247 (78,7,65,5) P(g(a),c,f(g(c),f(c,b))). >> back demodulating: 721 (143,6,140,5) P(a,f(g(c),f(c,b)),c). >> back demodulating: 1160 (252,7,5,3) P(f(g(c),f(c,b)),g(b),e). >> back demodulating: 1177 (255,7,5,65) P(f(g(c),f(c,b)),g(c),g(a)). new given clause: 268 (90,8,5) EQUAL(f(g(d),h),g(b)). ** KEPT: 1210 (268,17,31) EQUAL(g(f(g(d),h)),b). ---> New Demodulator: 1211 (1210) EQUAL(g(f(g(d),h)),b). ** KEPT: 1212 (268,16) EQUAL(f(x,f(g(d),h)),f(x,g(b))). ** KEPT: 1213 (268,15) EQUAL(f(f(g(d),h),x),f(g(b),x)). ** KEPT: 1214 (268,13,5) P(x,g(b),f(x,f(g(d),h))). ** KEPT: 1215 (268,12,5) P(g(b),x,f(f(g(d),h),x)). >>>> Starting back demodulation with: 1211 (1210) EQUAL(g(f(g(d),h)),b). >> back demodulating: 555 (97,7,3,5,27) P(e,b,g(f(g(d),h))). >> back demodulating: 560 (97,6,3,5,28) P(g(f(g(d),h)),e,b). new given clause: 271 (90,7,5,38) P(f(c,g(d)),h,a). ** KEPT: 1216 (271,8,5) EQUAL(f(f(c,g(d)),h),a). ---> New Demodulator: 1217 (1216) EQUAL(f(f(c,g(d)),h),a). ** KEPT: 1218 (271,7,5,193) P(f(f(c,g(d)),f(g(k),h)),b,a). ** KEPT: 1219 (271,7,5,188) P(f(f(c,g(d)),k),f(h,g(b)),a). ** KEPT: 1220 (271,7,5,186) P(f(f(c,g(d)),g(k)),d,a). ** KEPT: 1221 (271,7,5,22) P(f(f(c,g(d)),d),g(b),a). ** KEPT: 1222 (271,7,5,197) P(f(h,f(c,g(d))),h,f(g(k),c)). ** KEPT: 1223 (271,7,5,152) P(f(b,f(c,g(d))),h,f(g(h),c)). ** KEPT: 1224 (271,7,5,122) P(f(f(g(a),d),f(c,g(d))),h,b). ** KEPT: 1225 (271,7,5,117) P(f(g(c),f(c,g(d))),h,g(b)). ** KEPT: 1226 (271,7,5,72) P(f(f(g(c),d),f(c,g(d))),h,e). ** KEPT: 1227 (271,7,5,62) P(f(d,f(c,g(d))),h,c). ** KEPT: 1228 (271,7,5,5) P(f(x,f(c,g(d))),h,f(x,a)). ** KEPT: 1229 (271,7,5,3) P(f(g(a),f(c,g(d))),h,e). ** KEPT: 1230 (271,7,3,5) P(e,h,f(g(f(c,g(d))),a)). ** KEPT: 1231 (271,7,200,5) P(a,g(d),f(f(c,g(d)),g(k))). ** KEPT: 1232 (271,7,197,5) P(a,a,f(f(c,g(d)),f(g(k),c))). ** KEPT: 1233 (271,7,168,5) P(a,f(b,g(h)),f(f(c,g(d)),k)). ** KEPT: 1234 (271,7,102,5) P(a,f(b,a),f(f(c,g(d)),c)). ** KEPT: 1235 (271,7,87,5) P(a,b,f(f(c,g(d)),d)). ** KEPT: 1236 (271,7,5,5) P(a,x,f(f(c,g(d)),f(h,x))). ** KEPT: 1237 (271,6,5,5) P(c,f(g(d),h),a). ** KEPT: 1238 (271,6,5,5) P(x,a,f(f(x,f(c,g(d))),h)). ** KEPT: 1239 (271,6,3,5,28) P(g(f(c,g(d))),a,h). ** KEPT: 1240 (271,6,200,5) P(f(c,g(d)),g(k),f(a,g(d))). ** KEPT: 1241 (271,6,197,5) P(f(c,g(d)),f(g(k),c),f(a,a)). ** KEPT: 1242 (271,6,168,5) P(f(c,g(d)),k,f(a,f(b,g(h)))). ** KEPT: 1243 (271,6,104,5) P(f(c,g(d)),e,f(a,f(b,g(d)))). ** KEPT: 1244 (271,6,102,5) P(f(c,g(d)),c,f(a,f(b,a))). ** KEPT: 1245 (271,6,87,20) P(f(c,g(d)),d,c). ** KEPT: 1246 (271,6,5,140) P(f(c,g(d)),f(h,g(c)),g(d)). ** KEPT: 1247 (271,6,5,63) P(f(c,g(d)),f(h,f(b,g(a))),d). ** KEPT: 1248 (271,6,5,42) P(f(c,g(d)),f(h,f(b,g(c))),e). ** KEPT: 1249 (271,6,5,5) P(f(c,g(d)),f(h,x),f(a,x)). ** KEPT: 1250 (271,6,5,4) P(f(c,g(d)),f(h,g(a)),e). ** KEPT: 1251 (271,6,4,5) P(f(c,g(d)),e,f(a,g(h))). >>>> Starting back demodulation with: 1217 (1216) EQUAL(f(f(c,g(d)),h),a). new given clause: 273 (90,7,5,4) P(f(b,g(d)),h,e). ** KEPT: 1252 (273,8,5) EQUAL(f(f(b,g(d)),h),e). ---> New Demodulator: 1253 (1252) EQUAL(f(f(b,g(d)),h),e). ** KEPT: 1254 (273,7,5,193) P(f(f(b,g(d)),f(g(k),h)),b,e). ** KEPT: 1255 (273,7,5,188) P(f(f(b,g(d)),k),f(h,g(b)),e). ** KEPT: 1256 (273,7,5,186) P(f(f(b,g(d)),g(k)),d,e). ** KEPT: 1257 (273,7,5,22) P(f(f(b,g(d)),d),g(b),e). ** KEPT: 1258 (273,7,5,5,27) P(f(x,f(b,g(d))),h,x). ** KEPT: 1259 (273,7,3,5,27) P(e,h,g(f(b,g(d)))). ** KEPT: 1260 (273,7,200,5) P(e,g(d),f(f(b,g(d)),g(k))). ** KEPT: 1261 (273,7,197,5) P(e,a,f(f(b,g(d)),f(g(k),c))). ** KEPT: 1262 (273,7,168,5) P(e,f(b,g(h)),f(f(b,g(d)),k)). ** KEPT: 1263 (273,7,102,5) P(e,f(b,a),f(f(b,g(d)),c)). ** KEPT: 1264 (273,7,87,5) P(e,b,f(f(b,g(d)),d)). ** KEPT: 1265 (273,7,5,5) P(e,x,f(f(b,g(d)),f(h,x))). ** KEPT: 1266 (273,6,5,5) P(x,e,f(f(x,f(b,g(d))),h)). ** KEPT: 1267 (273,6,3,5,28) P(g(f(b,g(d))),e,h). ** KEPT: 1268 (273,6,200,5,28) P(f(b,g(d)),g(k),g(d)). ** KEPT: 1269 (273,6,197,5,28) P(f(b,g(d)),f(g(k),c),a). ** KEPT: 1270 (273,6,87,5,28) P(f(b,g(d)),d,b). ** KEPT: 1271 (273,6,5,5,28) P(f(b,g(d)),f(h,x),x). >>>> Starting back demodulation with: 1253 (1252) EQUAL(f(f(b,g(d)),h),e). new given clause: 275 (90,7,4,5,27) P(g(b),g(h),g(d)). ** KEPT: 1272 (275,8,5) EQUAL(f(g(b),g(h)),g(d)). ** KEPT: 1273 (275,7,5,172) P(f(g(b),g(d)),k,g(d)). ** KEPT: 1274 (275,7,5,2) P(f(g(b),g(h)),e,g(d)). ** KEPT: 1275 (275,7,5,216) P(f(g(a),g(b)),g(h),g(c)). ** KEPT: 1276 (275,7,5,200) P(f(h,g(b)),g(h),g(k)). ** KEPT: 1277 (275,7,5,5) P(f(x,g(b)),g(h),f(x,g(d))). ** KEPT: 1278 (275,7,5,5) P(g(d),x,f(g(b),f(g(h),x))). ** KEPT: 1279 (275,6,117,5) P(g(c),f(a,g(h)),g(d)). ** KEPT: 1280 (275,6,1,5) P(e,f(g(b),g(h)),g(d)). ** KEPT: 1281 (275,6,5,5) P(x,g(d),f(f(x,g(b)),g(h))). ** KEPT: 1282 (275,6,5,237) P(g(b),f(g(h),f(d,c)),c). ** KEPT: 1283 (275,6,5,172) P(g(b),f(g(h),k),g(h)). ** KEPT: 1284 (275,6,5,143) P(g(b),f(g(h),f(c,b)),c). ** KEPT: 1285 (275,6,5,5) P(g(b),f(g(h),x),f(g(d),x)). new given clause: 281 (102,8,5) EQUAL(f(h,f(b,a)),c). new given clause: 284 (102,7,90,77) P(g(b),f(b,a),a). ** KEPT: 1286 (284,8,5) EQUAL(f(g(b),f(b,a)),a). ---> New Demodulator: 1287 (1286) EQUAL(f(g(b),f(b,a)),a). ** KEPT: 1288 (284,7,5,156) P(f(g(b),g(h)),c,a). ** KEPT: 1289 (284,7,252,5) P(c,f(b,a),f(f(c,b),a)). ** KEPT: 1290 (284,7,5,197) P(f(h,g(b)),f(b,a),f(g(k),c)). ** KEPT: 1291 (284,7,5,122) P(f(f(g(a),d),g(b)),f(b,a),b). ** KEPT: 1292 (284,7,5,117) P(f(g(c),g(b)),f(b,a),g(b)). ** KEPT: 1293 (284,7,5,72) P(f(f(g(c),d),g(b)),f(b,a),e). ** KEPT: 1294 (284,7,5,5) P(f(x,g(b)),f(b,a),f(x,a)). ** KEPT: 1295 (284,7,5,3) P(f(g(a),g(b)),f(b,a),e). ** KEPT: 1296 (284,7,5,5) P(a,x,f(g(b),f(f(b,a),x))). ** KEPT: 1297 (284,7,4,5,27) P(a,g(f(b,a)),g(b)). ** KEPT: 1298 (284,6,117,5) P(g(c),f(a,f(b,a)),a). ** KEPT: 1299 (284,6,252,5) P(f(c,b),a,f(c,f(b,a))). ** KEPT: 1300 (284,6,5,5) P(x,a,f(f(x,g(b)),f(b,a))). ** KEPT: 1301 (284,6,5,140) P(g(b),f(f(b,a),g(c)),g(d)). ** KEPT: 1302 (284,6,5,63) P(g(b),f(f(b,a),f(b,g(a))),d). ** KEPT: 1303 (284,6,5,42) P(g(b),f(f(b,a),f(b,g(c))),e). ** KEPT: 1304 (284,6,5,20) P(g(b),f(f(b,a),b),c). ** KEPT: 1305 (284,6,5,5) P(g(b),f(f(b,a),x),f(a,x)). ** KEPT: 1306 (284,6,5,4) P(g(b),f(f(b,a),g(a)),e). ** KEPT: 1307 (284,6,4,5) P(g(b),e,f(a,g(f(b,a)))). >>>> Starting back demodulation with: 1287 (1286) EQUAL(f(g(b),f(b,a)),a). >> back demodulating: 294 (102,6,22,5) P(d,f(g(b),f(b,a)),c). >> back demodulating: 296 (102,6,90,5) P(g(d),c,f(g(b),f(b,a))). new given clause: 292 (102,7,4,5,27) P(c,g(f(b,a)),h). ** KEPT: 1308 (292,8,5) EQUAL(f(c,g(f(b,a))),h). ---> New Demodulator: 1309 (1308) EQUAL(f(c,g(f(b,a))),h). ** KEPT: 1310 (292,7,202,5) P(f(h,a),g(f(b,a)),f(g(k),h)). ** KEPT: 1311 (292,7,123,5) P(d,g(f(b,a)),f(f(h,g(a)),h)). ** KEPT: 1312 (292,7,78,5) P(f(c,b),g(f(b,a)),f(d,h)). ** KEPT: 1313 (292,7,77,5) P(a,g(f(b,a)),f(g(d),h)). ** KEPT: 1314 (292,7,40,5) P(b,g(f(b,a)),f(g(a),h)). ** KEPT: 1315 (292,7,5,273) P(f(f(b,g(d)),c),g(f(b,a)),e). ** KEPT: 1316 (292,7,5,271) P(f(f(c,g(d)),c),g(f(b,a)),a). ** KEPT: 1317 (292,7,5,182) P(f(f(g(d),k),c),g(f(b,a)),e). ** KEPT: 1318 (292,7,5,180) P(f(f(g(h),k),c),g(f(b,a)),b). ** KEPT: 1319 (292,7,5,167) P(f(k,c),g(f(b,a)),d). ** KEPT: 1320 (292,7,5,5) P(f(x,c),g(f(b,a)),f(x,h)). ** KEPT: 1321 (292,7,5,3) P(f(g(h),c),g(f(b,a)),e). ** KEPT: 1322 (292,7,3,5) P(e,g(f(b,a)),f(g(c),h)). ** KEPT: 1323 (292,7,5,5) P(h,x,f(c,f(g(f(b,a)),x))). ** KEPT: 1324 (292,6,252,5) P(f(c,b),f(g(b),g(f(b,a))),h). ** KEPT: 1325 (292,6,237,5) P(g(d),f(f(d,c),g(f(b,a))),h). ** KEPT: 1326 (292,6,187,5) P(k,f(f(h,a),g(f(b,a))),h). ** KEPT: 1327 (292,6,149,5) P(f(a,g(h)),f(d,g(f(b,a))),h). ** KEPT: 1328 (292,6,143,5) P(g(d),f(f(c,b),g(f(b,a))),h). ** KEPT: 1329 (292,6,110,5) P(f(d,c),f(g(b),g(f(b,a))),h). ** KEPT: 1330 (292,6,62,5) P(d,f(a,g(f(b,a))),h). ** KEPT: 1331 (292,6,20,5) P(a,f(b,g(f(b,a))),h). ** KEPT: 1332 (292,6,202,5) P(g(k),h,f(f(h,a),g(f(b,a)))). ** KEPT: 1333 (292,6,123,5) P(f(h,g(a)),h,f(d,g(f(b,a)))). ** KEPT: 1334 (292,6,78,5) P(d,h,f(f(c,b),g(f(b,a)))). ** KEPT: 1335 (292,6,77,5) P(g(d),h,f(a,g(f(b,a)))). ** KEPT: 1336 (292,6,40,5) P(g(a),h,f(b,g(f(b,a)))). ** KEPT: 1337 (292,6,5,5) P(x,h,f(f(x,c),g(f(b,a)))). ** KEPT: 1338 (292,6,3,5,28) P(g(c),h,g(f(b,a))). ** KEPT: 1339 (292,6,5,200) P(c,f(g(f(b,a)),g(d)),g(k)). ** KEPT: 1340 (292,6,5,197) P(c,f(g(f(b,a)),a),f(g(k),c)). ** KEPT: 1341 (292,6,5,168) P(c,f(g(f(b,a)),f(b,g(h))),k). ** KEPT: 1342 (292,6,5,104) P(c,f(g(f(b,a)),f(b,g(d))),e). ** KEPT: 1343 (292,6,5,87) P(c,f(g(f(b,a)),b),d). ** KEPT: 1344 (292,6,5,5) P(c,f(g(f(b,a)),x),f(h,x)). ** KEPT: 1345 (292,6,5,4) P(c,f(g(f(b,a)),g(h)),e). >>>> Starting back demodulation with: 1309 (1308) EQUAL(f(c,g(f(b,a))),h). >> back demodulating: 303 (102,6,4,5) P(h,e,f(c,g(f(b,a)))). >> back demodulating: 825 (156,6,5,4) P(g(h),f(c,g(f(b,a))),e). new given clause: 304 (117,8,5) EQUAL(f(g(c),a),g(b)). ** KEPT: 1346 (304,17,31) EQUAL(g(f(g(c),a)),b). ---> New Demodulator: 1347 (1346) EQUAL(g(f(g(c),a)),b). ** KEPT: 1348 (304,16) EQUAL(f(x,f(g(c),a)),f(x,g(b))). ** KEPT: 1349 (304,15) EQUAL(f(f(g(c),a),x),f(g(b),x)). ** KEPT: 1350 (304,13,5) P(x,g(b),f(x,f(g(c),a))). ** KEPT: 1351 (304,12,5) P(g(b),x,f(f(g(c),a),x)). >>>> Starting back demodulation with: 1347 (1346) EQUAL(g(f(g(c),a)),b). >> back demodulating: 463 (35,7,3,5,27) P(e,b,g(f(g(c),a))). >> back demodulating: 468 (35,6,3,5,28) P(g(f(g(c),a)),e,b). new given clause: 307 (117,7,5,22) P(f(d,g(c)),a,h). ** KEPT: 1352 (307,8,5) EQUAL(f(f(d,g(c)),a),h). ---> New Demodulator: 1353 (1352) EQUAL(f(f(d,g(c)),a),h). ** KEPT: 1354 (307,7,5,284) P(f(f(d,g(c)),g(b)),f(b,a),h). ** KEPT: 1355 (307,7,5,271) P(f(f(d,g(c)),f(c,g(d))),h,h). ** KEPT: 1356 (307,7,5,135) P(f(f(d,g(c)),f(g(d),a)),b,h). ** KEPT: 1357 (307,7,5,115) P(f(f(d,g(c)),d),f(a,g(b)),h). ** KEPT: 1358 (307,7,5,77) P(f(f(d,g(c)),g(d)),c,h). ** KEPT: 1359 (307,7,5,38) P(f(f(d,g(c)),c),g(b),h). ** KEPT: 1360 (307,7,5,273) P(f(f(b,g(d)),f(d,g(c))),a,e). ** KEPT: 1361 (307,7,5,271) P(f(f(c,g(d)),f(d,g(c))),a,a). ** KEPT: 1362 (307,7,5,182) P(f(f(g(d),k),f(d,g(c))),a,e). ** KEPT: 1363 (307,7,5,180) P(f(f(g(h),k),f(d,g(c))),a,b). ** KEPT: 1364 (307,7,5,167) P(f(k,f(d,g(c))),a,d). ** KEPT: 1365 (307,7,5,90) P(f(g(d),f(d,g(c))),a,g(b)). ** KEPT: 1366 (307,7,5,5) P(f(x,f(d,g(c))),a,f(x,h)). ** KEPT: 1367 (307,7,5,3) P(f(g(h),f(d,g(c))),a,e). ** KEPT: 1368 (307,7,3,5) P(e,a,f(g(f(d,g(c))),h)). ** KEPT: 1369 (307,7,140,5) P(h,g(c),f(f(d,g(c)),g(d))). ** KEPT: 1370 (307,7,63,5) P(h,f(b,g(a)),f(f(d,g(c)),d)). ** KEPT: 1371 (307,7,20,5) P(h,b,f(f(d,g(c)),c)). ** KEPT: 1372 (307,7,5,5) P(h,x,f(f(d,g(c)),f(a,x))). ** KEPT: 1373 (307,6,5,5) P(d,f(g(c),a),h). ** KEPT: 1374 (307,6,5,5) P(x,h,f(f(x,f(d,g(c))),a)). ** KEPT: 1375 (307,6,3,5,28) P(g(f(d,g(c))),h,a). ** KEPT: 1376 (307,6,140,5) P(f(d,g(c)),g(d),f(h,g(c))). ** KEPT: 1377 (307,6,63,5) P(f(d,g(c)),d,f(h,f(b,g(a)))). ** KEPT: 1378 (307,6,42,5) P(f(d,g(c)),e,f(h,f(b,g(c)))). ** KEPT: 1379 (307,6,20,87) P(f(d,g(c)),c,d). ** KEPT: 1380 (307,6,5,200) P(f(d,g(c)),f(a,g(d)),g(k)). ** KEPT: 1381 (307,6,5,197) P(f(d,g(c)),f(a,a),f(g(k),c)). ** KEPT: 1382 (307,6,5,168) P(f(d,g(c)),f(a,f(b,g(h))),k). ** KEPT: 1383 (307,6,5,104) P(f(d,g(c)),f(a,f(b,g(d))),e). ** KEPT: 1384 (307,6,5,102) P(f(d,g(c)),f(a,f(b,a)),c). ** KEPT: 1385 (307,6,5,5) P(f(d,g(c)),f(a,x),f(h,x)). ** KEPT: 1386 (307,6,5,4) P(f(d,g(c)),f(a,g(h)),e). ** KEPT: 1387 (307,6,4,5) P(f(d,g(c)),e,f(h,g(a))). >>>> Starting back demodulation with: 1353 (1352) EQUAL(f(f(d,g(c)),a),h). new given clause: 309 (117,7,5,4) P(f(b,g(c)),a,e). ** KEPT: 1388 (309,8,5) EQUAL(f(f(b,g(c)),a),e). ---> New Demodulator: 1389 (1388) EQUAL(f(f(b,g(c)),a),e). ** KEPT: 1390 (309,7,5,284) P(f(f(b,g(c)),g(b)),f(b,a),e). ** KEPT: 1391 (309,7,5,271) P(f(f(b,g(c)),f(c,g(d))),h,e). ** KEPT: 1392 (309,7,5,135) P(f(f(b,g(c)),f(g(d),a)),b,e). ** KEPT: 1393 (309,7,5,115) P(f(f(b,g(c)),d),f(a,g(b)),e). ** KEPT: 1394 (309,7,5,77) P(f(f(b,g(c)),g(d)),c,e). ** KEPT: 1395 (309,7,5,38) P(f(f(b,g(c)),c),g(b),e). ** KEPT: 1396 (309,7,5,5,27) P(f(x,f(b,g(c))),a,x). ** KEPT: 1397 (309,7,3,5,27) P(e,a,g(f(b,g(c)))). ** KEPT: 1398 (309,7,140,5) P(e,g(c),f(f(b,g(c)),g(d))). ** KEPT: 1399 (309,7,63,5) P(e,f(b,g(a)),f(f(b,g(c)),d)). ** KEPT: 1400 (309,7,20,5) P(e,b,f(f(b,g(c)),c)). ** KEPT: 1401 (309,7,5,5) P(e,x,f(f(b,g(c)),f(a,x))). ** KEPT: 1402 (309,6,5,5) P(x,e,f(f(x,f(b,g(c))),a)). ** KEPT: 1403 (309,6,3,5,28) P(g(f(b,g(c))),e,a). ** KEPT: 1404 (309,6,140,5,28) P(f(b,g(c)),g(d),g(c)). ** KEPT: 1405 (309,6,20,5,28) P(f(b,g(c)),c,b). ** KEPT: 1406 (309,6,5,5,28) P(f(b,g(c)),f(a,x),x). >>>> Starting back demodulation with: 1389 (1388) EQUAL(f(f(b,g(c)),a),e). new given clause: 311 (117,7,4,5,27) P(g(b),g(a),g(c)). ** KEPT: 1407 (311,8,5) EQUAL(f(g(b),g(a)),g(c)). ** KEPT: 1408 (311,7,5,65) P(f(g(b),g(c)),d,g(c)). ** KEPT: 1409 (311,7,5,2) P(f(g(b),g(a)),e,g(c)). ** KEPT: 1410 (311,7,5,140) P(f(a,g(b)),g(a),g(d)). ** KEPT: 1411 (311,7,5,5) P(f(x,g(b)),g(a),f(x,g(c))). ** KEPT: 1412 (311,7,5,5) P(g(c),x,f(g(b),f(g(a),x))). ** KEPT: 1413 (311,6,90,5) P(g(d),f(h,g(a)),g(c)). ** KEPT: 1414 (311,6,1,5) P(e,f(g(b),g(a)),g(c)). ** KEPT: 1415 (311,6,5,5) P(x,g(c),f(f(x,g(b)),g(a))). ** KEPT: 1416 (311,6,5,260) P(g(b),f(g(a),f(c,b)),b). ** KEPT: 1417 (311,6,5,222) P(g(b),f(g(a),f(d,c)),b). ** KEPT: 1418 (311,6,5,65) P(g(b),f(g(a),d),g(a)). ** KEPT: 1419 (311,6,5,5) P(g(b),f(g(a),x),f(g(c),x)). new given clause: 317 (128,8,5) EQUAL(f(b,g(c)),g(a)). ** KEPT: 1420 (317,17,31) EQUAL(g(f(b,g(c))),a). ---> New Demodulator: 1421 (1420) EQUAL(g(f(b,g(c))),a). ** KEPT: 1422 (317,16) EQUAL(f(x,f(b,g(c))),f(x,g(a))). ** KEPT: 1423 (317,15) EQUAL(f(f(b,g(c)),x),f(g(a),x)). ** KEPT: 1424 (317,13,5) P(x,g(a),f(x,f(b,g(c)))). ** KEPT: 1425 (317,12,5) P(g(a),x,f(f(b,g(c)),x)). >>>> Starting back demodulation with: 1421 (1420) EQUAL(g(f(b,g(c))),a). >> back demodulating: 478 (42,7,4,5,27) P(e,g(f(b,g(c))),a). >> back demodulating: 485 (42,6,4,5,28) P(a,e,g(f(b,g(c)))). >> back demodulating: 1397 (309,7,3,5,27) P(e,a,g(f(b,g(c)))). >> back demodulating: 1403 (309,6,3,5,28) P(g(f(b,g(c))),e,a). new given clause: 320 (128,7,74,21) P(f(d,c),g(c),d). ** KEPT: 1426 (320,8,5) EQUAL(f(f(d,c),g(c)),d). ---> New Demodulator: 1427 (1426) EQUAL(f(f(d,c),g(c)),d). ** KEPT: 1428 (320,7,5,216) P(f(f(d,c),g(a)),g(d),d). ** KEPT: 1429 (320,7,5,212) P(f(f(a,g(c)),f(d,c)),g(c),e). ** KEPT: 1430 (320,7,5,186) P(f(g(k),f(d,c)),g(c),h). ** KEPT: 1431 (320,7,5,165) P(f(k,f(d,c)),g(c),f(d,b)). ** KEPT: 1432 (320,7,5,149) P(f(f(a,g(h)),f(d,c)),g(c),c). ** KEPT: 1433 (320,7,5,101) P(f(g(h),f(d,c)),g(c),b). ** KEPT: 1434 (320,7,5,5) P(f(x,f(d,c)),g(c),f(x,d)). ** KEPT: 1435 (320,7,3,5) P(e,g(c),f(g(f(d,c)),d)). ** KEPT: 1436 (320,7,260,5) P(d,f(c,b),f(f(d,c),b)). ** KEPT: 1437 (320,7,5,5) P(d,x,f(f(d,c),f(g(c),x))). ** KEPT: 1438 (320,6,5,5) P(x,d,f(f(x,f(d,c)),g(c))). ** KEPT: 1439 (320,6,3,5,28) P(g(f(d,c)),d,g(c)). ** KEPT: 1440 (320,6,260,5) P(f(d,c),b,f(d,f(c,b))). ** KEPT: 1441 (320,6,5,173) P(f(d,c),f(g(c),b),f(k,d)). ** KEPT: 1442 (320,6,5,115) P(f(d,c),f(g(c),f(a,g(b))),a). ** KEPT: 1443 (320,6,5,105) P(f(d,c),f(g(c),g(h)),k). ** KEPT: 1444 (320,6,5,80) P(f(d,c),f(g(c),f(a,g(c))),e). ** KEPT: 1445 (320,6,5,62) P(f(d,c),f(g(c),a),c). ** KEPT: 1446 (320,6,5,22) P(f(d,c),f(g(c),g(b)),h). ** KEPT: 1447 (320,6,5,5) P(f(d,c),f(g(c),x),f(d,x)). ** KEPT: 1448 (320,6,5,4) P(f(d,c),f(g(c),g(d)),e). >>>> Starting back demodulation with: 1427 (1426) EQUAL(f(f(d,c),g(c)),d). >> back demodulating: 327 (128,6,74,5) P(c,g(a),f(f(d,c),g(c))). >> back demodulating: 580 (110,7,5,117) P(f(f(d,c),g(c)),a,c). >> back demodulating: 1123 (222,6,5,128) P(g(c),f(f(d,c),g(c)),g(a)). >> back demodulating: 1148 (237,6,5,4) P(g(d),f(f(d,c),g(c)),e). new given clause: 331 (128,6,5,4,31) P(b,f(g(c),a),e). ** KEPT: 1449 (331,8,5) EQUAL(f(b,f(g(c),a)),e). ---> New Demodulator: 1450 (1449) EQUAL(f(b,f(g(c),a)),e). ** KEPT: 1451 (331,7,193,5,27) P(h,f(g(c),a),f(g(k),h)). ** KEPT: 1452 (331,7,173,5,27) P(f(k,d),f(g(c),a),d). ** KEPT: 1453 (331,7,97,5,27) P(e,f(g(c),a),f(g(d),h)). ** KEPT: 1454 (331,7,20,5,27) P(c,f(g(c),a),a). ** KEPT: 1455 (331,7,5,5,27) P(f(x,b),f(g(c),a),x). ** KEPT: 1456 (331,7,5,5) P(e,x,f(b,f(f(g(c),a),x))). ** KEPT: 1457 (331,6,260,5) P(g(c),f(f(c,b),f(g(c),a)),e). ** KEPT: 1458 (331,6,222,5) P(g(c),f(f(d,c),f(g(c),a)),e). ** KEPT: 1459 (331,6,180,5) P(f(g(h),k),f(h,f(g(c),a)),e). ** KEPT: 1460 (331,6,122,5) P(f(g(a),d),f(a,f(g(c),a)),e). ** KEPT: 1461 (331,6,101,5) P(g(h),f(d,f(g(c),a)),e). ** KEPT: 1462 (331,6,40,5) P(g(a),f(c,f(g(c),a)),e). ** KEPT: 1463 (331,6,193,5) P(f(g(k),h),e,f(h,f(g(c),a))). ** KEPT: 1464 (331,6,173,5) P(d,e,f(f(k,d),f(g(c),a))). ** KEPT: 1465 (331,6,135,5) P(f(g(d),a),e,f(a,f(g(c),a))). ** KEPT: 1466 (331,6,97,5,28) P(f(g(d),h),e,f(g(c),a)). ** KEPT: 1467 (331,6,87,5) P(h,e,f(d,f(g(c),a))). ** KEPT: 1468 (331,6,74,5) P(c,e,f(f(d,c),f(g(c),a))). ** KEPT: 1469 (331,6,20,5) P(a,e,f(c,f(g(c),a))). ** KEPT: 1470 (331,6,5,5) P(x,e,f(f(x,b),f(g(c),a))). ** KEPT: 1471 (331,6,5,5,28) P(b,f(f(g(c),a),x),x). >>>> Starting back demodulation with: 1450 (1449) EQUAL(f(b,f(g(c),a)),e). 1455 back subsumes: 1187 (255,6,5,62) P(f(c,b),f(g(c),a),c). new given clause: 332 (140,8,5) EQUAL(f(a,g(c)),g(d)). ** KEPT: 1472 (332,17,31) EQUAL(g(f(a,g(c))),d). ---> New Demodulator: 1473 (1472) EQUAL(g(f(a,g(c))),d). ** KEPT: 1474 (332,16) EQUAL(f(x,f(a,g(c))),f(x,g(d))). ** KEPT: 1475 (332,15) EQUAL(f(f(a,g(c)),x),f(g(d),x)). ** KEPT: 1476 (332,13,5) P(x,g(d),f(x,f(a,g(c)))). ** KEPT: 1477 (332,12,5) P(g(d),x,f(f(a,g(c)),x)). >>>> Starting back demodulation with: 1473 (1472) EQUAL(g(f(a,g(c))),d). >> back demodulating: 538 (80,7,4,5,27) P(e,g(f(a,g(c))),d). >> back demodulating: 549 (80,6,4,5,28) P(d,e,g(f(a,g(c)))). >> back demodulating: 1081 (212,7,3,5,27) P(e,d,g(f(a,g(c)))). >> back demodulating: 1090 (212,6,3,5,28) P(g(f(a,g(c))),e,d). new given clause: 345 (140,6,5,4,31) P(a,f(g(c),d),e). ** KEPT: 1478 (345,8,5) EQUAL(f(a,f(g(c),d)),e). ---> New Demodulator: 1479 (1478) EQUAL(f(a,f(g(c),d)),e). ** KEPT: 1480 (345,7,309,5,27) P(e,f(g(c),d),f(b,g(c))). ** KEPT: 1481 (345,7,307,5,27) P(h,f(g(c),d),f(d,g(c))). ** KEPT: 1482 (345,7,197,5,27) P(f(g(k),c),f(g(c),d),h). ** KEPT: 1483 (345,7,152,5,27) P(f(g(h),c),f(g(c),d),b). ** KEPT: 1484 (345,7,117,5,27) P(g(b),f(g(c),d),g(c)). ** KEPT: 1485 (345,7,62,5,27) P(c,f(g(c),d),d). ** KEPT: 1486 (345,7,5,5,27) P(f(x,a),f(g(c),d),x). ** KEPT: 1487 (345,7,5,5) P(e,x,f(a,f(f(g(c),d),x))). ** KEPT: 1488 (345,6,284,5) P(g(b),f(f(b,a),f(g(c),d)),e). ** KEPT: 1489 (345,6,271,5) P(f(c,g(d)),f(h,f(g(c),d)),e). ** KEPT: 1490 (345,6,135,5) P(f(g(d),a),f(b,f(g(c),d)),e). ** KEPT: 1491 (345,6,115,5) P(d,f(f(a,g(b)),f(g(c),d)),e). ** KEPT: 1492 (345,6,77,5) P(g(d),f(c,f(g(c),d)),e). ** KEPT: 1493 (345,6,38,5) P(c,f(g(b),f(g(c),d)),e). ** KEPT: 1494 (345,6,309,5,28) P(f(b,g(c)),e,f(g(c),d)). ** KEPT: 1495 (345,6,307,5) P(f(d,g(c)),e,f(h,f(g(c),d))). ** KEPT: 1496 (345,6,197,5) P(h,e,f(f(g(k),c),f(g(c),d))). ** KEPT: 1497 (345,6,152,5) P(b,e,f(f(g(h),c),f(g(c),d))). ** KEPT: 1498 (345,6,122,5) P(f(g(a),d),e,f(b,f(g(c),d))). ** KEPT: 1499 (345,6,117,5) P(g(c),e,f(g(b),f(g(c),d))). ** KEPT: 1500 (345,6,62,5) P(d,e,f(c,f(g(c),d))). ** KEPT: 1501 (345,6,5,5) P(x,e,f(f(x,a),f(g(c),d))). ** KEPT: 1502 (345,6,5,5,28) P(a,f(f(g(c),d),x),x). >>>> Starting back demodulation with: 1479 (1478) EQUAL(f(a,f(g(c),d)),e). new given clause: 346 (154,8,5) EQUAL(f(b,g(d)),g(h)). ** KEPT: 1503 (346,17,31) EQUAL(g(f(b,g(d))),h). ---> New Demodulator: 1504 (1503) EQUAL(g(f(b,g(d))),h). ** KEPT: 1505 (346,16) EQUAL(f(x,f(b,g(d))),f(x,g(h))). ** KEPT: 1506 (346,15) EQUAL(f(f(b,g(d)),x),f(g(h),x)). ** KEPT: 1507 (346,13,5) P(x,g(h),f(x,f(b,g(d)))). ** KEPT: 1508 (346,12,5) P(g(h),x,f(f(b,g(d)),x)). >>>> Starting back demodulation with: 1504 (1503) EQUAL(g(f(b,g(d))),h). >> back demodulating: 570 (104,7,4,5,27) P(e,g(f(b,g(d))),h). >> back demodulating: 577 (104,6,4,5,28) P(h,e,g(f(b,g(d)))). >> back demodulating: 1259 (273,7,3,5,27) P(e,h,g(f(b,g(d)))). >> back demodulating: 1267 (273,6,3,5,28) P(g(f(b,g(d))),e,h). new given clause: 351 (154,7,5,105) P(f(d,b),g(d),k). ** KEPT: 1509 (351,8,5) EQUAL(f(f(d,b),g(d)),k). ---> New Demodulator: 1510 (1509) EQUAL(f(f(d,b),g(d)),k). ** KEPT: 1511 (351,7,5,275) P(f(f(d,b),g(b)),g(h),k). ** KEPT: 1512 (351,7,5,140) P(f(f(d,b),a),g(c),k). ** KEPT: 1513 (351,7,5,172) P(f(g(d),f(d,b)),g(d),g(h)). ** KEPT: 1514 (351,7,5,5) P(f(x,f(d,b)),g(d),f(x,k)). ** KEPT: 1515 (351,7,3,5) P(e,g(d),f(g(f(d,b)),k)). ** KEPT: 1516 (351,7,5,5) P(k,x,f(f(d,b),f(g(d),x))). ** KEPT: 1517 (351,6,5,5) P(x,k,f(f(x,f(d,b)),g(d))). ** KEPT: 1518 (351,6,3,5,28) P(g(f(d,b)),k,g(d)). ** KEPT: 1519 (351,6,5,190) P(f(d,b),f(g(d),f(h,g(d))),e). ** KEPT: 1520 (351,6,5,188) P(f(d,b),f(g(d),f(h,g(b))),h). ** KEPT: 1521 (351,6,5,187) P(f(d,b),f(g(d),f(h,a)),c). ** KEPT: 1522 (351,6,5,167) P(f(d,b),f(g(d),h),d). ** KEPT: 1523 (351,6,5,5) P(f(d,b),f(g(d),x),f(k,x)). ** KEPT: 1524 (351,6,5,4) P(f(d,b),f(g(d),g(k)),e). >>>> Starting back demodulation with: 1510 (1509) EQUAL(f(f(d,b),g(d)),k). >> back demodulating: 385 (165,6,4,5) P(k,e,f(f(d,b),g(d))). >> back demodulating: 1063 (204,6,5,4) P(g(k),f(f(d,b),g(d)),e). new given clause: 362 (154,6,5,4,31) P(b,f(g(d),h),e). ** KEPT: 1525 (362,8,5) EQUAL(f(b,f(g(d),h)),e). ---> New Demodulator: 1526 (1525) EQUAL(f(b,f(g(d),h)),e). ** KEPT: 1527 (362,7,173,5,27) P(f(k,d),f(g(d),h),d). ** KEPT: 1528 (362,7,135,5,27) P(a,f(g(d),h),f(g(d),a)). ** KEPT: 1529 (362,7,87,5,27) P(d,f(g(d),h),h). ** KEPT: 1530 (362,7,74,5,27) P(f(d,c),f(g(d),h),c). ** KEPT: 1531 (362,7,35,5,27) P(e,f(g(d),h),f(g(c),a)). ** KEPT: 1532 (362,7,5,5,27) P(f(x,b),f(g(d),h),x). ** KEPT: 1533 (362,7,5,5) P(e,x,f(b,f(f(g(d),h),x))). ** KEPT: 1534 (362,6,260,5) P(g(c),f(f(c,b),f(g(d),h)),e). ** KEPT: 1535 (362,6,222,5) P(g(c),f(f(d,c),f(g(d),h)),e). ** KEPT: 1536 (362,6,180,5) P(f(g(h),k),f(h,f(g(d),h)),e). ** KEPT: 1537 (362,6,122,5) P(f(g(a),d),f(a,f(g(d),h)),e). ** KEPT: 1538 (362,6,101,5) P(g(h),f(d,f(g(d),h)),e). ** KEPT: 1539 (362,6,40,5) P(g(a),f(c,f(g(d),h)),e). ** KEPT: 1540 (362,6,193,5) P(f(g(k),h),e,f(h,f(g(d),h))). ** KEPT: 1541 (362,6,173,5) P(d,e,f(f(k,d),f(g(d),h))). ** KEPT: 1542 (362,6,135,5) P(f(g(d),a),e,f(a,f(g(d),h))). ** KEPT: 1543 (362,6,87,5) P(h,e,f(d,f(g(d),h))). ** KEPT: 1544 (362,6,74,5) P(c,e,f(f(d,c),f(g(d),h))). ** KEPT: 1545 (362,6,35,5,28) P(f(g(c),a),e,f(g(d),h)). ** KEPT: 1546 (362,6,20,5) P(a,e,f(c,f(g(d),h))). ** KEPT: 1547 (362,6,5,5) P(x,e,f(f(x,b),f(g(d),h))). ** KEPT: 1548 (362,6,5,5,28) P(b,f(f(g(d),h),x),x). >>>> Starting back demodulation with: 1526 (1525) EQUAL(f(b,f(g(d),h)),e). 1532 back subsumes: 1522 (351,6,5,167) P(f(d,b),f(g(d),h),d). new given clause: 363 (165,8,5) EQUAL(f(k,d),f(d,b)). ** KEPT: 1549 (363,17) EQUAL(g(f(k,d)),g(f(d,b))). ** KEPT: 1550 (363,16) EQUAL(f(x,f(k,d)),f(x,f(d,b))). ** KEPT: 1551 (363,15) EQUAL(f(f(k,d),x),f(f(d,b),x)). ** KEPT: 1552 (363,13,5) P(x,f(d,b),f(x,f(k,d))). ** KEPT: 1553 (363,13,3) P(g(f(k,d)),f(d,b),e). ** KEPT: 1554 (363,12,5) P(f(d,b),x,f(f(k,d),x)). ** KEPT: 1555 (363,12,4) P(f(d,b),g(f(k,d)),e). new given clause: 373 (165,7,22,167) P(f(d,b),g(b),d). ** KEPT: 1556 (373,8,5) EQUAL(f(f(d,b),g(b)),d). ---> New Demodulator: 1557 (1556) EQUAL(f(f(d,b),g(b)),d). ** KEPT: 1558 (373,7,5,117) P(f(f(d,b),g(c)),a,d). ** KEPT: 1559 (373,7,5,212) P(f(f(a,g(c)),f(d,b)),g(b),e). ** KEPT: 1560 (373,7,5,165) P(f(k,f(d,b)),g(b),f(d,b)). ** KEPT: 1561 (373,7,5,149) P(f(f(a,g(h)),f(d,b)),g(b),c). ** KEPT: 1562 (373,7,5,101) P(f(g(h),f(d,b)),g(b),b). ** KEPT: 1563 (373,7,5,65) P(f(g(c),f(d,b)),g(b),g(a)). ** KEPT: 1564 (373,7,5,5) P(f(x,f(d,b)),g(b),f(x,d)). ** KEPT: 1565 (373,7,5,3) P(f(g(d),f(d,b)),g(b),e). ** KEPT: 1566 (373,7,3,5) P(e,g(b),f(g(f(d,b)),d)). ** KEPT: 1567 (373,7,284,5) P(d,f(b,a),f(f(d,b),a)). ** KEPT: 1568 (373,7,5,5) P(d,x,f(f(d,b),f(g(b),x))). ** KEPT: 1569 (373,6,5,5) P(x,d,f(f(x,f(d,b)),g(b))). ** KEPT: 1570 (373,6,3,5,28) P(g(f(d,b)),d,g(b)). ** KEPT: 1571 (373,6,284,5) P(f(d,b),a,f(d,f(b,a))). ** KEPT: 1572 (373,6,5,115) P(f(d,b),f(g(b),f(a,g(b))),a). ** KEPT: 1573 (373,6,5,105) P(f(d,b),f(g(b),g(h)),k). ** KEPT: 1574 (373,6,5,80) P(f(d,b),f(g(b),f(a,g(c))),e). ** KEPT: 1575 (373,6,5,78) P(f(d,b),f(g(b),c),f(c,b)). ** KEPT: 1576 (373,6,5,62) P(f(d,b),f(g(b),a),c). ** KEPT: 1577 (373,6,5,22) P(f(d,b),f(g(b),g(b)),h). ** KEPT: 1578 (373,6,5,5) P(f(d,b),f(g(b),x),f(d,x)). ** KEPT: 1579 (373,6,5,4) P(f(d,b),f(g(b),g(d)),e). >>>> Starting back demodulation with: 1557 (1556) EQUAL(f(f(d,b),g(b)),d). >> back demodulating: 382 (165,6,22,5) P(k,h,f(f(d,b),g(b))). >> back demodulating: 1061 (204,6,5,22) P(g(k),f(f(d,b),g(b)),h). >> back demodulating: 1511 (351,7,5,275) P(f(f(d,b),g(b)),g(h),k). new given clause: 386 (172,8,5) EQUAL(f(g(d),k),g(h)). ** KEPT: 1580 (386,17,31) EQUAL(g(f(g(d),k)),h). ---> New Demodulator: 1581 (1580) EQUAL(g(f(g(d),k)),h). ** KEPT: 1582 (386,16) EQUAL(f(x,f(g(d),k)),f(x,g(h))). ** KEPT: 1583 (386,15) EQUAL(f(f(g(d),k),x),f(g(h),x)). ** KEPT: 1584 (386,13,5) P(x,g(h),f(x,f(g(d),k))). ** KEPT: 1585 (386,12,5) P(g(h),x,f(f(g(d),k),x)). >>>> Starting back demodulation with: 1581 (1580) EQUAL(g(f(g(d),k)),h). >> back demodulating: 909 (182,7,3,5,27) P(e,h,g(f(g(d),k))). >> back demodulating: 917 (182,6,3,5,28) P(g(f(g(d),k)),e,h). new given clause: 389 (172,7,5,4) P(f(h,g(d)),k,e). ** KEPT: 1586 (389,8,5) EQUAL(f(f(h,g(d)),k),e). ---> New Demodulator: 1587 (1586) EQUAL(f(f(h,g(d)),k),e). ** KEPT: 1588 (389,7,5,351) P(f(f(h,g(d)),f(d,b)),g(d),e). ** KEPT: 1589 (389,7,5,168) P(f(f(h,g(d)),h),f(b,g(h)),e). ** KEPT: 1590 (389,7,5,105) P(f(f(h,g(d)),d),g(h),e). ** KEPT: 1591 (389,7,5,5,27) P(f(x,f(h,g(d))),k,x). ** KEPT: 1592 (389,7,3,5,27) P(e,k,g(f(h,g(d)))). ** KEPT: 1593 (389,7,188,5) P(e,f(h,g(b)),f(f(h,g(d)),h)). ** KEPT: 1594 (389,7,187,5) P(e,f(h,a),f(f(h,g(d)),c)). ** KEPT: 1595 (389,7,167,5) P(e,h,f(f(h,g(d)),d)). ** KEPT: 1596 (389,7,165,5) P(e,d,f(f(h,g(d)),f(d,b))). ** KEPT: 1597 (389,7,5,5) P(e,x,f(f(h,g(d)),f(k,x))). ** KEPT: 1598 (389,6,5,5) P(x,e,f(f(x,f(h,g(d))),k)). ** KEPT: 1599 (389,6,3,5,28) P(g(f(h,g(d))),e,k). ** KEPT: 1600 (389,6,167,5,28) P(f(h,g(d)),d,h). ** KEPT: 1601 (389,6,165,5,28) P(f(h,g(d)),f(d,b),d). ** KEPT: 1602 (389,6,5,5,28) P(f(h,g(d)),f(k,x),x). >>>> Starting back demodulation with: 1587 (1586) EQUAL(f(f(h,g(d)),k),e). new given clause: 392 (172,7,4,5,27) P(g(h),g(k),g(d)). ** KEPT: 1603 (392,8,5) EQUAL(f(g(h),g(k)),g(d)). ** KEPT: 1604 (392,7,5,2) P(f(g(h),g(k)),e,g(d)). ** KEPT: 1605 (392,7,5,351) P(f(f(d,b),g(h)),g(k),k). ** KEPT: 1606 (392,7,5,216) P(f(g(a),g(h)),g(k),g(c)). ** KEPT: 1607 (392,7,5,154) P(f(b,g(h)),g(k),g(h)). ** KEPT: 1608 (392,7,5,5) P(f(x,g(h)),g(k),f(x,g(d))). ** KEPT: 1609 (392,7,5,5) P(g(d),x,f(g(h),f(g(k),x))). ** KEPT: 1610 (392,6,154,5) P(b,f(g(d),g(k)),g(d)). ** KEPT: 1611 (392,6,1,5) P(e,f(g(h),g(k)),g(d)). ** KEPT: 1612 (392,6,5,5) P(x,g(d),f(f(x,g(h)),g(k))). ** KEPT: 1613 (392,6,5,237) P(g(h),f(g(k),f(d,c)),c). ** KEPT: 1614 (392,6,5,143) P(g(h),f(g(k),f(c,b)),c). ** KEPT: 1615 (392,6,5,90) P(g(h),f(g(k),h),g(b)). ** KEPT: 1616 (392,6,5,5) P(g(h),f(g(k),x),f(g(d),x)). new given clause: 397 (172,6,165,101) P(g(d),f(d,b),b). ** KEPT: 1617 (397,8,5) EQUAL(f(g(d),f(d,b)),b). ---> New Demodulator: 1618 (1617) EQUAL(f(g(d),f(d,b)),b). ** KEPT: 1619 (397,7,5,193) P(f(f(g(k),h),g(d)),f(d,b),h). ** KEPT: 1620 (397,7,5,135) P(f(f(g(d),a),g(d)),f(d,b),a). ** KEPT: 1621 (397,7,5,97) P(f(f(g(d),h),g(d)),f(d,b),e). ** KEPT: 1622 (397,7,5,74) P(f(c,g(d)),f(d,b),f(d,c)). ** KEPT: 1623 (397,7,5,35) P(f(f(g(c),a),g(d)),f(d,b),e). ** KEPT: 1624 (397,7,5,20) P(f(a,g(d)),f(d,b),c). ** KEPT: 1625 (397,7,5,5) P(f(x,g(d)),f(d,b),f(x,b)). ** KEPT: 1626 (397,7,5,3) P(f(g(b),g(d)),f(d,b),e). ** KEPT: 1627 (397,7,351,5) P(b,g(d),f(g(d),k)). ** KEPT: 1628 (397,7,5,5) P(b,x,f(g(d),f(f(d,b),x))). ** KEPT: 1629 (397,7,4,5,27) P(b,g(f(d,b)),g(d)). ** KEPT: 1630 (397,6,275,5) P(g(b),f(g(h),f(d,b)),b). ** KEPT: 1631 (397,6,140,5) P(a,f(g(c),f(d,b)),b). ** KEPT: 1632 (397,6,5,5) P(x,b,f(f(x,g(d)),f(d,b))). ** KEPT: 1633 (397,6,351,5) P(g(d),k,f(b,g(d))). ** KEPT: 1634 (397,6,5,362) P(g(d),f(f(d,b),f(g(d),h)),e). ** KEPT: 1635 (397,6,5,331) P(g(d),f(f(d,b),f(g(c),a)),e). ** KEPT: 1636 (397,6,5,152) P(g(d),f(f(d,b),a),f(g(h),c)). ** KEPT: 1637 (397,6,5,128) P(g(d),f(f(d,b),g(c)),g(a)). ** KEPT: 1638 (397,6,5,5) P(g(d),f(f(d,b),x),f(b,x)). ** KEPT: 1639 (397,6,4,5) P(g(d),e,f(b,g(f(d,b)))). >>>> Starting back demodulation with: 1618 (1617) EQUAL(f(g(d),f(d,b)),b). >> back demodulating: 390 (172,7,165,5) P(g(h),d,f(g(d),f(d,b))). >> back demodulating: 1053 (204,6,200,5) P(h,f(g(d),f(d,b)),d). >> back demodulating: 1513 (351,7,5,172) P(f(g(d),f(d,b)),g(d),g(h)). >> back demodulating: 1565 (373,7,5,3) P(f(g(d),f(d,b)),g(b),e). new given clause: 398 (172,6,5,101) P(g(d),f(k,d),b). ** KEPT: 1640 (398,8,5) EQUAL(f(g(d),f(k,d)),b). ---> New Demodulator: 1641 (1640) EQUAL(f(g(d),f(k,d)),b). ** KEPT: 1642 (398,7,5,193) P(f(f(g(k),h),g(d)),f(k,d),h). ** KEPT: 1643 (398,7,5,135) P(f(f(g(d),a),g(d)),f(k,d),a). ** KEPT: 1644 (398,7,5,97) P(f(f(g(d),h),g(d)),f(k,d),e). ** KEPT: 1645 (398,7,5,74) P(f(c,g(d)),f(k,d),f(d,c)). ** KEPT: 1646 (398,7,5,35) P(f(f(g(c),a),g(d)),f(k,d),e). ** KEPT: 1647 (398,7,5,20) P(f(a,g(d)),f(k,d),c). ** KEPT: 1648 (398,7,5,5) P(f(x,g(d)),f(k,d),f(x,b)). ** KEPT: 1649 (398,7,5,3) P(f(g(b),g(d)),f(k,d),e). ** KEPT: 1650 (398,7,5,5) P(b,x,f(g(d),f(f(k,d),x))). ** KEPT: 1651 (398,7,4,5,27) P(b,g(f(k,d)),g(d)). ** KEPT: 1652 (398,6,392,5) P(g(h),f(g(k),f(k,d)),b). ** KEPT: 1653 (398,6,275,5) P(g(b),f(g(h),f(k,d)),b). ** KEPT: 1654 (398,6,140,5) P(a,f(g(c),f(k,d)),b). ** KEPT: 1655 (398,6,5,5) P(x,b,f(f(x,g(d)),f(k,d))). ** KEPT: 1656 (398,6,5,362) P(g(d),f(f(k,d),f(g(d),h)),e). ** KEPT: 1657 (398,6,5,331) P(g(d),f(f(k,d),f(g(c),a)),e). ** KEPT: 1658 (398,6,5,154) P(g(d),f(f(k,d),g(d)),g(h)). ** KEPT: 1659 (398,6,5,152) P(g(d),f(f(k,d),a),f(g(h),c)). ** KEPT: 1660 (398,6,5,128) P(g(d),f(f(k,d),g(c)),g(a)). ** KEPT: 1661 (398,6,5,5) P(g(d),f(f(k,d),x),f(b,x)). ** KEPT: 1662 (398,6,4,5) P(g(d),e,f(b,g(f(k,d)))). >>>> Starting back demodulation with: 1641 (1640) EQUAL(f(g(d),f(k,d)),b). >> back demodulating: 408 (173,7,3,5) P(e,b,f(g(d),f(k,d))). >> back demodulating: 858 (179,7,5,3) P(f(g(d),f(k,d)),g(b),e). new given clause: 409 (173,7,154,105) P(f(k,d),g(d),k). ** KEPT: 1663 (409,8,5) EQUAL(f(f(k,d),g(d)),k). ---> New Demodulator: 1664 (1663) EQUAL(f(f(k,d),g(d)),k). ** KEPT: 1665 (409,7,5,392) P(f(f(k,d),g(h)),g(k),k). ** KEPT: 1666 (409,7,5,140) P(f(f(k,d),a),g(c),k). ** KEPT: 1667 (409,7,5,389) P(f(f(h,g(d)),f(k,d)),g(d),e). ** KEPT: 1668 (409,7,5,5) P(f(x,f(k,d)),g(d),f(x,k)). ** KEPT: 1669 (409,7,5,3) P(f(g(k),f(k,d)),g(d),e). ** KEPT: 1670 (409,7,3,5) P(e,g(d),f(g(f(k,d)),k)). ** KEPT: 1671 (409,7,397,5) P(k,f(d,b),f(f(k,d),b)). ** KEPT: 1672 (409,7,237,5) P(k,f(d,c),f(f(k,d),c)). ** KEPT: 1673 (409,7,5,5) P(k,x,f(f(k,d),f(g(d),x))). ** KEPT: 1674 (409,6,5,5) P(x,k,f(f(x,f(k,d)),g(d))). ** KEPT: 1675 (409,6,3,5,28) P(g(f(k,d)),k,g(d)). ** KEPT: 1676 (409,6,397,5) P(f(k,d),b,f(k,f(d,b))). ** KEPT: 1677 (409,6,237,5) P(f(k,d),c,f(k,f(d,c))). ** KEPT: 1678 (409,6,5,190) P(f(k,d),f(g(d),f(h,g(d))),e). ** KEPT: 1679 (409,6,5,188) P(f(k,d),f(g(d),f(h,g(b))),h). ** KEPT: 1680 (409,6,5,187) P(f(k,d),f(g(d),f(h,a)),c). ** KEPT: 1681 (409,6,5,5) P(f(k,d),f(g(d),x),f(k,x)). ** KEPT: 1682 (409,6,5,4) P(f(k,d),f(g(d),g(k)),e). >>>> Starting back demodulation with: 1664 (1663) EQUAL(f(f(k,d),g(d)),k). >> back demodulating: 419 (173,6,154,5) P(d,g(h),f(f(k,d),g(d))). >> back demodulating: 851 (179,7,5,90) P(f(f(k,d),g(d)),h,d). >> back demodulating: 1658 (398,6,5,154) P(g(d),f(f(k,d),g(d)),g(h)). new given clause: 414 (173,6,186,87) P(g(k),f(k,d),d). ** KEPT: 1683 (414,8,5) EQUAL(f(g(k),f(k,d)),d). ---> New Demodulator: 1684 (1683) EQUAL(f(g(k),f(k,d)),d). ** KEPT: 1685 (414,7,5,212) P(f(f(a,g(c)),g(k)),f(k,d),e). ** KEPT: 1686 (414,7,5,186) P(f(g(k),g(k)),f(k,d),h). ** KEPT: 1687 (414,7,5,149) P(f(f(a,g(h)),g(k)),f(k,d),c). ** KEPT: 1688 (414,7,5,101) P(f(g(h),g(k)),f(k,d),b). ** KEPT: 1689 (414,7,5,65) P(f(g(c),g(k)),f(k,d),g(a)). ** KEPT: 1690 (414,7,5,5) P(f(x,g(k)),f(k,d),f(x,d)). ** KEPT: 1691 (414,7,5,3) P(f(g(d),g(k)),f(k,d),e). ** KEPT: 1692 (414,7,5,5) P(d,x,f(g(k),f(f(k,d),x))). ** KEPT: 1693 (414,7,4,5,27) P(d,g(f(k,d)),g(k)). ** KEPT: 1694 (414,6,5,5) P(x,d,f(f(x,g(k)),f(k,d))). ** KEPT: 1695 (414,6,5,173) P(g(k),f(f(k,d),b),f(k,d)). ** KEPT: 1696 (414,6,5,115) P(g(k),f(f(k,d),f(a,g(b))),a). ** KEPT: 1697 (414,6,5,105) P(g(k),f(f(k,d),g(h)),k). ** KEPT: 1698 (414,6,5,80) P(g(k),f(f(k,d),f(a,g(c))),e). ** KEPT: 1699 (414,6,5,78) P(g(k),f(f(k,d),c),f(c,b)). ** KEPT: 1700 (414,6,5,62) P(g(k),f(f(k,d),a),c). ** KEPT: 1701 (414,6,5,5) P(g(k),f(f(k,d),x),f(d,x)). ** KEPT: 1702 (414,6,4,5) P(g(k),e,f(d,g(f(k,d)))). >>>> Starting back demodulation with: 1684 (1683) EQUAL(f(g(k),f(k,d)),d). >> back demodulating: 402 (173,7,186,5) P(h,b,f(g(k),f(k,d))). >> back demodulating: 852 (179,7,5,186) P(f(g(k),f(k,d)),g(b),h). >> back demodulating: 1652 (398,6,392,5) P(g(h),f(g(k),f(k,d)),b). >> back demodulating: 1669 (409,7,5,3) P(f(g(k),f(k,d)),g(d),e). new given clause: 424 (187,8,5) EQUAL(f(k,f(h,a)),c). new given clause: 426 (187,7,172,77) P(g(h),f(h,a),a). ** KEPT: 1703 (426,8,5) EQUAL(f(g(h),f(h,a)),a). ---> New Demodulator: 1704 (1703) EQUAL(f(g(h),f(h,a)),a). ** KEPT: 1705 (426,7,5,202) P(f(g(h),g(k)),c,a). ** KEPT: 1706 (426,7,5,309) P(f(f(b,g(c)),g(h)),f(h,a),e). ** KEPT: 1707 (426,7,5,307) P(f(f(d,g(c)),g(h)),f(h,a),h). ** KEPT: 1708 (426,7,5,152) P(f(b,g(h)),f(h,a),f(g(h),c)). ** KEPT: 1709 (426,7,5,122) P(f(f(g(a),d),g(h)),f(h,a),b). ** KEPT: 1710 (426,7,5,117) P(f(g(c),g(h)),f(h,a),g(b)). ** KEPT: 1711 (426,7,5,72) P(f(f(g(c),d),g(h)),f(h,a),e). ** KEPT: 1712 (426,7,5,5) P(f(x,g(h)),f(h,a),f(x,a)). ** KEPT: 1713 (426,7,5,3) P(f(g(a),g(h)),f(h,a),e). ** KEPT: 1714 (426,7,5,5) P(a,x,f(g(h),f(f(h,a),x))). ** KEPT: 1715 (426,7,4,5,27) P(a,g(f(h,a)),g(h)). ** KEPT: 1716 (426,6,154,5) P(b,f(g(d),f(h,a)),a). ** KEPT: 1717 (426,6,5,5) P(x,a,f(f(x,g(h)),f(h,a))). ** KEPT: 1718 (426,6,5,345) P(g(h),f(f(h,a),f(g(c),d)),e). ** KEPT: 1719 (426,6,5,140) P(g(h),f(f(h,a),g(c)),g(d)). ** KEPT: 1720 (426,6,5,63) P(g(h),f(f(h,a),f(b,g(a))),d). ** KEPT: 1721 (426,6,5,42) P(g(h),f(f(h,a),f(b,g(c))),e). ** KEPT: 1722 (426,6,5,20) P(g(h),f(f(h,a),b),c). ** KEPT: 1723 (426,6,5,5) P(g(h),f(f(h,a),x),f(a,x)). ** KEPT: 1724 (426,6,5,4) P(g(h),f(f(h,a),g(a)),e). ** KEPT: 1725 (426,6,4,5) P(g(h),e,f(a,g(f(h,a)))). >>>> Starting back demodulation with: 1704 (1703) EQUAL(f(g(h),f(h,a)),a). >> back demodulating: 435 (187,6,105,5) P(d,f(g(h),f(h,a)),c). >> back demodulating: 436 (187,6,172,5) P(g(d),c,f(g(h),f(h,a))). new given clause: 434 (187,7,4,5,27) P(c,g(f(h,a)),k). ** KEPT: 1726 (434,8,5) EQUAL(f(c,g(f(h,a))),k). ---> New Demodulator: 1727 (1726) EQUAL(f(c,g(f(h,a))),k). ** KEPT: 1728 (434,7,156,5) P(f(b,a),g(f(h,a)),f(g(h),k)). ** KEPT: 1729 (434,7,123,5) P(d,g(f(h,a)),f(f(h,g(a)),k)). ** KEPT: 1730 (434,7,78,5) P(f(c,b),g(f(h,a)),f(d,k)). ** KEPT: 1731 (434,7,77,5) P(a,g(f(h,a)),f(g(d),k)). ** KEPT: 1732 (434,7,40,5) P(b,g(f(h,a)),f(g(a),k)). ** KEPT: 1733 (434,7,5,389) P(f(f(h,g(d)),c),g(f(h,a)),e). ** KEPT: 1734 (434,7,5,5) P(f(x,c),g(f(h,a)),f(x,k)). ** KEPT: 1735 (434,7,5,3) P(f(g(k),c),g(f(h,a)),e). ** KEPT: 1736 (434,7,3,5) P(e,g(f(h,a)),f(g(c),k)). ** KEPT: 1737 (434,7,5,5) P(k,x,f(c,f(g(f(h,a)),x))). ** KEPT: 1738 (434,6,252,5) P(f(c,b),f(g(b),g(f(h,a))),k). ** KEPT: 1739 (434,6,237,5) P(g(d),f(f(d,c),g(f(h,a))),k). ** KEPT: 1740 (434,6,149,5) P(f(a,g(h)),f(d,g(f(h,a))),k). ** KEPT: 1741 (434,6,143,5) P(g(d),f(f(c,b),g(f(h,a))),k). ** KEPT: 1742 (434,6,110,5) P(f(d,c),f(g(b),g(f(h,a))),k). ** KEPT: 1743 (434,6,102,5) P(h,f(f(b,a),g(f(h,a))),k). ** KEPT: 1744 (434,6,62,5) P(d,f(a,g(f(h,a))),k). ** KEPT: 1745 (434,6,20,5) P(a,f(b,g(f(h,a))),k). ** KEPT: 1746 (434,6,156,5) P(g(h),k,f(f(b,a),g(f(h,a)))). ** KEPT: 1747 (434,6,123,5) P(f(h,g(a)),k,f(d,g(f(h,a)))). ** KEPT: 1748 (434,6,78,5) P(d,k,f(f(c,b),g(f(h,a)))). ** KEPT: 1749 (434,6,77,5) P(g(d),k,f(a,g(f(h,a)))). ** KEPT: 1750 (434,6,40,5) P(g(a),k,f(b,g(f(h,a)))). ** KEPT: 1751 (434,6,5,5) P(x,k,f(f(x,c),g(f(h,a)))). ** KEPT: 1752 (434,6,3,5,28) P(g(c),k,g(f(h,a))). ** KEPT: 1753 (434,6,5,190) P(c,f(g(f(h,a)),f(h,g(d))),e). ** KEPT: 1754 (434,6,5,188) P(c,f(g(f(h,a)),f(h,g(b))),h). ** KEPT: 1755 (434,6,5,167) P(c,f(g(f(h,a)),h),d). ** KEPT: 1756 (434,6,5,165) P(c,f(g(f(h,a)),d),f(d,b)). ** KEPT: 1757 (434,6,5,5) P(c,f(g(f(h,a)),x),f(k,x)). ** KEPT: 1758 (434,6,5,4) P(c,f(g(f(h,a)),g(k)),e). >>>> Starting back demodulation with: 1727 (1726) EQUAL(f(c,g(f(h,a))),k). >> back demodulating: 443 (187,6,4,5) P(k,e,f(c,g(f(h,a)))). >> back demodulating: 1041 (202,6,5,4) P(g(k),f(c,g(f(h,a))),e). new given clause: 444 (200,8,5) EQUAL(f(h,g(d)),g(k)). ** KEPT: 1759 (444,17,31) EQUAL(g(f(h,g(d))),k). ---> New Demodulator: 1760 (1759) EQUAL(g(f(h,g(d))),k). ** KEPT: 1761 (444,16) EQUAL(f(x,f(h,g(d))),f(x,g(k))). ** KEPT: 1762 (444,15) EQUAL(f(f(h,g(d)),x),f(g(k),x)). ** KEPT: 1763 (444,13,5) P(x,g(k),f(x,f(h,g(d)))). ** KEPT: 1764 (444,12,5) P(g(k),x,f(f(h,g(d)),x)). >>>> Starting back demodulation with: 1760 (1759) EQUAL(g(f(h,g(d))),k). >> back demodulating: 952 (190,7,4,5,27) P(e,g(f(h,g(d))),k). >> back demodulating: 958 (190,6,4,5,28) P(k,e,g(f(h,g(d)))). >> back demodulating: 1592 (389,7,3,5,27) P(e,k,g(f(h,g(d)))). >> back demodulating: 1599 (389,6,3,5,28) P(g(f(h,g(d))),e,k). new given clause: 457 (200,6,5,4,31) P(h,f(g(d),k),e). ** KEPT: 1765 (457,8,5) EQUAL(f(h,f(g(d),k)),e). ---> New Demodulator: 1766 (1765) EQUAL(f(h,f(g(d),k)),e). ** KEPT: 1767 (457,7,273,5,27) P(e,f(g(d),k),f(b,g(d))). ** KEPT: 1768 (457,7,271,5,27) P(a,f(g(d),k),f(c,g(d))). ** KEPT: 1769 (457,7,167,5,27) P(d,f(g(d),k),k). ** KEPT: 1770 (457,7,90,5,27) P(g(b),f(g(d),k),g(d)). ** KEPT: 1771 (457,7,5,5,27) P(f(x,h),f(g(d),k),x). ** KEPT: 1772 (457,7,5,5) P(e,x,f(h,f(f(g(d),k),x))). ** KEPT: 1773 (457,6,307,5) P(f(d,g(c)),f(a,f(g(d),k)),e). ** KEPT: 1774 (457,6,292,5) P(c,f(g(f(b,a)),f(g(d),k)),e). ** KEPT: 1775 (457,6,193,5) P(f(g(k),h),f(b,f(g(d),k)),e). ** KEPT: 1776 (457,6,188,5) P(k,f(f(h,g(b)),f(g(d),k)),e). ** KEPT: 1777 (457,6,186,5) P(g(k),f(d,f(g(d),k)),e). ** KEPT: 1778 (457,6,22,5) P(d,f(g(b),f(g(d),k)),e). ** KEPT: 1779 (457,6,273,5,28) P(f(b,g(d)),e,f(g(d),k)). ** KEPT: 1780 (457,6,271,5) P(f(c,g(d)),e,f(a,f(g(d),k))). ** KEPT: 1781 (457,6,180,5) P(f(g(h),k),e,f(b,f(g(d),k))). ** KEPT: 1782 (457,6,167,5) P(k,e,f(d,f(g(d),k))). ** KEPT: 1783 (457,6,90,5) P(g(d),e,f(g(b),f(g(d),k))). ** KEPT: 1784 (457,6,5,5) P(x,e,f(f(x,h),f(g(d),k))). ** KEPT: 1785 (457,6,5,5,28) P(h,f(f(g(d),k),x),x). >>>> Starting back demodulation with: 1766 (1765) EQUAL(f(h,f(g(d),k)),e). new given clause: 475 (42,7,62,5,27) P(c,f(b,g(c)),d). ** KEPT: 1786 (475,8,5) EQUAL(f(c,f(b,g(c))),d). ---> New Demodulator: 1787 (1786) EQUAL(f(c,f(b,g(c))),d). ** KEPT: 1788 (475,7,123,5) P(d,f(b,g(c)),f(f(h,g(a)),d)). ** KEPT: 1789 (475,7,78,5) P(f(c,b),f(b,g(c)),f(d,d)). ** KEPT: 1790 (475,7,5,212) P(f(f(a,g(c)),c),f(b,g(c)),e). ** KEPT: 1791 (475,7,5,165) P(f(k,c),f(b,g(c)),f(d,b)). ** KEPT: 1792 (475,7,5,149) P(f(f(a,g(h)),c),f(b,g(c)),c). ** KEPT: 1793 (475,7,5,5) P(f(x,c),f(b,g(c)),f(x,d)). ** KEPT: 1794 (475,7,5,5) P(d,x,f(c,f(f(b,g(c)),x))). ** KEPT: 1795 (475,6,252,5) P(f(c,b),f(g(b),f(b,g(c))),d). ** KEPT: 1796 (475,6,237,5) P(g(d),f(f(d,c),f(b,g(c))),d). ** KEPT: 1797 (475,6,187,5) P(k,f(f(h,a),f(b,g(c))),d). ** KEPT: 1798 (475,6,149,5) P(f(a,g(h)),f(d,f(b,g(c))),d). ** KEPT: 1799 (475,6,143,5) P(g(d),f(f(c,b),f(b,g(c))),d). ** KEPT: 1800 (475,6,110,5) P(f(d,c),f(g(b),f(b,g(c))),d). ** KEPT: 1801 (475,6,102,5) P(h,f(f(b,a),f(b,g(c))),d). ** KEPT: 1802 (475,6,20,5) P(a,f(b,f(b,g(c))),d). ** KEPT: 1803 (475,6,202,5) P(g(k),d,f(f(h,a),f(b,g(c)))). ** KEPT: 1804 (475,6,156,5) P(g(h),d,f(f(b,a),f(b,g(c)))). ** KEPT: 1805 (475,6,123,5) P(f(h,g(a)),d,f(d,f(b,g(c)))). ** KEPT: 1806 (475,6,78,5) P(d,d,f(f(c,b),f(b,g(c)))). ** KEPT: 1807 (475,6,40,5) P(g(a),d,f(b,f(b,g(c)))). ** KEPT: 1808 (475,6,5,5) P(x,d,f(f(x,c),f(b,g(c)))). ** KEPT: 1809 (475,6,5,173) P(c,f(f(b,g(c)),b),f(k,d)). ** KEPT: 1810 (475,6,5,115) P(c,f(f(b,g(c)),f(a,g(b))),a). ** KEPT: 1811 (475,6,5,105) P(c,f(f(b,g(c)),g(h)),k). ** KEPT: 1812 (475,6,5,80) P(c,f(f(b,g(c)),f(a,g(c))),e). ** KEPT: 1813 (475,6,5,78) P(c,f(f(b,g(c)),c),f(c,b)). ** KEPT: 1814 (475,6,5,22) P(c,f(f(b,g(c)),g(b)),h). ** KEPT: 1815 (475,6,5,5) P(c,f(f(b,g(c)),x),f(d,x)). ** KEPT: 1816 (475,6,5,4) P(c,f(f(b,g(c)),g(d)),e). >>>> Starting back demodulation with: 1787 (1786) EQUAL(f(c,f(b,g(c))),d). >> back demodulating: 479 (42,6,77,5) P(g(d),f(c,f(b,g(c))),e). >> back demodulating: 482 (42,6,62,5) P(d,e,f(c,f(b,g(c)))). new given clause: 528 (72,6,20,5,28) P(f(g(c),d),c,b). ** KEPT: 1817 (528,8,5) EQUAL(f(f(g(c),d),c),b). ---> New Demodulator: 1818 (1817) EQUAL(f(f(g(c),d),c),b). ** KEPT: 1819 (528,7,5,252) P(f(f(g(c),d),f(c,b)),g(b),b). ** KEPT: 1820 (528,7,5,237) P(f(f(g(c),d),g(d)),f(d,c),b). ** KEPT: 1821 (528,7,5,187) P(f(f(g(c),d),k),f(h,a),b). ** KEPT: 1822 (528,7,5,149) P(f(f(g(c),d),f(a,g(h))),d,b). ** KEPT: 1823 (528,7,5,143) P(f(f(g(c),d),g(d)),f(c,b),b). ** KEPT: 1824 (528,7,5,110) P(f(f(g(c),d),f(d,c)),g(b),b). ** KEPT: 1825 (528,7,5,102) P(f(f(g(c),d),h),f(b,a),b). ** KEPT: 1826 (528,7,5,62) P(f(f(g(c),d),d),a,b). ** KEPT: 1827 (528,7,5,193) P(f(f(g(k),h),f(g(c),d)),c,h). ** KEPT: 1828 (528,7,5,173) P(f(d,f(g(c),d)),c,f(k,d)). ** KEPT: 1829 (528,7,5,135) P(f(f(g(d),a),f(g(c),d)),c,a). ** KEPT: 1830 (528,7,5,97) P(f(f(g(d),h),f(g(c),d)),c,e). ** KEPT: 1831 (528,7,5,87) P(f(h,f(g(c),d)),c,d). ** KEPT: 1832 (528,7,5,74) P(f(c,f(g(c),d)),c,f(d,c)). ** KEPT: 1833 (528,7,5,35) P(f(f(g(c),a),f(g(c),d)),c,e). ** KEPT: 1834 (528,7,5,5) P(f(x,f(g(c),d)),c,f(x,b)). ** KEPT: 1835 (528,7,5,3) P(f(g(b),f(g(c),d)),c,e). ** KEPT: 1836 (528,7,475,5) P(b,f(b,g(c)),f(f(g(c),d),d)). ** KEPT: 1837 (528,7,434,5) P(b,g(f(h,a)),f(f(g(c),d),k)). ** KEPT: 1838 (528,7,292,5) P(b,g(f(b,a)),f(f(g(c),d),h)). ** KEPT: 1839 (528,7,74,5) P(b,b,f(f(g(c),d),f(d,c))). ** KEPT: 1840 (528,7,21,5) P(b,g(a),f(f(g(c),d),d)). ** KEPT: 1841 (528,7,5,5) P(b,x,f(f(g(c),d),f(c,x))). ** KEPT: 1842 (528,6,5,5) P(x,b,f(f(x,f(g(c),d)),c)). ** KEPT: 1843 (528,6,475,5) P(f(g(c),d),d,f(b,f(b,g(c)))). ** KEPT: 1844 (528,6,434,5) P(f(g(c),d),k,f(b,g(f(h,a)))). ** KEPT: 1845 (528,6,292,5) P(f(g(c),d),h,f(b,g(f(b,a)))). ** KEPT: 1846 (528,6,74,5) P(f(g(c),d),f(d,c),f(b,b)). ** KEPT: 1847 (528,6,5,362) P(f(g(c),d),f(c,f(g(d),h)),e). ** KEPT: 1848 (528,6,5,331) P(f(g(c),d),f(c,f(g(c),a)),e). ** KEPT: 1849 (528,6,5,154) P(f(g(c),d),f(c,g(d)),g(h)). ** KEPT: 1850 (528,6,5,152) P(f(g(c),d),f(c,a),f(g(h),c)). ** KEPT: 1851 (528,6,5,5) P(f(g(c),d),f(c,x),f(b,x)). >>>> Starting back demodulation with: 1818 (1817) EQUAL(f(f(g(c),d),c),b). >> back demodulating: 515 (72,7,5,38) P(f(f(g(c),d),c),g(b),e). >> back demodulating: 521 (72,7,20,5) P(e,b,f(f(g(c),d),c)). new given clause: 566 (104,7,167,5,27) P(d,f(b,g(d)),k). ** KEPT: 1852 (566,8,5) EQUAL(f(d,f(b,g(d))),k). ---> New Demodulator: 1853 (1852) EQUAL(f(d,f(b,g(d))),k). ** KEPT: 1854 (566,7,212,5) P(e,f(b,g(d)),f(f(a,g(c)),k)). ** KEPT: 1855 (566,7,165,5) P(f(d,b),f(b,g(d)),f(k,k)). ** KEPT: 1856 (566,7,149,5) P(c,f(b,g(d)),f(f(a,g(h)),k)). ** KEPT: 1857 (566,7,65,5) P(g(a),f(b,g(d)),f(g(c),k)). ** KEPT: 1858 (566,7,5,389) P(f(f(h,g(d)),d),f(b,g(d)),e). ** KEPT: 1859 (566,7,5,5) P(f(x,d),f(b,g(d)),f(x,k)). ** KEPT: 1860 (566,7,5,5) P(k,x,f(d,f(f(b,g(d)),x))). ** KEPT: 1861 (566,6,475,5) P(c,f(f(b,g(c)),f(b,g(d))),k). ** KEPT: 1862 (566,6,414,5) P(g(k),f(f(k,d),f(b,g(d))),k). ** KEPT: 1863 (566,6,373,5) P(f(d,b),f(g(b),f(b,g(d))),k). ** KEPT: 1864 (566,6,320,5) P(f(d,c),f(g(c),f(b,g(d))),k). ** KEPT: 1865 (566,6,255,5) P(f(c,b),f(g(c),f(b,g(d))),k). ** KEPT: 1866 (566,6,204,5) P(g(k),f(f(d,b),f(b,g(d))),k). ** KEPT: 1867 (566,6,179,5) P(f(k,d),f(g(b),f(b,g(d))),k). ** KEPT: 1868 (566,6,123,5) P(f(h,g(a)),f(c,f(b,g(d))),k). ** KEPT: 1869 (566,6,87,5) P(h,f(b,f(b,g(d))),k). ** KEPT: 1870 (566,6,63,5) P(a,f(f(b,g(a)),f(b,g(d))),k). ** KEPT: 1871 (566,6,21,5) P(c,f(g(a),f(b,g(d))),k). ** KEPT: 1872 (566,6,212,5,28) P(f(a,g(c)),k,f(b,g(d))). ** KEPT: 1873 (566,6,165,5) P(k,k,f(f(d,b),f(b,g(d)))). ** KEPT: 1874 (566,6,149,5) P(f(a,g(h)),k,f(c,f(b,g(d)))). ** KEPT: 1875 (566,6,101,5) P(g(h),k,f(b,f(b,g(d)))). ** KEPT: 1876 (566,6,65,5) P(g(c),k,f(g(a),f(b,g(d)))). ** KEPT: 1877 (566,6,5,5) P(x,k,f(f(x,d),f(b,g(d)))). ** KEPT: 1878 (566,6,5,190) P(d,f(f(b,g(d)),f(h,g(d))),e). ** KEPT: 1879 (566,6,5,188) P(d,f(f(b,g(d)),f(h,g(b))),h). ** KEPT: 1880 (566,6,5,187) P(d,f(f(b,g(d)),f(h,a)),c). ** KEPT: 1881 (566,6,5,165) P(d,f(f(b,g(d)),d),f(d,b)). ** KEPT: 1882 (566,6,5,5) P(d,f(f(b,g(d)),x),f(k,x)). ** KEPT: 1883 (566,6,5,4) P(d,f(f(b,g(d)),g(k)),e). >>>> Starting back demodulation with: 1853 (1852) EQUAL(f(d,f(b,g(d))),k). >> back demodulating: 571 (104,6,186,5) P(g(k),f(d,f(b,g(d))),e). >> back demodulating: 573 (104,6,167,5) P(k,e,f(d,f(b,g(d)))). new given clause: 676 (123,6,38,22) P(f(h,g(a)),a,h). ** KEPT: 1884 (676,8,5) EQUAL(f(f(h,g(a)),a),h). ---> New Demodulator: 1885 (1884) EQUAL(f(f(h,g(a)),a),h). ** KEPT: 1886 (676,7,5,426) P(f(f(h,g(a)),g(h)),f(h,a),h). ** KEPT: 1887 (676,7,5,284) P(f(f(h,g(a)),g(b)),f(b,a),h). ** KEPT: 1888 (676,7,5,271) P(f(f(h,g(a)),f(c,g(d))),h,h). ** KEPT: 1889 (676,7,5,135) P(f(f(h,g(a)),f(g(d),a)),b,h). ** KEPT: 1890 (676,7,5,115) P(f(f(h,g(a)),d),f(a,g(b)),h). ** KEPT: 1891 (676,7,5,77) P(f(f(h,g(a)),g(d)),c,h). ** KEPT: 1892 (676,7,5,273) P(f(f(b,g(d)),f(h,g(a))),a,e). ** KEPT: 1893 (676,7,5,271) P(f(f(c,g(d)),f(h,g(a))),a,a). ** KEPT: 1894 (676,7,5,182) P(f(f(g(d),k),f(h,g(a))),a,e). ** KEPT: 1895 (676,7,5,180) P(f(f(g(h),k),f(h,g(a))),a,b). ** KEPT: 1896 (676,7,5,167) P(f(k,f(h,g(a))),a,d). ** KEPT: 1897 (676,7,5,90) P(f(g(d),f(h,g(a))),a,g(b)). ** KEPT: 1898 (676,7,5,5) P(f(x,f(h,g(a))),a,f(x,h)). ** KEPT: 1899 (676,7,5,3) P(f(g(h),f(h,g(a))),a,e). ** KEPT: 1900 (676,7,3,5) P(e,a,f(g(f(h,g(a))),h)). ** KEPT: 1901 (676,7,345,5,27) P(h,f(g(c),d),f(h,g(a))). ** KEPT: 1902 (676,7,63,5) P(h,f(b,g(a)),f(f(h,g(a)),d)). ** KEPT: 1903 (676,7,42,5,27) P(h,f(b,g(c)),f(h,g(a))). ** KEPT: 1904 (676,7,5,5) P(h,x,f(f(h,g(a)),f(a,x))). ** KEPT: 1905 (676,6,5,5) P(x,h,f(f(x,f(h,g(a))),a)). ** KEPT: 1906 (676,6,3,5,28) P(g(f(h,g(a))),h,a). ** KEPT: 1907 (676,6,345,5) P(f(h,g(a)),e,f(h,f(g(c),d))). ** KEPT: 1908 (676,6,63,5) P(f(h,g(a)),d,f(h,f(b,g(a)))). ** KEPT: 1909 (676,6,42,5) P(f(h,g(a)),e,f(h,f(b,g(c)))). ** KEPT: 1910 (676,6,5,457) P(f(h,g(a)),f(a,f(g(d),k)),e). ** KEPT: 1911 (676,6,5,200) P(f(h,g(a)),f(a,g(d)),g(k)). ** KEPT: 1912 (676,6,5,197) P(f(h,g(a)),f(a,a),f(g(k),c)). ** KEPT: 1913 (676,6,5,168) P(f(h,g(a)),f(a,f(b,g(h))),k). ** KEPT: 1914 (676,6,5,104) P(f(h,g(a)),f(a,f(b,g(d))),e). ** KEPT: 1915 (676,6,5,102) P(f(h,g(a)),f(a,f(b,a)),c). ** KEPT: 1916 (676,6,5,5) P(f(h,g(a)),f(a,x),f(h,x)). ** KEPT: 1917 (676,6,5,4) P(f(h,g(a)),f(a,g(h)),e). >>>> Starting back demodulation with: 1885 (1884) EQUAL(f(f(h,g(a)),a),h). >> back demodulating: 660 (123,7,5,20) P(f(f(h,g(a)),a),b,d). >> back demodulating: 669 (123,7,38,5) P(d,g(b),f(f(h,g(a)),a)). new given clause: 760 (149,6,22,38) P(f(a,g(h)),h,a). ** KEPT: 1918 (760,8,5) EQUAL(f(f(a,g(h)),h),a). ---> New Demodulator: 1919 (1918) EQUAL(f(f(a,g(h)),h),a). ** KEPT: 1920 (760,7,5,676) P(f(f(a,g(h)),f(h,g(a))),a,a). ** KEPT: 1921 (760,7,5,307) P(f(f(a,g(h)),f(d,g(c))),a,a). ** KEPT: 1922 (760,7,5,292) P(f(f(a,g(h)),c),g(f(b,a)),a). ** KEPT: 1923 (760,7,5,193) P(f(f(a,g(h)),f(g(k),h)),b,a). ** KEPT: 1924 (760,7,5,188) P(f(f(a,g(h)),k),f(h,g(b)),a). ** KEPT: 1925 (760,7,5,186) P(f(f(a,g(h)),g(k)),d,a). ** KEPT: 1926 (760,7,5,676) P(f(f(h,g(a)),f(a,g(h))),h,h). ** KEPT: 1927 (760,7,5,309) P(f(f(b,g(c)),f(a,g(h))),h,e). ** KEPT: 1928 (760,7,5,307) P(f(f(d,g(c)),f(a,g(h))),h,h). ** KEPT: 1929 (760,7,5,197) P(f(h,f(a,g(h))),h,f(g(k),c)). ** KEPT: 1930 (760,7,5,152) P(f(b,f(a,g(h))),h,f(g(h),c)). ** KEPT: 1931 (760,7,5,122) P(f(f(g(a),d),f(a,g(h))),h,b). ** KEPT: 1932 (760,7,5,117) P(f(g(c),f(a,g(h))),h,g(b)). ** KEPT: 1933 (760,7,5,72) P(f(f(g(c),d),f(a,g(h))),h,e). ** KEPT: 1934 (760,7,5,62) P(f(d,f(a,g(h))),h,c). ** KEPT: 1935 (760,7,5,5) P(f(x,f(a,g(h))),h,f(x,a)). ** KEPT: 1936 (760,7,5,3) P(f(g(a),f(a,g(h))),h,e). ** KEPT: 1937 (760,7,3,5) P(e,h,f(g(f(a,g(h))),a)). ** KEPT: 1938 (760,7,457,5,27) P(a,f(g(d),k),f(a,g(h))). ** KEPT: 1939 (760,7,197,5) P(a,a,f(f(a,g(h)),f(g(k),c))). ** KEPT: 1940 (760,7,168,5) P(a,f(b,g(h)),f(f(a,g(h)),k)). ** KEPT: 1941 (760,7,104,5,27) P(a,f(b,g(d)),f(a,g(h))). ** KEPT: 1942 (760,7,5,5) P(a,x,f(f(a,g(h)),f(h,x))). ** KEPT: 1943 (760,6,5,5) P(x,a,f(f(x,f(a,g(h))),h)). ** KEPT: 1944 (760,6,3,5,28) P(g(f(a,g(h))),a,h). ** KEPT: 1945 (760,6,457,5) P(f(a,g(h)),e,f(a,f(g(d),k))). ** KEPT: 1946 (760,6,197,5) P(f(a,g(h)),f(g(k),c),f(a,a)). ** KEPT: 1947 (760,6,168,5) P(f(a,g(h)),k,f(a,f(b,g(h)))). ** KEPT: 1948 (760,6,104,5) P(f(a,g(h)),e,f(a,f(b,g(d)))). ** KEPT: 1949 (760,6,5,345) P(f(a,g(h)),f(h,f(g(c),d)),e). ** KEPT: 1950 (760,6,5,140) P(f(a,g(h)),f(h,g(c)),g(d)). ** KEPT: 1951 (760,6,5,63) P(f(a,g(h)),f(h,f(b,g(a))),d). ** KEPT: 1952 (760,6,5,42) P(f(a,g(h)),f(h,f(b,g(c))),e). ** KEPT: 1953 (760,6,5,5) P(f(a,g(h)),f(h,x),f(a,x)). ** KEPT: 1954 (760,6,5,4) P(f(a,g(h)),f(h,g(a)),e). >>>> Starting back demodulation with: 1919 (1918) EQUAL(f(f(a,g(h)),h),a). >> back demodulating: 733 (149,7,5,87) P(f(f(a,g(h)),h),b,c). >> back demodulating: 749 (149,7,22,5) P(c,g(b),f(f(a,g(h)),h)). new given clause: 794 (152,6,87,62) P(h,f(g(h),c),c). ** KEPT: 1955 (794,8,5) EQUAL(f(h,f(g(h),c)),c). ---> New Demodulator: 1956 (1955) EQUAL(f(h,f(g(h),c)),c). ** KEPT: 1957 (794,7,760,5) P(a,f(g(h),c),f(f(a,g(h)),c)). ** KEPT: 1958 (794,7,273,5) P(e,f(g(h),c),f(f(b,g(d)),c)). ** KEPT: 1959 (794,7,271,5) P(a,f(g(h),c),f(f(c,g(d)),c)). ** KEPT: 1960 (794,7,182,5) P(e,f(g(h),c),f(f(g(d),k),c)). ** KEPT: 1961 (794,7,180,5) P(b,f(g(h),c),f(f(g(h),k),c)). ** KEPT: 1962 (794,7,5,528) P(f(f(g(c),d),h),f(g(h),c),b). ** KEPT: 1963 (794,7,5,123) P(f(f(h,g(a)),h),f(g(h),c),d). ** KEPT: 1964 (794,7,5,78) P(f(d,h),f(g(h),c),f(c,b)). ** KEPT: 1965 (794,7,5,40) P(f(g(a),h),f(g(h),c),b). ** KEPT: 1966 (794,7,5,5) P(f(x,h),f(g(h),c),f(x,c)). ** KEPT: 1967 (794,7,5,3) P(f(g(c),h),f(g(h),c),e). ** KEPT: 1968 (794,7,5,5) P(c,x,f(h,f(f(g(h),c),x))). ** KEPT: 1969 (794,7,4,5,27) P(c,g(f(g(h),c)),h). ** KEPT: 1970 (794,6,676,5) P(f(h,g(a)),f(a,f(g(h),c)),c). ** KEPT: 1971 (794,6,307,5) P(f(d,g(c)),f(a,f(g(h),c)),c). ** KEPT: 1972 (794,6,292,5) P(c,f(g(f(b,a)),f(g(h),c)),c). ** KEPT: 1973 (794,6,193,5) P(f(g(k),h),f(b,f(g(h),c)),c). ** KEPT: 1974 (794,6,188,5) P(k,f(f(h,g(b)),f(g(h),c)),c). ** KEPT: 1975 (794,6,186,5) P(g(k),f(d,f(g(h),c)),c). ** KEPT: 1976 (794,6,22,5) P(d,f(g(b),f(g(h),c)),c). ** KEPT: 1977 (794,6,760,5) P(f(a,g(h)),c,f(a,f(g(h),c))). ** KEPT: 1978 (794,6,271,5) P(f(c,g(d)),c,f(a,f(g(h),c))). ** KEPT: 1979 (794,6,182,5,28) P(f(g(d),k),c,f(g(h),c)). ** KEPT: 1980 (794,6,180,5) P(f(g(h),k),c,f(b,f(g(h),c))). ** KEPT: 1981 (794,6,5,5) P(x,c,f(f(x,h),f(g(h),c))). ** KEPT: 1982 (794,6,5,475) P(h,f(f(g(h),c),f(b,g(c))),d). ** KEPT: 1983 (794,6,5,434) P(h,f(f(g(h),c),g(f(h,a))),k). ** KEPT: 1984 (794,6,5,292) P(h,f(f(g(h),c),g(f(b,a))),h). ** KEPT: 1985 (794,6,5,74) P(h,f(f(g(h),c),b),f(d,c)). ** KEPT: 1986 (794,6,5,38) P(h,f(f(g(h),c),g(b)),a). ** KEPT: 1987 (794,6,5,21) P(h,f(f(g(h),c),g(a)),d). ** KEPT: 1988 (794,6,5,5) P(h,f(f(g(h),c),x),f(c,x)). ** KEPT: 1989 (794,6,5,4) P(h,f(f(g(h),c),g(c)),e). ** KEPT: 1990 (794,6,4,5) P(h,e,f(c,g(f(g(h),c)))). >>>> Starting back demodulation with: 1956 (1955) EQUAL(f(h,f(g(h),c)),c). >> back demodulating: 775 (152,7,87,5) P(d,a,f(h,f(g(h),c))). 1966 back subsumes: 1008 (197,6,193,152) P(f(g(k),h),f(g(h),c),f(g(k),c)). new given clause: 817 (156,7,21,101) P(f(b,a),g(a),b). ** KEPT: 1991 (817,8,5) EQUAL(f(f(b,a),g(a)),b). ---> New Demodulator: 1992 (1991) EQUAL(f(f(b,a),g(a)),b). ** KEPT: 1993 (817,7,5,128) P(f(f(b,a),b),g(c),b). ** KEPT: 1994 (817,7,5,65) P(f(f(b,a),g(c)),d,b). ** KEPT: 1995 (817,7,5,193) P(f(f(g(k),h),f(b,a)),g(a),h). ** KEPT: 1996 (817,7,5,173) P(f(d,f(b,a)),g(a),f(k,d)). ** KEPT: 1997 (817,7,5,135) P(f(f(g(d),a),f(b,a)),g(a),a). ** KEPT: 1998 (817,7,5,97) P(f(f(g(d),h),f(b,a)),g(a),e). ** KEPT: 1999 (817,7,5,74) P(f(c,f(b,a)),g(a),f(d,c)). ** KEPT: 2000 (817,7,5,35) P(f(f(g(c),a),f(b,a)),g(a),e). ** KEPT: 2001 (817,7,5,20) P(f(a,f(b,a)),g(a),c). ** KEPT: 2002 (817,7,5,5) P(f(x,f(b,a)),g(a),f(x,b)). ** KEPT: 2003 (817,7,3,5) P(e,g(a),f(g(f(b,a)),b)). ** KEPT: 2004 (817,7,5,5) P(b,x,f(f(b,a),f(g(a),x))). ** KEPT: 2005 (817,6,5,5) P(x,b,f(f(x,f(b,a)),g(a))). ** KEPT: 2006 (817,6,3,5,28) P(g(f(b,a)),b,g(a)). ** KEPT: 2007 (817,6,5,362) P(f(b,a),f(g(a),f(g(d),h)),e). ** KEPT: 2008 (817,6,5,331) P(f(b,a),f(g(a),f(g(c),a)),e). ** KEPT: 2009 (817,6,5,154) P(f(b,a),f(g(a),g(d)),g(h)). ** KEPT: 2010 (817,6,5,128) P(f(b,a),f(g(a),g(c)),g(a)). ** KEPT: 2011 (817,6,5,5) P(f(b,a),f(g(a),x),f(b,x)). ** KEPT: 2012 (817,6,5,4) P(f(b,a),f(g(a),g(b)),e). >>>> Starting back demodulation with: 1992 (1991) EQUAL(f(f(b,a),g(a)),b). >> back demodulating: 300 (102,6,5,21) P(h,f(f(b,a),g(a)),d). >> back demodulating: 823 (156,6,21,5) P(g(h),d,f(f(b,a),g(a))). >> back demodulating: 1306 (284,6,5,4) P(g(b),f(f(b,a),g(a)),e). new given clause: 922 (182,6,87,5,28) P(f(g(d),k),d,b). ** KEPT: 2013 (922,8,5) EQUAL(f(f(g(d),k),d),b). ---> New Demodulator: 2014 (2013) EQUAL(f(f(g(d),k),d),b). ** KEPT: 2015 (922,7,5,475) P(f(f(g(d),k),c),f(b,g(c)),b). ** KEPT: 2016 (922,7,5,414) P(f(f(g(d),k),g(k)),f(k,d),b). ** KEPT: 2017 (922,7,5,373) P(f(f(g(d),k),f(d,b)),g(b),b). ** KEPT: 2018 (922,7,5,320) P(f(f(g(d),k),f(d,c)),g(c),b). ** KEPT: 2019 (922,7,5,255) P(f(f(g(d),k),f(c,b)),g(c),b). ** KEPT: 2020 (922,7,5,204) P(f(f(g(d),k),g(k)),f(d,b),b). ** KEPT: 2021 (922,7,5,179) P(f(f(g(d),k),f(k,d)),g(b),b). ** KEPT: 2022 (922,7,5,167) P(f(f(g(d),k),k),h,b). ** KEPT: 2023 (922,7,5,123) P(f(f(g(d),k),f(h,g(a))),c,b). ** KEPT: 2024 (922,7,5,63) P(f(f(g(d),k),a),f(b,g(a)),b). ** KEPT: 2025 (922,7,5,21) P(f(f(g(d),k),c),g(a),b). ** KEPT: 2026 (922,7,5,193) P(f(f(g(k),h),f(g(d),k)),d,h). ** KEPT: 2027 (922,7,5,173) P(f(d,f(g(d),k)),d,f(k,d)). ** KEPT: 2028 (922,7,5,135) P(f(f(g(d),a),f(g(d),k)),d,a). ** KEPT: 2029 (922,7,5,97) P(f(f(g(d),h),f(g(d),k)),d,e). ** KEPT: 2030 (922,7,5,74) P(f(c,f(g(d),k)),d,f(d,c)). ** KEPT: 2031 (922,7,5,35) P(f(f(g(c),a),f(g(d),k)),d,e). ** KEPT: 2032 (922,7,5,20) P(f(a,f(g(d),k)),d,c). ** KEPT: 2033 (922,7,5,5) P(f(x,f(g(d),k)),d,f(x,b)). ** KEPT: 2034 (922,7,5,3) P(f(g(b),f(g(d),k)),d,e). ** KEPT: 2035 (922,7,566,5) P(b,f(b,g(d)),f(f(g(d),k),k)). ** KEPT: 2036 (922,7,173,5) P(b,b,f(f(g(d),k),f(k,d))). ** KEPT: 2037 (922,7,115,5) P(b,f(a,g(b)),f(f(g(d),k),a)). ** KEPT: 2038 (922,7,105,5) P(b,g(h),f(f(g(d),k),k)). ** KEPT: 2039 (922,7,80,5,27) P(b,f(a,g(c)),f(g(d),k)). ** KEPT: 2040 (922,7,78,5) P(b,c,f(f(g(d),k),f(c,b))). ** KEPT: 2041 (922,7,62,5) P(b,a,f(f(g(d),k),c)). ** KEPT: 2042 (922,7,5,5) P(b,x,f(f(g(d),k),f(d,x))). ** KEPT: 2043 (922,6,5,5) P(x,b,f(f(x,f(g(d),k)),d)). ** KEPT: 2044 (922,6,566,5) P(f(g(d),k),k,f(b,f(b,g(d)))). ** KEPT: 2045 (922,6,173,5) P(f(g(d),k),f(k,d),f(b,b)). ** KEPT: 2046 (922,6,115,5) P(f(g(d),k),a,f(b,f(a,g(b)))). ** KEPT: 2047 (922,6,80,5) P(f(g(d),k),e,f(b,f(a,g(c)))). ** KEPT: 2048 (922,6,78,5) P(f(g(d),k),f(c,b),f(b,c)). ** KEPT: 2049 (922,6,5,362) P(f(g(d),k),f(d,f(g(d),h)),e). ** KEPT: 2050 (922,6,5,331) P(f(g(d),k),f(d,f(g(c),a)),e). ** KEPT: 2051 (922,6,5,128) P(f(g(d),k),f(d,g(c)),g(a)). ** KEPT: 2052 (922,6,5,5) P(f(g(d),k),f(d,x),f(b,x)). >>>> Starting back demodulation with: 2014 (2013) EQUAL(f(f(g(d),k),d),b). >> back demodulating: 907 (182,7,5,22) P(f(f(g(d),k),d),g(b),e). >> back demodulating: 914 (182,7,87,5) P(e,b,f(f(g(d),k),d)). new given clause: 1014 (197,6,167,62) P(k,f(g(k),c),c). ** KEPT: 2053 (1014,8,5) EQUAL(f(k,f(g(k),c)),c). ---> New Demodulator: 2054 (2053) EQUAL(f(k,f(g(k),c)),c). ** KEPT: 2055 (1014,7,389,5) P(e,f(g(k),c),f(f(h,g(d)),c)). ** KEPT: 2056 (1014,7,5,528) P(f(f(g(c),d),k),f(g(k),c),b). ** KEPT: 2057 (1014,7,5,123) P(f(f(h,g(a)),k),f(g(k),c),d). ** KEPT: 2058 (1014,7,5,78) P(f(d,k),f(g(k),c),f(c,b)). ** KEPT: 2059 (1014,7,5,40) P(f(g(a),k),f(g(k),c),b). ** KEPT: 2060 (1014,7,5,5) P(f(x,k),f(g(k),c),f(x,c)). ** KEPT: 2061 (1014,7,5,3) P(f(g(c),k),f(g(k),c),e). ** KEPT: 2062 (1014,7,5,5) P(c,x,f(k,f(f(g(k),c),x))). ** KEPT: 2063 (1014,7,4,5,27) P(c,g(f(g(k),c)),k). ** KEPT: 2064 (1014,6,566,5) P(d,f(f(b,g(d)),f(g(k),c)),c). ** KEPT: 2065 (1014,6,434,5) P(c,f(g(f(h,a)),f(g(k),c)),c). ** KEPT: 2066 (1014,6,409,5) P(f(k,d),f(g(d),f(g(k),c)),c). ** KEPT: 2067 (1014,6,351,5) P(f(d,b),f(g(d),f(g(k),c)),c). ** KEPT: 2068 (1014,6,168,5) P(h,f(f(b,g(h)),f(g(k),c)),c). ** KEPT: 2069 (1014,6,105,5) P(d,f(g(h),f(g(k),c)),c). ** KEPT: 2070 (1014,6,5,5) P(x,c,f(f(x,k),f(g(k),c))). ** KEPT: 2071 (1014,6,5,475) P(k,f(f(g(k),c),f(b,g(c))),d). ** KEPT: 2072 (1014,6,5,434) P(k,f(f(g(k),c),g(f(h,a))),k). ** KEPT: 2073 (1014,6,5,292) P(k,f(f(g(k),c),g(f(b,a))),h). ** KEPT: 2074 (1014,6,5,74) P(k,f(f(g(k),c),b),f(d,c)). ** KEPT: 2075 (1014,6,5,38) P(k,f(f(g(k),c),g(b)),a). ** KEPT: 2076 (1014,6,5,21) P(k,f(f(g(k),c),g(a)),d). ** KEPT: 2077 (1014,6,5,5) P(k,f(f(g(k),c),x),f(c,x)). ** KEPT: 2078 (1014,6,5,4) P(k,f(f(g(k),c),g(c)),e). ** KEPT: 2079 (1014,6,4,5) P(k,e,f(c,g(f(g(k),c)))). >>>> Starting back demodulation with: 2054 (2053) EQUAL(f(k,f(g(k),c)),c). >> back demodulating: 996 (197,7,167,5) P(d,a,f(k,f(g(k),c))). 2060 back subsumes: 1012 (197,6,180,152) P(f(g(h),k),f(g(k),c),f(g(h),c)). new given clause: 1034 (202,7,21,186) P(f(h,a),g(a),h). ** KEPT: 2080 (1034,8,5) EQUAL(f(f(h,a),g(a)),h). ---> New Demodulator: 2081 (2080) EQUAL(f(f(h,a),g(a)),h). ** KEPT: 2082 (1034,7,5,128) P(f(f(h,a),b),g(c),h). ** KEPT: 2083 (1034,7,5,65) P(f(f(h,a),g(c)),d,h). ** KEPT: 2084 (1034,7,5,760) P(f(f(a,g(h)),f(h,a)),g(a),a). ** KEPT: 2085 (1034,7,5,273) P(f(f(b,g(d)),f(h,a)),g(a),e). ** KEPT: 2086 (1034,7,5,271) P(f(f(c,g(d)),f(h,a)),g(a),a). ** KEPT: 2087 (1034,7,5,182) P(f(f(g(d),k),f(h,a)),g(a),e). ** KEPT: 2088 (1034,7,5,180) P(f(f(g(h),k),f(h,a)),g(a),b). ** KEPT: 2089 (1034,7,5,90) P(f(g(d),f(h,a)),g(a),g(b)). ** KEPT: 2090 (1034,7,5,5) P(f(x,f(h,a)),g(a),f(x,h)). ** KEPT: 2091 (1034,7,3,5) P(e,g(a),f(g(f(h,a)),h)). ** KEPT: 2092 (1034,7,5,5) P(h,x,f(f(h,a),f(g(a),x))). ** KEPT: 2093 (1034,6,5,5) P(x,h,f(f(x,f(h,a)),g(a))). ** KEPT: 2094 (1034,6,3,5,28) P(g(f(h,a)),h,g(a)). ** KEPT: 2095 (1034,6,5,794) P(f(h,a),f(g(a),f(g(h),c)),c). ** KEPT: 2096 (1034,6,5,457) P(f(h,a),f(g(a),f(g(d),k)),e). ** KEPT: 2097 (1034,6,5,200) P(f(h,a),f(g(a),g(d)),g(k)). ** KEPT: 2098 (1034,6,5,168) P(f(h,a),f(g(a),f(b,g(h))),k). ** KEPT: 2099 (1034,6,5,104) P(f(h,a),f(g(a),f(b,g(d))),e). ** KEPT: 2100 (1034,6,5,102) P(f(h,a),f(g(a),f(b,a)),c). ** KEPT: 2101 (1034,6,5,87) P(f(h,a),f(g(a),b),d). ** KEPT: 2102 (1034,6,5,5) P(f(h,a),f(g(a),x),f(h,x)). ** KEPT: 2103 (1034,6,5,4) P(f(h,a),f(g(a),g(h)),e). >>>> Starting back demodulation with: 2081 (2080) EQUAL(f(f(h,a),g(a)),h). >> back demodulating: 440 (187,6,5,21) P(k,f(f(h,a),g(a)),d). >> back demodulating: 1039 (202,6,21,5) P(g(k),d,f(f(h,a),g(a))). >> back demodulating: 1724 (426,6,5,4) P(g(h),f(f(h,a),g(a)),e). new given clause: 1065 (207,17,31) EQUAL(g(f(g(c),d)),a). new given clause: 1094 (212,6,62,5,28) P(f(a,g(c)),c,a). ** KEPT: 2104 (1094,8,5) EQUAL(f(f(a,g(c)),c),a). ---> New Demodulator: 2105 (2104) EQUAL(f(f(a,g(c)),c),a). ** KEPT: 2106 (1094,7,5,1014) P(f(f(a,g(c)),k),f(g(k),c),a). ** KEPT: 2107 (1094,7,5,794) P(f(f(a,g(c)),h),f(g(h),c),a). ** KEPT: 2108 (1094,7,5,252) P(f(f(a,g(c)),f(c,b)),g(b),a). ** KEPT: 2109 (1094,7,5,237) P(f(f(a,g(c)),g(d)),f(d,c),a). ** KEPT: 2110 (1094,7,5,187) P(f(f(a,g(c)),k),f(h,a),a). ** KEPT: 2111 (1094,7,5,149) P(f(f(a,g(c)),f(a,g(h))),d,a). ** KEPT: 2112 (1094,7,5,143) P(f(f(a,g(c)),g(d)),f(c,b),a). ** KEPT: 2113 (1094,7,5,110) P(f(f(a,g(c)),f(d,c)),g(b),a). ** KEPT: 2114 (1094,7,5,102) P(f(f(a,g(c)),h),f(b,a),a). ** KEPT: 2115 (1094,7,5,20) P(f(f(a,g(c)),a),b,a). ** KEPT: 2116 (1094,7,5,676) P(f(f(h,g(a)),f(a,g(c))),c,h). ** KEPT: 2117 (1094,7,5,309) P(f(f(b,g(c)),f(a,g(c))),c,e). ** KEPT: 2118 (1094,7,5,307) P(f(f(d,g(c)),f(a,g(c))),c,h). ** KEPT: 2119 (1094,7,5,197) P(f(h,f(a,g(c))),c,f(g(k),c)). ** KEPT: 2120 (1094,7,5,152) P(f(b,f(a,g(c))),c,f(g(h),c)). ** KEPT: 2121 (1094,7,5,122) P(f(f(g(a),d),f(a,g(c))),c,b). ** KEPT: 2122 (1094,7,5,117) P(f(g(c),f(a,g(c))),c,g(b)). ** KEPT: 2123 (1094,7,5,72) P(f(f(g(c),d),f(a,g(c))),c,e). ** KEPT: 2124 (1094,7,5,5) P(f(x,f(a,g(c))),c,f(x,a)). ** KEPT: 2125 (1094,7,5,3) P(f(g(a),f(a,g(c))),c,e). ** KEPT: 2126 (1094,7,434,5) P(a,g(f(h,a)),f(f(a,g(c)),k)). ** KEPT: 2127 (1094,7,292,5) P(a,g(f(b,a)),f(f(a,g(c)),h)). ** KEPT: 2128 (1094,7,5,5) P(a,x,f(f(a,g(c)),f(c,x))). ** KEPT: 2129 (1094,6,5,5) P(x,a,f(f(x,f(a,g(c))),c)). ** KEPT: 2130 (1094,6,434,5) P(f(a,g(c)),k,f(a,g(f(h,a)))). ** KEPT: 2131 (1094,6,292,5) P(f(a,g(c)),h,f(a,g(f(b,a)))). ** KEPT: 2132 (1094,6,5,345) P(f(a,g(c)),f(c,f(g(c),d)),e). ** KEPT: 2133 (1094,6,5,63) P(f(a,g(c)),f(c,f(b,g(a))),d). ** KEPT: 2134 (1094,6,5,5) P(f(a,g(c)),f(c,x),f(a,x)). >>>> Starting back demodulation with: 2105 (2104) EQUAL(f(f(a,g(c)),c),a). >> back demodulating: 1079 (212,7,5,21) P(f(f(a,g(c)),c),g(a),e). >> back demodulating: 1086 (212,7,62,5) P(e,a,f(f(a,g(c)),c)). >> back demodulating: 1790 (475,7,5,212) P(f(f(a,g(c)),c),f(b,g(c)),e). new given clause: 1210 (268,17,31) EQUAL(g(f(g(d),h)),b). new given clause: 1237 (271,6,5,5) P(c,f(g(d),h),a). ** KEPT: 2135 (1237,8,5) EQUAL(f(c,f(g(d),h)),a). ---> New Demodulator: 2136 (2135) EQUAL(f(c,f(g(d),h)),a). ** KEPT: 2137 (1237,7,1094,5) P(a,f(g(d),h),f(f(a,g(c)),a)). ** KEPT: 2138 (1237,7,202,5) P(f(h,a),f(g(d),h),f(g(k),a)). ** KEPT: 2139 (1237,7,156,5) P(f(b,a),f(g(d),h),f(g(h),a)). ** KEPT: 2140 (1237,7,5,309) P(f(f(b,g(c)),c),f(g(d),h),e). ** KEPT: 2141 (1237,7,5,307) P(f(f(d,g(c)),c),f(g(d),h),h). ** KEPT: 2142 (1237,7,5,197) P(f(h,c),f(g(d),h),f(g(k),c)). ** KEPT: 2143 (1237,7,5,152) P(f(b,c),f(g(d),h),f(g(h),c)). ** KEPT: 2144 (1237,7,5,122) P(f(f(g(a),d),c),f(g(d),h),b). ** KEPT: 2145 (1237,7,5,5) P(f(x,c),f(g(d),h),f(x,a)). ** KEPT: 2146 (1237,7,5,5) P(a,x,f(c,f(f(g(d),h),x))). ** KEPT: 2147 (1237,6,1014,5) P(k,f(f(g(k),c),f(g(d),h)),a). ** KEPT: 2148 (1237,6,794,5) P(h,f(f(g(h),c),f(g(d),h)),a). ** KEPT: 2149 (1237,6,252,5) P(f(c,b),f(g(b),f(g(d),h)),a). ** KEPT: 2150 (1237,6,237,5) P(g(d),f(f(d,c),f(g(d),h)),a). ** KEPT: 2151 (1237,6,187,5) P(k,f(f(h,a),f(g(d),h)),a). ** KEPT: 2152 (1237,6,149,5) P(f(a,g(h)),f(d,f(g(d),h)),a). ** KEPT: 2153 (1237,6,143,5) P(g(d),f(f(c,b),f(g(d),h)),a). ** KEPT: 2154 (1237,6,110,5) P(f(d,c),f(g(b),f(g(d),h)),a). ** KEPT: 2155 (1237,6,102,5) P(h,f(f(b,a),f(g(d),h)),a). ** KEPT: 2156 (1237,6,62,5) P(d,f(a,f(g(d),h)),a). ** KEPT: 2157 (1237,6,1094,5) P(f(a,g(c)),a,f(a,f(g(d),h))). ** KEPT: 2158 (1237,6,202,5) P(g(k),a,f(f(h,a),f(g(d),h))). ** KEPT: 2159 (1237,6,156,5) P(g(h),a,f(f(b,a),f(g(d),h))). ** KEPT: 2160 (1237,6,123,5) P(f(h,g(a)),a,f(d,f(g(d),h))). ** KEPT: 2161 (1237,6,78,5) P(d,a,f(f(c,b),f(g(d),h))). ** KEPT: 2162 (1237,6,77,5) P(g(d),a,f(a,f(g(d),h))). ** KEPT: 2163 (1237,6,5,5) P(x,a,f(f(x,c),f(g(d),h))). ** KEPT: 2164 (1237,6,3,5,28) P(g(c),a,f(g(d),h)). ** KEPT: 2165 (1237,6,5,345) P(c,f(f(g(d),h),f(g(c),d)),e). ** KEPT: 2166 (1237,6,5,140) P(c,f(f(g(d),h),g(c)),g(d)). ** KEPT: 2167 (1237,6,5,63) P(c,f(f(g(d),h),f(b,g(a))),d). ** KEPT: 2168 (1237,6,5,42) P(c,f(f(g(d),h),f(b,g(c))),e). ** KEPT: 2169 (1237,6,5,5) P(c,f(f(g(d),h),x),f(a,x)). ** KEPT: 2170 (1237,6,5,4) P(c,f(f(g(d),h),g(a)),e). >>>> Starting back demodulation with: 2136 (2135) EQUAL(f(c,f(g(d),h)),a). >> back demodulating: 1539 (362,6,40,5) P(g(a),f(c,f(g(d),h)),e). >> back demodulating: 1546 (362,6,20,5) P(a,e,f(c,f(g(d),h))). >> back demodulating: 1847 (528,6,5,362) P(f(g(c),d),f(c,f(g(d),h)),e). new given clause: 1245 (271,6,87,20) P(f(c,g(d)),d,c). ** KEPT: 2171 (1245,8,5) EQUAL(f(f(c,g(d)),d),c). ---> New Demodulator: 2172 (2171) EQUAL(f(f(c,g(d)),d),c). ** KEPT: 2173 (1245,7,5,475) P(f(f(c,g(d)),c),f(b,g(c)),c). ** KEPT: 2174 (1245,7,5,414) P(f(f(c,g(d)),g(k)),f(k,d),c). ** KEPT: 2175 (1245,7,5,373) P(f(f(c,g(d)),f(d,b)),g(b),c). ** KEPT: 2176 (1245,7,5,320) P(f(f(c,g(d)),f(d,c)),g(c),c). ** KEPT: 2177 (1245,7,5,255) P(f(f(c,g(d)),f(c,b)),g(c),c). ** KEPT: 2178 (1245,7,5,204) P(f(f(c,g(d)),g(k)),f(d,b),c). ** KEPT: 2179 (1245,7,5,179) P(f(f(c,g(d)),f(k,d)),g(b),c). ** KEPT: 2180 (1245,7,5,167) P(f(f(c,g(d)),k),h,c). ** KEPT: 2181 (1245,7,5,123) P(f(f(c,g(d)),f(h,g(a))),c,c). ** KEPT: 2182 (1245,7,5,63) P(f(f(c,g(d)),a),f(b,g(a)),c). ** KEPT: 2183 (1245,7,5,21) P(f(f(c,g(d)),c),g(a),c). ** KEPT: 2184 (1245,7,5,1094) P(f(f(a,g(c)),f(c,g(d))),d,a). ** KEPT: 2185 (1245,7,5,528) P(f(f(g(c),d),f(c,g(d))),d,b). ** KEPT: 2186 (1245,7,5,202) P(f(g(k),f(c,g(d))),d,f(h,a)). ** KEPT: 2187 (1245,7,5,156) P(f(g(h),f(c,g(d))),d,f(b,a)). ** KEPT: 2188 (1245,7,5,123) P(f(f(h,g(a)),f(c,g(d))),d,d). ** KEPT: 2189 (1245,7,5,78) P(f(d,f(c,g(d))),d,f(c,b)). ** KEPT: 2190 (1245,7,5,77) P(f(g(d),f(c,g(d))),d,a). ** KEPT: 2191 (1245,7,5,40) P(f(g(a),f(c,g(d))),d,b). ** KEPT: 2192 (1245,7,5,5) P(f(x,f(c,g(d))),d,f(x,c)). ** KEPT: 2193 (1245,7,5,3) P(f(g(c),f(c,g(d))),d,e). ** KEPT: 2194 (1245,7,3,5) P(e,d,f(g(f(c,g(d))),c)). ** KEPT: 2195 (1245,7,566,5) P(c,f(b,g(d)),f(f(c,g(d)),k)). ** KEPT: 2196 (1245,7,115,5) P(c,f(a,g(b)),f(f(c,g(d)),a)). ** KEPT: 2197 (1245,7,80,5,27) P(c,f(a,g(c)),f(c,g(d))). ** KEPT: 2198 (1245,7,5,5) P(c,x,f(f(c,g(d)),f(d,x))). ** KEPT: 2199 (1245,6,5,5) P(x,c,f(f(x,f(c,g(d))),d)). ** KEPT: 2200 (1245,6,3,5,28) P(g(f(c,g(d))),c,d). ** KEPT: 2201 (1245,6,566,5) P(f(c,g(d)),k,f(c,f(b,g(d)))). ** KEPT: 2202 (1245,6,115,5) P(f(c,g(d)),a,f(c,f(a,g(b)))). ** KEPT: 2203 (1245,6,80,5) P(f(c,g(d)),e,f(c,f(a,g(c)))). ** KEPT: 2204 (1245,6,5,1237) P(f(c,g(d)),f(d,f(g(d),h)),a). ** KEPT: 2205 (1245,6,5,475) P(f(c,g(d)),f(d,f(b,g(c))),d). ** KEPT: 2206 (1245,6,5,434) P(f(c,g(d)),f(d,g(f(h,a))),k). ** KEPT: 2207 (1245,6,5,292) P(f(c,g(d)),f(d,g(f(b,a))),h). ** KEPT: 2208 (1245,6,5,21) P(f(c,g(d)),f(d,g(a)),d). ** KEPT: 2209 (1245,6,5,5) P(f(c,g(d)),f(d,x),f(c,x)). ** KEPT: 2210 (1245,6,5,4) P(f(c,g(d)),f(d,g(c)),e). >>>> Starting back demodulation with: 2172 (2171) EQUAL(f(f(c,g(d)),d),c). >> back demodulating: 1221 (271,7,5,22) P(f(f(c,g(d)),d),g(b),a). >> back demodulating: 1235 (271,7,87,5) P(a,b,f(f(c,g(d)),d)). new given clause: 1270 (273,6,87,5,28) P(f(b,g(d)),d,b). ** KEPT: 2211 (1270,8,5) EQUAL(f(f(b,g(d)),d),b). ---> New Demodulator: 2212 (2211) EQUAL(f(f(b,g(d)),d),b). ** KEPT: 2213 (1270,7,5,475) P(f(f(b,g(d)),c),f(b,g(c)),b). ** KEPT: 2214 (1270,7,5,414) P(f(f(b,g(d)),g(k)),f(k,d),b). ** KEPT: 2215 (1270,7,5,373) P(f(f(b,g(d)),f(d,b)),g(b),b). ** KEPT: 2216 (1270,7,5,320) P(f(f(b,g(d)),f(d,c)),g(c),b). ** KEPT: 2217 (1270,7,5,255) P(f(f(b,g(d)),f(c,b)),g(c),b). ** KEPT: 2218 (1270,7,5,204) P(f(f(b,g(d)),g(k)),f(d,b),b). ** KEPT: 2219 (1270,7,5,179) P(f(f(b,g(d)),f(k,d)),g(b),b). ** KEPT: 2220 (1270,7,5,167) P(f(f(b,g(d)),k),h,b). ** KEPT: 2221 (1270,7,5,123) P(f(f(b,g(d)),f(h,g(a))),c,b). ** KEPT: 2222 (1270,7,5,63) P(f(f(b,g(d)),a),f(b,g(a)),b). ** KEPT: 2223 (1270,7,5,21) P(f(f(b,g(d)),c),g(a),b). ** KEPT: 2224 (1270,7,5,193) P(f(f(g(k),h),f(b,g(d))),d,h). ** KEPT: 2225 (1270,7,5,135) P(f(f(g(d),a),f(b,g(d))),d,a). ** KEPT: 2226 (1270,7,5,97) P(f(f(g(d),h),f(b,g(d))),d,e). ** KEPT: 2227 (1270,7,5,74) P(f(c,f(b,g(d))),d,f(d,c)). ** KEPT: 2228 (1270,7,5,35) P(f(f(g(c),a),f(b,g(d))),d,e). ** KEPT: 2229 (1270,7,5,20) P(f(a,f(b,g(d))),d,c). ** KEPT: 2230 (1270,7,5,5) P(f(x,f(b,g(d))),d,f(x,b)). ** KEPT: 2231 (1270,7,5,3) P(f(g(b),f(b,g(d))),d,e). ** KEPT: 2232 (1270,7,566,5) P(b,f(b,g(d)),f(f(b,g(d)),k)). ** KEPT: 2233 (1270,7,115,5) P(b,f(a,g(b)),f(f(b,g(d)),a)). ** KEPT: 2234 (1270,7,80,5,27) P(b,f(a,g(c)),f(b,g(d))). ** KEPT: 2235 (1270,7,5,5) P(b,x,f(f(b,g(d)),f(d,x))). ** KEPT: 2236 (1270,6,5,5) P(x,b,f(f(x,f(b,g(d))),d)). ** KEPT: 2237 (1270,6,566,5) P(f(b,g(d)),k,f(b,f(b,g(d)))). ** KEPT: 2238 (1270,6,115,5) P(f(b,g(d)),a,f(b,f(a,g(b)))). ** KEPT: 2239 (1270,6,80,5) P(f(b,g(d)),e,f(b,f(a,g(c)))). ** KEPT: 2240 (1270,6,5,362) P(f(b,g(d)),f(d,f(g(d),h)),e). ** KEPT: 2241 (1270,6,5,331) P(f(b,g(d)),f(d,f(g(c),a)),e). ** KEPT: 2242 (1270,6,5,128) P(f(b,g(d)),f(d,g(c)),g(a)). ** KEPT: 2243 (1270,6,5,5) P(f(b,g(d)),f(d,x),f(b,x)). >>>> Starting back demodulation with: 2212 (2211) EQUAL(f(f(b,g(d)),d),b). >> back demodulating: 1257 (273,7,5,22) P(f(f(b,g(d)),d),g(b),e). >> back demodulating: 1264 (273,7,87,5) P(e,b,f(f(b,g(d)),d)). >> back demodulating: 1881 (566,6,5,165) P(d,f(f(b,g(d)),d),f(d,b)). new given clause: 1346 (304,17,31) EQUAL(g(f(g(c),a)),b). new given clause: 1373 (307,6,5,5) P(d,f(g(c),a),h). ** KEPT: 2244 (1373,8,5) EQUAL(f(d,f(g(c),a)),h). ---> New Demodulator: 2245 (2244) EQUAL(f(d,f(g(c),a)),h). ** KEPT: 2246 (1373,7,212,5) P(e,f(g(c),a),f(f(a,g(c)),h)). ** KEPT: 2247 (1373,7,65,5) P(g(a),f(g(c),a),f(g(c),h)). ** KEPT: 2248 (1373,7,5,180) P(f(f(g(h),k),d),f(g(c),a),b). ** KEPT: 2249 (1373,7,5,5) P(f(x,d),f(g(c),a),f(x,h)). ** KEPT: 2250 (1373,7,5,5) P(h,x,f(d,f(f(g(c),a),x))). ** KEPT: 2251 (1373,6,475,5) P(c,f(f(b,g(c)),f(g(c),a)),h). ** KEPT: 2252 (1373,6,414,5) P(g(k),f(f(k,d),f(g(c),a)),h). ** KEPT: 2253 (1373,6,373,5) P(f(d,b),f(g(b),f(g(c),a)),h). ** KEPT: 2254 (1373,6,320,5) P(f(d,c),f(g(c),f(g(c),a)),h). ** KEPT: 2255 (1373,6,255,5) P(f(c,b),f(g(c),f(g(c),a)),h). ** KEPT: 2256 (1373,6,204,5) P(g(k),f(f(d,b),f(g(c),a)),h). ** KEPT: 2257 (1373,6,179,5) P(f(k,d),f(g(b),f(g(c),a)),h). ** KEPT: 2258 (1373,6,167,5) P(k,f(h,f(g(c),a)),h). ** KEPT: 2259 (1373,6,123,5) P(f(h,g(a)),f(c,f(g(c),a)),h). ** KEPT: 2260 (1373,6,63,5) P(a,f(f(b,g(a)),f(g(c),a)),h). ** KEPT: 2261 (1373,6,21,5) P(c,f(g(a),f(g(c),a)),h). ** KEPT: 2262 (1373,6,1245,5) P(f(c,g(d)),h,f(c,f(g(c),a))). ** KEPT: 2263 (1373,6,212,5,28) P(f(a,g(c)),h,f(g(c),a)). ** KEPT: 2264 (1373,6,186,5) P(g(k),h,f(h,f(g(c),a))). ** KEPT: 2265 (1373,6,165,5) P(k,h,f(f(d,b),f(g(c),a))). ** KEPT: 2266 (1373,6,149,5) P(f(a,g(h)),h,f(c,f(g(c),a))). ** KEPT: 2267 (1373,6,65,5) P(g(c),h,f(g(a),f(g(c),a))). ** KEPT: 2268 (1373,6,5,5) P(x,h,f(f(x,d),f(g(c),a))). ** KEPT: 2269 (1373,6,3,5,28) P(g(d),h,f(g(c),a)). ** KEPT: 2270 (1373,6,5,794) P(d,f(f(g(c),a),f(g(h),c)),c). ** KEPT: 2271 (1373,6,5,457) P(d,f(f(g(c),a),f(g(d),k)),e). ** KEPT: 2272 (1373,6,5,200) P(d,f(f(g(c),a),g(d)),g(k)). ** KEPT: 2273 (1373,6,5,197) P(d,f(f(g(c),a),a),f(g(k),c)). ** KEPT: 2274 (1373,6,5,168) P(d,f(f(g(c),a),f(b,g(h))),k). ** KEPT: 2275 (1373,6,5,104) P(d,f(f(g(c),a),f(b,g(d))),e). ** KEPT: 2276 (1373,6,5,102) P(d,f(f(g(c),a),f(b,a)),c). ** KEPT: 2277 (1373,6,5,5) P(d,f(f(g(c),a),x),f(h,x)). ** KEPT: 2278 (1373,6,5,4) P(d,f(f(g(c),a),g(h)),e). >>>> Starting back demodulation with: 2245 (2244) EQUAL(f(d,f(g(c),a)),h). >> back demodulating: 1461 (331,6,101,5) P(g(h),f(d,f(g(c),a)),e). >> back demodulating: 1467 (331,6,87,5) P(h,e,f(d,f(g(c),a))). >> back demodulating: 2050 (922,6,5,331) P(f(g(d),k),f(d,f(g(c),a)),e). >> back demodulating: 2241 (1270,6,5,331) P(f(b,g(d)),f(d,f(g(c),a)),e). new given clause: 1379 (307,6,20,87) P(f(d,g(c)),c,d). ** KEPT: 2279 (1379,8,5) EQUAL(f(f(d,g(c)),c),d). ---> New Demodulator: 2280 (2279) EQUAL(f(f(d,g(c)),c),d). ** KEPT: 2281 (1379,7,5,1245) P(f(f(d,g(c)),f(c,g(d))),d,d). ** KEPT: 2282 (1379,7,5,1014) P(f(f(d,g(c)),k),f(g(k),c),d). ** KEPT: 2283 (1379,7,5,794) P(f(f(d,g(c)),h),f(g(h),c),d). ** KEPT: 2284 (1379,7,5,252) P(f(f(d,g(c)),f(c,b)),g(b),d). ** KEPT: 2285 (1379,7,5,237) P(f(f(d,g(c)),g(d)),f(d,c),d). ** KEPT: 2286 (1379,7,5,187) P(f(f(d,g(c)),k),f(h,a),d). ** KEPT: 2287 (1379,7,5,149) P(f(f(d,g(c)),f(a,g(h))),d,d). ** KEPT: 2288 (1379,7,5,143) P(f(f(d,g(c)),g(d)),f(c,b),d). ** KEPT: 2289 (1379,7,5,110) P(f(f(d,g(c)),f(d,c)),g(b),d). ** KEPT: 2290 (1379,7,5,102) P(f(f(d,g(c)),h),f(b,a),d). ** KEPT: 2291 (1379,7,5,62) P(f(f(d,g(c)),d),a,d). ** KEPT: 2292 (1379,7,5,1270) P(f(f(b,g(d)),f(d,g(c))),c,b). ** KEPT: 2293 (1379,7,5,1245) P(f(f(c,g(d)),f(d,g(c))),c,c). ** KEPT: 2294 (1379,7,5,922) P(f(f(g(d),k),f(d,g(c))),c,b). ** KEPT: 2295 (1379,7,5,212) P(f(f(a,g(c)),f(d,g(c))),c,e). ** KEPT: 2296 (1379,7,5,186) P(f(g(k),f(d,g(c))),c,h). ** KEPT: 2297 (1379,7,5,165) P(f(k,f(d,g(c))),c,f(d,b)). ** KEPT: 2298 (1379,7,5,149) P(f(f(a,g(h)),f(d,g(c))),c,c). ** KEPT: 2299 (1379,7,5,101) P(f(g(h),f(d,g(c))),c,b). ** KEPT: 2300 (1379,7,5,65) P(f(g(c),f(d,g(c))),c,g(a)). ** KEPT: 2301 (1379,7,5,5) P(f(x,f(d,g(c))),c,f(x,d)). ** KEPT: 2302 (1379,7,5,3) P(f(g(d),f(d,g(c))),c,e). ** KEPT: 2303 (1379,7,3,5) P(e,c,f(g(f(d,g(c))),d)). ** KEPT: 2304 (1379,7,475,5) P(d,f(b,g(c)),f(f(d,g(c)),d)). ** KEPT: 2305 (1379,7,434,5) P(d,g(f(h,a)),f(f(d,g(c)),k)). ** KEPT: 2306 (1379,7,292,5) P(d,g(f(b,a)),f(f(d,g(c)),h)). ** KEPT: 2307 (1379,7,5,5) P(d,x,f(f(d,g(c)),f(c,x))). ** KEPT: 2308 (1379,6,5,5) P(x,d,f(f(x,f(d,g(c))),c)). ** KEPT: 2309 (1379,6,3,5,28) P(g(f(d,g(c))),d,c). ** KEPT: 2310 (1379,6,1237,5) P(f(d,g(c)),a,f(d,f(g(d),h))). ** KEPT: 2311 (1379,6,475,5) P(f(d,g(c)),d,f(d,f(b,g(c)))). ** KEPT: 2312 (1379,6,434,5) P(f(d,g(c)),k,f(d,g(f(h,a)))). ** KEPT: 2313 (1379,6,292,5) P(f(d,g(c)),h,f(d,g(f(b,a)))). ** KEPT: 2314 (1379,6,5,1373) P(f(d,g(c)),f(c,f(g(c),a)),h). ** KEPT: 2315 (1379,6,5,566) P(f(d,g(c)),f(c,f(b,g(d))),k). ** KEPT: 2316 (1379,6,5,115) P(f(d,g(c)),f(c,f(a,g(b))),a). ** KEPT: 2317 (1379,6,5,105) P(f(d,g(c)),f(c,g(h)),k). ** KEPT: 2318 (1379,6,5,80) P(f(d,g(c)),f(c,f(a,g(c))),e). ** KEPT: 2319 (1379,6,5,78) P(f(d,g(c)),f(c,c),f(c,b)). ** KEPT: 2320 (1379,6,5,62) P(f(d,g(c)),f(c,a),c). ** KEPT: 2321 (1379,6,5,5) P(f(d,g(c)),f(c,x),f(d,x)). ** KEPT: 2322 (1379,6,5,4) P(f(d,g(c)),f(c,g(d)),e). >>>> Starting back demodulation with: 2280 (2279) EQUAL(f(f(d,g(c)),c),d). >> back demodulating: 1359 (307,7,5,38) P(f(f(d,g(c)),c),g(b),h). >> back demodulating: 1371 (307,7,20,5) P(h,b,f(f(d,g(c)),c)). >> back demodulating: 2141 (1237,7,5,307) P(f(f(d,g(c)),c),f(g(d),h),h). new given clause: 1405 (309,6,20,5,28) P(f(b,g(c)),c,b). ** KEPT: 2323 (1405,8,5) EQUAL(f(f(b,g(c)),c),b). ---> New Demodulator: 2324 (2323) EQUAL(f(f(b,g(c)),c),b). ** KEPT: 2325 (1405,7,5,1245) P(f(f(b,g(c)),f(c,g(d))),d,b). ** KEPT: 2326 (1405,7,5,1014) P(f(f(b,g(c)),k),f(g(k),c),b). ** KEPT: 2327 (1405,7,5,794) P(f(f(b,g(c)),h),f(g(h),c),b). ** KEPT: 2328 (1405,7,5,252) P(f(f(b,g(c)),f(c,b)),g(b),b). ** KEPT: 2329 (1405,7,5,237) P(f(f(b,g(c)),g(d)),f(d,c),b). ** KEPT: 2330 (1405,7,5,187) P(f(f(b,g(c)),k),f(h,a),b). ** KEPT: 2331 (1405,7,5,149) P(f(f(b,g(c)),f(a,g(h))),d,b). ** KEPT: 2332 (1405,7,5,143) P(f(f(b,g(c)),g(d)),f(c,b),b). ** KEPT: 2333 (1405,7,5,110) P(f(f(b,g(c)),f(d,c)),g(b),b). ** KEPT: 2334 (1405,7,5,102) P(f(f(b,g(c)),h),f(b,a),b). ** KEPT: 2335 (1405,7,5,62) P(f(f(b,g(c)),d),a,b). ** KEPT: 2336 (1405,7,5,193) P(f(f(g(k),h),f(b,g(c))),c,h). ** KEPT: 2337 (1405,7,5,173) P(f(d,f(b,g(c))),c,f(k,d)). ** KEPT: 2338 (1405,7,5,135) P(f(f(g(d),a),f(b,g(c))),c,a). ** KEPT: 2339 (1405,7,5,97) P(f(f(g(d),h),f(b,g(c))),c,e). ** KEPT: 2340 (1405,7,5,87) P(f(h,f(b,g(c))),c,d). ** KEPT: 2341 (1405,7,5,35) P(f(f(g(c),a),f(b,g(c))),c,e). ** KEPT: 2342 (1405,7,5,5) P(f(x,f(b,g(c))),c,f(x,b)). ** KEPT: 2343 (1405,7,5,3) P(f(g(b),f(b,g(c))),c,e). ** KEPT: 2344 (1405,7,475,5) P(b,f(b,g(c)),f(f(b,g(c)),d)). ** KEPT: 2345 (1405,7,434,5) P(b,g(f(h,a)),f(f(b,g(c)),k)). ** KEPT: 2346 (1405,7,292,5) P(b,g(f(b,a)),f(f(b,g(c)),h)). ** KEPT: 2347 (1405,7,5,5) P(b,x,f(f(b,g(c)),f(c,x))). ** KEPT: 2348 (1405,6,5,5) P(x,b,f(f(x,f(b,g(c))),c)). ** KEPT: 2349 (1405,6,475,5) P(f(b,g(c)),d,f(b,f(b,g(c)))). ** KEPT: 2350 (1405,6,434,5) P(f(b,g(c)),k,f(b,g(f(h,a)))). ** KEPT: 2351 (1405,6,292,5) P(f(b,g(c)),h,f(b,g(f(b,a)))). ** KEPT: 2352 (1405,6,5,331) P(f(b,g(c)),f(c,f(g(c),a)),e). ** KEPT: 2353 (1405,6,5,154) P(f(b,g(c)),f(c,g(d)),g(h)). ** KEPT: 2354 (1405,6,5,152) P(f(b,g(c)),f(c,a),f(g(h),c)). ** KEPT: 2355 (1405,6,5,5) P(f(b,g(c)),f(c,x),f(b,x)). >>>> Starting back demodulation with: 2324 (2323) EQUAL(f(f(b,g(c)),c),b). >> back demodulating: 1395 (309,7,5,38) P(f(f(b,g(c)),c),g(b),e). >> back demodulating: 1400 (309,7,20,5) P(e,b,f(f(b,g(c)),c)). >> back demodulating: 1813 (475,6,5,78) P(c,f(f(b,g(c)),c),f(c,b)). >> back demodulating: 2140 (1237,7,5,309) P(f(f(b,g(c)),c),f(g(d),h),e). new given clause: 1420 (317,17,31) EQUAL(g(f(b,g(c))),a). new given clause: 1454 (331,7,20,5,27) P(c,f(g(c),a),a). ** KEPT: 2356 (1454,8,5) EQUAL(f(c,f(g(c),a)),a). ---> New Demodulator: 2357 (2356) EQUAL(f(c,f(g(c),a)),a). ** KEPT: 2358 (1454,7,1094,5) P(a,f(g(c),a),f(f(a,g(c)),a)). ** KEPT: 2359 (1454,7,202,5) P(f(h,a),f(g(c),a),f(g(k),a)). ** KEPT: 2360 (1454,7,156,5) P(f(b,a),f(g(c),a),f(g(h),a)). ** KEPT: 2361 (1454,7,5,197) P(f(h,c),f(g(c),a),f(g(k),c)). ** KEPT: 2362 (1454,7,5,152) P(f(b,c),f(g(c),a),f(g(h),c)). ** KEPT: 2363 (1454,7,5,122) P(f(f(g(a),d),c),f(g(c),a),b). ** KEPT: 2364 (1454,7,5,5) P(f(x,c),f(g(c),a),f(x,a)). ** KEPT: 2365 (1454,7,5,5) P(a,x,f(c,f(f(g(c),a),x))). ** KEPT: 2366 (1454,6,1014,5) P(k,f(f(g(k),c),f(g(c),a)),a). ** KEPT: 2367 (1454,6,794,5) P(h,f(f(g(h),c),f(g(c),a)),a). ** KEPT: 2368 (1454,6,252,5) P(f(c,b),f(g(b),f(g(c),a)),a). ** KEPT: 2369 (1454,6,237,5) P(g(d),f(f(d,c),f(g(c),a)),a). ** KEPT: 2370 (1454,6,187,5) P(k,f(f(h,a),f(g(c),a)),a). ** KEPT: 2371 (1454,6,143,5) P(g(d),f(f(c,b),f(g(c),a)),a). ** KEPT: 2372 (1454,6,110,5) P(f(d,c),f(g(b),f(g(c),a)),a). ** KEPT: 2373 (1454,6,102,5) P(h,f(f(b,a),f(g(c),a)),a). ** KEPT: 2374 (1454,6,62,5) P(d,f(a,f(g(c),a)),a). ** KEPT: 2375 (1454,6,1094,5) P(f(a,g(c)),a,f(a,f(g(c),a))). ** KEPT: 2376 (1454,6,202,5) P(g(k),a,f(f(h,a),f(g(c),a))). ** KEPT: 2377 (1454,6,156,5) P(g(h),a,f(f(b,a),f(g(c),a))). ** KEPT: 2378 (1454,6,5,5) P(x,a,f(f(x,c),f(g(c),a))). ** KEPT: 2379 (1454,6,5,345) P(c,f(f(g(c),a),f(g(c),d)),e). ** KEPT: 2380 (1454,6,5,140) P(c,f(f(g(c),a),g(c)),g(d)). ** KEPT: 2381 (1454,6,5,63) P(c,f(f(g(c),a),f(b,g(a))),d). ** KEPT: 2382 (1454,6,5,42) P(c,f(f(g(c),a),f(b,g(c))),e). ** KEPT: 2383 (1454,6,5,5) P(c,f(f(g(c),a),x),f(a,x)). ** KEPT: 2384 (1454,6,5,4) P(c,f(f(g(c),a),g(a)),e). >>>> Starting back demodulation with: 2357 (2356) EQUAL(f(c,f(g(c),a)),a). >> back demodulating: 1462 (331,6,40,5) P(g(a),f(c,f(g(c),a)),e). >> back demodulating: 1469 (331,6,20,5) P(a,e,f(c,f(g(c),a))). >> back demodulating: 1848 (528,6,5,331) P(f(g(c),d),f(c,f(g(c),a)),e). >> back demodulating: 2259 (1373,6,123,5) P(f(h,g(a)),f(c,f(g(c),a)),h). >> back demodulating: 2262 (1373,6,1245,5) P(f(c,g(d)),h,f(c,f(g(c),a))). >> back demodulating: 2266 (1373,6,149,5) P(f(a,g(h)),h,f(c,f(g(c),a))). >> back demodulating: 2314 (1379,6,5,1373) P(f(d,g(c)),f(c,f(g(c),a)),h). >> back demodulating: 2352 (1405,6,5,331) P(f(b,g(c)),f(c,f(g(c),a)),e). new given clause: 1472 (332,17,31) EQUAL(g(f(a,g(c))),d). new given clause: 1485 (345,7,62,5,27) P(c,f(g(c),d),d). ** KEPT: 2385 (1485,8,5) EQUAL(f(c,f(g(c),d)),d). ---> New Demodulator: 2386 (2385) EQUAL(f(c,f(g(c),d)),d). ** KEPT: 2387 (1485,7,1405,5) P(b,f(g(c),d),f(f(b,g(c)),d)). ** KEPT: 2388 (1485,7,1379,5) P(d,f(g(c),d),f(f(d,g(c)),d)). ** KEPT: 2389 (1485,7,528,5) P(b,f(g(c),d),f(f(g(c),d),d)). ** KEPT: 2390 (1485,7,123,5) P(d,f(g(c),d),f(f(h,g(a)),d)). ** KEPT: 2391 (1485,7,5,1270) P(f(f(b,g(d)),c),f(g(c),d),b). ** KEPT: 2392 (1485,7,5,1245) P(f(f(c,g(d)),c),f(g(c),d),c). ** KEPT: 2393 (1485,7,5,922) P(f(f(g(d),k),c),f(g(c),d),b). ** KEPT: 2394 (1485,7,5,165) P(f(k,c),f(g(c),d),f(d,b)). ** KEPT: 2395 (1485,7,5,149) P(f(f(a,g(h)),c),f(g(c),d),c). ** KEPT: 2396 (1485,7,5,5) P(f(x,c),f(g(c),d),f(x,d)). ** KEPT: 2397 (1485,7,5,5) P(d,x,f(c,f(f(g(c),d),x))). ** KEPT: 2398 (1485,6,1245,5) P(f(c,g(d)),f(d,f(g(c),d)),d). ** KEPT: 2399 (1485,6,1014,5) P(k,f(f(g(k),c),f(g(c),d)),d). ** KEPT: 2400 (1485,6,794,5) P(h,f(f(g(h),c),f(g(c),d)),d). ** KEPT: 2401 (1485,6,252,5) P(f(c,b),f(g(b),f(g(c),d)),d). ** KEPT: 2402 (1485,6,237,5) P(g(d),f(f(d,c),f(g(c),d)),d). ** KEPT: 2403 (1485,6,187,5) P(k,f(f(h,a),f(g(c),d)),d). ** KEPT: 2404 (1485,6,149,5) P(f(a,g(h)),f(d,f(g(c),d)),d). ** KEPT: 2405 (1485,6,143,5) P(g(d),f(f(c,b),f(g(c),d)),d). ** KEPT: 2406 (1485,6,110,5) P(f(d,c),f(g(b),f(g(c),d)),d). ** KEPT: 2407 (1485,6,102,5) P(h,f(f(b,a),f(g(c),d)),d). ** KEPT: 2408 (1485,6,20,5) P(a,f(b,f(g(c),d)),d). ** KEPT: 2409 (1485,6,1405,5) P(f(b,g(c)),d,f(b,f(g(c),d))). ** KEPT: 2410 (1485,6,1379,5) P(f(d,g(c)),d,f(d,f(g(c),d))). ** KEPT: 2411 (1485,6,528,5) P(f(g(c),d),d,f(b,f(g(c),d))). ** KEPT: 2412 (1485,6,202,5) P(g(k),d,f(f(h,a),f(g(c),d))). ** KEPT: 2413 (1485,6,156,5) P(g(h),d,f(f(b,a),f(g(c),d))). ** KEPT: 2414 (1485,6,123,5) P(f(h,g(a)),d,f(d,f(g(c),d))). ** KEPT: 2415 (1485,6,5,5) P(x,d,f(f(x,c),f(g(c),d))). ** KEPT: 2416 (1485,6,5,1373) P(c,f(f(g(c),d),f(g(c),a)),h). ** KEPT: 2417 (1485,6,5,566) P(c,f(f(g(c),d),f(b,g(d))),k). ** KEPT: 2418 (1485,6,5,173) P(c,f(f(g(c),d),b),f(k,d)). ** KEPT: 2419 (1485,6,5,115) P(c,f(f(g(c),d),f(a,g(b))),a). ** KEPT: 2420 (1485,6,5,105) P(c,f(f(g(c),d),g(h)),k). ** KEPT: 2421 (1485,6,5,80) P(c,f(f(g(c),d),f(a,g(c))),e). ** KEPT: 2422 (1485,6,5,22) P(c,f(f(g(c),d),g(b)),h). ** KEPT: 2423 (1485,6,5,5) P(c,f(f(g(c),d),x),f(d,x)). ** KEPT: 2424 (1485,6,5,4) P(c,f(f(g(c),d),g(d)),e). >>>> Starting back demodulation with: 2386 (2385) EQUAL(f(c,f(g(c),d)),d). >> back demodulating: 1492 (345,6,77,5) P(g(d),f(c,f(g(c),d)),e). >> back demodulating: 1500 (345,6,62,5) P(d,e,f(c,f(g(c),d))). >> back demodulating: 1832 (528,7,5,74) P(f(c,f(g(c),d)),c,f(d,c)). >> back demodulating: 2132 (1094,6,5,345) P(f(a,g(c)),f(c,f(g(c),d)),e). new given clause: 1503 (346,17,31) EQUAL(g(f(b,g(d))),h). new given clause: 1529 (362,7,87,5,27) P(d,f(g(d),h),h). ** KEPT: 2425 (1529,8,5) EQUAL(f(d,f(g(d),h)),h). ---> New Demodulator: 2426 (2425) EQUAL(f(d,f(g(d),h)),h). ** KEPT: 2427 (1529,7,212,5) P(e,f(g(d),h),f(f(a,g(c)),h)). ** KEPT: 2428 (1529,7,5,180) P(f(f(g(h),k),d),f(g(d),h),b). ** KEPT: 2429 (1529,7,5,5) P(f(x,d),f(g(d),h),f(x,h)). ** KEPT: 2430 (1529,7,5,5) P(h,x,f(d,f(f(g(d),h),x))). ** KEPT: 2431 (1529,6,1485,5) P(c,f(f(g(c),d),f(g(d),h)),h). ** KEPT: 2432 (1529,6,475,5) P(c,f(f(b,g(c)),f(g(d),h)),h). ** KEPT: 2433 (1529,6,414,5) P(g(k),f(f(k,d),f(g(d),h)),h). ** KEPT: 2434 (1529,6,373,5) P(f(d,b),f(g(b),f(g(d),h)),h). ** KEPT: 2435 (1529,6,320,5) P(f(d,c),f(g(c),f(g(d),h)),h). ** KEPT: 2436 (1529,6,255,5) P(f(c,b),f(g(c),f(g(d),h)),h). ** KEPT: 2437 (1529,6,204,5) P(g(k),f(f(d,b),f(g(d),h)),h). ** KEPT: 2438 (1529,6,179,5) P(f(k,d),f(g(b),f(g(d),h)),h). ** KEPT: 2439 (1529,6,167,5) P(k,f(h,f(g(d),h)),h). ** KEPT: 2440 (1529,6,63,5) P(a,f(f(b,g(a)),f(g(d),h)),h). ** KEPT: 2441 (1529,6,21,5) P(c,f(g(a),f(g(d),h)),h). ** KEPT: 2442 (1529,6,212,5,28) P(f(a,g(c)),h,f(g(d),h)). ** KEPT: 2443 (1529,6,5,5) P(x,h,f(f(x,d),f(g(d),h))). ** KEPT: 2444 (1529,6,5,794) P(d,f(f(g(d),h),f(g(h),c)),c). ** KEPT: 2445 (1529,6,5,457) P(d,f(f(g(d),h),f(g(d),k)),e). ** KEPT: 2446 (1529,6,5,200) P(d,f(f(g(d),h),g(d)),g(k)). ** KEPT: 2447 (1529,6,5,197) P(d,f(f(g(d),h),a),f(g(k),c)). ** KEPT: 2448 (1529,6,5,168) P(d,f(f(g(d),h),f(b,g(h))),k). ** KEPT: 2449 (1529,6,5,104) P(d,f(f(g(d),h),f(b,g(d))),e). ** KEPT: 2450 (1529,6,5,102) P(d,f(f(g(d),h),f(b,a)),c). ** KEPT: 2451 (1529,6,5,5) P(d,f(f(g(d),h),x),f(h,x)). ** KEPT: 2452 (1529,6,5,4) P(d,f(f(g(d),h),g(h)),e). >>>> Starting back demodulation with: 2426 (2425) EQUAL(f(d,f(g(d),h)),h). >> back demodulating: 1538 (362,6,101,5) P(g(h),f(d,f(g(d),h)),e). >> back demodulating: 1543 (362,6,87,5) P(h,e,f(d,f(g(d),h))). >> back demodulating: 2049 (922,6,5,362) P(f(g(d),k),f(d,f(g(d),h)),e). >> back demodulating: 2152 (1237,6,149,5) P(f(a,g(h)),f(d,f(g(d),h)),a). >> back demodulating: 2160 (1237,6,123,5) P(f(h,g(a)),a,f(d,f(g(d),h))). >> back demodulating: 2204 (1245,6,5,1237) P(f(c,g(d)),f(d,f(g(d),h)),a). >> back demodulating: 2240 (1270,6,5,362) P(f(b,g(d)),f(d,f(g(d),h)),e). >> back demodulating: 2310 (1379,6,1237,5) P(f(d,g(c)),a,f(d,f(g(d),h))). new given clause: 1580 (386,17,31) EQUAL(g(f(g(d),k)),h). new given clause: 1600 (389,6,167,5,28) P(f(h,g(d)),d,h). ** KEPT: 2453 (1600,8,5) EQUAL(f(f(h,g(d)),d),h). ---> New Demodulator: 2454 (2453) EQUAL(f(f(h,g(d)),d),h). ** KEPT: 2455 (1600,7,5,1485) P(f(f(h,g(d)),c),f(g(c),d),h). ** KEPT: 2456 (1600,7,5,1379) P(f(f(h,g(d)),f(d,g(c))),c,h). ** KEPT: 2457 (1600,7,5,475) P(f(f(h,g(d)),c),f(b,g(c)),h). ** KEPT: 2458 (1600,7,5,414) P(f(f(h,g(d)),g(k)),f(k,d),h). ** KEPT: 2459 (1600,7,5,373) P(f(f(h,g(d)),f(d,b)),g(b),h). ** KEPT: 2460 (1600,7,5,320) P(f(f(h,g(d)),f(d,c)),g(c),h). ** KEPT: 2461 (1600,7,5,255) P(f(f(h,g(d)),f(c,b)),g(c),h). ** KEPT: 2462 (1600,7,5,204) P(f(f(h,g(d)),g(k)),f(d,b),h). ** KEPT: 2463 (1600,7,5,179) P(f(f(h,g(d)),f(k,d)),g(b),h). ** KEPT: 2464 (1600,7,5,123) P(f(f(h,g(d)),f(h,g(a))),c,h). ** KEPT: 2465 (1600,7,5,87) P(f(f(h,g(d)),h),b,h). ** KEPT: 2466 (1600,7,5,63) P(f(f(h,g(d)),a),f(b,g(a)),h). ** KEPT: 2467 (1600,7,5,21) P(f(f(h,g(d)),c),g(a),h). ** KEPT: 2468 (1600,7,5,760) P(f(f(a,g(h)),f(h,g(d))),d,a). ** KEPT: 2469 (1600,7,5,273) P(f(f(b,g(d)),f(h,g(d))),d,e). ** KEPT: 2470 (1600,7,5,271) P(f(f(c,g(d)),f(h,g(d))),d,a). ** KEPT: 2471 (1600,7,5,182) P(f(f(g(d),k),f(h,g(d))),d,e). ** KEPT: 2472 (1600,7,5,180) P(f(f(g(h),k),f(h,g(d))),d,b). ** KEPT: 2473 (1600,7,5,90) P(f(g(d),f(h,g(d))),d,g(b)). ** KEPT: 2474 (1600,7,5,5) P(f(x,f(h,g(d))),d,f(x,h)). ** KEPT: 2475 (1600,7,5,3) P(f(g(h),f(h,g(d))),d,e). ** KEPT: 2476 (1600,7,1529,5) P(h,f(g(d),h),f(f(h,g(d)),h)). ** KEPT: 2477 (1600,7,1373,5) P(h,f(g(c),a),f(f(h,g(d)),h)). ** KEPT: 2478 (1600,7,115,5) P(h,f(a,g(b)),f(f(h,g(d)),a)). ** KEPT: 2479 (1600,7,80,5,27) P(h,f(a,g(c)),f(h,g(d))). ** KEPT: 2480 (1600,7,5,5) P(h,x,f(f(h,g(d)),f(d,x))). ** KEPT: 2481 (1600,6,5,5) P(x,h,f(f(x,f(h,g(d))),d)). ** KEPT: 2482 (1600,6,1529,5) P(f(h,g(d)),h,f(h,f(g(d),h))). ** KEPT: 2483 (1600,6,1373,5) P(f(h,g(d)),h,f(h,f(g(c),a))). ** KEPT: 2484 (1600,6,115,5) P(f(h,g(d)),a,f(h,f(a,g(b)))). ** KEPT: 2485 (1600,6,80,5) P(f(h,g(d)),e,f(h,f(a,g(c)))). ** KEPT: 2486 (1600,6,5,794) P(f(h,g(d)),f(d,f(g(h),c)),c). ** KEPT: 2487 (1600,6,5,457) P(f(h,g(d)),f(d,f(g(d),k)),e). ** KEPT: 2488 (1600,6,5,168) P(f(h,g(d)),f(d,f(b,g(h))),k). ** KEPT: 2489 (1600,6,5,102) P(f(h,g(d)),f(d,f(b,a)),c). ** KEPT: 2490 (1600,6,5,5) P(f(h,g(d)),f(d,x),f(h,x)). >>>> Starting back demodulation with: 2454 (2453) EQUAL(f(f(h,g(d)),d),h). >> back demodulating: 1590 (389,7,5,105) P(f(f(h,g(d)),d),g(h),e). >> back demodulating: 1595 (389,7,167,5) P(e,h,f(f(h,g(d)),d)). >> back demodulating: 1858 (566,7,5,389) P(f(f(h,g(d)),d),f(b,g(d)),e). new given clause: 1759 (444,17,31) EQUAL(g(f(h,g(d))),k). new given clause: 1769 (457,7,167,5,27) P(d,f(g(d),k),k). ** KEPT: 2491 (1769,8,5) EQUAL(f(d,f(g(d),k)),k). ---> New Demodulator: 2492 (2491) EQUAL(f(d,f(g(d),k)),k). ** KEPT: 2493 (1769,7,1270,5) P(b,f(g(d),k),f(f(b,g(d)),k)). ** KEPT: 2494 (1769,7,1245,5) P(c,f(g(d),k),f(f(c,g(d)),k)). ** KEPT: 2495 (1769,7,922,5) P(b,f(g(d),k),f(f(g(d),k),k)). ** KEPT: 2496 (1769,7,212,5) P(e,f(g(d),k),f(f(a,g(c)),k)). ** KEPT: 2497 (1769,7,149,5) P(c,f(g(d),k),f(f(a,g(h)),k)). ** KEPT: 2498 (1769,7,5,5) P(f(x,d),f(g(d),k),f(x,k)). ** KEPT: 2499 (1769,7,5,5) P(k,x,f(d,f(f(g(d),k),x))). ** KEPT: 2500 (1769,6,1485,5) P(c,f(f(g(c),d),f(g(d),k)),k). ** KEPT: 2501 (1769,6,1379,5) P(f(d,g(c)),f(c,f(g(d),k)),k). ** KEPT: 2502 (1769,6,475,5) P(c,f(f(b,g(c)),f(g(d),k)),k). ** KEPT: 2503 (1769,6,414,5) P(g(k),f(f(k,d),f(g(d),k)),k). ** KEPT: 2504 (1769,6,373,5) P(f(d,b),f(g(b),f(g(d),k)),k). ** KEPT: 2505 (1769,6,320,5) P(f(d,c),f(g(c),f(g(d),k)),k). ** KEPT: 2506 (1769,6,255,5) P(f(c,b),f(g(c),f(g(d),k)),k). ** KEPT: 2507 (1769,6,204,5) P(g(k),f(f(d,b),f(g(d),k)),k). ** KEPT: 2508 (1769,6,179,5) P(f(k,d),f(g(b),f(g(d),k)),k). ** KEPT: 2509 (1769,6,123,5) P(f(h,g(a)),f(c,f(g(d),k)),k). ** KEPT: 2510 (1769,6,87,5) P(h,f(b,f(g(d),k)),k). ** KEPT: 2511 (1769,6,63,5) P(a,f(f(b,g(a)),f(g(d),k)),k). ** KEPT: 2512 (1769,6,21,5) P(c,f(g(a),f(g(d),k)),k). ** KEPT: 2513 (1769,6,1270,5) P(f(b,g(d)),k,f(b,f(g(d),k))). ** KEPT: 2514 (1769,6,1245,5) P(f(c,g(d)),k,f(c,f(g(d),k))). ** KEPT: 2515 (1769,6,922,5) P(f(g(d),k),k,f(b,f(g(d),k))). ** KEPT: 2516 (1769,6,212,5,28) P(f(a,g(c)),k,f(g(d),k)). ** KEPT: 2517 (1769,6,149,5) P(f(a,g(h)),k,f(c,f(g(d),k))). ** KEPT: 2518 (1769,6,5,5) P(x,k,f(f(x,d),f(g(d),k))). ** KEPT: 2519 (1769,6,5,1014) P(d,f(f(g(d),k),f(g(k),c)),c). ** KEPT: 2520 (1769,6,5,190) P(d,f(f(g(d),k),f(h,g(d))),e). ** KEPT: 2521 (1769,6,5,188) P(d,f(f(g(d),k),f(h,g(b))),h). ** KEPT: 2522 (1769,6,5,187) P(d,f(f(g(d),k),f(h,a)),c). ** KEPT: 2523 (1769,6,5,5) P(d,f(f(g(d),k),x),f(k,x)). ** KEPT: 2524 (1769,6,5,4) P(d,f(f(g(d),k),g(k)),e). >>>> Starting back demodulation with: 2492 (2491) EQUAL(f(d,f(g(d),k)),k). >> back demodulating: 1777 (457,6,186,5) P(g(k),f(d,f(g(d),k)),e). >> back demodulating: 1782 (457,6,167,5) P(k,e,f(d,f(g(d),k))). >> back demodulating: 2027 (922,7,5,173) P(f(d,f(g(d),k)),d,f(k,d)). >> back demodulating: 2487 (1600,6,5,457) P(f(h,g(d)),f(d,f(g(d),k)),e). new given clause: 34 (20,7,5,5) P(f(x,a),b,f(x,c)). ** KEPT: 2525 (34,8,5) EQUAL(f(f(x,a),b),f(x,c)). ** KEPT: 2526 (34,7,5,1405) P(f(f(x,a),f(b,g(c))),c,f(x,c)). ** KEPT: 2527 (34,7,5,1270) P(f(f(x,a),f(b,g(d))),d,f(x,c)). ** KEPT: 2528 (34,7,5,922) P(f(f(x,a),f(g(d),k)),d,f(x,c)). ** KEPT: 2529 (34,7,5,817) P(f(f(x,a),f(b,a)),g(a),f(x,c)). ** KEPT: 2530 (34,7,5,528) P(f(f(x,a),f(g(c),d)),c,f(x,c)). ** KEPT: 2531 (34,7,5,398) P(f(f(x,a),g(d)),f(k,d),f(x,c)). ** KEPT: 2532 (34,7,5,397) P(f(f(x,a),g(d)),f(d,b),f(x,c)). ** KEPT: 2533 (34,7,5,260) P(f(f(x,a),g(c)),f(c,b),f(x,c)). ** KEPT: 2534 (34,7,5,222) P(f(f(x,a),g(c)),f(d,c),f(x,c)). ** KEPT: 2535 (34,7,5,180) P(f(f(x,a),f(g(h),k)),h,f(x,c)). ** KEPT: 2536 (34,7,5,122) P(f(f(x,a),f(g(a),d)),a,f(x,c)). ** KEPT: 2537 (34,7,5,101) P(f(f(x,a),g(h)),d,f(x,c)). ** KEPT: 2538 (34,7,5,40) P(f(f(x,a),g(a)),c,f(x,c)). ** KEPT: 2539 (34,7,5,2) P(f(f(x,a),b),e,f(x,c)). ** KEPT: 2540 (34,7,426,5) P(a,b,f(g(h),f(h,c))). ** KEPT: 2541 (34,7,284,5) P(a,b,f(g(b),f(b,c))). ** KEPT: 2542 (34,7,187,5) P(c,b,f(k,f(h,c))). ** KEPT: 2543 (34,7,102,5) P(c,b,f(h,f(b,c))). ** KEPT: 2544 (34,7,5,1014) P(f(k,f(g(k),a)),b,c). ** KEPT: 2545 (34,7,5,794) P(f(h,f(g(h),a)),b,c). ** KEPT: 2546 (34,7,5,5) P(f(x,f(y,a)),b,f(x,f(y,c))). ** KEPT: 2547 (34,7,5,3) P(f(g(f(x,c)),f(x,a)),b,e). ** KEPT: 2548 (34,7,3,5) P(e,b,f(g(f(x,a)),f(x,c))). ** KEPT: 2549 (34,7,154,5) P(f(x,c),g(d),f(f(x,a),g(h))). ** KEPT: 2550 (34,7,152,5) P(f(x,c),a,f(f(x,a),f(g(h),c))). ** KEPT: 2551 (34,7,128,1034) P(f(h,c),g(c),h). ** KEPT: 2552 (34,7,128,817) P(f(b,c),g(c),b). ** KEPT: 2553 (34,7,128,5) P(f(x,c),g(c),f(f(x,a),g(a))). ** KEPT: 2554 (34,7,5,5) P(f(x,c),y,f(f(x,a),f(b,y))). ** KEPT: 2555 (34,7,2,5) P(f(x,c),e,f(f(x,a),b)). ** KEPT: 2556 (34,6,1,5) P(e,f(f(x,a),b),f(x,c)). ** KEPT: 2557 (34,6,426,20) P(g(h),f(h,c),c). ** KEPT: 2558 (34,6,284,20) P(g(b),f(b,c),c). ** KEPT: 2559 (34,6,5,5) P(x,f(y,c),f(f(x,f(y,a)),b)). ** KEPT: 2560 (34,6,3,5,28) P(g(f(x,a)),f(x,c),b). ** KEPT: 2561 (34,6,1,5) P(e,f(x,c),f(f(x,a),b)). ** KEPT: 2562 (34,6,362,5) P(f(x,a),e,f(f(x,c),f(g(d),h))). ** KEPT: 2563 (34,6,331,5) P(f(x,a),e,f(f(x,c),f(g(c),a))). ** KEPT: 2564 (34,6,154,5) P(f(x,a),g(h),f(f(x,c),g(d))). ** KEPT: 2565 (34,6,152,5) P(f(x,a),f(g(h),c),f(f(x,c),a)). ** KEPT: 2566 (34,6,128,5) P(f(x,a),g(a),f(f(x,c),g(c))). ** KEPT: 2567 (34,6,5,5) P(f(x,a),f(b,y),f(f(x,c),y)). ** KEPT: 2568 (34,6,5,4) P(f(x,a),f(b,g(f(x,c))),e). ** KEPT: 2569 (34,6,4,5) P(f(x,a),e,f(f(x,c),g(b))). new given clause: 2551 (34,7,128,1034) P(f(h,c),g(c),h). ** KEPT: 2570 (2551,8,5) EQUAL(f(f(h,c),g(c)),h). ---> New Demodulator: 2571 (2570) EQUAL(f(f(h,c),g(c)),h). ** KEPT: 2572 (2551,7,5,311) P(f(f(h,c),g(b)),g(a),h). ** KEPT: 2573 (2551,7,5,216) P(f(f(h,c),g(a)),g(d),h). ** KEPT: 2574 (2551,7,5,760) P(f(f(a,g(h)),f(h,c)),g(c),a). ** KEPT: 2575 (2551,7,5,273) P(f(f(b,g(d)),f(h,c)),g(c),e). ** KEPT: 2576 (2551,7,5,271) P(f(f(c,g(d)),f(h,c)),g(c),a). ** KEPT: 2577 (2551,7,5,182) P(f(f(g(d),k),f(h,c)),g(c),e). ** KEPT: 2578 (2551,7,5,180) P(f(f(g(h),k),f(h,c)),g(c),b). ** KEPT: 2579 (2551,7,5,167) P(f(k,f(h,c)),g(c),d). ** KEPT: 2580 (2551,7,5,90) P(f(g(d),f(h,c)),g(c),g(b)). ** KEPT: 2581 (2551,7,5,5) P(f(x,f(h,c)),g(c),f(x,h)). ** KEPT: 2582 (2551,7,5,3) P(f(g(h),f(h,c)),g(c),e). ** KEPT: 2583 (2551,7,3,5) P(e,g(c),f(g(f(h,c)),h)). ** KEPT: 2584 (2551,7,260,5) P(h,f(c,b),f(f(h,c),b)). ** KEPT: 2585 (2551,7,5,5) P(h,x,f(f(h,c),f(g(c),x))). ** KEPT: 2586 (2551,6,5,5) P(x,h,f(f(x,f(h,c)),g(c))). ** KEPT: 2587 (2551,6,3,5,28) P(g(f(h,c)),h,g(c)). ** KEPT: 2588 (2551,6,260,5) P(f(h,c),b,f(h,f(c,b))). ** KEPT: 2589 (2551,6,5,794) P(f(h,c),f(g(c),f(g(h),c)),c). ** KEPT: 2590 (2551,6,5,457) P(f(h,c),f(g(c),f(g(d),k)),e). ** KEPT: 2591 (2551,6,5,200) P(f(h,c),f(g(c),g(d)),g(k)). ** KEPT: 2592 (2551,6,5,168) P(f(h,c),f(g(c),f(b,g(h))),k). ** KEPT: 2593 (2551,6,5,104) P(f(h,c),f(g(c),f(b,g(d))),e). ** KEPT: 2594 (2551,6,5,102) P(f(h,c),f(g(c),f(b,a)),c). ** KEPT: 2595 (2551,6,5,87) P(f(h,c),f(g(c),b),d). ** KEPT: 2596 (2551,6,5,5) P(f(h,c),f(g(c),x),f(h,x)). ** KEPT: 2597 (2551,6,5,4) P(f(h,c),f(g(c),g(h)),e). >>>> Starting back demodulation with: 2571 (2570) EQUAL(f(f(h,c),g(c)),h). new given clause: 2552 (34,7,128,817) P(f(b,c),g(c),b). ** KEPT: 2598 (2552,8,5) EQUAL(f(f(b,c),g(c)),b). ---> New Demodulator: 2599 (2598) EQUAL(f(f(b,c),g(c)),b). ** KEPT: 2600 (2552,7,5,311) P(f(f(b,c),g(b)),g(a),b). ** KEPT: 2601 (2552,7,5,216) P(f(f(b,c),g(a)),g(d),b). ** KEPT: 2602 (2552,7,5,193) P(f(f(g(k),h),f(b,c)),g(c),h). ** KEPT: 2603 (2552,7,5,173) P(f(d,f(b,c)),g(c),f(k,d)). ** KEPT: 2604 (2552,7,5,135) P(f(f(g(d),a),f(b,c)),g(c),a). ** KEPT: 2605 (2552,7,5,97) P(f(f(g(d),h),f(b,c)),g(c),e). ** KEPT: 2606 (2552,7,5,87) P(f(h,f(b,c)),g(c),d). ** KEPT: 2607 (2552,7,5,74) P(f(c,f(b,c)),g(c),f(d,c)). ** KEPT: 2608 (2552,7,5,35) P(f(f(g(c),a),f(b,c)),g(c),e). ** KEPT: 2609 (2552,7,5,34) P(f(f(x,a),f(b,c)),g(c),f(x,c)). ** KEPT: 2610 (2552,7,5,20) P(f(a,f(b,c)),g(c),c). ** KEPT: 2611 (2552,7,5,5) P(f(x,f(b,c)),g(c),f(x,b)). ** KEPT: 2612 (2552,7,5,3) P(f(g(b),f(b,c)),g(c),e). ** KEPT: 2613 (2552,7,3,5) P(e,g(c),f(g(f(b,c)),b)). ** KEPT: 2614 (2552,7,260,5) P(b,f(c,b),f(f(b,c),b)). ** KEPT: 2615 (2552,7,5,5) P(b,x,f(f(b,c),f(g(c),x))). ** KEPT: 2616 (2552,6,5,5) P(x,b,f(f(x,f(b,c)),g(c))). ** KEPT: 2617 (2552,6,3,5,28) P(g(f(b,c)),b,g(c)). ** KEPT: 2618 (2552,6,260,5) P(f(b,c),b,f(b,f(c,b))). ** KEPT: 2619 (2552,6,5,362) P(f(b,c),f(g(c),f(g(d),h)),e). ** KEPT: 2620 (2552,6,5,331) P(f(b,c),f(g(c),f(g(c),a)),e). ** KEPT: 2621 (2552,6,5,154) P(f(b,c),f(g(c),g(d)),g(h)). ** KEPT: 2622 (2552,6,5,128) P(f(b,c),f(g(c),g(c)),g(a)). ** KEPT: 2623 (2552,6,5,5) P(f(b,c),f(g(c),x),f(b,x)). ** KEPT: 2624 (2552,6,5,4) P(f(b,c),f(g(c),g(b)),e). >>>> Starting back demodulation with: 2599 (2598) EQUAL(f(f(b,c),g(c)),b). new given clause: 2557 (34,6,426,20) P(g(h),f(h,c),c). ** KEPT: 2625 (2557,8,5) EQUAL(f(g(h),f(h,c)),c). ---> New Demodulator: 2626 (2625) EQUAL(f(g(h),f(h,c)),c). ** KEPT: 2627 (2557,7,5,1405) P(f(f(b,g(c)),g(h)),f(h,c),b). ** KEPT: 2628 (2557,7,5,1379) P(f(f(d,g(c)),g(h)),f(h,c),d). ** KEPT: 2629 (2557,7,5,1094) P(f(f(a,g(c)),g(h)),f(h,c),a). ** KEPT: 2630 (2557,7,5,528) P(f(f(g(c),d),g(h)),f(h,c),b). ** KEPT: 2631 (2557,7,5,202) P(f(g(k),g(h)),f(h,c),f(h,a)). ** KEPT: 2632 (2557,7,5,156) P(f(g(h),g(h)),f(h,c),f(b,a)). ** KEPT: 2633 (2557,7,5,123) P(f(f(h,g(a)),g(h)),f(h,c),d). ** KEPT: 2634 (2557,7,5,77) P(f(g(d),g(h)),f(h,c),a). ** KEPT: 2635 (2557,7,5,40) P(f(g(a),g(h)),f(h,c),b). ** KEPT: 2636 (2557,7,5,5) P(f(x,g(h)),f(h,c),f(x,c)). ** KEPT: 2637 (2557,7,5,3) P(f(g(c),g(h)),f(h,c),e). ** KEPT: 2638 (2557,7,5,5) P(c,x,f(g(h),f(f(h,c),x))). ** KEPT: 2639 (2557,7,4,5,27) P(c,g(f(h,c)),g(h)). ** KEPT: 2640 (2557,6,172,5) P(g(d),f(k,f(h,c)),c). ** KEPT: 2641 (2557,6,154,5) P(b,f(g(d),f(h,c)),c). ** KEPT: 2642 (2557,6,5,5) P(x,c,f(f(x,g(h)),f(h,c))). ** KEPT: 2643 (2557,6,5,1485) P(g(h),f(f(h,c),f(g(c),d)),d). ** KEPT: 2644 (2557,6,5,1454) P(g(h),f(f(h,c),f(g(c),a)),a). ** KEPT: 2645 (2557,6,5,1237) P(g(h),f(f(h,c),f(g(d),h)),a). ** KEPT: 2646 (2557,6,5,475) P(g(h),f(f(h,c),f(b,g(c))),d). ** KEPT: 2647 (2557,6,5,434) P(g(h),f(f(h,c),g(f(h,a))),k). ** KEPT: 2648 (2557,6,5,292) P(g(h),f(f(h,c),g(f(b,a))),h). ** KEPT: 2649 (2557,6,5,74) P(g(h),f(f(h,c),b),f(d,c)). ** KEPT: 2650 (2557,6,5,38) P(g(h),f(f(h,c),g(b)),a). ** KEPT: 2651 (2557,6,5,21) P(g(h),f(f(h,c),g(a)),d). ** KEPT: 2652 (2557,6,5,5) P(g(h),f(f(h,c),x),f(c,x)). ** KEPT: 2653 (2557,6,4,5) P(g(h),e,f(c,g(f(h,c)))). >>>> Starting back demodulation with: 2626 (2625) EQUAL(f(g(h),f(h,c)),c). >> back demodulating: 2540 (34,7,426,5) P(a,b,f(g(h),f(h,c))). >> back demodulating: 2582 (2551,7,5,3) P(f(g(h),f(h,c)),g(c),e). new given clause: 2558 (34,6,284,20) P(g(b),f(b,c),c). ** KEPT: 2654 (2558,8,5) EQUAL(f(g(b),f(b,c)),c). ---> New Demodulator: 2655 (2654) EQUAL(f(g(b),f(b,c)),c). ** KEPT: 2656 (2558,7,373,5) P(d,f(b,c),f(f(d,b),c)). ** KEPT: 2657 (2558,7,252,5) P(c,f(b,c),f(f(c,b),c)). ** KEPT: 2658 (2558,7,5,1405) P(f(f(b,g(c)),g(b)),f(b,c),b). ** KEPT: 2659 (2558,7,5,1379) P(f(f(d,g(c)),g(b)),f(b,c),d). ** KEPT: 2660 (2558,7,5,1094) P(f(f(a,g(c)),g(b)),f(b,c),a). ** KEPT: 2661 (2558,7,5,528) P(f(f(g(c),d),g(b)),f(b,c),b). ** KEPT: 2662 (2558,7,5,202) P(f(g(k),g(b)),f(b,c),f(h,a)). ** KEPT: 2663 (2558,7,5,156) P(f(g(h),g(b)),f(b,c),f(b,a)). ** KEPT: 2664 (2558,7,5,123) P(f(f(h,g(a)),g(b)),f(b,c),d). ** KEPT: 2665 (2558,7,5,77) P(f(g(d),g(b)),f(b,c),a). ** KEPT: 2666 (2558,7,5,40) P(f(g(a),g(b)),f(b,c),b). ** KEPT: 2667 (2558,7,5,5) P(f(x,g(b)),f(b,c),f(x,c)). ** KEPT: 2668 (2558,7,5,3) P(f(g(c),g(b)),f(b,c),e). ** KEPT: 2669 (2558,7,5,5) P(c,x,f(g(b),f(f(b,c),x))). ** KEPT: 2670 (2558,7,4,5,27) P(c,g(f(b,c)),g(b)). ** KEPT: 2671 (2558,6,117,5) P(g(c),f(a,f(b,c)),c). ** KEPT: 2672 (2558,6,90,5) P(g(d),f(h,f(b,c)),c). ** KEPT: 2673 (2558,6,373,5) P(f(d,b),c,f(d,f(b,c))). ** KEPT: 2674 (2558,6,252,5) P(f(c,b),c,f(c,f(b,c))). ** KEPT: 2675 (2558,6,5,5) P(x,c,f(f(x,g(b)),f(b,c))). ** KEPT: 2676 (2558,6,5,1485) P(g(b),f(f(b,c),f(g(c),d)),d). ** KEPT: 2677 (2558,6,5,1454) P(g(b),f(f(b,c),f(g(c),a)),a). ** KEPT: 2678 (2558,6,5,1237) P(g(b),f(f(b,c),f(g(d),h)),a). ** KEPT: 2679 (2558,6,5,475) P(g(b),f(f(b,c),f(b,g(c))),d). ** KEPT: 2680 (2558,6,5,434) P(g(b),f(f(b,c),g(f(h,a))),k). ** KEPT: 2681 (2558,6,5,292) P(g(b),f(f(b,c),g(f(b,a))),h). ** KEPT: 2682 (2558,6,5,74) P(g(b),f(f(b,c),b),f(d,c)). ** KEPT: 2683 (2558,6,5,38) P(g(b),f(f(b,c),g(b)),a). ** KEPT: 2684 (2558,6,5,21) P(g(b),f(f(b,c),g(a)),d). ** KEPT: 2685 (2558,6,5,5) P(g(b),f(f(b,c),x),f(c,x)). ** KEPT: 2686 (2558,6,4,5) P(g(b),e,f(c,g(f(b,c)))). >>>> Starting back demodulation with: 2655 (2654) EQUAL(f(g(b),f(b,c)),c). >> back demodulating: 2541 (34,7,284,5) P(a,b,f(g(b),f(b,c))). >> back demodulating: 2612 (2552,7,5,3) P(f(g(b),f(b,c)),g(c),e). new given clause: 37 (20,7,5,5) P(c,x,f(a,f(b,x))). ** KEPT: 2687 (37,19) P(f(a,f(b,c)),c,e). ** KEPT: 2688 (37,18) P(c,f(a,f(b,c)),e). ** KEPT: 2689 (37,13,444) P(c,g(k),f(a,f(b,f(h,g(d))))). ** KEPT: 2690 (37,13,386) P(c,g(h),f(a,f(b,f(g(d),k)))). ** KEPT: 2691 (37,13,363) P(c,f(d,b),f(a,f(b,f(k,d)))). ** KEPT: 2692 (37,13,346) P(c,g(h),f(a,f(b,f(b,g(d))))). ** KEPT: 2693 (37,13,332) P(c,g(d),f(a,f(b,f(a,g(c))))). ** KEPT: 2694 (37,13,317) P(c,g(a),f(a,f(b,f(b,g(c))))). ** KEPT: 2695 (37,13,225) P(c,f(c,b),f(a,f(b,f(d,c)))). ** KEPT: 2696 (37,13,207) P(c,g(a),f(a,f(b,f(g(c),d)))). ** KEPT: 2697 (37,8,1485) EQUAL(f(a,f(b,f(g(c),d))),d). ---> New Demodulator: 2698 (2697) EQUAL(f(a,f(b,f(g(c),d))),d). ** KEPT: 2699 (37,8,475) EQUAL(f(a,f(b,f(b,g(c)))),d). ---> New Demodulator: 2700 (2699) EQUAL(f(a,f(b,f(b,g(c)))),d). ** KEPT: 2701 (37,8,434) EQUAL(f(a,f(b,g(f(h,a)))),k). ---> New Demodulator: 2702 (2701) EQUAL(f(a,f(b,g(f(h,a)))),k). ** KEPT: 2703 (37,8,292) EQUAL(f(a,f(b,g(f(b,a)))),h). ---> New Demodulator: 2704 (2703) EQUAL(f(a,f(b,g(f(b,a)))),h). ** KEPT: 2705 (37,8,74) EQUAL(f(a,f(b,b)),f(d,c)). ** KEPT: 2706 (37,8,5) EQUAL(f(a,f(b,x)),f(c,x)). ** KEPT: 2707 (37,7,1485,528) P(d,c,f(a,f(b,b))). ** KEPT: 2708 (37,7,1485,5) P(d,x,f(a,f(b,f(f(g(c),d),x)))). ** KEPT: 2709 (37,7,1454,5) P(a,x,f(a,f(b,f(f(g(c),a),x)))). ** KEPT: 2710 (37,7,1237,5) P(a,x,f(a,f(b,f(f(g(d),h),x)))). ** KEPT: 2711 (37,7,475,5) P(d,x,f(a,f(b,f(f(b,g(c)),x)))). ** KEPT: 2712 (37,7,434,5) P(k,x,f(a,f(b,f(g(f(h,a)),x)))). ** KEPT: 2713 (37,7,292,5) P(h,x,f(a,f(b,f(g(f(b,a)),x)))). ** KEPT: 2714 (37,7,74,154) P(f(d,c),g(d),f(a,f(b,g(h)))). ** KEPT: 2715 (37,7,74,152) P(f(d,c),a,f(a,f(b,f(g(h),c)))). ** KEPT: 2716 (37,7,74,5) P(f(d,c),x,f(a,f(b,f(b,x)))). ** KEPT: 2717 (37,7,74,2) P(f(d,c),e,f(a,f(b,b))). ** KEPT: 2718 (37,7,38,5) P(a,x,f(a,f(b,f(g(b),x)))). ** KEPT: 2719 (37,7,37,2557) P(f(a,f(b,g(h))),f(h,c),f(a,f(b,c))). ** KEPT: 2720 (37,7,37,2552) P(f(a,f(b,f(b,c))),g(c),f(a,f(b,b))). ** KEPT: 2721 (37,7,37,2551) P(f(a,f(b,f(h,c))),g(c),f(a,f(b,h))). ** KEPT: 2722 (37,7,37,1769) P(f(a,f(b,d)),f(g(d),k),f(a,f(b,k))). ** KEPT: 2723 (37,7,37,1600) P(f(a,f(b,f(h,g(d)))),d,f(a,f(b,h))). ** KEPT: 2724 (37,7,37,1529) P(f(a,f(b,d)),f(g(d),h),f(a,f(b,h))). ** KEPT: 2725 (37,7,37,1485) P(f(a,f(b,c)),f(g(c),d),f(a,f(b,d))). ** KEPT: 2726 (37,7,37,1454) P(f(a,f(b,c)),f(g(c),a),f(a,f(b,a))). ** KEPT: 2727 (37,7,37,1379) P(f(a,f(b,f(d,g(c)))),c,f(a,f(b,d))). ** KEPT: 2728 (37,7,37,1373) P(f(a,f(b,d)),f(g(c),a),f(a,f(b,h))). ** KEPT: 2729 (37,7,37,1270) P(f(a,f(b,f(b,g(d)))),d,f(a,f(b,b))). ** KEPT: 2730 (37,7,37,1245) P(f(a,f(b,f(c,g(d)))),d,f(a,f(b,c))). ** KEPT: 2731 (37,7,37,1237) P(f(a,f(b,c)),f(g(d),h),f(a,f(b,a))). ** KEPT: 2732 (37,7,37,1094) P(f(a,f(b,f(a,g(c)))),c,f(a,f(b,a))). ** KEPT: 2733 (37,7,37,1034) P(f(a,f(b,f(h,a))),g(a),f(a,f(b,h))). ** KEPT: 2734 (37,7,37,1014) P(f(a,f(b,k)),f(g(k),c),f(a,f(b,c))). ** KEPT: 2735 (37,7,37,922) P(f(a,f(b,f(g(d),k))),d,f(a,f(b,b))). ** KEPT: 2736 (37,7,37,817) P(f(a,f(b,f(b,a))),g(a),f(a,f(b,b))). ** KEPT: 2737 (37,7,37,794) P(f(a,f(b,h)),f(g(h),c),f(a,f(b,c))). ** KEPT: 2738 (37,7,37,760) P(f(a,f(b,f(a,g(h)))),h,f(a,f(b,a))). ** KEPT: 2739 (37,7,37,676) P(f(a,f(b,f(h,g(a)))),a,f(a,f(b,h))). ** KEPT: 2740 (37,7,37,566) P(f(a,f(b,d)),f(b,g(d)),f(a,f(b,k))). ** KEPT: 2741 (37,7,37,475) P(f(a,f(b,c)),f(b,g(c)),f(a,f(b,d))). ** KEPT: 2742 (37,7,37,457,27,33) P(f(a,f(b,h)),f(g(d),k),c). ** KEPT: 2743 (37,7,37,434) P(f(a,f(b,c)),g(f(h,a)),f(a,f(b,k))). ** KEPT: 2744 (37,7,37,426) P(f(a,f(b,g(h))),f(h,a),f(a,f(b,a))). ** KEPT: 2745 (37,7,37,414) P(f(a,f(b,g(k))),f(k,d),f(a,f(b,d))). ** KEPT: 2746 (37,7,37,409) P(f(a,f(b,f(k,d))),g(d),f(a,f(b,k))). ** KEPT: 2747 (37,7,37,398) P(f(a,f(b,g(d))),f(k,d),f(a,f(b,b))). ** KEPT: 2748 (37,7,37,397) P(f(a,f(b,g(d))),f(d,b),f(a,f(b,b))). ** KEPT: 2749 (37,7,37,392) P(f(a,f(b,g(h))),g(k),f(a,f(b,g(d)))). ** KEPT: 2750 (37,7,37,389,27,33) P(f(a,f(b,f(h,g(d)))),k,c). ** KEPT: 2751 (37,7,37,373) P(f(a,f(b,f(d,b))),g(b),f(a,f(b,d))). ** KEPT: 2752 (37,7,37,362,27,33) P(f(a,f(b,b)),f(g(d),h),c). ** KEPT: 2753 (37,7,37,351) P(f(a,f(b,f(d,b))),g(d),f(a,f(b,k))). ** KEPT: 2754 (37,7,37,345,27,33) P(f(a,f(b,a)),f(g(c),d),c). ** KEPT: 2755 (37,7,37,331,27,33) P(f(a,f(b,b)),f(g(c),a),c). ** KEPT: 2756 (37,7,37,320) P(f(a,f(b,f(d,c))),g(c),f(a,f(b,d))). ** KEPT: 2757 (37,7,37,307) P(f(a,f(b,f(d,g(c)))),a,f(a,f(b,h))). ** KEPT: 2758 (37,7,37,292) P(f(a,f(b,c)),g(f(b,a)),f(a,f(b,h))). ** KEPT: 2759 (37,7,37,273,27,33) P(f(a,f(b,f(b,g(d)))),h,c). ** KEPT: 2760 (37,7,37,271) P(f(a,f(b,f(c,g(d)))),h,f(a,f(b,a))). ** KEPT: 2761 (37,7,37,260,473) P(e,f(c,b),f(a,f(b,b))). ** KEPT: 2762 (37,7,37,255) P(f(a,f(b,f(c,b))),g(c),f(a,f(b,d))). ** KEPT: 2763 (37,7,37,252) P(f(a,f(b,f(c,b))),g(b),f(a,f(b,c))). ** KEPT: 2764 (37,7,37,237) P(f(a,f(b,g(d))),f(d,c),f(a,f(b,c))). ** KEPT: 2765 (37,7,37,222,473) P(e,f(d,c),f(a,f(b,b))). ** KEPT: 2766 (37,7,37,212,27,33) P(f(a,f(b,f(a,g(c)))),d,c). ** KEPT: 2767 (37,7,37,204) P(f(a,f(b,g(k))),f(d,b),f(a,f(b,d))). ** KEPT: 2768 (37,7,37,202) P(f(a,f(b,g(k))),c,f(a,f(b,f(h,a)))). ** KEPT: 2769 (37,7,37,200) P(f(a,f(b,h)),g(d),f(a,f(b,g(k)))). ** KEPT: 2770 (37,7,37,197) P(f(a,f(b,h)),a,f(a,f(b,f(g(k),c)))). ** KEPT: 2771 (37,7,37,193) P(f(a,f(b,f(g(k),h))),b,f(a,f(b,h))). ** KEPT: 2772 (37,7,37,190,27,33) P(f(a,f(b,k)),f(h,g(d)),c). ** KEPT: 2773 (37,7,37,188) P(f(a,f(b,k)),f(h,g(b)),f(a,f(b,h))). ** KEPT: 2774 (37,7,37,187) P(f(a,f(b,k)),f(h,a),f(a,f(b,c))). ** KEPT: 2775 (37,7,37,186) P(f(a,f(b,g(k))),d,f(a,f(b,h))). ** KEPT: 2776 (37,7,37,182,27,33) P(f(a,f(b,f(g(d),k))),h,c). ** KEPT: 2777 (37,7,37,180) P(f(a,f(b,f(g(h),k))),h,f(a,f(b,b))). ** KEPT: 2778 (37,7,37,179) P(f(a,f(b,f(k,d))),g(b),f(a,f(b,d))). ** KEPT: 2779 (37,7,37,173) P(f(a,f(b,d)),b,f(a,f(b,f(k,d)))). ** KEPT: 2780 (37,7,37,172) P(f(a,f(b,g(d))),k,f(a,f(b,g(h)))). ** KEPT: 2781 (37,7,37,168) P(f(a,f(b,h)),f(b,g(h)),f(a,f(b,k))). ** KEPT: 2782 (37,7,37,167) P(f(a,f(b,k)),h,f(a,f(b,d))). ** KEPT: 2783 (37,7,37,165) P(f(a,f(b,k)),d,f(a,f(b,f(d,b)))). ** KEPT: 2784 (37,7,37,156) P(f(a,f(b,g(h))),c,f(a,f(b,f(b,a)))). ** KEPT: 2785 (37,7,37,154) P(f(a,f(b,b)),g(d),f(a,f(b,g(h)))). ** KEPT: 2786 (37,7,37,152) P(f(a,f(b,b)),a,f(a,f(b,f(g(h),c)))). ** KEPT: 2787 (37,7,37,149) P(f(a,f(b,f(a,g(h)))),d,f(a,f(b,c))). ** KEPT: 2788 (37,7,37,143) P(f(a,f(b,g(d))),f(c,b),f(a,f(b,c))). ** KEPT: 2789 (37,7,37,140) P(f(a,f(b,a)),g(c),f(a,f(b,g(d)))). ** KEPT: 2790 (37,7,37,135) P(f(a,f(b,f(g(d),a))),b,f(a,f(b,a))). ** KEPT: 2791 (37,7,37,128,487) P(f(a,f(b,b)),g(c),d). ** KEPT: 2792 (37,7,37,123) P(f(a,f(b,f(h,g(a)))),c,f(a,f(b,d))). ** KEPT: 2793 (37,7,37,122) P(f(a,f(b,f(g(a),d))),a,f(a,f(b,b))). ** KEPT: 2794 (37,7,37,115) P(f(a,f(b,d)),f(a,g(b)),f(a,f(b,a))). ** KEPT: 2795 (37,7,37,110) P(f(a,f(b,f(d,c))),g(b),f(a,f(b,c))). ** KEPT: 2796 (37,7,37,105) P(f(a,f(b,d)),g(h),f(a,f(b,k))). ** KEPT: 2797 (37,7,37,104,27,33) P(f(a,f(b,h)),f(b,g(d)),c). ** KEPT: 2798 (37,7,37,102) P(f(a,f(b,h)),f(b,a),f(a,f(b,c))). ** KEPT: 2799 (37,7,37,101) P(f(a,f(b,g(h))),d,f(a,f(b,b))). ** KEPT: 2800 (37,7,37,87) P(f(a,f(b,h)),b,f(a,f(b,d))). ** KEPT: 2801 (37,7,37,80,27,33) P(f(a,f(b,d)),f(a,g(c)),c). ** KEPT: 2802 (37,7,37,78) P(f(a,f(b,d)),c,f(a,f(b,f(c,b)))). ** KEPT: 2803 (37,7,37,77) P(f(a,f(b,g(d))),c,f(a,f(b,a))). ** KEPT: 2804 (37,7,37,74) P(f(a,f(b,c)),b,f(a,f(b,f(d,c)))). ** KEPT: 2805 (37,7,37,63) P(f(a,f(b,a)),f(b,g(a)),f(a,f(b,d))). ** KEPT: 2806 (37,7,37,62) P(f(a,f(b,d)),a,f(a,f(b,c))). ** KEPT: 2807 (37,7,37,42,27,33) P(f(a,f(b,a)),f(b,g(c)),c). ** KEPT: 2808 (37,7,37,38) P(f(a,f(b,c)),g(b),f(a,f(b,a))). ** KEPT: 2809 (37,7,37,37) P(f(a,f(b,c)),x,f(a,f(b,f(a,f(b,x))))). ** KEPT: 2810 (37,7,37,34) P(f(a,f(b,f(x,a))),b,f(a,f(b,f(x,c)))). ** KEPT: 2811 (37,7,37,22) P(f(a,f(b,d)),g(b),f(a,f(b,h))). ** KEPT: 2812 (37,7,37,21) P(f(a,f(b,c)),g(a),f(a,f(b,d))). ** KEPT: 2813 (37,7,37,5) P(f(a,f(b,x)),y,f(a,f(b,f(x,y)))). ** KEPT: 2814 (37,7,37,4,27,33) P(f(a,f(b,x)),g(x),c). ** KEPT: 2815 (37,7,37,3,27,33) P(f(a,f(b,g(x))),x,c). ** KEPT: 2816 (37,7,21,5) P(d,x,f(a,f(b,f(g(a),x)))). ** KEPT: 2817 (37,7,5,2557) P(f(c,g(h)),f(h,c),f(a,f(b,c))). ** KEPT: 2818 (37,7,5,2552) P(f(c,f(b,c)),g(c),f(a,f(b,b))). ** KEPT: 2819 (37,7,5,2551) P(f(c,f(h,c)),g(c),f(a,f(b,h))). ** KEPT: 2820 (37,7,5,1769) P(f(c,d),f(g(d),k),f(a,f(b,k))). ** KEPT: 2821 (37,7,5,1600) P(f(c,f(h,g(d))),d,f(a,f(b,h))). ** KEPT: 2822 (37,7,5,1529) P(f(c,d),f(g(d),h),f(a,f(b,h))). ** KEPT: 2823 (37,7,5,1485) P(f(c,c),f(g(c),d),f(a,f(b,d))). ** KEPT: 2824 (37,7,5,1454) P(f(c,c),f(g(c),a),f(a,f(b,a))). ** KEPT: 2825 (37,7,5,1379) P(f(c,f(d,g(c))),c,f(a,f(b,d))). ** KEPT: 2826 (37,7,5,1373) P(f(c,d),f(g(c),a),f(a,f(b,h))). ** KEPT: 2827 (37,7,5,1270) P(f(c,f(b,g(d))),d,f(a,f(b,b))). ** KEPT: 2828 (37,7,5,1245) P(f(c,f(c,g(d))),d,f(a,f(b,c))). ** KEPT: 2829 (37,7,5,1237) P(f(c,c),f(g(d),h),f(a,f(b,a))). ** KEPT: 2830 (37,7,5,1094) P(f(c,f(a,g(c))),c,f(a,f(b,a))). ** KEPT: 2831 (37,7,5,1034) P(f(c,f(h,a)),g(a),f(a,f(b,h))). ** KEPT: 2832 (37,7,5,1014) P(f(c,k),f(g(k),c),f(a,f(b,c))). ** KEPT: 2833 (37,7,5,922) P(f(c,f(g(d),k)),d,f(a,f(b,b))). ** KEPT: 2834 (37,7,5,817) P(f(c,f(b,a)),g(a),f(a,f(b,b))). ** KEPT: 2835 (37,7,5,794) P(f(c,h),f(g(h),c),f(a,f(b,c))). ** KEPT: 2836 (37,7,5,760) P(f(c,f(a,g(h))),h,f(a,f(b,a))). ** KEPT: 2837 (37,7,5,676) P(f(c,f(h,g(a))),a,f(a,f(b,h))). ** KEPT: 2838 (37,7,5,566) P(f(c,d),f(b,g(d)),f(a,f(b,k))). ** KEPT: 2839 (37,7,5,475) P(f(c,c),f(b,g(c)),f(a,f(b,d))). ** KEPT: 2840 (37,7,5,434) P(f(c,c),g(f(h,a)),f(a,f(b,k))). ** KEPT: 2841 (37,7,5,426) P(f(c,g(h)),f(h,a),f(a,f(b,a))). ** KEPT: 2842 (37,7,5,414) P(f(c,g(k)),f(k,d),f(a,f(b,d))). ** KEPT: 2843 (37,7,5,409) P(f(c,f(k,d)),g(d),f(a,f(b,k))). ** KEPT: 2844 (37,7,5,398) P(f(c,g(d)),f(k,d),f(a,f(b,b))). ** KEPT: 2845 (37,7,5,397) P(f(c,g(d)),f(d,b),f(a,f(b,b))). ** KEPT: 2846 (37,7,5,392) P(f(c,g(h)),g(k),f(a,f(b,g(d)))). ** KEPT: 2847 (37,7,5,373) P(f(c,f(d,b)),g(b),f(a,f(b,d))). ** KEPT: 2848 (37,7,5,351) P(f(c,f(d,b)),g(d),f(a,f(b,k))). ** KEPT: 2849 (37,7,5,320) P(f(c,f(d,c)),g(c),f(a,f(b,d))). ** KEPT: 2850 (37,7,5,307) P(f(c,f(d,g(c))),a,f(a,f(b,h))). ** KEPT: 2851 (37,7,5,292) P(f(c,c),g(f(b,a)),f(a,f(b,h))). ** KEPT: 2852 (37,7,5,271) P(f(c,f(c,g(d))),h,f(a,f(b,a))). ** KEPT: 2853 (37,7,5,255) P(f(c,f(c,b)),g(c),f(a,f(b,d))). ** KEPT: 2854 (37,7,5,252) P(f(c,f(c,b)),g(b),f(a,f(b,c))). ** KEPT: 2855 (37,7,5,237) P(f(c,g(d)),f(d,c),f(a,f(b,c))). ** KEPT: 2856 (37,7,5,204) P(f(c,g(k)),f(d,b),f(a,f(b,d))). ** KEPT: 2857 (37,7,5,202) P(f(c,g(k)),c,f(a,f(b,f(h,a)))). ** KEPT: 2858 (37,7,5,200) P(f(c,h),g(d),f(a,f(b,g(k)))). ** KEPT: 2859 (37,7,5,197) P(f(c,h),a,f(a,f(b,f(g(k),c)))). ** KEPT: 2860 (37,7,5,193) P(f(c,f(g(k),h)),b,f(a,f(b,h))). ** KEPT: 2861 (37,7,5,188) P(f(c,k),f(h,g(b)),f(a,f(b,h))). ** KEPT: 2862 (37,7,5,187) P(f(c,k),f(h,a),f(a,f(b,c))). ** KEPT: 2863 (37,7,5,186) P(f(c,g(k)),d,f(a,f(b,h))). ** KEPT: 2864 (37,7,5,180) P(f(c,f(g(h),k)),h,f(a,f(b,b))). ** KEPT: 2865 (37,7,5,179) P(f(c,f(k,d)),g(b),f(a,f(b,d))). ** KEPT: 2866 (37,7,5,173) P(f(c,d),b,f(a,f(b,f(k,d)))). ** KEPT: 2867 (37,7,5,168) P(f(c,h),f(b,g(h)),f(a,f(b,k))). ** KEPT: 2868 (37,7,5,167) P(f(c,k),h,f(a,f(b,d))). ** KEPT: 2869 (37,7,5,165) P(f(c,k),d,f(a,f(b,f(d,b)))). ** KEPT: 2870 (37,7,5,156) P(f(c,g(h)),c,f(a,f(b,f(b,a)))). ** KEPT: 2871 (37,7,5,154) P(f(c,b),g(d),f(a,f(b,g(h)))). ** KEPT: 2872 (37,7,5,152) P(f(c,b),a,f(a,f(b,f(g(h),c)))). ** KEPT: 2873 (37,7,5,149) P(f(c,f(a,g(h))),d,f(a,f(b,c))). ** KEPT: 2874 (37,7,5,143) P(f(c,g(d)),f(c,b),f(a,f(b,c))). ** KEPT: 2875 (37,7,5,140) P(f(c,a),g(c),f(a,f(b,g(d)))). ** KEPT: 2876 (37,7,5,135) P(f(c,f(g(d),a)),b,f(a,f(b,a))). ** KEPT: 2877 (37,7,5,123) P(f(c,f(h,g(a))),c,f(a,f(b,d))). ** KEPT: 2878 (37,7,5,122) P(f(c,f(g(a),d)),a,f(a,f(b,b))). ** KEPT: 2879 (37,7,5,115) P(f(c,d),f(a,g(b)),f(a,f(b,a))). ** KEPT: 2880 (37,7,5,110) P(f(c,f(d,c)),g(b),f(a,f(b,c))). ** KEPT: 2881 (37,7,5,105) P(f(c,d),g(h),f(a,f(b,k))). ** KEPT: 2882 (37,7,5,102) P(f(c,h),f(b,a),f(a,f(b,c))). ** KEPT: 2883 (37,7,5,101) P(f(c,g(h)),d,f(a,f(b,b))). ** KEPT: 2884 (37,7,5,87) P(f(c,h),b,f(a,f(b,d))). ** KEPT: 2885 (37,7,5,78) P(f(c,d),c,f(a,f(b,f(c,b)))). ** KEPT: 2886 (37,7,5,74) P(f(c,c),b,f(a,f(b,f(d,c)))). ** KEPT: 2887 (37,7,5,63) P(f(c,a),f(b,g(a)),f(a,f(b,d))). ** KEPT: 2888 (37,7,5,62) P(f(c,d),a,f(a,f(b,c))). ** KEPT: 2889 (37,7,5,38) P(f(c,c),g(b),f(a,f(b,a))). ** KEPT: 2890 (37,7,5,37) P(f(c,c),x,f(a,f(b,f(a,f(b,x))))). ** KEPT: 2891 (37,7,5,34) P(f(c,f(x,a)),b,f(a,f(b,f(x,c)))). ** KEPT: 2892 (37,7,5,22) P(f(c,d),g(b),f(a,f(b,h))). ** KEPT: 2893 (37,7,5,21) P(f(c,c),g(a),f(a,f(b,d))). ** KEPT: 2894 (37,7,5,20) P(f(c,a),b,f(a,f(b,c))). ** KEPT: 2895 (37,7,5,5) P(f(c,x),y,f(a,f(b,f(x,y)))). ** KEPT: 2896 (37,7,5,4,27,33) P(f(c,x),g(x),c). ** KEPT: 2897 (37,7,5,3,27,33) P(f(c,g(x)),x,c). ** KEPT: 2898 (37,7,5,2) P(f(c,x),e,f(a,f(b,x))). ** KEPT: 2899 (37,7,4,5) P(e,x,f(a,f(b,f(g(c),x)))). ** KEPT: 2900 (37,7,1405,5) P(b,x,f(f(b,g(c)),f(a,f(b,x)))). ** KEPT: 2901 (37,7,1379,5) P(d,x,f(f(d,g(c)),f(a,f(b,x)))). ** KEPT: 2902 (37,7,1094,5) P(a,x,f(f(a,g(c)),f(a,f(b,x)))). ** KEPT: 2903 (37,7,528,5) P(b,x,f(f(g(c),d),f(a,f(b,x)))). ** KEPT: 2904 (37,7,202,5) P(f(h,a),x,f(g(k),f(a,f(b,x)))). ** KEPT: 2905 (37,7,156,5) P(f(b,a),x,f(g(h),f(a,f(b,x)))). ** KEPT: 2906 (37,7,123,5) P(d,x,f(f(h,g(a)),f(a,f(b,x)))). ** KEPT: 2907 (37,7,78,5) P(f(c,b),x,f(d,f(a,f(b,x)))). ** KEPT: 2908 (37,7,77,5) P(a,x,f(g(d),f(a,f(b,x)))). ** KEPT: 2909 (37,7,40,5) P(b,x,f(g(a),f(a,f(b,x)))). ** KEPT: 2910 (37,7,37,5) P(f(a,f(b,c)),x,f(c,f(a,f(b,x)))). ** KEPT: 2911 (37,7,5,5) P(f(x,c),y,f(x,f(a,f(b,y)))). ** KEPT: 2912 (37,7,5,3) P(f(g(f(a,f(b,x))),c),x,e). ** KEPT: 2913 (37,7,3,5) P(e,x,f(g(c),f(a,f(b,x)))). ** KEPT: 2914 (37,7,2557,5) P(f(a,f(b,g(h))),f(h,c),f(c,c)). ** KEPT: 2915 (37,7,2552,74) P(f(a,f(b,f(b,c))),g(c),f(d,c)). ** KEPT: 2916 (37,7,2552,5) P(f(a,f(b,f(b,c))),g(c),f(c,b)). ** KEPT: 2917 (37,7,2551,5) P(f(a,f(b,f(h,c))),g(c),f(c,h)). ** KEPT: 2918 (37,7,1769,5) P(f(a,f(b,d)),f(g(d),k),f(c,k)). ** KEPT: 2919 (37,7,1600,5) P(f(a,f(b,f(h,g(d)))),d,f(c,h)). ** KEPT: 2920 (37,7,1529,5) P(f(a,f(b,d)),f(g(d),h),f(c,h)). ** KEPT: 2921 (37,7,1485,5) P(f(a,f(b,c)),f(g(c),d),f(c,d)). ** KEPT: 2922 (37,7,1454,5) P(f(a,f(b,c)),f(g(c),a),f(c,a)). ** KEPT: 2923 (37,7,1379,5) P(f(a,f(b,f(d,g(c)))),c,f(c,d)). ** KEPT: 2924 (37,7,1373,5) P(f(a,f(b,d)),f(g(c),a),f(c,h)). ** KEPT: 2925 (37,7,1270,74) P(f(a,f(b,f(b,g(d)))),d,f(d,c)). ** KEPT: 2926 (37,7,1270,5) P(f(a,f(b,f(b,g(d)))),d,f(c,b)). ** KEPT: 2927 (37,7,1245,5) P(f(a,f(b,f(c,g(d)))),d,f(c,c)). ** KEPT: 2928 (37,7,1237,5) P(f(a,f(b,c)),f(g(d),h),f(c,a)). ** KEPT: 2929 (37,7,1094,5) P(f(a,f(b,f(a,g(c)))),c,f(c,a)). ** KEPT: 2930 (37,7,1034,5) P(f(a,f(b,f(h,a))),g(a),f(c,h)). ** KEPT: 2931 (37,7,1014,5) P(f(a,f(b,k)),f(g(k),c),f(c,c)). ** KEPT: 2932 (37,7,922,74) P(f(a,f(b,f(g(d),k))),d,f(d,c)). ** KEPT: 2933 (37,7,922,5) P(f(a,f(b,f(g(d),k))),d,f(c,b)). ** KEPT: 2934 (37,7,817,74) P(f(a,f(b,f(b,a))),g(a),f(d,c)). ** KEPT: 2935 (37,7,817,5) P(f(a,f(b,f(b,a))),g(a),f(c,b)). ** KEPT: 2936 (37,7,794,5) P(f(a,f(b,h)),f(g(h),c),f(c,c)). ** KEPT: 2937 (37,7,760,5) P(f(a,f(b,f(a,g(h)))),h,f(c,a)). ** KEPT: 2938 (37,7,676,5) P(f(a,f(b,f(h,g(a)))),a,f(c,h)). ** KEPT: 2939 (37,7,566,5) P(f(a,f(b,d)),f(b,g(d)),f(c,k)). ** KEPT: 2940 (37,7,475,5) P(f(a,f(b,c)),f(b,g(c)),f(c,d)). ** KEPT: 2941 (37,7,434,5) P(f(a,f(b,c)),g(f(h,a)),f(c,k)). ** KEPT: 2942 (37,7,426,5) P(f(a,f(b,g(h))),f(h,a),f(c,a)). ** KEPT: 2943 (37,7,414,5) P(f(a,f(b,g(k))),f(k,d),f(c,d)). ** KEPT: 2944 (37,7,409,5) P(f(a,f(b,f(k,d))),g(d),f(c,k)). ** KEPT: 2945 (37,7,398,74) P(f(a,f(b,g(d))),f(k,d),f(d,c)). ** KEPT: 2946 (37,7,398,5) P(f(a,f(b,g(d))),f(k,d),f(c,b)). ** KEPT: 2947 (37,7,397,74) P(f(a,f(b,g(d))),f(d,b),f(d,c)). ** KEPT: 2948 (37,7,397,5) P(f(a,f(b,g(d))),f(d,b),f(c,b)). ** KEPT: 2949 (37,7,392,5) P(f(a,f(b,g(h))),g(k),f(c,g(d))). ** KEPT: 2950 (37,7,373,5) P(f(a,f(b,f(d,b))),g(b),f(c,d)). ** KEPT: 2951 (37,7,351,5) P(f(a,f(b,f(d,b))),g(d),f(c,k)). ** KEPT: 2952 (37,7,320,5) P(f(a,f(b,f(d,c))),g(c),f(c,d)). ** KEPT: 2953 (37,7,307,5) P(f(a,f(b,f(d,g(c)))),a,f(c,h)). ** KEPT: 2954 (37,7,292,5) P(f(a,f(b,c)),g(f(b,a)),f(c,h)). ** KEPT: 2955 (37,7,271,5) P(f(a,f(b,f(c,g(d)))),h,f(c,a)). ** KEPT: 2956 (37,7,255,5) P(f(a,f(b,f(c,b))),g(c),f(c,d)). ** KEPT: 2957 (37,7,252,5) P(f(a,f(b,f(c,b))),g(b),f(c,c)). ** KEPT: 2958 (37,7,237,5) P(f(a,f(b,g(d))),f(d,c),f(c,c)). ** KEPT: 2959 (37,7,204,5) P(f(a,f(b,g(k))),f(d,b),f(c,d)). ** KEPT: 2960 (37,7,202,5) P(f(a,f(b,g(k))),c,f(c,f(h,a))). ** KEPT: 2961 (37,7,200,5) P(f(a,f(b,h)),g(d),f(c,g(k))). ** KEPT: 2962 (37,7,197,5) P(f(a,f(b,h)),a,f(c,f(g(k),c))). ** KEPT: 2963 (37,7,193,5) P(f(a,f(b,f(g(k),h))),b,f(c,h)). ** KEPT: 2964 (37,7,188,5) P(f(a,f(b,k)),f(h,g(b)),f(c,h)). ** KEPT: 2965 (37,7,187,5) P(f(a,f(b,k)),f(h,a),f(c,c)). ** KEPT: 2966 (37,7,186,5) P(f(a,f(b,g(k))),d,f(c,h)). ** KEPT: 2967 (37,7,180,74) P(f(a,f(b,f(g(h),k))),h,f(d,c)). ** KEPT: 2968 (37,7,180,5) P(f(a,f(b,f(g(h),k))),h,f(c,b)). ** KEPT: 2969 (37,7,179,5) P(f(a,f(b,f(k,d))),g(b),f(c,d)). ** KEPT: 2970 (37,7,173,5) P(f(a,f(b,d)),b,f(c,f(k,d))). ** KEPT: 2971 (37,7,172,5) P(f(a,f(b,g(d))),k,f(c,g(h))). ** KEPT: 2972 (37,7,168,5) P(f(a,f(b,h)),f(b,g(h)),f(c,k)). ** KEPT: 2973 (37,7,167,5) P(f(a,f(b,k)),h,f(c,d)). ** KEPT: 2974 (37,7,165,5) P(f(a,f(b,k)),d,f(c,f(d,b))). ** KEPT: 2975 (37,7,156,5) P(f(a,f(b,g(h))),c,f(c,f(b,a))). ** KEPT: 2976 (37,7,154,5) P(f(a,f(b,b)),g(d),f(c,g(h))). ** KEPT: 2977 (37,7,152,5) P(f(a,f(b,b)),a,f(c,f(g(h),c))). ** KEPT: 2978 (37,7,149,5) P(f(a,f(b,f(a,g(h)))),d,f(c,c)). ** KEPT: 2979 (37,7,143,5) P(f(a,f(b,g(d))),f(c,b),f(c,c)). ** KEPT: 2980 (37,7,140,5) P(f(a,f(b,a)),g(c),f(c,g(d))). ** KEPT: 2981 (37,7,135,5) P(f(a,f(b,f(g(d),a))),b,f(c,a)). ** KEPT: 2982 (37,7,123,5) P(f(a,f(b,f(h,g(a)))),c,f(c,d)). ** KEPT: 2983 (37,7,122,74) P(f(a,f(b,f(g(a),d))),a,f(d,c)). ** KEPT: 2984 (37,7,122,5) P(f(a,f(b,f(g(a),d))),a,f(c,b)). ** KEPT: 2985 (37,7,115,5) P(f(a,f(b,d)),f(a,g(b)),f(c,a)). ** KEPT: 2986 (37,7,110,5) P(f(a,f(b,f(d,c))),g(b),f(c,c)). ** KEPT: 2987 (37,7,105,5) P(f(a,f(b,d)),g(h),f(c,k)). ** KEPT: 2988 (37,7,102,5) P(f(a,f(b,h)),f(b,a),f(c,c)). ** KEPT: 2989 (37,7,101,74) P(f(a,f(b,g(h))),d,f(d,c)). ** KEPT: 2990 (37,7,101,5) P(f(a,f(b,g(h))),d,f(c,b)). ** KEPT: 2991 (37,7,87,5) P(f(a,f(b,h)),b,f(c,d)). ** KEPT: 2992 (37,7,78,5) P(f(a,f(b,d)),c,f(c,f(c,b))). ** KEPT: 2993 (37,7,77,5) P(f(a,f(b,g(d))),c,f(c,a)). ** KEPT: 2994 (37,7,74,5) P(f(a,f(b,c)),b,f(c,f(d,c))). ** KEPT: 2995 (37,7,63,5) P(f(a,f(b,a)),f(b,g(a)),f(c,d)). ** KEPT: 2996 (37,7,62,5) P(f(a,f(b,d)),a,f(c,c)). ** KEPT: 2997 (37,7,38,5) P(f(a,f(b,c)),g(b),f(c,a)). ** KEPT: 2998 (37,7,34,5) P(f(a,f(b,f(x,a))),b,f(c,f(x,c))). ** KEPT: 2999 (37,7,22,5) P(f(a,f(b,d)),g(b),f(c,h)). ** KEPT: 3000 (37,7,21,5) P(f(a,f(b,c)),g(a),f(c,d)). ** KEPT: 3001 (37,7,20,5) P(f(a,f(b,a)),b,f(c,c)). ** KEPT: 3002 (37,7,5,5) P(f(a,f(b,x)),y,f(c,f(x,y))). ** KEPT: 3003 (37,7,2,74) P(f(a,f(b,b)),e,f(d,c)). ** KEPT: 3004 (37,7,2,5) P(f(a,f(b,x)),e,f(c,x)). ** KEPT: 3005 (37,6,2558,5) P(g(b),f(f(b,c),x),f(a,f(b,x))). ** KEPT: 3006 (37,6,2558,4) P(g(b),e,f(a,f(b,g(f(b,c))))). ** KEPT: 3007 (37,6,2557,5) P(g(h),f(f(h,c),x),f(a,f(b,x))). ** KEPT: 3008 (37,6,2557,4) P(g(h),e,f(a,f(b,g(f(h,c))))). ** KEPT: 3009 (37,6,1245,566) P(f(c,g(d)),k,f(a,f(b,f(b,g(d))))). ** KEPT: 3010 (37,6,1245,115) P(f(c,g(d)),a,f(a,f(b,f(a,g(b))))). ** KEPT: 3011 (37,6,1245,80) P(f(c,g(d)),e,f(a,f(b,f(a,g(c))))). ** KEPT: 3012 (37,6,1245,5) P(f(c,g(d)),f(d,x),f(a,f(b,x))). ** KEPT: 3013 (37,6,1014,5) P(k,f(f(g(k),c),x),f(a,f(b,x))). ** KEPT: 3014 (37,6,1014,4) P(k,e,f(a,f(b,g(f(g(k),c))))). ** KEPT: 3015 (37,6,794,5) P(h,f(f(g(h),c),x),f(a,f(b,x))). ** KEPT: 3016 (37,6,794,4) P(h,e,f(a,f(b,g(f(g(h),c))))). ** KEPT: 3017 (37,6,252,5) P(f(c,b),f(g(b),x),f(a,f(b,x))). ** KEPT: 3018 (37,6,237,5) P(g(d),f(f(d,c),x),f(a,f(b,x))). ** KEPT: 3019 (37,6,237,4) P(g(d),e,f(a,f(b,g(f(d,c))))). ** KEPT: 3020 (37,6,187,34) P(k,f(h,c),f(a,f(b,b))). ** KEPT: 3021 (37,6,187,5) P(k,f(f(h,a),x),f(a,f(b,x))). ** KEPT: 3022 (37,6,149,1769) P(f(a,g(h)),k,f(a,f(b,f(g(d),k)))). ** KEPT: 3023 (37,6,149,566) P(f(a,g(h)),k,f(a,f(b,f(b,g(d))))). ** KEPT: 3024 (37,6,149,173) P(f(a,g(h)),f(k,d),f(a,f(b,b))). ** KEPT: 3025 (37,6,149,115) P(f(a,g(h)),a,f(a,f(b,f(a,g(b))))). ** KEPT: 3026 (37,6,149,80) P(f(a,g(h)),e,f(a,f(b,f(a,g(c))))). ** KEPT: 3027 (37,6,149,78) P(f(a,g(h)),f(c,b),f(a,f(b,c))). ** KEPT: 3028 (37,6,149,5) P(f(a,g(h)),f(d,x),f(a,f(b,x))). ** KEPT: 3029 (37,6,143,5) P(g(d),f(f(c,b),x),f(a,f(b,x))). ** KEPT: 3030 (37,6,143,4) P(g(d),e,f(a,f(b,g(f(c,b))))). ** KEPT: 3031 (37,6,110,5) P(f(d,c),f(g(b),x),f(a,f(b,x))). ** KEPT: 3032 (37,6,102,34) P(h,f(b,c),f(a,f(b,b))). ** KEPT: 3033 (37,6,102,5) P(h,f(f(b,a),x),f(a,f(b,x))). ** KEPT: 3034 (37,6,62,63) P(d,d,f(a,f(b,f(b,g(a))))). ** KEPT: 3035 (37,6,62,5) P(d,f(a,x),f(a,f(b,x))). ** KEPT: 3036 (37,6,20,152) P(a,f(g(h),c),f(a,f(b,a))). ** KEPT: 3037 (37,6,1,5) P(e,f(c,x),f(a,f(b,x))). ** KEPT: 3038 (37,6,1405,154) P(f(b,g(c)),f(a,f(b,g(d))),g(h)). ** KEPT: 3039 (37,6,1405,152) P(f(b,g(c)),f(a,f(b,a)),f(g(h),c)). ** KEPT: 3040 (37,6,1379,1769) P(f(d,g(c)),f(a,f(b,f(g(d),k))),k). ** KEPT: 3041 (37,6,1379,566) P(f(d,g(c)),f(a,f(b,f(b,g(d)))),k). ** KEPT: 3042 (37,6,1379,173) P(f(d,g(c)),f(a,f(b,b)),f(k,d)). ** KEPT: 3043 (37,6,1379,115) P(f(d,g(c)),f(a,f(b,f(a,g(b)))),a). ** KEPT: 3044 (37,6,1379,80) P(f(d,g(c)),f(a,f(b,f(a,g(c)))),e). ** KEPT: 3045 (37,6,1379,78) P(f(d,g(c)),f(a,f(b,c)),f(c,b)). ** KEPT: 3046 (37,6,1379,5) P(f(d,g(c)),f(a,f(b,x)),f(d,x)). ** KEPT: 3047 (37,6,1094,63) P(f(a,g(c)),f(a,f(b,f(b,g(a)))),d). ** KEPT: 3048 (37,6,1094,20) P(f(a,g(c)),f(a,f(b,b)),c). ** KEPT: 3049 (37,6,1094,5) P(f(a,g(c)),f(a,f(b,x)),f(a,x)). ** KEPT: 3050 (37,6,528,154) P(f(g(c),d),f(a,f(b,g(d))),g(h)). ** KEPT: 3051 (37,6,528,152) P(f(g(c),d),f(a,f(b,a)),f(g(h),c)). ** KEPT: 3052 (37,6,202,34) P(g(k),f(a,f(b,b)),f(h,c)). ** KEPT: 3053 (37,6,202,5) P(g(k),f(a,f(b,x)),f(f(h,a),x)). ** KEPT: 3054 (37,6,156,34) P(g(h),f(a,f(b,b)),f(b,c)). ** KEPT: 3055 (37,6,156,5) P(g(h),f(a,f(b,x)),f(f(b,a),x)). ** KEPT: 3056 (37,6,123,1769) P(f(h,g(a)),f(a,f(b,f(g(d),k))),k). ** KEPT: 3057 (37,6,123,566) P(f(h,g(a)),f(a,f(b,f(b,g(d)))),k). ** KEPT: 3058 (37,6,123,173) P(f(h,g(a)),f(a,f(b,b)),f(k,d)). ** KEPT: 3059 (37,6,123,115) P(f(h,g(a)),f(a,f(b,f(a,g(b)))),a). ** KEPT: 3060 (37,6,123,80) P(f(h,g(a)),f(a,f(b,f(a,g(c)))),e). ** KEPT: 3061 (37,6,123,78) P(f(h,g(a)),f(a,f(b,c)),f(c,b)). ** KEPT: 3062 (37,6,123,5) P(f(h,g(a)),f(a,f(b,x)),f(d,x)). ** KEPT: 3063 (37,6,78,5) P(d,f(a,f(b,x)),f(f(c,b),x)). ** KEPT: 3064 (37,6,78,4) P(d,f(a,f(b,g(f(c,b)))),e). ** KEPT: 3065 (37,6,77,63) P(g(d),f(a,f(b,f(b,g(a)))),d). ** KEPT: 3066 (37,6,77,20) P(g(d),f(a,f(b,b)),c). ** KEPT: 3067 (37,6,77,5) P(g(d),f(a,f(b,x)),f(a,x)). ** KEPT: 3068 (37,6,40,154) P(g(a),f(a,f(b,g(d))),g(h)). ** KEPT: 3069 (37,6,40,152) P(g(a),f(a,f(b,a)),f(g(h),c)). ** KEPT: 3070 (37,6,40,5) P(g(a),f(a,f(b,x)),f(b,x)). ** KEPT: 3071 (37,6,37,5) P(c,f(a,f(b,x)),f(f(a,f(b,c)),x)). ** KEPT: 3072 (37,6,37,4) P(c,f(a,f(b,g(f(a,f(b,c))))),e). ** KEPT: 3073 (37,6,5,5) P(x,f(a,f(b,y)),f(f(x,c),y)). ** KEPT: 3074 (37,6,5,4) P(x,f(a,f(b,g(f(x,c)))),e). ** KEPT: 3075 (37,6,3,5,28) P(g(c),f(a,f(b,x)),x). ** KEPT: 3076 (37,6,1,74) P(e,f(a,f(b,b)),f(d,c)). ** KEPT: 3077 (37,6,1,5) P(e,f(a,f(b,x)),f(c,x)). ** KEPT: 3078 (37,6,2557,5) P(c,c,f(f(a,f(b,g(h))),f(h,c))). ** KEPT: 3079 (37,6,2552,5) P(c,b,f(f(a,f(b,f(b,c))),g(c))). ** KEPT: 3080 (37,6,2551,5) P(c,h,f(f(a,f(b,f(h,c))),g(c))). ** KEPT: 3081 (37,6,1769,5) P(c,k,f(f(a,f(b,d)),f(g(d),k))). ** KEPT: 3082 (37,6,1600,5) P(c,h,f(f(a,f(b,f(h,g(d)))),d)). ** KEPT: 3083 (37,6,1529,5) P(c,h,f(f(a,f(b,d)),f(g(d),h))). ** KEPT: 3084 (37,6,1485,5) P(c,d,f(f(a,f(b,c)),f(g(c),d))). ** KEPT: 3085 (37,6,1454,5) P(c,a,f(f(a,f(b,c)),f(g(c),a))). ** KEPT: 3086 (37,6,1379,5) P(c,d,f(f(a,f(b,f(d,g(c)))),c)). ** KEPT: 3087 (37,6,1373,5) P(c,h,f(f(a,f(b,d)),f(g(c),a))). ** KEPT: 3088 (37,6,1270,5) P(c,b,f(f(a,f(b,f(b,g(d)))),d)). ** KEPT: 3089 (37,6,1245,5) P(c,c,f(f(a,f(b,f(c,g(d)))),d)). ** KEPT: 3090 (37,6,1237,5) P(c,a,f(f(a,f(b,c)),f(g(d),h))). ** KEPT: 3091 (37,6,1094,5) P(c,a,f(f(a,f(b,f(a,g(c)))),c)). ** KEPT: 3092 (37,6,1034,5) P(c,h,f(f(a,f(b,f(h,a))),g(a))). ** KEPT: 3093 (37,6,1014,5) P(c,c,f(f(a,f(b,k)),f(g(k),c))). ** KEPT: 3094 (37,6,922,5) P(c,b,f(f(a,f(b,f(g(d),k))),d)). ** KEPT: 3095 (37,6,817,5) P(c,b,f(f(a,f(b,f(b,a))),g(a))). ** KEPT: 3096 (37,6,794,5) P(c,c,f(f(a,f(b,h)),f(g(h),c))). ** KEPT: 3097 (37,6,760,5) P(c,a,f(f(a,f(b,f(a,g(h)))),h)). ** KEPT: 3098 (37,6,676,5) P(c,h,f(f(a,f(b,f(h,g(a)))),a)). ** KEPT: 3099 (37,6,566,5) P(c,k,f(f(a,f(b,d)),f(b,g(d)))). ** KEPT: 3100 (37,6,475,5) P(c,d,f(f(a,f(b,c)),f(b,g(c)))). ** KEPT: 3101 (37,6,457,5) P(c,e,f(f(a,f(b,h)),f(g(d),k))). ** KEPT: 3102 (37,6,434,5) P(c,k,f(f(a,f(b,c)),g(f(h,a)))). ** KEPT: 3103 (37,6,426,5) P(c,a,f(f(a,f(b,g(h))),f(h,a))). ** KEPT: 3104 (37,6,414,5) P(c,d,f(f(a,f(b,g(k))),f(k,d))). ** KEPT: 3105 (37,6,409,5) P(c,k,f(f(a,f(b,f(k,d))),g(d))). ** KEPT: 3106 (37,6,398,5) P(c,b,f(f(a,f(b,g(d))),f(k,d))). ** KEPT: 3107 (37,6,397,5) P(c,b,f(f(a,f(b,g(d))),f(d,b))). ** KEPT: 3108 (37,6,392,5) P(c,g(d),f(f(a,f(b,g(h))),g(k))). ** KEPT: 3109 (37,6,389,5) P(c,e,f(f(a,f(b,f(h,g(d)))),k)). ** KEPT: 3110 (37,6,373,5) P(c,d,f(f(a,f(b,f(d,b))),g(b))). ** KEPT: 3111 (37,6,362,5) P(c,e,f(f(a,f(b,b)),f(g(d),h))). ** KEPT: 3112 (37,6,351,5) P(c,k,f(f(a,f(b,f(d,b))),g(d))). ** KEPT: 3113 (37,6,345,5) P(c,e,f(f(a,f(b,a)),f(g(c),d))). ** KEPT: 3114 (37,6,331,5) P(c,e,f(f(a,f(b,b)),f(g(c),a))). ** KEPT: 3115 (37,6,320,5) P(c,d,f(f(a,f(b,f(d,c))),g(c))). ** KEPT: 3116 (37,6,307,5) P(c,h,f(f(a,f(b,f(d,g(c)))),a)). ** KEPT: 3117 (37,6,292,5) P(c,h,f(f(a,f(b,c)),g(f(b,a)))). ** KEPT: 3118 (37,6,273,5) P(c,e,f(f(a,f(b,f(b,g(d)))),h)). ** KEPT: 3119 (37,6,271,5) P(c,a,f(f(a,f(b,f(c,g(d)))),h)). ** KEPT: 3120 (37,6,255,5) P(c,d,f(f(a,f(b,f(c,b))),g(c))). ** KEPT: 3121 (37,6,252,5) P(c,c,f(f(a,f(b,f(c,b))),g(b))). ** KEPT: 3122 (37,6,237,5) P(c,c,f(f(a,f(b,g(d))),f(d,c))). ** KEPT: 3123 (37,6,212,5) P(c,e,f(f(a,f(b,f(a,g(c)))),d)). ** KEPT: 3124 (37,6,204,5) P(c,d,f(f(a,f(b,g(k))),f(d,b))). ** KEPT: 3125 (37,6,202,5) P(c,f(h,a),f(f(a,f(b,g(k))),c)). ** KEPT: 3126 (37,6,200,5) P(c,g(k),f(f(a,f(b,h)),g(d))). ** KEPT: 3127 (37,6,197,5) P(c,f(g(k),c),f(f(a,f(b,h)),a)). ** KEPT: 3128 (37,6,193,5) P(c,h,f(f(a,f(b,f(g(k),h))),b)). ** KEPT: 3129 (37,6,190,5) P(c,e,f(f(a,f(b,k)),f(h,g(d)))). ** KEPT: 3130 (37,6,188,5) P(c,h,f(f(a,f(b,k)),f(h,g(b)))). ** KEPT: 3131 (37,6,187,5) P(c,c,f(f(a,f(b,k)),f(h,a))). ** KEPT: 3132 (37,6,186,5) P(c,h,f(f(a,f(b,g(k))),d)). ** KEPT: 3133 (37,6,182,5) P(c,e,f(f(a,f(b,f(g(d),k))),h)). ** KEPT: 3134 (37,6,180,5) P(c,b,f(f(a,f(b,f(g(h),k))),h)). ** KEPT: 3135 (37,6,179,5) P(c,d,f(f(a,f(b,f(k,d))),g(b))). ** KEPT: 3136 (37,6,173,5) P(c,f(k,d),f(f(a,f(b,d)),b)). ** KEPT: 3137 (37,6,172,5) P(c,g(h),f(f(a,f(b,g(d))),k)). ** KEPT: 3138 (37,6,168,5) P(c,k,f(f(a,f(b,h)),f(b,g(h)))). ** KEPT: 3139 (37,6,167,5) P(c,d,f(f(a,f(b,k)),h)). ** KEPT: 3140 (37,6,165,5) P(c,f(d,b),f(f(a,f(b,k)),d)). ** KEPT: 3141 (37,6,156,5) P(c,f(b,a),f(f(a,f(b,g(h))),c)). ** KEPT: 3142 (37,6,154,5) P(c,g(h),f(f(a,f(b,b)),g(d))). ** KEPT: 3143 (37,6,152,5) P(c,f(g(h),c),f(f(a,f(b,b)),a)). ** KEPT: 3144 (37,6,149,5) P(c,c,f(f(a,f(b,f(a,g(h)))),d)). ** KEPT: 3145 (37,6,143,5) P(c,c,f(f(a,f(b,g(d))),f(c,b))). ** KEPT: 3146 (37,6,140,5) P(c,g(d),f(f(a,f(b,a)),g(c))). ** KEPT: 3147 (37,6,135,5) P(c,a,f(f(a,f(b,f(g(d),a))),b)). ** KEPT: 3148 (37,6,128,5) P(c,g(a),f(f(a,f(b,b)),g(c))). ** KEPT: 3149 (37,6,123,5) P(c,d,f(f(a,f(b,f(h,g(a)))),c)). ** KEPT: 3150 (37,6,122,5) P(c,b,f(f(a,f(b,f(g(a),d))),a)). ** KEPT: 3151 (37,6,115,5) P(c,a,f(f(a,f(b,d)),f(a,g(b)))). ** KEPT: 3152 (37,6,110,5) P(c,c,f(f(a,f(b,f(d,c))),g(b))). ** KEPT: 3153 (37,6,105,5) P(c,k,f(f(a,f(b,d)),g(h))). ** KEPT: 3154 (37,6,104,5) P(c,e,f(f(a,f(b,h)),f(b,g(d)))). ** KEPT: 3155 (37,6,102,5) P(c,c,f(f(a,f(b,h)),f(b,a))). ** KEPT: 3156 (37,6,101,5) P(c,b,f(f(a,f(b,g(h))),d)). ** KEPT: 3157 (37,6,90,5) P(c,g(b),f(f(a,f(b,g(d))),h)). ** KEPT: 3158 (37,6,87,5) P(c,d,f(f(a,f(b,h)),b)). ** KEPT: 3159 (37,6,80,5) P(c,e,f(f(a,f(b,d)),f(a,g(c)))). ** KEPT: 3160 (37,6,78,5) P(c,f(c,b),f(f(a,f(b,d)),c)). ** KEPT: 3161 (37,6,77,5) P(c,a,f(f(a,f(b,g(d))),c)). ** KEPT: 3162 (37,6,74,5) P(c,f(d,c),f(f(a,f(b,c)),b)). ** KEPT: 3163 (37,6,63,5) P(c,d,f(f(a,f(b,a)),f(b,g(a)))). ** KEPT: 3164 (37,6,62,5) P(c,c,f(f(a,f(b,d)),a)). ** KEPT: 3165 (37,6,42,5) P(c,e,f(f(a,f(b,a)),f(b,g(c)))). ** KEPT: 3166 (37,6,38,5) P(c,a,f(f(a,f(b,c)),g(b))). ** KEPT: 3167 (37,6,34,5) P(c,f(x,c),f(f(a,f(b,f(x,a))),b)). ** KEPT: 3168 (37,6,22,5) P(c,h,f(f(a,f(b,d)),g(b))). ** KEPT: 3169 (37,6,21,5) P(c,d,f(f(a,f(b,c)),g(a))). ** KEPT: 3170 (37,6,20,5) P(c,c,f(f(a,f(b,a)),b)). ** KEPT: 3171 (37,6,5,5) P(c,f(x,y),f(f(a,f(b,x)),y)). ** KEPT: 3172 (37,6,5,4) P(c,f(x,g(f(a,f(b,x)))),e). ** KEPT: 3173 (37,6,4,5) P(c,e,f(f(a,f(b,x)),g(x))). ** KEPT: 3174 (37,6,3,5) P(c,e,f(f(a,f(b,g(x))),x)). >>>> Starting back demodulation with: 2698 (2697) EQUAL(f(a,f(b,f(g(c),d))),d). >> back demodulating: 2696 (37,13,207) P(c,g(a),f(a,f(b,f(g(c),d)))). >>>> Starting back demodulation with: 2700 (2699) EQUAL(f(a,f(b,f(b,g(c)))),d). >> back demodulating: 2694 (37,13,317) P(c,g(a),f(a,f(b,f(b,g(c))))). >>>> Starting back demodulation with: 2702 (2701) EQUAL(f(a,f(b,g(f(h,a)))),k). >>>> Starting back demodulation with: 2704 (2703) EQUAL(f(a,f(b,g(f(b,a)))),h). 2814 back subsumes: 2610 (2552,7,5,20) P(f(a,f(b,c)),g(c),c). 2814 back subsumes: 2001 (817,7,5,20) P(f(a,f(b,a)),g(a),c). 2815 back subsumes: 2229 (1270,7,5,20) P(f(a,f(b,g(d))),d,c). 2896 back subsumes: 252 (78,7,38,62) P(f(c,b),g(b),c). 2897 back subsumes: 1245 (271,6,87,20) P(f(c,g(d)),d,c). 2898 back subsumes: 1243 (271,6,104,5) P(f(c,g(d)),e,f(a,f(b,g(d)))). 3012 back subsumes: 2855 (37,7,5,237) P(f(c,g(d)),f(d,c),f(a,f(b,c))). 3012 back subsumes: 2845 (37,7,5,397) P(f(c,g(d)),f(d,b),f(a,f(b,b))). 3037 back subsumes: 2761 (37,7,37,260,473) P(e,f(c,b),f(a,f(b,b))). 3075 back subsumes: 2671 (2558,6,117,5) P(g(c),f(a,f(b,c)),c). 3075 back subsumes: 1298 (284,6,117,5) P(g(c),f(a,f(b,a)),a). new given clause: 2896 (37,7,5,4,27,33) P(f(c,x),g(x),c). ** KEPT: 3175 (2896,8,5) EQUAL(f(f(c,x),g(x)),c). ---> New Demodulator: 3176 (3175) EQUAL(f(f(c,x),g(x)),c). ** KEPT: 3177 (2896,7,5,392) P(f(f(c,d),g(h)),g(k),c). ** KEPT: 3178 (2896,7,5,311) P(f(f(c,c),g(b)),g(a),c). ** KEPT: 3179 (2896,7,5,275) P(f(f(c,d),g(b)),g(h),c). ** KEPT: 3180 (2896,7,5,216) P(f(f(c,c),g(a)),g(d),c). ** KEPT: 3181 (2896,7,5,200) P(f(f(c,k),h),g(d),c). ** KEPT: 3182 (2896,7,5,172) P(f(f(c,h),g(d)),k,c). ** KEPT: 3183 (2896,7,5,154) P(f(f(c,h),b),g(d),c). ** KEPT: 3184 (2896,7,5,140) P(f(f(c,d),a),g(c),c). ** KEPT: 3185 (2896,7,5,128) P(f(f(c,a),b),g(c),c). ** KEPT: 3186 (2896,7,5,65) P(f(f(c,a),g(c)),d,c). ** KEPT: 3187 (2896,7,37,37) P(f(a,f(b,f(c,x))),g(x),f(a,f(b,c))). ** KEPT: 3188 (2896,7,37,5) P(f(a,f(b,f(c,x))),g(x),f(c,c)). ** KEPT: 3189 (2896,7,5,1405) P(f(f(b,g(c)),f(c,x)),g(x),b). ** KEPT: 3190 (2896,7,5,1379) P(f(f(d,g(c)),f(c,x)),g(x),d). ** KEPT: 3191 (2896,7,5,1094) P(f(f(a,g(c)),f(c,x)),g(x),a). ** KEPT: 3192 (2896,7,5,528) P(f(f(g(c),d),f(c,x)),g(x),b). ** KEPT: 3193 (2896,7,5,202) P(f(g(k),f(c,x)),g(x),f(h,a)). ** KEPT: 3194 (2896,7,5,156) P(f(g(h),f(c,x)),g(x),f(b,a)). ** KEPT: 3195 (2896,7,5,123) P(f(f(h,g(a)),f(c,x)),g(x),d). ** KEPT: 3196 (2896,7,5,78) P(f(d,f(c,x)),g(x),f(c,b)). ** KEPT: 3197 (2896,7,5,77) P(f(g(d),f(c,x)),g(x),a). ** KEPT: 3198 (2896,7,5,40) P(f(g(a),f(c,x)),g(x),b). ** KEPT: 3199 (2896,7,5,37) P(f(c,f(c,x)),g(x),f(a,f(b,c))). ** KEPT: 3200 (2896,7,5,5) P(f(x,f(c,y)),g(y),f(x,c)). ** KEPT: 3201 (2896,7,5,3) P(f(g(c),f(c,x)),g(x),e). ** KEPT: 3202 (2896,7,3,5) P(e,g(x),f(g(f(c,x)),c)). ** KEPT: 3203 (2896,7,2557,5) P(c,f(h,c),f(f(c,h),c)). ** KEPT: 3204 (2896,7,426,5) P(c,f(h,a),f(f(c,h),a)). ** KEPT: 3205 (2896,7,414,5) P(c,f(k,d),f(f(c,k),d)). ** KEPT: 3206 (2896,7,397,5) P(c,f(d,b),f(f(c,d),b)). ** KEPT: 3207 (2896,7,260,5) P(c,f(c,b),f(f(c,c),b)). ** KEPT: 3208 (2896,7,237,5) P(c,f(d,c),f(f(c,d),c)). ** KEPT: 3209 (2896,7,5,5) P(c,x,f(f(c,y),f(g(y),x))). ** KEPT: 3210 (2896,6,37,5) P(c,c,f(f(a,f(b,f(c,x))),g(x))). ** KEPT: 3211 (2896,6,5,5) P(x,c,f(f(x,f(c,y)),g(y))). ** KEPT: 3212 (2896,6,3,5,28) P(g(f(c,x)),c,g(x)). ** KEPT: 3213 (2896,6,2557,5) P(f(c,h),c,f(c,f(h,c))). ** KEPT: 3214 (2896,6,426,5) P(f(c,h),a,f(c,f(h,a))). ** KEPT: 3215 (2896,6,414,5) P(f(c,k),d,f(c,f(k,d))). ** KEPT: 3216 (2896,6,397,5) P(f(c,d),b,f(c,f(d,b))). ** KEPT: 3217 (2896,6,260,5) P(f(c,c),b,f(c,f(c,b))). ** KEPT: 3218 (2896,6,237,5) P(f(c,d),c,f(c,f(d,c))). ** KEPT: 3219 (2896,6,5,1485) P(f(c,x),f(g(x),f(g(c),d)),d). ** KEPT: 3220 (2896,6,5,1454) P(f(c,x),f(g(x),f(g(c),a)),a). ** KEPT: 3221 (2896,6,5,1237) P(f(c,x),f(g(x),f(g(d),h)),a). ** KEPT: 3222 (2896,6,5,475) P(f(c,x),f(g(x),f(b,g(c))),d). ** KEPT: 3223 (2896,6,5,434) P(f(c,x),f(g(x),g(f(h,a))),k). ** KEPT: 3224 (2896,6,5,292) P(f(c,x),f(g(x),g(f(b,a))),h). ** KEPT: 3225 (2896,6,5,74) P(f(c,x),f(g(x),b),f(d,c)). ** KEPT: 3226 (2896,6,5,38) P(f(c,x),f(g(x),g(b)),a). ** KEPT: 3227 (2896,6,5,37) P(f(c,x),f(g(x),y),f(a,f(b,y))). ** KEPT: 3228 (2896,6,5,21) P(f(c,x),f(g(x),g(a)),d). ** KEPT: 3229 (2896,6,5,5) P(f(c,x),f(g(x),y),f(c,y)). ** KEPT: 3230 (2896,6,5,4) P(f(c,x),f(g(x),g(c)),e). >>>> Starting back demodulation with: 3176 (3175) EQUAL(f(f(c,x),g(x)),c). >> back demodulating: 1151 (1150) EQUAL(f(f(c,b),g(b)),c). >> back demodulating: 1150 (252,8,5) EQUAL(f(f(c,b),g(b)),c). 3187 back subsumes: 2763 (37,7,37,252) P(f(a,f(b,f(c,b))),g(b),f(a,f(b,c))). 3188 back subsumes: 2957 (37,7,252,5) P(f(a,f(b,f(c,b))),g(b),f(c,c)). 3189 back subsumes: 2328 (1405,7,5,252) P(f(f(b,g(c)),f(c,b)),g(b),b). 3190 back subsumes: 2284 (1379,7,5,252) P(f(f(d,g(c)),f(c,b)),g(b),d). 3191 back subsumes: 2108 (1094,7,5,252) P(f(f(a,g(c)),f(c,b)),g(b),a). 3192 back subsumes: 1819 (528,7,5,252) P(f(f(g(c),d),f(c,b)),g(b),b). 3193 back subsumes: 1154 (252,7,5,202) P(f(g(k),f(c,b)),g(b),f(h,a)). 3194 back subsumes: 1155 (252,7,5,156) P(f(g(h),f(c,b)),g(b),f(b,a)). 3195 back subsumes: 1156 (252,7,5,123) P(f(f(h,g(a)),f(c,b)),g(b),d). 3196 back subsumes: 1157 (252,7,5,78) P(f(d,f(c,b)),g(b),f(c,b)). 3198 back subsumes: 1158 (252,7,5,40) P(f(g(a),f(c,b)),g(b),b). 3199 back subsumes: 2854 (37,7,5,252) P(f(c,f(c,b)),g(b),f(a,f(b,c))). 3200 back subsumes: 1159 (252,7,5,5) P(f(x,f(c,b)),g(b),f(x,c)). 3202 back subsumes: 1161 (252,7,3,5) P(e,g(b),f(g(f(c,b)),c)). 3209 back subsumes: 1162 (252,7,5,5) P(c,x,f(f(c,b),f(g(b),x))). 3210 back subsumes: 3121 (37,6,252,5) P(c,c,f(f(a,f(b,f(c,b))),g(b))). 3211 back subsumes: 1163 (252,6,5,5) P(x,c,f(f(x,f(c,b)),g(b))). 3212 back subsumes: 1164 (252,6,3,5,28) P(g(f(c,b)),c,g(b)). 3219 back subsumes: 2401 (1485,6,252,5) P(f(c,b),f(g(b),f(g(c),d)),d). 3220 back subsumes: 2368 (1454,6,252,5) P(f(c,b),f(g(b),f(g(c),a)),a). 3221 back subsumes: 2149 (1237,6,252,5) P(f(c,b),f(g(b),f(g(d),h)),a). 3222 back subsumes: 1795 (475,6,252,5) P(f(c,b),f(g(b),f(b,g(c))),d). 3223 back subsumes: 1738 (434,6,252,5) P(f(c,b),f(g(b),g(f(h,a))),k). 3224 back subsumes: 1324 (292,6,252,5) P(f(c,b),f(g(b),g(f(b,a))),h). 3226 back subsumes: 1165 (252,6,5,38) P(f(c,b),f(g(b),g(b)),a). 3227 back subsumes: 3017 (37,6,252,5) P(f(c,b),f(g(b),x),f(a,f(b,x))). 3227 back subsumes: 2835 (37,7,5,794) P(f(c,h),f(g(h),c),f(a,f(b,c))). 3227 back subsumes: 2832 (37,7,5,1014) P(f(c,k),f(g(k),c),f(a,f(b,c))). 3227 back subsumes: 2824 (37,7,5,1454) P(f(c,c),f(g(c),a),f(a,f(b,a))). 3227 back subsumes: 2823 (37,7,5,1485) P(f(c,c),f(g(c),d),f(a,f(b,d))). 3227 back subsumes: 2822 (37,7,5,1529) P(f(c,d),f(g(d),h),f(a,f(b,h))). 3227 back subsumes: 2820 (37,7,5,1769) P(f(c,d),f(g(d),k),f(a,f(b,k))). 3228 back subsumes: 1166 (252,6,5,21) P(f(c,b),f(g(b),g(a)),d). 3229 back subsumes: 1167 (252,6,5,5) P(f(c,b),f(g(b),x),f(c,x)). 3230 back subsumes: 1168 (252,6,5,4) P(f(c,b),f(g(b),g(c)),e). new given clause: 2897 (37,7,5,3,27,33) P(f(c,g(x)),x,c). ** KEPT: 3231 (2897,13,363) P(f(c,g(f(k,d))),f(d,b),c). ** KEPT: 3232 (2897,13,225) P(f(c,g(f(d,c))),f(c,b),c). ** KEPT: 3233 (2897,8,5) EQUAL(f(f(c,g(x)),x),c). ---> New Demodulator: 3234 (3233) EQUAL(f(f(c,g(x)),x),c). ** KEPT: 3235 (2897,7,5,2551) P(f(f(c,g(h)),f(h,c)),g(c),c). ** KEPT: 3236 (2897,7,5,1769) P(f(f(c,g(k)),d),f(g(d),k),c). ** KEPT: 3237 (2897,7,5,1600) P(f(f(c,g(h)),f(h,g(d))),d,c). ** KEPT: 3238 (2897,7,5,1529) P(f(f(c,g(h)),d),f(g(d),h),c). ** KEPT: 3239 (2897,7,5,1373) P(f(f(c,g(h)),d),f(g(c),a),c). ** KEPT: 3240 (2897,7,5,1034) P(f(f(c,g(h)),f(h,a)),g(a),c). ** KEPT: 3241 (2897,7,5,676) P(f(f(c,g(h)),f(h,g(a))),a,c). ** KEPT: 3242 (2897,7,5,566) P(f(f(c,g(k)),d),f(b,g(d)),c). ** KEPT: 3243 (2897,7,5,434) P(f(f(c,g(k)),c),g(f(h,a)),c). ** KEPT: 3244 (2897,7,5,409) P(f(f(c,g(k)),f(k,d)),g(d),c). ** KEPT: 3245 (2897,7,5,351) P(f(f(c,g(k)),f(d,b)),g(d),c). ** KEPT: 3246 (2897,7,5,307) P(f(f(c,g(h)),f(d,g(c))),a,c). ** KEPT: 3247 (2897,7,5,292) P(f(f(c,g(h)),c),g(f(b,a)),c). ** KEPT: 3248 (2897,7,5,197) P(f(f(c,g(f(g(k),c))),h),a,c). ** KEPT: 3249 (2897,7,5,193) P(f(f(c,g(h)),f(g(k),h)),b,c). ** KEPT: 3250 (2897,7,5,188) P(f(f(c,g(h)),k),f(h,g(b)),c). ** KEPT: 3251 (2897,7,5,186) P(f(f(c,g(h)),g(k)),d,c). ** KEPT: 3252 (2897,7,5,173) P(f(f(c,g(f(k,d))),d),b,c). ** KEPT: 3253 (2897,7,5,168) P(f(f(c,g(k)),h),f(b,g(h)),c). ** KEPT: 3254 (2897,7,5,165) P(f(f(c,g(f(d,b))),k),d,c). ** KEPT: 3255 (2897,7,5,152) P(f(f(c,g(f(g(h),c))),b),a,c). ** KEPT: 3256 (2897,7,5,105) P(f(f(c,g(k)),d),g(h),c). ** KEPT: 3257 (2897,7,5,78) P(f(f(c,g(f(c,b))),d),c,c). ** KEPT: 3258 (2897,7,5,74) P(f(f(c,g(f(d,c))),c),b,c). ** KEPT: 3259 (2897,7,5,37) P(f(f(c,g(f(a,f(b,x)))),c),x,c). ** KEPT: 3260 (2897,7,5,34) P(f(f(c,g(f(x,c))),f(x,a)),b,c). ** KEPT: 3261 (2897,7,5,22) P(f(f(c,g(h)),d),g(b),c). ** KEPT: 3262 (2897,7,5,5) P(f(f(c,g(f(x,y))),x),y,c). ** KEPT: 3263 (2897,7,2897,5) P(c,x,f(f(c,g(f(c,g(x)))),c)). ** KEPT: 3264 (2897,7,37,37) P(f(a,f(b,f(c,g(x)))),x,f(a,f(b,c))). ** KEPT: 3265 (2897,7,37,5) P(f(a,f(b,f(c,g(x)))),x,f(c,c)). ** KEPT: 3266 (2897,7,5,1405) P(f(f(b,g(c)),f(c,g(x))),x,b). ** KEPT: 3267 (2897,7,5,1379) P(f(f(d,g(c)),f(c,g(x))),x,d). ** KEPT: 3268 (2897,7,5,1094) P(f(f(a,g(c)),f(c,g(x))),x,a). ** KEPT: 3269 (2897,7,5,528) P(f(f(g(c),d),f(c,g(x))),x,b). ** KEPT: 3270 (2897,7,5,202) P(f(g(k),f(c,g(x))),x,f(h,a)). ** KEPT: 3271 (2897,7,5,156) P(f(g(h),f(c,g(x))),x,f(b,a)). ** KEPT: 3272 (2897,7,5,123) P(f(f(h,g(a)),f(c,g(x))),x,d). ** KEPT: 3273 (2897,7,5,78) P(f(d,f(c,g(x))),x,f(c,b)). ** KEPT: 3274 (2897,7,5,77) P(f(g(d),f(c,g(x))),x,a). ** KEPT: 3275 (2897,7,5,40) P(f(g(a),f(c,g(x))),x,b). ** KEPT: 3276 (2897,7,5,37) P(f(c,f(c,g(x))),x,f(a,f(b,c))). ** KEPT: 3277 (2897,7,5,5) P(f(x,f(c,g(y))),y,f(x,c)). ** KEPT: 3278 (2897,7,5,3) P(f(g(c),f(c,g(x))),x,e). ** KEPT: 3279 (2897,7,3,5) P(e,x,f(g(f(c,g(x))),c)). ** KEPT: 3280 (2897,7,2896,5) P(c,g(x),f(f(c,g(f(c,x))),c)). ** KEPT: 3281 (2897,7,2552,5) P(c,g(c),f(f(c,g(f(b,c))),b)). ** KEPT: 3282 (2897,7,2551,5) P(c,g(c),f(f(c,g(f(h,c))),h)). ** KEPT: 3283 (2897,7,1379,5) P(c,c,f(f(c,g(f(d,g(c)))),d)). ** KEPT: 3284 (2897,7,1014,5) P(c,f(g(k),c),f(f(c,g(k)),c)). ** KEPT: 3285 (2897,7,794,5) P(c,f(g(h),c),f(f(c,g(h)),c)). ** KEPT: 3286 (2897,7,760,5) P(c,h,f(f(c,g(f(a,g(h)))),a)). ** KEPT: 3287 (2897,7,676,5) P(c,a,f(f(c,g(f(h,g(a)))),h)). ** KEPT: 3288 (2897,7,457,5,27) P(c,f(g(d),k),f(c,g(h))). ** KEPT: 3289 (2897,7,409,5) P(c,g(d),f(f(c,g(f(k,d))),k)). ** KEPT: 3290 (2897,7,373,5) P(c,g(b),f(f(c,g(f(d,b))),d)). ** KEPT: 3291 (2897,7,351,5) P(c,g(d),f(f(c,g(f(d,b))),k)). ** KEPT: 3292 (2897,7,320,5) P(c,g(c),f(f(c,g(f(d,c))),d)). ** KEPT: 3293 (2897,7,307,5) P(c,a,f(f(c,g(f(d,g(c)))),h)). ** KEPT: 3294 (2897,7,271,5) P(c,h,f(f(c,g(f(c,g(d)))),a)). ** KEPT: 3295 (2897,7,255,5) P(c,g(c),f(f(c,g(f(c,b))),d)). ** KEPT: 3296 (2897,7,197,5) P(c,a,f(f(c,g(h)),f(g(k),c))). ** KEPT: 3297 (2897,7,193,5) P(c,b,f(f(c,g(f(g(k),h))),h)). ** KEPT: 3298 (2897,7,190,5,27) P(c,f(h,g(d)),f(c,g(k))). ** KEPT: 3299 (2897,7,188,5) P(c,f(h,g(b)),f(f(c,g(k)),h)). ** KEPT: 3300 (2897,7,180,5) P(c,h,f(f(c,g(f(g(h),k))),b)). ** KEPT: 3301 (2897,7,179,5) P(c,g(b),f(f(c,g(f(k,d))),d)). ** KEPT: 3302 (2897,7,168,5) P(c,f(b,g(h)),f(f(c,g(h)),k)). ** KEPT: 3303 (2897,7,149,5) P(c,d,f(f(c,g(f(a,g(h)))),c)). ** KEPT: 3304 (2897,7,135,5) P(c,b,f(f(c,g(f(g(d),a))),a)). ** KEPT: 3305 (2897,7,123,5) P(c,c,f(f(c,g(f(h,g(a)))),d)). ** KEPT: 3306 (2897,7,122,5) P(c,a,f(f(c,g(f(g(a),d))),b)). ** KEPT: 3307 (2897,7,110,5) P(c,g(b),f(f(c,g(f(d,c))),c)). ** KEPT: 3308 (2897,7,104,5,27) P(c,f(b,g(d)),f(c,g(h))). ** KEPT: 3309 (2897,7,34,5) P(c,b,f(f(c,g(f(x,a))),f(x,c))). ** KEPT: 3310 (2897,7,5,5) P(c,x,f(f(c,g(y)),f(y,x))). ** KEPT: 3311 (2897,6,2897,1485,1066) P(f(c,g(f(c,a))),c,d). ** KEPT: 3312 (2897,6,2897,1454,1347) P(f(c,g(f(c,b))),c,a). ** KEPT: 3313 (2897,6,2897,434,31) P(f(c,g(f(c,f(h,a)))),c,k). ** KEPT: 3314 (2897,6,2897,292,31) P(f(c,g(f(c,f(b,a)))),c,h). ** KEPT: 3315 (2897,6,2897,37) P(f(c,g(f(c,g(x)))),c,f(a,f(b,x))). ** KEPT: 3316 (2897,6,2897,5) P(f(c,g(f(c,g(x)))),c,f(c,x)). ** KEPT: 3317 (2897,6,2897,4,31) P(f(c,g(f(c,c))),c,e). ** KEPT: 3318 (2897,6,37,5) P(c,c,f(f(a,f(b,f(c,g(x)))),x)). ** KEPT: 3319 (2897,6,5,5) P(x,c,f(f(x,f(c,g(y))),y)). ** KEPT: 3320 (2897,6,3,5,28) P(g(f(c,g(x))),c,x). ** KEPT: 3321 (2897,6,2896,37) P(f(c,g(f(c,x))),c,f(a,f(b,g(x)))). ** KEPT: 3322 (2897,6,2896,5) P(f(c,g(f(c,x))),c,f(c,g(x))). ** KEPT: 3323 (2897,6,2552,37,473) P(f(c,g(f(b,c))),b,e). ** KEPT: 3324 (2897,6,2551,37,473) P(f(c,g(f(h,c))),h,e). ** KEPT: 3325 (2897,6,1379,37) P(f(c,g(f(d,g(c)))),d,f(a,f(b,c))). ** KEPT: 3326 (2897,6,1379,5) P(f(c,g(f(d,g(c)))),d,f(c,c)). ** KEPT: 3327 (2897,6,1014,5) P(f(c,g(k)),c,f(c,f(g(k),c))). ** KEPT: 3328 (2897,6,794,5) P(f(c,g(h)),c,f(c,f(g(h),c))). ** KEPT: 3329 (2897,6,760,37) P(f(c,g(f(a,g(h)))),a,f(a,f(b,h))). ** KEPT: 3330 (2897,6,760,5) P(f(c,g(f(a,g(h)))),a,f(c,h)). ** KEPT: 3331 (2897,6,676,37) P(f(c,g(f(h,g(a)))),h,f(a,f(b,a))). ** KEPT: 3332 (2897,6,676,5) P(f(c,g(f(h,g(a)))),h,f(c,a)). ** KEPT: 3333 (2897,6,457,37) P(f(c,g(h)),e,f(a,f(b,f(g(d),k)))). ** KEPT: 3334 (2897,6,457,5) P(f(c,g(h)),e,f(c,f(g(d),k))). ** KEPT: 3335 (2897,6,409,37) P(f(c,g(f(k,d))),k,f(a,f(b,g(d)))). ** KEPT: 3336 (2897,6,409,5) P(f(c,g(f(k,d))),k,f(c,g(d))). ** KEPT: 3337 (2897,6,373,38) P(f(c,g(f(d,b))),d,a). ** KEPT: 3338 (2897,6,351,37) P(f(c,g(f(d,b))),k,f(a,f(b,g(d)))). ** KEPT: 3339 (2897,6,351,5) P(f(c,g(f(d,b))),k,f(c,g(d))). ** KEPT: 3340 (2897,6,320,37,473) P(f(c,g(f(d,c))),d,e). ** KEPT: 3341 (2897,6,307,37) P(f(c,g(f(d,g(c)))),h,f(a,f(b,a))). ** KEPT: 3342 (2897,6,307,5) P(f(c,g(f(d,g(c)))),h,f(c,a)). ** KEPT: 3343 (2897,6,271,37) P(f(c,g(f(c,g(d)))),a,f(a,f(b,h))). ** KEPT: 3344 (2897,6,271,5) P(f(c,g(f(c,g(d)))),a,f(c,h)). ** KEPT: 3345 (2897,6,255,37,473) P(f(c,g(f(c,b))),d,e). ** KEPT: 3346 (2897,6,197,37) P(f(c,g(h)),f(g(k),c),f(a,f(b,a))). ** KEPT: 3347 (2897,6,197,5) P(f(c,g(h)),f(g(k),c),f(c,a)). ** KEPT: 3348 (2897,6,193,74) P(f(c,g(f(g(k),h))),h,f(d,c)). ** KEPT: 3349 (2897,6,193,37) P(f(c,g(f(g(k),h))),h,f(a,f(b,b))). ** KEPT: 3350 (2897,6,193,5) P(f(c,g(f(g(k),h))),h,f(c,b)). ** KEPT: 3351 (2897,6,190,37) P(f(c,g(k)),e,f(a,f(b,f(h,g(d))))). ** KEPT: 3352 (2897,6,190,5) P(f(c,g(k)),e,f(c,f(h,g(d)))). ** KEPT: 3353 (2897,6,188,37) P(f(c,g(k)),h,f(a,f(b,f(h,g(b))))). ** KEPT: 3354 (2897,6,188,5) P(f(c,g(k)),h,f(c,f(h,g(b)))). ** KEPT: 3355 (2897,6,180,37) P(f(c,g(f(g(h),k))),b,f(a,f(b,h))). ** KEPT: 3356 (2897,6,180,5) P(f(c,g(f(g(h),k))),b,f(c,h)). ** KEPT: 3357 (2897,6,179,38) P(f(c,g(f(k,d))),d,a). ** KEPT: 3358 (2897,6,168,37) P(f(c,g(h)),k,f(a,f(b,f(b,g(h))))). ** KEPT: 3359 (2897,6,168,5) P(f(c,g(h)),k,f(c,f(b,g(h)))). ** KEPT: 3360 (2897,6,149,37) P(f(c,g(f(a,g(h)))),c,f(a,f(b,d))). ** KEPT: 3361 (2897,6,149,5) P(f(c,g(f(a,g(h)))),c,f(c,d)). ** KEPT: 3362 (2897,6,135,74) P(f(c,g(f(g(d),a))),a,f(d,c)). ** KEPT: 3363 (2897,6,135,37) P(f(c,g(f(g(d),a))),a,f(a,f(b,b))). ** KEPT: 3364 (2897,6,135,5) P(f(c,g(f(g(d),a))),a,f(c,b)). ** KEPT: 3365 (2897,6,123,37) P(f(c,g(f(h,g(a)))),d,f(a,f(b,c))). ** KEPT: 3366 (2897,6,123,5) P(f(c,g(f(h,g(a)))),d,f(c,c)). ** KEPT: 3367 (2897,6,122,37) P(f(c,g(f(g(a),d))),b,f(a,f(b,a))). ** KEPT: 3368 (2897,6,122,5) P(f(c,g(f(g(a),d))),b,f(c,a)). ** KEPT: 3369 (2897,6,110,38) P(f(c,g(f(d,c))),c,a). ** KEPT: 3370 (2897,6,104,37) P(f(c,g(h)),e,f(a,f(b,f(b,g(d))))). ** KEPT: 3371 (2897,6,104,5) P(f(c,g(h)),e,f(c,f(b,g(d)))). ** KEPT: 3372 (2897,6,34,74) P(f(c,g(f(x,a))),f(x,c),f(d,c)). ** KEPT: 3373 (2897,6,34,37) P(f(c,g(f(x,a))),f(x,c),f(a,f(b,b))). ** KEPT: 3374 (2897,6,34,5) P(f(c,g(f(x,a))),f(x,c),f(c,b)). ** KEPT: 3375 (2897,6,5,1485) P(f(c,g(x)),f(x,f(g(c),d)),d). ** KEPT: 3376 (2897,6,5,1454) P(f(c,g(x)),f(x,f(g(c),a)),a). ** KEPT: 3377 (2897,6,5,1237) P(f(c,g(x)),f(x,f(g(d),h)),a). ** KEPT: 3378 (2897,6,5,475) P(f(c,g(x)),f(x,f(b,g(c))),d). ** KEPT: 3379 (2897,6,5,434) P(f(c,g(x)),f(x,g(f(h,a))),k). ** KEPT: 3380 (2897,6,5,292) P(f(c,g(x)),f(x,g(f(b,a))),h). ** KEPT: 3381 (2897,6,5,74) P(f(c,g(x)),f(x,b),f(d,c)). ** KEPT: 3382 (2897,6,5,38) P(f(c,g(x)),f(x,g(b)),a). ** KEPT: 3383 (2897,6,5,37) P(f(c,g(x)),f(x,y),f(a,f(b,y))). ** KEPT: 3384 (2897,6,5,21) P(f(c,g(x)),f(x,g(a)),d). ** KEPT: 3385 (2897,6,5,5) P(f(c,g(x)),f(x,y),f(c,y)). ** KEPT: 3386 (2897,6,5,4) P(f(c,g(x)),f(x,g(c)),e). >>>> Starting back demodulation with: 3234 (3233) EQUAL(f(f(c,g(x)),x),c). >> back demodulating: 2172 (2171) EQUAL(f(f(c,g(d)),d),c). >> back demodulating: 2171 (1245,8,5) EQUAL(f(f(c,g(d)),d),c). 3264 back subsumes: 2730 (37,7,37,1245) P(f(a,f(b,f(c,g(d)))),d,f(a,f(b,c))). 3265 back subsumes: 2927 (37,7,1245,5) P(f(a,f(b,f(c,g(d)))),d,f(c,c)). 3266 back subsumes: 2325 (1405,7,5,1245) P(f(f(b,g(c)),f(c,g(d))),d,b). 3267 back subsumes: 2281 (1379,7,5,1245) P(f(f(d,g(c)),f(c,g(d))),d,d). 3268 back subsumes: 2184 (1245,7,5,1094) P(f(f(a,g(c)),f(c,g(d))),d,a). 3269 back subsumes: 2185 (1245,7,5,528) P(f(f(g(c),d),f(c,g(d))),d,b). 3270 back subsumes: 2186 (1245,7,5,202) P(f(g(k),f(c,g(d))),d,f(h,a)). 3271 back subsumes: 2187 (1245,7,5,156) P(f(g(h),f(c,g(d))),d,f(b,a)). 3272 back subsumes: 2188 (1245,7,5,123) P(f(f(h,g(a)),f(c,g(d))),d,d). 3273 back subsumes: 2189 (1245,7,5,78) P(f(d,f(c,g(d))),d,f(c,b)). 3274 back subsumes: 2190 (1245,7,5,77) P(f(g(d),f(c,g(d))),d,a). 3275 back subsumes: 2191 (1245,7,5,40) P(f(g(a),f(c,g(d))),d,b). 3276 back subsumes: 2828 (37,7,5,1245) P(f(c,f(c,g(d))),d,f(a,f(b,c))). 3277 back subsumes: 2192 (1245,7,5,5) P(f(x,f(c,g(d))),d,f(x,c)). 3278 back subsumes: 2193 (1245,7,5,3) P(f(g(c),f(c,g(d))),d,e). 3279 back subsumes: 2194 (1245,7,3,5) P(e,d,f(g(f(c,g(d))),c)). 3310 back subsumes: 2198 (1245,7,5,5) P(c,x,f(f(c,g(d)),f(d,x))). 3318 back subsumes: 3089 (37,6,1245,5) P(c,c,f(f(a,f(b,f(c,g(d)))),d)). 3319 back subsumes: 2199 (1245,6,5,5) P(x,c,f(f(x,f(c,g(d))),d)). 3320 back subsumes: 2200 (1245,6,3,5,28) P(g(f(c,g(d))),c,d). 3375 back subsumes: 2398 (1485,6,1245,5) P(f(c,g(d)),f(d,f(g(c),d)),d). 3378 back subsumes: 2205 (1245,6,5,475) P(f(c,g(d)),f(d,f(b,g(c))),d). 3379 back subsumes: 2206 (1245,6,5,434) P(f(c,g(d)),f(d,g(f(h,a))),k). 3380 back subsumes: 2207 (1245,6,5,292) P(f(c,g(d)),f(d,g(f(b,a))),h). 3381 back subsumes: 1622 (397,7,5,74) P(f(c,g(d)),f(d,b),f(d,c)). 3383 back subsumes: 3012 (37,6,1245,5) P(f(c,g(d)),f(d,x),f(a,f(b,x))). 3383 back subsumes: 2842 (37,7,5,414) P(f(c,g(k)),f(k,d),f(a,f(b,d))). 3383 back subsumes: 2841 (37,7,5,426) P(f(c,g(h)),f(h,a),f(a,f(b,a))). 3383 back subsumes: 2817 (37,7,5,2557) P(f(c,g(h)),f(h,c),f(a,f(b,c))). 3384 back subsumes: 2208 (1245,6,5,21) P(f(c,g(d)),f(d,g(a)),d). 3385 back subsumes: 2209 (1245,6,5,5) P(f(c,g(d)),f(d,x),f(c,x)). 3386 back subsumes: 2210 (1245,6,5,4) P(f(c,g(d)),f(d,g(c)),e). new given clause: 39 (20,6,5,5) P(x,c,f(f(x,a),b)). ** KEPT: 3387 (39,19) P(f(f(c,a),b),c,e). ** KEPT: 3388 (39,18) P(c,f(f(c,a),b),e). ** KEPT: 3389 (39,12,444) P(g(k),c,f(f(f(h,g(d)),a),b)). ** KEPT: 3390 (39,12,386) P(g(h),c,f(f(f(g(d),k),a),b)). ** KEPT: 3391 (39,12,363) P(f(d,b),c,f(f(f(k,d),a),b)). ** KEPT: 3392 (39,12,346) P(g(h),c,f(f(f(b,g(d)),a),b)). ** KEPT: 3393 (39,12,332) P(g(d),c,f(f(f(a,g(c)),a),b)). ** KEPT: 3394 (39,12,304) P(g(b),c,f(f(f(g(c),a),a),b)). ** KEPT: 3395 (39,12,268) P(g(b),c,f(f(f(g(d),h),a),b)). ** KEPT: 3396 (39,12,225) P(f(c,b),c,f(f(f(d,c),a),b)). ** KEPT: 3397 (39,8,1094) EQUAL(f(f(f(a,g(c)),a),b),a). ---> New Demodulator: 3398 (3397) EQUAL(f(f(f(a,g(c)),a),b),a). ** KEPT: 3399 (39,8,202) EQUAL(f(f(g(k),a),b),f(h,a)). ** KEPT: 3400 (39,8,156) EQUAL(f(f(g(h),a),b),f(b,a)). ** KEPT: 3401 (39,8,37) EQUAL(f(a,f(b,c)),f(f(c,a),b)). ** KEPT: 3402 (39,7,2897,2897) P(c,x,f(f(f(c,g(f(c,g(x)))),a),b)). ** KEPT: 3403 (39,7,2897,2896) P(c,g(x),f(f(f(c,g(f(c,x))),a),b)). ** KEPT: 3404 (39,7,2897,2558,31) P(c,f(b,c),f(f(f(c,b),a),b)). ** KEPT: 3405 (39,7,2897,2557,31) P(c,f(h,c),f(f(f(c,h),a),b)). ** KEPT: 3406 (39,7,2897,1014) P(c,f(g(k),c),f(f(f(c,g(k)),a),b)). ** KEPT: 3407 (39,7,2897,794) P(c,f(g(h),c),f(f(f(c,g(h)),a),b)). ** KEPT: 3408 (39,7,2897,237,31) P(c,f(d,c),f(f(f(c,d),a),b)). ** KEPT: 3409 (39,7,2897,187) P(c,f(h,a),f(f(f(c,g(k)),a),b)). ** KEPT: 3410 (39,7,2897,149) P(c,d,f(f(f(c,g(f(a,g(h)))),a),b)). ** KEPT: 3411 (39,7,2897,143,31) P(c,f(c,b),f(f(f(c,d),a),b)). ** KEPT: 3412 (39,7,2897,110) P(c,g(b),f(f(f(c,g(f(d,c))),a),b)). ** KEPT: 3413 (39,7,2897,102) P(c,f(b,a),f(f(f(c,g(h)),a),b)). ** KEPT: 3414 (39,7,2897,62) P(c,a,f(f(f(c,g(d)),a),b)). ** KEPT: 3415 (39,7,1600,62) P(h,a,f(f(f(h,g(d)),a),b)). ** KEPT: 3416 (39,7,1270,62) P(b,a,f(f(f(b,g(d)),a),b)). ** KEPT: 3417 (39,7,922,62) P(b,a,f(f(f(g(d),k),a),b)). ** KEPT: 3418 (39,7,760,794) P(a,f(g(h),c),f(f(f(a,g(h)),a),b)). ** KEPT: 3419 (39,7,760,102) P(a,f(b,a),f(f(f(a,g(h)),a),b)). ** KEPT: 3420 (39,7,409,237) P(k,f(d,c),f(f(f(k,d),a),b)). ** KEPT: 3421 (39,7,409,143) P(k,f(c,b),f(f(f(k,d),a),b)). ** KEPT: 3422 (39,7,389,1014) P(e,f(g(k),c),f(f(f(h,g(d)),a),b)). ** KEPT: 3423 (39,7,389,187) P(e,f(h,a),f(f(f(h,g(d)),a),b)). ** KEPT: 3424 (39,7,373,2558) P(d,f(b,c),f(f(f(d,b),a),b)). ** KEPT: 3425 (39,7,351,237) P(k,f(d,c),f(f(f(d,b),a),b)). ** KEPT: 3426 (39,7,351,143) P(k,f(c,b),f(f(f(d,b),a),b)). ** KEPT: 3427 (39,7,275,2557) P(g(d),f(h,c),f(f(g(b),a),b)). ** KEPT: 3428 (39,7,273,794) P(e,f(g(h),c),f(f(f(b,g(d)),a),b)). ** KEPT: 3429 (39,7,273,102) P(e,f(b,a),f(f(f(b,g(d)),a),b)). ** KEPT: 3430 (39,7,271,794) P(a,f(g(h),c),f(f(f(c,g(d)),a),b)). ** KEPT: 3431 (39,7,271,102) P(a,f(b,a),f(f(f(c,g(d)),a),b)). ** KEPT: 3432 (39,7,202,2) P(f(h,a),e,f(f(g(k),a),b)). ** KEPT: 3433 (39,7,197,20) P(f(g(k),c),b,f(f(h,a),b)). ** KEPT: 3434 (39,7,186,62) P(h,a,f(f(g(k),a),b)). ** KEPT: 3435 (39,7,182,794) P(e,f(g(h),c),f(f(f(g(d),k),a),b)). ** KEPT: 3436 (39,7,182,102) P(e,f(b,a),f(f(f(g(d),k),a),b)). ** KEPT: 3437 (39,7,180,794) P(b,f(g(h),c),f(f(f(g(h),k),a),b)). ** KEPT: 3438 (39,7,180,102) P(b,f(b,a),f(f(f(g(h),k),a),b)). ** KEPT: 3439 (39,7,179,2558) P(d,f(b,c),f(f(f(k,d),a),b)). ** KEPT: 3440 (39,7,167,794) P(d,f(g(h),c),f(f(k,a),b)). ** KEPT: 3441 (39,7,167,102) P(d,f(b,a),f(f(k,a),b)). ** KEPT: 3442 (39,7,165,62) P(f(d,b),a,f(f(k,a),b)). ** KEPT: 3443 (39,7,156,2) P(f(b,a),e,f(f(g(h),a),b)). ** KEPT: 3444 (39,7,152,20) P(f(g(h),c),b,f(f(b,a),b)). ** KEPT: 3445 (39,7,149,62) P(c,a,f(f(f(a,g(h)),a),b)). ** KEPT: 3446 (39,7,110,2558) P(c,f(b,c),f(f(f(d,c),a),b)). ** KEPT: 3447 (39,7,101,62) P(b,a,f(f(g(h),a),b)). ** KEPT: 3448 (39,7,38,2558) P(a,f(b,c),f(f(c,a),b)). ** KEPT: 3449 (39,7,37,2897) P(f(a,f(b,f(c,g(x)))),x,f(f(c,a),b)). ** KEPT: 3450 (39,7,37,2896) P(f(a,f(b,f(c,x))),g(x),f(f(c,a),b)). ** KEPT: 3451 (39,7,37,2557) P(f(a,f(b,g(h))),f(h,c),f(f(c,a),b)). ** KEPT: 3452 (39,7,37,1014) P(f(a,f(b,k)),f(g(k),c),f(f(c,a),b)). ** KEPT: 3453 (39,7,37,794) P(f(a,f(b,h)),f(g(h),c),f(f(c,a),b)). ** KEPT: 3454 (39,7,37,237) P(f(a,f(b,g(d))),f(d,c),f(f(c,a),b)). ** KEPT: 3455 (39,7,37,187) P(f(a,f(b,k)),f(h,a),f(f(c,a),b)). ** KEPT: 3456 (39,7,37,149) P(f(a,f(b,f(a,g(h)))),d,f(f(c,a),b)). ** KEPT: 3457 (39,7,37,143) P(f(a,f(b,g(d))),f(c,b),f(f(c,a),b)). ** KEPT: 3458 (39,7,37,110) P(f(a,f(b,f(d,c))),g(b),f(f(c,a),b)). ** KEPT: 3459 (39,7,37,102) P(f(a,f(b,h)),f(b,a),f(f(c,a),b)). ** KEPT: 3460 (39,7,37,62) P(f(a,f(b,d)),a,f(f(c,a),b)). ** KEPT: 3461 (39,7,37,20) P(f(a,f(b,a)),b,f(f(c,a),b)). ** KEPT: 3462 (39,7,37,2) P(f(a,f(b,c)),e,f(f(c,a),b)). ** KEPT: 3463 (39,7,5,2897) P(f(x,f(c,g(y))),y,f(f(x,a),b)). ** KEPT: 3464 (39,7,5,2896) P(f(x,f(c,y)),g(y),f(f(x,a),b)). ** KEPT: 3465 (39,7,5,2558) P(f(x,g(b)),f(b,c),f(f(x,a),b)). ** KEPT: 3466 (39,7,5,2557) P(f(x,g(h)),f(h,c),f(f(x,a),b)). ** KEPT: 3467 (39,7,5,1014) P(f(x,k),f(g(k),c),f(f(x,a),b)). ** KEPT: 3468 (39,7,5,794) P(f(x,h),f(g(h),c),f(f(x,a),b)). ** KEPT: 3469 (39,7,5,237) P(f(x,g(d)),f(d,c),f(f(x,a),b)). ** KEPT: 3470 (39,7,5,187) P(f(x,k),f(h,a),f(f(x,a),b)). ** KEPT: 3471 (39,7,5,149) P(f(x,f(a,g(h))),d,f(f(x,a),b)). ** KEPT: 3472 (39,7,5,143) P(f(x,g(d)),f(c,b),f(f(x,a),b)). ** KEPT: 3473 (39,7,5,110) P(f(x,f(d,c)),g(b),f(f(x,a),b)). ** KEPT: 3474 (39,7,5,102) P(f(x,h),f(b,a),f(f(x,a),b)). ** KEPT: 3475 (39,7,5,62) P(f(x,d),a,f(f(x,a),b)). ** KEPT: 3476 (39,7,3,2897) P(e,x,f(f(g(f(c,g(x))),a),b)). ** KEPT: 3477 (39,7,3,2896) P(e,g(x),f(f(g(f(c,x)),a),b)). ** KEPT: 3478 (39,7,3,187) P(e,f(h,a),f(f(g(k),a),b)). ** KEPT: 3479 (39,7,3,149) P(e,d,f(f(g(f(a,g(h))),a),b)). ** KEPT: 3480 (39,7,3,110) P(e,g(b),f(f(g(f(d,c)),a),b)). ** KEPT: 3481 (39,7,3,102) P(e,f(b,a),f(f(g(h),a),b)). ** KEPT: 3482 (39,7,2897,5) P(c,c,f(f(c,g(x)),f(f(x,a),b))). ** KEPT: 3483 (39,7,2896,5) P(c,c,f(f(c,x),f(f(g(x),a),b))). ** KEPT: 3484 (39,7,2558,5) P(c,c,f(g(b),f(f(f(b,c),a),b))). ** KEPT: 3485 (39,7,2557,5) P(c,c,f(g(h),f(f(f(h,c),a),b))). ** KEPT: 3486 (39,7,1769,5) P(k,c,f(d,f(f(f(g(d),k),a),b))). ** KEPT: 3487 (39,7,1529,5) P(h,c,f(d,f(f(f(g(d),h),a),b))). ** KEPT: 3488 (39,7,1454,37) P(a,c,f(a,f(b,f(f(f(g(c),a),a),b)))). ** KEPT: 3489 (39,7,1454,5) P(a,c,f(c,f(f(f(g(c),a),a),b))). ** KEPT: 3490 (39,7,1405,5) P(b,c,f(f(b,g(c)),f(f(c,a),b))). ** KEPT: 3491 (39,7,1379,5) P(d,c,f(f(d,g(c)),f(f(c,a),b))). ** KEPT: 3492 (39,7,1373,5) P(h,c,f(d,f(f(f(g(c),a),a),b))). ** KEPT: 3493 (39,7,1237,37) P(a,c,f(a,f(b,f(f(f(g(d),h),a),b)))). ** KEPT: 3494 (39,7,1237,5) P(a,c,f(c,f(f(f(g(d),h),a),b))). ** KEPT: 3495 (39,7,1094,5) P(a,c,f(f(a,g(c)),f(f(c,a),b))). ** KEPT: 3496 (39,7,1014,5) P(c,c,f(k,f(f(f(g(k),c),a),b))). ** KEPT: 3497 (39,7,794,5) P(c,c,f(h,f(f(f(g(h),c),a),b))). ** KEPT: 3498 (39,7,760,5) P(a,c,f(f(a,g(h)),f(f(h,a),b))). ** KEPT: 3499 (39,7,676,5) P(h,c,f(f(h,g(a)),f(f(a,a),b))). ** KEPT: 3500 (39,7,566,5) P(k,c,f(d,f(f(f(b,g(d)),a),b))). ** KEPT: 3501 (39,7,528,5) P(b,c,f(f(g(c),d),f(f(c,a),b))). ** KEPT: 3502 (39,7,457,5) P(e,c,f(h,f(f(f(g(d),k),a),b))). ** KEPT: 3503 (39,7,434,37) P(k,c,f(a,f(b,f(f(g(f(h,a)),a),b)))). ** KEPT: 3504 (39,7,434,5) P(k,c,f(c,f(f(g(f(h,a)),a),b))). ** KEPT: 3505 (39,7,426,5) P(a,c,f(g(h),f(f(f(h,a),a),b))). ** KEPT: 3506 (39,7,414,5) P(d,c,f(g(k),f(f(f(k,d),a),b))). ** KEPT: 3507 (39,7,398,5) P(b,c,f(g(d),f(f(f(k,d),a),b))). ** KEPT: 3508 (39,7,397,5) P(b,c,f(g(d),f(f(f(d,b),a),b))). ** KEPT: 3509 (39,7,392,5) P(g(d),c,f(g(h),f(f(g(k),a),b))). ** KEPT: 3510 (39,7,389,5) P(e,c,f(f(h,g(d)),f(f(k,a),b))). ** KEPT: 3511 (39,7,373,5) P(d,c,f(f(d,b),f(f(g(b),a),b))). ** KEPT: 3512 (39,7,362,5) P(e,c,f(b,f(f(f(g(d),h),a),b))). ** KEPT: 3513 (39,7,331,5) P(e,c,f(b,f(f(f(g(c),a),a),b))). ** KEPT: 3514 (39,7,309,5) P(e,c,f(f(b,g(c)),f(f(a,a),b))). ** KEPT: 3515 (39,7,307,5) P(h,c,f(f(d,g(c)),f(f(a,a),b))). ** KEPT: 3516 (39,7,292,37) P(h,c,f(a,f(b,f(f(g(f(b,a)),a),b)))). ** KEPT: 3517 (39,7,292,5) P(h,c,f(c,f(f(g(f(b,a)),a),b))). ** KEPT: 3518 (39,7,284,5) P(a,c,f(g(b),f(f(f(b,a),a),b))). ** KEPT: 3519 (39,7,275,5) P(g(d),c,f(g(b),f(f(g(h),a),b))). ** KEPT: 3520 (39,7,273,5) P(e,c,f(f(b,g(d)),f(f(h,a),b))). ** KEPT: 3521 (39,7,271,5) P(a,c,f(f(c,g(d)),f(f(h,a),b))). ** KEPT: 3522 (39,7,260,5) P(b,c,f(g(c),f(f(f(c,b),a),b))). ** KEPT: 3523 (39,7,237,5) P(c,c,f(g(d),f(f(f(d,c),a),b))). ** KEPT: 3524 (39,7,222,5) P(b,c,f(g(c),f(f(f(d,c),a),b))). ** KEPT: 3525 (39,7,204,5) P(d,c,f(g(k),f(f(f(d,b),a),b))). ** KEPT: 3526 (39,7,202,5) P(f(h,a),c,f(g(k),f(f(c,a),b))). ** KEPT: 3527 (39,7,197,5) P(f(g(k),c),c,f(h,f(f(a,a),b))). ** KEPT: 3528 (39,7,193,5) P(h,c,f(f(g(k),h),f(f(b,a),b))). ** KEPT: 3529 (39,7,190,5) P(e,c,f(k,f(f(f(h,g(d)),a),b))). ** KEPT: 3530 (39,7,188,5) P(h,c,f(k,f(f(f(h,g(b)),a),b))). ** KEPT: 3531 (39,7,187,5) P(c,c,f(k,f(f(f(h,a),a),b))). ** KEPT: 3532 (39,7,182,5) P(e,c,f(f(g(d),k),f(f(h,a),b))). ** KEPT: 3533 (39,7,180,5) P(b,c,f(f(g(h),k),f(f(h,a),b))). ** KEPT: 3534 (39,7,179,5) P(d,c,f(f(k,d),f(f(g(b),a),b))). ** KEPT: 3535 (39,7,173,5) P(f(k,d),c,f(d,f(f(b,a),b))). ** KEPT: 3536 (39,7,172,5) P(g(h),c,f(g(d),f(f(k,a),b))). ** KEPT: 3537 (39,7,168,5) P(k,c,f(h,f(f(f(b,g(h)),a),b))). ** KEPT: 3538 (39,7,167,5) P(d,c,f(k,f(f(h,a),b))). ** KEPT: 3539 (39,7,156,5) P(f(b,a),c,f(g(h),f(f(c,a),b))). ** KEPT: 3540 (39,7,152,5) P(f(g(h),c),c,f(b,f(f(a,a),b))). ** KEPT: 3541 (39,7,143,5) P(c,c,f(g(d),f(f(f(c,b),a),b))). ** KEPT: 3542 (39,7,135,5) P(a,c,f(f(g(d),a),f(f(b,a),b))). ** KEPT: 3543 (39,7,123,5) P(d,c,f(f(h,g(a)),f(f(c,a),b))). ** KEPT: 3544 (39,7,122,5) P(b,c,f(f(g(a),d),f(f(a,a),b))). ** KEPT: 3545 (39,7,117,5) P(g(b),c,f(g(c),f(f(a,a),b))). ** KEPT: 3546 (39,7,115,5) P(a,c,f(d,f(f(f(a,g(b)),a),b))). ** KEPT: 3547 (39,7,110,5) P(c,c,f(f(d,c),f(f(g(b),a),b))). ** KEPT: 3548 (39,7,105,5) P(k,c,f(d,f(f(g(h),a),b))). ** KEPT: 3549 (39,7,104,5) P(e,c,f(h,f(f(f(b,g(d)),a),b))). ** KEPT: 3550 (39,7,102,5) P(c,c,f(h,f(f(f(b,a),a),b))). ** KEPT: 3551 (39,7,97,5) P(e,c,f(f(g(d),h),f(f(b,a),b))). ** KEPT: 3552 (39,7,90,5) P(g(b),c,f(g(d),f(f(h,a),b))). ** KEPT: 3553 (39,7,87,5) P(d,c,f(h,f(f(b,a),b))). ** KEPT: 3554 (39,7,78,5) P(f(c,b),c,f(d,f(f(c,a),b))). ** KEPT: 3555 (39,7,77,5) P(a,c,f(g(d),f(f(c,a),b))). ** KEPT: 3556 (39,7,74,37) P(f(d,c),c,f(a,f(b,f(f(b,a),b)))). ** KEPT: 3557 (39,7,74,5) P(f(d,c),c,f(c,f(f(b,a),b))). ** KEPT: 3558 (39,7,72,5) P(e,c,f(f(g(c),d),f(f(a,a),b))). ** KEPT: 3559 (39,7,63,5) P(d,c,f(a,f(f(f(b,g(a)),a),b))). ** KEPT: 3560 (39,7,62,5) P(c,c,f(d,f(f(a,a),b))). ** KEPT: 3561 (39,7,40,5) P(b,c,f(g(a),f(f(c,a),b))). ** KEPT: 3562 (39,7,39,2897) P(f(f(f(c,g(f(f(c,a),b))),a),b),c,c). ** KEPT: 3563 (39,7,39,37) P(f(f(c,a),b),c,f(a,f(b,f(f(c,a),b)))). ** KEPT: 3564 (39,7,39,5) P(f(f(x,a),b),c,f(x,f(f(c,a),b))). ** KEPT: 3565 (39,7,39,3) P(f(f(g(f(f(c,a),b)),a),b),c,e). ** KEPT: 3566 (39,7,38,37) P(a,c,f(a,f(b,f(f(g(b),a),b)))). ** KEPT: 3567 (39,7,38,5) P(a,c,f(c,f(f(g(b),a),b))). ** KEPT: 3568 (39,7,37,37) P(f(a,f(b,x)),c,f(a,f(b,f(f(x,a),b)))). ** KEPT: 3569 (39,7,37,5) P(f(a,f(b,x)),c,f(c,f(f(x,a),b))). ** KEPT: 3570 (39,7,35,5) P(e,c,f(f(g(c),a),f(f(b,a),b))). ** KEPT: 3571 (39,7,34,5) P(f(x,c),c,f(f(x,a),f(f(b,a),b))). ** KEPT: 3572 (39,7,22,5) P(h,c,f(d,f(f(g(b),a),b))). ** KEPT: 3573 (39,7,20,5) P(c,c,f(a,f(f(b,a),b))). ** KEPT: 3574 (39,7,5,2897) P(f(f(c,g(f(f(x,a),b))),x),c,c). ** KEPT: 3575 (39,7,5,37) P(f(c,x),c,f(a,f(b,f(f(x,a),b)))). ** KEPT: 3576 (39,7,5,5) P(f(x,y),c,f(x,f(f(y,a),b))). ** KEPT: 3577 (39,7,5,3) P(f(g(f(f(x,a),b)),x),c,e). ** KEPT: 3578 (39,7,4,5) P(e,c,f(x,f(f(g(x),a),b))). ** KEPT: 3579 (39,7,3,5) P(e,c,f(g(x),f(f(x,a),b))). ** KEPT: 3580 (39,7,1485,2897) P(f(f(f(c,g(d)),a),b),f(g(c),d),c). ** KEPT: 3581 (39,7,1485,1600) P(f(f(f(h,g(d)),a),b),f(g(c),d),h). ** KEPT: 3582 (39,7,1485,1270) P(f(f(f(b,g(d)),a),b),f(g(c),d),b). ** KEPT: 3583 (39,7,1485,922) P(f(f(f(g(d),k),a),b),f(g(c),d),b). ** KEPT: 3584 (39,7,1485,186) P(f(f(g(k),a),b),f(g(c),d),h). ** KEPT: 3585 (39,7,1485,165) P(f(f(k,a),b),f(g(c),d),f(d,b)). ** KEPT: 3586 (39,7,1485,149) P(f(f(f(a,g(h)),a),b),f(g(c),d),c). ** KEPT: 3587 (39,7,1485,101) P(f(f(g(h),a),b),f(g(c),d),b). ** KEPT: 3588 (39,7,1485,37) P(f(f(c,a),b),f(g(c),d),f(a,f(b,d))). ** KEPT: 3589 (39,7,1485,5) P(f(f(x,a),b),f(g(c),d),f(x,d)). ** KEPT: 3590 (39,7,1454,197) P(f(f(h,a),b),f(g(c),a),f(g(k),c)). ** KEPT: 3591 (39,7,1454,152) P(f(f(b,a),b),f(g(c),a),f(g(h),c)). ** KEPT: 3592 (39,7,1454,37) P(f(f(c,a),b),f(g(c),a),f(a,f(b,a))). ** KEPT: 3593 (39,7,1237,197) P(f(f(h,a),b),f(g(d),h),f(g(k),c)). ** KEPT: 3594 (39,7,1237,152) P(f(f(b,a),b),f(g(d),h),f(g(h),c)). ** KEPT: 3595 (39,7,1237,37) P(f(f(c,a),b),f(g(d),h),f(a,f(b,a))). ** KEPT: 3596 (39,7,475,2897) P(f(f(f(c,g(d)),a),b),f(b,g(c)),c). ** KEPT: 3597 (39,7,475,1600) P(f(f(f(h,g(d)),a),b),f(b,g(c)),h). ** KEPT: 3598 (39,7,475,1270) P(f(f(f(b,g(d)),a),b),f(b,g(c)),b). ** KEPT: 3599 (39,7,475,922) P(f(f(f(g(d),k),a),b),f(b,g(c)),b). ** KEPT: 3600 (39,7,475,186) P(f(f(g(k),a),b),f(b,g(c)),h). ** KEPT: 3601 (39,7,475,165) P(f(f(k,a),b),f(b,g(c)),f(d,b)). ** KEPT: 3602 (39,7,475,149) P(f(f(f(a,g(h)),a),b),f(b,g(c)),c). ** KEPT: 3603 (39,7,475,101) P(f(f(g(h),a),b),f(b,g(c)),b). ** KEPT: 3604 (39,7,475,37) P(f(f(c,a),b),f(b,g(c)),f(a,f(b,d))). ** KEPT: 3605 (39,7,475,5) P(f(f(x,a),b),f(b,g(c)),f(x,d)). ** KEPT: 3606 (39,7,434,2897) P(f(f(f(c,g(k)),a),b),g(f(h,a)),c). ** KEPT: 3607 (39,7,434,389) P(f(f(f(h,g(d)),a),b),g(f(h,a)),e). ** KEPT: 3608 (39,7,434,37) P(f(f(c,a),b),g(f(h,a)),f(a,f(b,k))). ** KEPT: 3609 (39,7,434,5) P(f(f(x,a),b),g(f(h,a)),f(x,k)). ** KEPT: 3610 (39,7,434,3) P(f(f(g(k),a),b),g(f(h,a)),e). ** KEPT: 3611 (39,7,292,2897) P(f(f(f(c,g(h)),a),b),g(f(b,a)),c). ** KEPT: 3612 (39,7,292,760) P(f(f(f(a,g(h)),a),b),g(f(b,a)),a). ** KEPT: 3613 (39,7,292,273) P(f(f(f(b,g(d)),a),b),g(f(b,a)),e). ** KEPT: 3614 (39,7,292,271) P(f(f(f(c,g(d)),a),b),g(f(b,a)),a). ** KEPT: 3615 (39,7,292,182) P(f(f(f(g(d),k),a),b),g(f(b,a)),e). ** KEPT: 3616 (39,7,292,180) P(f(f(f(g(h),k),a),b),g(f(b,a)),b). ** KEPT: 3617 (39,7,292,167) P(f(f(k,a),b),g(f(b,a)),d). ** KEPT: 3618 (39,7,292,37) P(f(f(c,a),b),g(f(b,a)),f(a,f(b,h))). ** KEPT: 3619 (39,7,292,5) P(f(f(x,a),b),g(f(b,a)),f(x,h)). ** KEPT: 3620 (39,7,292,3) P(f(f(g(h),a),b),g(f(b,a)),e). ** KEPT: 3621 (39,7,74,2897) P(f(f(f(c,g(f(d,c))),a),b),b,c). ** KEPT: 3622 (39,7,74,37) P(f(f(c,a),b),b,f(a,f(b,f(d,c)))). ** KEPT: 3623 (39,7,74,5) P(f(f(x,a),b),b,f(x,f(d,c))). ** KEPT: 3624 (39,7,74,3) P(f(f(g(f(d,c)),a),b),b,e). ** KEPT: 3625 (39,7,38,197) P(f(f(h,a),b),g(b),f(g(k),c)). ** KEPT: 3626 (39,7,38,152) P(f(f(b,a),b),g(b),f(g(h),c)). ** KEPT: 3627 (39,7,38,122,626) P(f(b,b),g(b),b). ** KEPT: 3628 (39,7,38,37) P(f(f(c,a),b),g(b),f(a,f(b,a))). ** KEPT: 3629 (39,7,38,5) P(f(f(x,a),b),g(b),f(x,a)). ** KEPT: 3630 (39,7,37,2897) P(f(f(f(c,g(f(a,f(b,x)))),a),b),x,c). ** KEPT: 3631 (39,7,37,37) P(f(f(c,a),b),x,f(a,f(b,f(a,f(b,x))))). ** KEPT: 3632 (39,7,37,5) P(f(f(x,a),b),y,f(x,f(a,f(b,y)))). ** KEPT: 3633 (39,7,37,3) P(f(f(g(f(a,f(b,x))),a),b),x,e). ** KEPT: 3634 (39,7,21,2897) P(f(f(f(c,g(d)),a),b),g(a),c). ** KEPT: 3635 (39,7,21,1600) P(f(f(f(h,g(d)),a),b),g(a),h). ** KEPT: 3636 (39,7,21,1270) P(f(f(f(b,g(d)),a),b),g(a),b). ** KEPT: 3637 (39,7,21,922) P(f(f(f(g(d),k),a),b),g(a),b). ** KEPT: 3638 (39,7,21,186) P(f(f(g(k),a),b),g(a),h). ** KEPT: 3639 (39,7,21,165) P(f(f(k,a),b),g(a),f(d,b)). ** KEPT: 3640 (39,7,21,149) P(f(f(f(a,g(h)),a),b),g(a),c). ** KEPT: 3641 (39,7,21,101) P(f(f(g(h),a),b),g(a),b). ** KEPT: 3642 (39,7,21,37) P(f(f(c,a),b),g(a),f(a,f(b,d))). ** KEPT: 3643 (39,7,21,5) P(f(f(x,a),b),g(a),f(x,d)). ** KEPT: 3644 (39,7,5,2897) P(f(f(f(c,g(f(c,x))),a),b),x,c). ** KEPT: 3645 (39,7,5,37) P(f(f(c,a),b),x,f(a,f(b,f(c,x)))). ** KEPT: 3646 (39,7,5,5) P(f(f(x,a),b),y,f(x,f(c,y))). ** KEPT: 3647 (39,7,5,3) P(f(f(g(f(c,x)),a),b),x,e). ** KEPT: 3648 (39,7,4,5,27) P(f(f(x,a),b),g(c),x). ** KEPT: 3649 (39,7,2,202) P(f(f(g(k),a),b),e,f(h,a)). ** KEPT: 3650 (39,7,2,156) P(f(f(g(h),a),b),e,f(b,a)). ** KEPT: 3651 (39,7,2,37) P(f(f(c,a),b),e,f(a,f(b,c))). ** KEPT: 3652 (39,6,2897,1379) P(f(c,g(f(d,g(c)))),d,f(f(c,a),b)). ** KEPT: 3653 (39,6,2897,123) P(f(c,g(f(h,g(a)))),d,f(f(c,a),b)). ** KEPT: 3654 (39,6,2897,39) P(f(c,g(x)),f(f(x,a),b),f(f(c,a),b)). ** KEPT: 3655 (39,6,2897,37,29) P(e,f(a,f(b,c)),f(f(c,a),b)). ** KEPT: 3656 (39,6,2897,5) P(f(c,g(x)),f(x,c),f(f(c,a),b)). ** KEPT: 3657 (39,6,2896,39) P(f(c,x),f(f(g(x),a),b),f(f(c,a),b)). ** KEPT: 3658 (39,6,2896,5) P(f(c,x),f(g(x),c),f(f(c,a),b)). ** KEPT: 3659 (39,6,2558,39) P(g(b),f(f(f(b,c),a),b),f(f(c,a),b)). ** KEPT: 3660 (39,6,2558,5) P(g(b),f(f(b,c),c),f(f(c,a),b)). ** KEPT: 3661 (39,6,2557,39) P(g(h),f(f(f(h,c),a),b),f(f(c,a),b)). ** KEPT: 3662 (39,6,2557,5) P(g(h),f(f(h,c),c),f(f(c,a),b)). ** KEPT: 3663 (39,6,1769,39) P(d,f(f(f(g(d),k),a),b),f(f(k,a),b)). ** KEPT: 3664 (39,6,1769,5) P(d,f(f(g(d),k),c),f(f(k,a),b)). ** KEPT: 3665 (39,6,1529,39) P(d,f(f(f(g(d),h),a),b),f(f(h,a),b)). ** KEPT: 3666 (39,6,1529,5) P(d,f(f(g(d),h),c),f(f(h,a),b)). ** KEPT: 3667 (39,6,1454,39) P(c,f(f(f(g(c),a),a),b),f(f(a,a),b)). ** KEPT: 3668 (39,6,1454,5) P(c,f(f(g(c),a),c),f(f(a,a),b)). ** KEPT: 3669 (39,6,1405,39) P(f(b,g(c)),f(f(c,a),b),f(f(b,a),b)). ** KEPT: 3670 (39,6,1405,37) P(f(b,g(c)),f(a,f(b,c)),f(f(b,a),b)). ** KEPT: 3671 (39,6,1405,5) P(f(b,g(c)),f(c,c),f(f(b,a),b)). ** KEPT: 3672 (39,6,1379,39,70) P(f(d,g(c)),f(f(c,a),b),f(c,b)). ** KEPT: 3673 (39,6,1373,39) P(d,f(f(f(g(c),a),a),b),f(f(h,a),b)). ** KEPT: 3674 (39,6,1373,5) P(d,f(f(g(c),a),c),f(f(h,a),b)). ** KEPT: 3675 (39,6,1237,39) P(c,f(f(f(g(d),h),a),b),f(f(a,a),b)). ** KEPT: 3676 (39,6,1237,5) P(c,f(f(g(d),h),c),f(f(a,a),b)). ** KEPT: 3677 (39,6,1094,39) P(f(a,g(c)),f(f(c,a),b),f(f(a,a),b)). ** KEPT: 3678 (39,6,1094,37) P(f(a,g(c)),f(a,f(b,c)),f(f(a,a),b)). ** KEPT: 3679 (39,6,1094,5) P(f(a,g(c)),f(c,c),f(f(a,a),b)). ** KEPT: 3680 (39,6,1014,39) P(k,f(f(f(g(k),c),a),b),f(f(c,a),b)). ** KEPT: 3681 (39,6,1014,5) P(k,f(f(g(k),c),c),f(f(c,a),b)). ** KEPT: 3682 (39,6,922,78) P(f(g(d),k),f(c,b),f(f(b,a),b)). ** KEPT: 3683 (39,6,922,5) P(f(g(d),k),f(d,c),f(f(b,a),b)). ** KEPT: 3684 (39,6,794,39) P(h,f(f(f(g(h),c),a),b),f(f(c,a),b)). ** KEPT: 3685 (39,6,794,5) P(h,f(f(g(h),c),c),f(f(c,a),b)). ** KEPT: 3686 (39,6,760,39) P(f(a,g(h)),f(f(h,a),b),f(f(a,a),b)). ** KEPT: 3687 (39,6,676,39) P(f(h,g(a)),f(f(a,a),b),f(f(h,a),b)). ** KEPT: 3688 (39,6,676,5) P(f(h,g(a)),f(a,c),f(f(h,a),b)). ** KEPT: 3689 (39,6,566,39) P(d,f(f(f(b,g(d)),a),b),f(f(k,a),b)). ** KEPT: 3690 (39,6,566,5) P(d,f(f(b,g(d)),c),f(f(k,a),b)). ** KEPT: 3691 (39,6,528,39) P(f(g(c),d),f(f(c,a),b),f(f(b,a),b)). ** KEPT: 3692 (39,6,528,37) P(f(g(c),d),f(a,f(b,c)),f(f(b,a),b)). ** KEPT: 3693 (39,6,528,5) P(f(g(c),d),f(c,c),f(f(b,a),b)). ** KEPT: 3694 (39,6,457,39,28,33) P(h,f(f(f(g(d),k),a),b),c). ** KEPT: 3695 (39,6,434,39) P(c,f(f(g(f(h,a)),a),b),f(f(k,a),b)). ** KEPT: 3696 (39,6,434,5) P(c,f(g(f(h,a)),c),f(f(k,a),b)). ** KEPT: 3697 (39,6,426,39) P(g(h),f(f(f(h,a),a),b),f(f(a,a),b)). ** KEPT: 3698 (39,6,426,5) P(g(h),f(f(h,a),c),f(f(a,a),b)). ** KEPT: 3699 (39,6,414,39,70) P(g(k),f(f(f(k,d),a),b),f(c,b)). ** KEPT: 3700 (39,6,398,39) P(g(d),f(f(f(k,d),a),b),f(f(b,a),b)). ** KEPT: 3701 (39,6,398,5) P(g(d),f(f(k,d),c),f(f(b,a),b)). ** KEPT: 3702 (39,6,397,39) P(g(d),f(f(f(d,b),a),b),f(f(b,a),b)). ** KEPT: 3703 (39,6,397,5) P(g(d),f(f(d,b),c),f(f(b,a),b)). ** KEPT: 3704 (39,6,392,39,688) P(g(h),f(f(g(k),a),b),a). ** KEPT: 3705 (39,6,389,39,28,33) P(f(h,g(d)),f(f(k,a),b),c). ** KEPT: 3706 (39,6,373,39,70) P(f(d,b),f(f(g(b),a),b),f(c,b)). ** KEPT: 3707 (39,6,362,39,28,33) P(b,f(f(f(g(d),h),a),b),c). ** KEPT: 3708 (39,6,331,39,28,33) P(b,f(f(f(g(c),a),a),b),c). ** KEPT: 3709 (39,6,309,39,28,33) P(f(b,g(c)),f(f(a,a),b),c). ** KEPT: 3710 (39,6,307,39) P(f(d,g(c)),f(f(a,a),b),f(f(h,a),b)). ** KEPT: 3711 (39,6,307,5) P(f(d,g(c)),f(a,c),f(f(h,a),b)). ** KEPT: 3712 (39,6,292,39) P(c,f(f(g(f(b,a)),a),b),f(f(h,a),b)). ** KEPT: 3713 (39,6,292,5) P(c,f(g(f(b,a)),c),f(f(h,a),b)). ** KEPT: 3714 (39,6,284,39) P(g(b),f(f(f(b,a),a),b),f(f(a,a),b)). ** KEPT: 3715 (39,6,284,5) P(g(b),f(f(b,a),c),f(f(a,a),b)). ** KEPT: 3716 (39,6,275,39,688) P(g(b),f(f(g(h),a),b),a). ** KEPT: 3717 (39,6,273,39,28,33) P(f(b,g(d)),f(f(h,a),b),c). ** KEPT: 3718 (39,6,271,39) P(f(c,g(d)),f(f(h,a),b),f(f(a,a),b)). ** KEPT: 3719 (39,6,271,5) P(f(c,g(d)),f(h,c),f(f(a,a),b)). ** KEPT: 3720 (39,6,260,39) P(g(c),f(f(f(c,b),a),b),f(f(b,a),b)). ** KEPT: 3721 (39,6,260,5) P(g(c),f(f(c,b),c),f(f(b,a),b)). ** KEPT: 3722 (39,6,237,39) P(g(d),f(f(f(d,c),a),b),f(f(c,a),b)). ** KEPT: 3723 (39,6,237,5) P(g(d),f(f(d,c),c),f(f(c,a),b)). ** KEPT: 3724 (39,6,222,39) P(g(c),f(f(f(d,c),a),b),f(f(b,a),b)). ** KEPT: 3725 (39,6,222,5) P(g(c),f(f(d,c),c),f(f(b,a),b)). ** KEPT: 3726 (39,6,204,39,70) P(g(k),f(f(f(d,b),a),b),f(c,b)). ** KEPT: 3727 (39,6,202,39) P(g(k),f(f(c,a),b),f(f(f(h,a),a),b)). ** KEPT: 3728 (39,6,202,37) P(g(k),f(a,f(b,c)),f(f(f(h,a),a),b)). ** KEPT: 3729 (39,6,202,5) P(g(k),f(c,c),f(f(f(h,a),a),b)). ** KEPT: 3730 (39,6,197,39) P(h,f(f(a,a),b),f(f(f(g(k),c),a),b)). ** KEPT: 3731 (39,6,197,5) P(h,f(a,c),f(f(f(g(k),c),a),b)). ** KEPT: 3732 (39,6,193,39) P(f(g(k),h),f(f(b,a),b),f(f(h,a),b)). ** KEPT: 3733 (39,6,193,5) P(f(g(k),h),f(b,c),f(f(h,a),b)). ** KEPT: 3734 (39,6,190,39,28,33) P(k,f(f(f(h,g(d)),a),b),c). ** KEPT: 3735 (39,6,188,39) P(k,f(f(f(h,g(b)),a),b),f(f(h,a),b)). ** KEPT: 3736 (39,6,188,5) P(k,f(f(h,g(b)),c),f(f(h,a),b)). ** KEPT: 3737 (39,6,187,39) P(k,f(f(f(h,a),a),b),f(f(c,a),b)). ** KEPT: 3738 (39,6,187,5) P(k,f(f(h,a),c),f(f(c,a),b)). ** KEPT: 3739 (39,6,182,39,28,33) P(f(g(d),k),f(f(h,a),b),c). ** KEPT: 3740 (39,6,180,39) P(f(g(h),k),f(f(h,a),b),f(f(b,a),b)). ** KEPT: 3741 (39,6,180,5) P(f(g(h),k),f(h,c),f(f(b,a),b)). ** KEPT: 3742 (39,6,179,39,70) P(f(k,d),f(f(g(b),a),b),f(c,b)). ** KEPT: 3743 (39,6,173,39) P(d,f(f(b,a),b),f(f(f(k,d),a),b)). ** KEPT: 3744 (39,6,172,39) P(g(d),f(f(k,a),b),f(f(g(h),a),b)). ** KEPT: 3745 (39,6,172,5) P(g(d),f(k,c),f(f(g(h),a),b)). ** KEPT: 3746 (39,6,168,39) P(h,f(f(f(b,g(h)),a),b),f(f(k,a),b)). ** KEPT: 3747 (39,6,168,5) P(h,f(f(b,g(h)),c),f(f(k,a),b)). ** KEPT: 3748 (39,6,156,39) P(g(h),f(f(c,a),b),f(f(f(b,a),a),b)). ** KEPT: 3749 (39,6,156,37) P(g(h),f(a,f(b,c)),f(f(f(b,a),a),b)). ** KEPT: 3750 (39,6,156,5) P(g(h),f(c,c),f(f(f(b,a),a),b)). ** KEPT: 3751 (39,6,152,39) P(b,f(f(a,a),b),f(f(f(g(h),c),a),b)). ** KEPT: 3752 (39,6,152,5) P(b,f(a,c),f(f(f(g(h),c),a),b)). ** KEPT: 3753 (39,6,149,78) P(f(a,g(h)),f(c,b),f(f(c,a),b)). ** KEPT: 3754 (39,6,149,5) P(f(a,g(h)),f(d,c),f(f(c,a),b)). ** KEPT: 3755 (39,6,143,39) P(g(d),f(f(f(c,b),a),b),f(f(c,a),b)). ** KEPT: 3756 (39,6,143,5) P(g(d),f(f(c,b),c),f(f(c,a),b)). ** KEPT: 3757 (39,6,135,39) P(f(g(d),a),f(f(b,a),b),f(f(a,a),b)). ** KEPT: 3758 (39,6,135,5) P(f(g(d),a),f(b,c),f(f(a,a),b)). ** KEPT: 3759 (39,6,123,39,70) P(f(h,g(a)),f(f(c,a),b),f(c,b)). ** KEPT: 3760 (39,6,122,39) P(f(g(a),d),f(f(a,a),b),f(f(b,a),b)). ** KEPT: 3761 (39,6,122,5) P(f(g(a),d),f(a,c),f(f(b,a),b)). ** KEPT: 3762 (39,6,117,39) P(g(c),f(f(a,a),b),f(f(g(b),a),b)). ** KEPT: 3763 (39,6,117,5) P(g(c),f(a,c),f(f(g(b),a),b)). ** KEPT: 3764 (39,6,115,39) P(d,f(f(f(a,g(b)),a),b),f(f(a,a),b)). ** KEPT: 3765 (39,6,115,5) P(d,f(f(a,g(b)),c),f(f(a,a),b)). ** KEPT: 3766 (39,6,110,39) P(f(d,c),f(f(g(b),a),b),f(f(c,a),b)). ** KEPT: 3767 (39,6,110,5) P(f(d,c),f(g(b),c),f(f(c,a),b)). ** KEPT: 3768 (39,6,105,39) P(d,f(f(g(h),a),b),f(f(k,a),b)). ** KEPT: 3769 (39,6,104,39,28,33) P(h,f(f(f(b,g(d)),a),b),c). ** KEPT: 3770 (39,6,102,39) P(h,f(f(f(b,a),a),b),f(f(c,a),b)). ** KEPT: 3771 (39,6,102,5) P(h,f(f(b,a),c),f(f(c,a),b)). ** KEPT: 3772 (39,6,97,39,28,33) P(f(g(d),h),f(f(b,a),b),c). ** KEPT: 3773 (39,6,90,39) P(g(d),f(f(h,a),b),f(f(g(b),a),b)). ** KEPT: 3774 (39,6,78,39) P(d,f(f(c,a),b),f(f(f(c,b),a),b)). ** KEPT: 3775 (39,6,78,37) P(d,f(a,f(b,c)),f(f(f(c,b),a),b)). ** KEPT: 3776 (39,6,78,5) P(d,f(c,c),f(f(f(c,b),a),b)). ** KEPT: 3777 (39,6,77,39) P(g(d),f(f(c,a),b),f(f(a,a),b)). ** KEPT: 3778 (39,6,77,37) P(g(d),f(a,f(b,c)),f(f(a,a),b)). ** KEPT: 3779 (39,6,77,5) P(g(d),f(c,c),f(f(a,a),b)). ** KEPT: 3780 (39,6,74,39) P(c,f(f(b,a),b),f(f(f(d,c),a),b)). ** KEPT: 3781 (39,6,72,39,28,33) P(f(g(c),d),f(f(a,a),b),c). ** KEPT: 3782 (39,6,63,39,70) P(a,f(f(f(b,g(a)),a),b),f(c,b)). ** KEPT: 3783 (39,6,62,39) P(d,f(f(a,a),b),f(f(c,a),b)). ** KEPT: 3784 (39,6,62,5) P(d,f(a,c),f(f(c,a),b)). ** KEPT: 3785 (39,6,40,39) P(g(a),f(f(c,a),b),f(f(b,a),b)). ** KEPT: 3786 (39,6,40,37) P(g(a),f(a,f(b,c)),f(f(b,a),b)). ** KEPT: 3787 (39,6,40,5) P(g(a),f(c,c),f(f(b,a),b)). ** KEPT: 3788 (39,6,39,39) P(x,f(f(c,a),b),f(f(f(f(x,a),b),a),b)). ** KEPT: 3789 (39,6,39,37) P(x,f(a,f(b,c)),f(f(f(f(x,a),b),a),b)). ** KEPT: 3790 (39,6,39,5) P(x,f(c,c),f(f(f(f(x,a),b),a),b)). ** KEPT: 3791 (39,6,38,39) P(c,f(f(g(b),a),b),f(f(a,a),b)). ** KEPT: 3792 (39,6,38,5) P(c,f(g(b),c),f(f(a,a),b)). ** KEPT: 3793 (39,6,37,1379) P(c,d,f(f(f(a,f(b,f(d,g(c)))),a),b)). ** KEPT: 3794 (39,6,37,1094) P(c,a,f(f(f(a,f(b,f(a,g(c)))),a),b)). ** KEPT: 3795 (39,6,37,202) P(c,f(h,a),f(f(f(a,f(b,g(k))),a),b)). ** KEPT: 3796 (39,6,37,156) P(c,f(b,a),f(f(f(a,f(b,g(h))),a),b)). ** KEPT: 3797 (39,6,37,123) P(c,d,f(f(f(a,f(b,f(h,g(a)))),a),b)). ** KEPT: 3798 (39,6,37,78) P(c,f(c,b),f(f(f(a,f(b,d)),a),b)). ** KEPT: 3799 (39,6,37,77) P(c,a,f(f(f(a,f(b,g(d))),a),b)). ** KEPT: 3800 (39,6,37,39) P(c,f(f(x,a),b),f(f(f(a,f(b,x)),a),b)). ** KEPT: 3801 (39,6,37,37) P(c,f(a,f(b,c)),f(f(f(a,f(b,c)),a),b)). ** KEPT: 3802 (39,6,37,5) P(c,f(x,c),f(f(f(a,f(b,x)),a),b)). ** KEPT: 3803 (39,6,35,39,28,33) P(f(g(c),a),f(f(b,a),b),c). ** KEPT: 3804 (39,6,34,39) P(f(x,a),f(f(b,a),b),f(f(f(x,c),a),b)). ** KEPT: 3805 (39,6,34,5) P(f(x,a),f(b,c),f(f(f(x,c),a),b)). ** KEPT: 3806 (39,6,22,39) P(d,f(f(g(b),a),b),f(f(h,a),b)). ** KEPT: 3807 (39,6,22,5) P(d,f(g(b),c),f(f(h,a),b)). ** KEPT: 3808 (39,6,20,39) P(a,f(f(b,a),b),f(f(c,a),b)). ** KEPT: 3809 (39,6,5,1405) P(x,b,f(f(f(x,f(b,g(c))),a),b)). ** KEPT: 3810 (39,6,5,1379) P(x,d,f(f(f(x,f(d,g(c))),a),b)). ** KEPT: 3811 (39,6,5,1094) P(x,a,f(f(f(x,f(a,g(c))),a),b)). ** KEPT: 3812 (39,6,5,528) P(x,b,f(f(f(x,f(g(c),d)),a),b)). ** KEPT: 3813 (39,6,5,202) P(x,f(h,a),f(f(f(x,g(k)),a),b)). ** KEPT: 3814 (39,6,5,156) P(x,f(b,a),f(f(f(x,g(h)),a),b)). ** KEPT: 3815 (39,6,5,123) P(x,d,f(f(f(x,f(h,g(a))),a),b)). ** KEPT: 3816 (39,6,5,78) P(x,f(c,b),f(f(f(x,d),a),b)). ** KEPT: 3817 (39,6,5,77) P(x,a,f(f(f(x,g(d)),a),b)). ** KEPT: 3818 (39,6,5,40) P(x,b,f(f(f(x,g(a)),a),b)). ** KEPT: 3819 (39,6,5,39) P(x,f(f(y,a),b),f(f(f(x,y),a),b)). ** KEPT: 3820 (39,6,5,37) P(x,f(a,f(b,c)),f(f(f(x,c),a),b)). ** KEPT: 3821 (39,6,5,5) P(x,f(y,c),f(f(f(x,y),a),b)). ** KEPT: 3822 (39,6,5,3) P(x,e,f(f(f(x,g(c)),a),b)). ** KEPT: 3823 (39,6,4,39,28,33) P(x,f(f(g(x),a),b),c). ** KEPT: 3824 (39,6,4,5,28,33) P(x,f(g(x),c),c). ** KEPT: 3825 (39,6,3,39,28,33) P(g(x),f(f(x,a),b),c). ** KEPT: 3826 (39,6,3,5,28,33) P(g(x),f(x,c),c). ** KEPT: 3827 (39,6,2897,37) P(f(c,g(x)),f(f(x,a),b),f(a,f(b,c))). ** KEPT: 3828 (39,6,2897,5) P(f(c,g(x)),f(f(x,a),b),f(c,c)). ** KEPT: 3829 (39,6,2896,37) P(f(c,x),f(f(g(x),a),b),f(a,f(b,c))). ** KEPT: 3830 (39,6,2896,5) P(f(c,x),f(f(g(x),a),b),f(c,c)). ** KEPT: 3831 (39,6,2558,37) P(g(b),f(f(f(b,c),a),b),f(a,f(b,c))). ** KEPT: 3832 (39,6,2558,5) P(g(b),f(f(f(b,c),a),b),f(c,c)). ** KEPT: 3833 (39,6,2557,37) P(g(h),f(f(f(h,c),a),b),f(a,f(b,c))). ** KEPT: 3834 (39,6,2557,5) P(g(h),f(f(f(h,c),a),b),f(c,c)). ** KEPT: 3835 (39,6,1769,5) P(d,f(f(f(g(d),k),a),b),f(k,c)). ** KEPT: 3836 (39,6,1529,5) P(d,f(f(f(g(d),h),a),b),f(h,c)). ** KEPT: 3837 (39,6,1454,5) P(c,f(f(f(g(c),a),a),b),f(a,c)). ** KEPT: 3838 (39,6,1405,5) P(f(b,g(c)),f(f(c,a),b),f(b,c)). ** KEPT: 3839 (39,6,1379,5) P(f(d,g(c)),f(f(c,a),b),f(d,c)). ** KEPT: 3840 (39,6,1373,5) P(d,f(f(f(g(c),a),a),b),f(h,c)). ** KEPT: 3841 (39,6,1237,5) P(c,f(f(f(g(d),h),a),b),f(a,c)). ** KEPT: 3842 (39,6,1094,5) P(f(a,g(c)),f(f(c,a),b),f(a,c)). ** KEPT: 3843 (39,6,1014,37) P(k,f(f(f(g(k),c),a),b),f(a,f(b,c))). ** KEPT: 3844 (39,6,1014,5) P(k,f(f(f(g(k),c),a),b),f(c,c)). ** KEPT: 3845 (39,6,794,37) P(h,f(f(f(g(h),c),a),b),f(a,f(b,c))). ** KEPT: 3846 (39,6,794,5) P(h,f(f(f(g(h),c),a),b),f(c,c)). ** KEPT: 3847 (39,6,760,5) P(f(a,g(h)),f(f(h,a),b),f(a,c)). ** KEPT: 3848 (39,6,676,5) P(f(h,g(a)),f(f(a,a),b),f(h,c)). ** KEPT: 3849 (39,6,566,5) P(d,f(f(f(b,g(d)),a),b),f(k,c)). ** KEPT: 3850 (39,6,528,5) P(f(g(c),d),f(f(c,a),b),f(b,c)). ** KEPT: 3851 (39,6,434,5) P(c,f(f(g(f(h,a)),a),b),f(k,c)). ** KEPT: 3852 (39,6,426,5) P(g(h),f(f(f(h,a),a),b),f(a,c)). ** KEPT: 3853 (39,6,414,5) P(g(k),f(f(f(k,d),a),b),f(d,c)). ** KEPT: 3854 (39,6,398,5) P(g(d),f(f(f(k,d),a),b),f(b,c)). ** KEPT: 3855 (39,6,397,5) P(g(d),f(f(f(d,b),a),b),f(b,c)). ** KEPT: 3856 (39,6,373,5) P(f(d,b),f(f(g(b),a),b),f(d,c)). ** KEPT: 3857 (39,6,307,5) P(f(d,g(c)),f(f(a,a),b),f(h,c)). ** KEPT: 3858 (39,6,292,5) P(c,f(f(g(f(b,a)),a),b),f(h,c)). ** KEPT: 3859 (39,6,284,5) P(g(b),f(f(f(b,a),a),b),f(a,c)). ** KEPT: 3860 (39,6,271,5) P(f(c,g(d)),f(f(h,a),b),f(a,c)). ** KEPT: 3861 (39,6,260,5) P(g(c),f(f(f(c,b),a),b),f(b,c)). ** KEPT: 3862 (39,6,237,37) P(g(d),f(f(f(d,c),a),b),f(a,f(b,c))). ** KEPT: 3863 (39,6,237,5) P(g(d),f(f(f(d,c),a),b),f(c,c)). ** KEPT: 3864 (39,6,222,5) P(g(c),f(f(f(d,c),a),b),f(b,c)). ** KEPT: 3865 (39,6,204,5) P(g(k),f(f(f(d,b),a),b),f(d,c)). ** KEPT: 3866 (39,6,202,5) P(g(k),f(f(c,a),b),f(f(h,a),c)). ** KEPT: 3867 (39,6,197,5) P(h,f(f(a,a),b),f(f(g(k),c),c)). ** KEPT: 3868 (39,6,193,5) P(f(g(k),h),f(f(b,a),b),f(h,c)). ** KEPT: 3869 (39,6,188,5) P(k,f(f(f(h,g(b)),a),b),f(h,c)). ** KEPT: 3870 (39,6,187,37) P(k,f(f(f(h,a),a),b),f(a,f(b,c))). ** KEPT: 3871 (39,6,187,5) P(k,f(f(f(h,a),a),b),f(c,c)). ** KEPT: 3872 (39,6,180,5) P(f(g(h),k),f(f(h,a),b),f(b,c)). ** KEPT: 3873 (39,6,179,5) P(f(k,d),f(f(g(b),a),b),f(d,c)). ** KEPT: 3874 (39,6,173,5) P(d,f(f(b,a),b),f(f(k,d),c)). ** KEPT: 3875 (39,6,172,156) P(g(d),f(f(k,a),b),f(b,a)). ** KEPT: 3876 (39,6,172,5) P(g(d),f(f(k,a),b),f(g(h),c)). ** KEPT: 3877 (39,6,168,5) P(h,f(f(f(b,g(h)),a),b),f(k,c)). ** KEPT: 3878 (39,6,156,5) P(g(h),f(f(c,a),b),f(f(b,a),c)). ** KEPT: 3879 (39,6,152,5) P(b,f(f(a,a),b),f(f(g(h),c),c)). ** KEPT: 3880 (39,6,143,37) P(g(d),f(f(f(c,b),a),b),f(a,f(b,c))). ** KEPT: 3881 (39,6,143,5) P(g(d),f(f(f(c,b),a),b),f(c,c)). ** KEPT: 3882 (39,6,135,5) P(f(g(d),a),f(f(b,a),b),f(a,c)). ** KEPT: 3883 (39,6,123,5) P(f(h,g(a)),f(f(c,a),b),f(d,c)). ** KEPT: 3884 (39,6,122,5) P(f(g(a),d),f(f(a,a),b),f(b,c)). ** KEPT: 3885 (39,6,117,5) P(g(c),f(f(a,a),b),f(g(b),c)). ** KEPT: 3886 (39,6,115,5) P(d,f(f(f(a,g(b)),a),b),f(a,c)). ** KEPT: 3887 (39,6,110,37) P(f(d,c),f(f(g(b),a),b),f(a,f(b,c))). ** KEPT: 3888 (39,6,110,5) P(f(d,c),f(f(g(b),a),b),f(c,c)). ** KEPT: 3889 (39,6,105,5) P(d,f(f(g(h),a),b),f(k,c)). ** KEPT: 3890 (39,6,102,37) P(h,f(f(f(b,a),a),b),f(a,f(b,c))). ** KEPT: 3891 (39,6,102,5) P(h,f(f(f(b,a),a),b),f(c,c)). ** KEPT: 3892 (39,6,90,5) P(g(d),f(f(h,a),b),f(g(b),c)). ** KEPT: 3893 (39,6,78,5) P(d,f(f(c,a),b),f(f(c,b),c)). ** KEPT: 3894 (39,6,77,5) P(g(d),f(f(c,a),b),f(a,c)). ** KEPT: 3895 (39,6,74,5) P(c,f(f(b,a),b),f(f(d,c),c)). ** KEPT: 3896 (39,6,63,5) P(a,f(f(f(b,g(a)),a),b),f(d,c)). ** KEPT: 3897 (39,6,62,37) P(d,f(f(a,a),b),f(a,f(b,c))). ** KEPT: 3898 (39,6,62,5) P(d,f(f(a,a),b),f(c,c)). ** KEPT: 3899 (39,6,40,5) P(g(a),f(f(c,a),b),f(b,c)). ** KEPT: 3900 (39,6,39,5) P(x,f(f(c,a),b),f(f(f(x,a),b),c)). ** KEPT: 3901 (39,6,38,5) P(c,f(f(g(b),a),b),f(a,c)). ** KEPT: 3902 (39,6,37,5) P(c,f(f(x,a),b),f(f(a,f(b,x)),c)). ** KEPT: 3903 (39,6,34,5) P(f(x,a),f(f(b,a),b),f(f(x,c),c)). ** KEPT: 3904 (39,6,22,5) P(d,f(f(g(b),a),b),f(h,c)). ** KEPT: 3905 (39,6,20,37) P(a,f(f(b,a),b),f(a,f(b,c))). ** KEPT: 3906 (39,6,20,5) P(a,f(f(b,a),b),f(c,c)). ** KEPT: 3907 (39,6,5,5) P(x,f(f(y,a),b),f(f(x,y),c)). ** KEPT: 3908 (39,6,1,202) P(e,f(f(g(k),a),b),f(h,a)). ** KEPT: 3909 (39,6,1,156) P(e,f(f(g(h),a),b),f(b,a)). ** KEPT: 3910 (39,6,1,37) P(e,f(f(c,a),b),f(a,f(b,c))). ** KEPT: 3911 (39,6,1485,5) P(x,d,f(f(f(x,a),b),f(g(c),d))). ** KEPT: 3912 (39,6,1454,5) P(x,a,f(f(f(x,a),b),f(g(c),a))). ** KEPT: 3913 (39,6,1237,5) P(x,a,f(f(f(x,a),b),f(g(d),h))). ** KEPT: 3914 (39,6,475,5) P(x,d,f(f(f(x,a),b),f(b,g(c)))). ** KEPT: 3915 (39,6,434,5) P(x,k,f(f(f(x,a),b),g(f(h,a)))). ** KEPT: 3916 (39,6,292,5) P(x,h,f(f(f(x,a),b),g(f(b,a)))). ** KEPT: 3917 (39,6,74,5) P(x,f(d,c),f(f(f(x,a),b),b)). ** KEPT: 3918 (39,6,38,5) P(x,a,f(f(f(x,a),b),g(b))). ** KEPT: 3919 (39,6,37,5) P(x,f(a,f(b,y)),f(f(f(x,a),b),y)). ** KEPT: 3920 (39,6,37,4) P(x,f(a,f(b,g(f(f(x,a),b)))),e). ** KEPT: 3921 (39,6,21,5) P(x,d,f(f(f(x,a),b),g(a))). ** KEPT: 3922 (39,6,5,5) P(x,f(c,y),f(f(f(x,a),b),y)). ** KEPT: 3923 (39,6,5,4) P(x,f(c,g(f(f(x,a),b))),e). ** KEPT: 3924 (39,6,4,5) P(x,e,f(f(f(x,a),b),g(c))). >>>> Starting back demodulation with: 3398 (3397) EQUAL(f(f(f(a,g(c)),a),b),a). >> back demodulating: 3393 (39,12,332) P(g(d),c,f(f(f(a,g(c)),a),b)). 3648 back subsumes: 3185 (2896,7,5,128) P(f(f(c,a),b),g(c),c). 3648 back subsumes: 2082 (1034,7,5,128) P(f(f(h,a),b),g(c),h). 3648 back subsumes: 1993 (817,7,5,128) P(f(f(b,a),b),g(c),b). 3813 back subsumes: 3409 (39,7,2897,187) P(c,f(h,a),f(f(f(c,g(k)),a),b)). 3814 back subsumes: 3419 (39,7,760,102) P(a,f(b,a),f(f(f(a,g(h)),a),b)). 3814 back subsumes: 3413 (39,7,2897,102) P(c,f(b,a),f(f(f(c,g(h)),a),b)). 3816 back subsumes: 3421 (39,7,409,143) P(k,f(c,b),f(f(f(k,d),a),b)). 3816 back subsumes: 3411 (39,7,2897,143,31) P(c,f(c,b),f(f(f(c,d),a),b)). 3817 back subsumes: 3416 (39,7,1270,62) P(b,a,f(f(f(b,g(d)),a),b)). 3817 back subsumes: 3415 (39,7,1600,62) P(h,a,f(f(f(h,g(d)),a),b)). 3817 back subsumes: 3414 (39,7,2897,62) P(c,a,f(f(f(c,g(d)),a),b)). 3821 back subsumes: 3424 (39,7,373,2558) P(d,f(b,c),f(f(f(d,b),a),b)). 3821 back subsumes: 3420 (39,7,409,237) P(k,f(d,c),f(f(f(k,d),a),b)). 3821 back subsumes: 3418 (39,7,760,794) P(a,f(g(h),c),f(f(f(a,g(h)),a),b)). 3821 back subsumes: 3408 (39,7,2897,237,31) P(c,f(d,c),f(f(f(c,d),a),b)). 3821 back subsumes: 3407 (39,7,2897,794) P(c,f(g(h),c),f(f(f(c,g(h)),a),b)). 3821 back subsumes: 3406 (39,7,2897,1014) P(c,f(g(k),c),f(f(f(c,g(k)),a),b)). 3821 back subsumes: 3405 (39,7,2897,2557,31) P(c,f(h,c),f(f(f(c,h),a),b)). 3821 back subsumes: 3404 (39,7,2897,2558,31) P(c,f(b,c),f(f(f(c,b),a),b)). 3824 back subsumes: 1014 (197,6,167,62) P(k,f(g(k),c),c). 3824 back subsumes: 794 (152,6,87,62) P(h,f(g(h),c),c). 3825 back subsumes: 1722 (426,6,5,20) P(g(h),f(f(h,a),b),c). 3825 back subsumes: 1304 (284,6,5,20) P(g(b),f(f(b,a),b),c). 3826 back subsumes: 2558 (34,6,284,20) P(g(b),f(b,c),c). 3826 back subsumes: 2557 (34,6,426,20) P(g(h),f(h,c),c). 3826 back subsumes: 237 (74,6,77,20) P(g(d),f(d,c),c). new given clause: 3627 (39,7,38,122,626) P(f(b,b),g(b),b). ** KEPT: 3925 (3627,8,5) EQUAL(f(f(b,b),g(b)),b). ---> New Demodulator: 3926 (3925) EQUAL(f(f(b,b),g(b)),b). ** KEPT: 3927 (3627,7,5,117) P(f(f(b,b),g(c)),a,b). ** KEPT: 3928 (3627,7,5,90) P(f(f(b,b),g(d)),h,b). ** KEPT: 3929 (3627,7,2897,5) P(c,g(b),f(f(c,g(f(b,b))),b)). ** KEPT: 3930 (3627,7,37,74) P(f(a,f(b,f(b,b))),g(b),f(d,c)). ** KEPT: 3931 (3627,7,37,37) P(f(a,f(b,f(b,b))),g(b),f(a,f(b,b))). ** KEPT: 3932 (3627,7,37,5) P(f(a,f(b,f(b,b))),g(b),f(c,b)). ** KEPT: 3933 (3627,7,5,193) P(f(f(g(k),h),f(b,b)),g(b),h). ** KEPT: 3934 (3627,7,5,173) P(f(d,f(b,b)),g(b),f(k,d)). ** KEPT: 3935 (3627,7,5,135) P(f(f(g(d),a),f(b,b)),g(b),a). ** KEPT: 3936 (3627,7,5,97) P(f(f(g(d),h),f(b,b)),g(b),e). ** KEPT: 3937 (3627,7,5,87) P(f(h,f(b,b)),g(b),d). ** KEPT: 3938 (3627,7,5,74) P(f(c,f(b,b)),g(b),f(d,c)). ** KEPT: 3939 (3627,7,5,37) P(f(c,f(b,b)),g(b),f(a,f(b,b))). ** KEPT: 3940 (3627,7,5,35) P(f(f(g(c),a),f(b,b)),g(b),e). ** KEPT: 3941 (3627,7,5,34) P(f(f(x,a),f(b,b)),g(b),f(x,c)). ** KEPT: 3942 (3627,7,5,5) P(f(x,f(b,b)),g(b),f(x,b)). ** KEPT: 3943 (3627,7,5,3) P(f(g(b),f(b,b)),g(b),e). ** KEPT: 3944 (3627,7,3,5) P(e,g(b),f(g(f(b,b)),b)). ** KEPT: 3945 (3627,7,284,5) P(b,f(b,a),f(f(b,b),a)). ** KEPT: 3946 (3627,7,39,5) P(b,c,f(f(b,b),f(f(g(b),a),b))). ** KEPT: 3947 (3627,7,5,5) P(b,x,f(f(b,b),f(g(b),x))). ** KEPT: 3948 (3627,6,2897,38) P(f(c,g(f(b,b))),b,a). ** KEPT: 3949 (3627,6,37,5) P(c,b,f(f(a,f(b,f(b,b))),g(b))). ** KEPT: 3950 (3627,6,5,5) P(x,b,f(f(x,f(b,b)),g(b))). ** KEPT: 3951 (3627,6,3,5,28) P(g(f(b,b)),b,g(b)). ** KEPT: 3952 (3627,6,284,5) P(f(b,b),a,f(b,f(b,a))). ** KEPT: 3953 (3627,6,39,39) P(f(b,b),f(f(g(b),a),b),f(f(b,a),b)). ** KEPT: 3954 (3627,6,39,5) P(f(b,b),f(f(g(b),a),b),f(b,c)). ** KEPT: 3955 (3627,6,5,362) P(f(b,b),f(g(b),f(g(d),h)),e). ** KEPT: 3956 (3627,6,5,331) P(f(b,b),f(g(b),f(g(c),a)),e). ** KEPT: 3957 (3627,6,5,154) P(f(b,b),f(g(b),g(d)),g(h)). ** KEPT: 3958 (3627,6,5,152) P(f(b,b),f(g(b),a),f(g(h),c)). ** KEPT: 3959 (3627,6,5,128) P(f(b,b),f(g(b),g(c)),g(a)). ** KEPT: 3960 (3627,6,5,39) P(f(b,b),f(g(b),c),f(f(b,a),b)). ** KEPT: 3961 (3627,6,5,5) P(f(b,b),f(g(b),x),f(b,x)). ** KEPT: 3962 (3627,6,5,4) P(f(b,b),f(g(b),g(b)),e). >>>> Starting back demodulation with: 3926 (3925) EQUAL(f(f(b,b),g(b)),b). new given clause: 3824 (39,6,4,5,28,33) P(x,f(g(x),c),c). ** KEPT: 3963 (3824,12,363) P(f(d,b),f(g(f(k,d)),c),c). ** KEPT: 3964 (3824,12,225) P(f(c,b),f(g(f(d,c)),c),c). ** KEPT: 3965 (3824,8,5) EQUAL(f(x,f(g(x),c)),c). ---> New Demodulator: 3966 (3965) EQUAL(f(x,f(g(x),c)),c). ** KEPT: 3967 (3824,7,5,34) P(f(x,f(g(x),a)),b,c). ** KEPT: 3968 (3824,7,3824,1405,1421) P(c,f(g(f(a,c)),c),b). ** KEPT: 3969 (3824,7,3824,1379) P(c,f(g(f(g(f(d,g(c))),c)),c),d). ** KEPT: 3970 (3824,7,3824,1094,1473) P(c,f(g(f(d,c)),c),a). ** KEPT: 3971 (3824,7,3824,202,31) P(c,f(g(f(k,c)),c),f(h,a)). ** KEPT: 3972 (3824,7,3824,156,31) P(c,f(g(f(h,c)),c),f(b,a)). ** KEPT: 3973 (3824,7,3824,123) P(c,f(g(f(g(f(h,g(a))),c)),c),d). ** KEPT: 3974 (3824,7,3824,39) P(c,f(g(f(g(x),c)),c),f(f(x,a),b)). ** KEPT: 3975 (3824,7,3824,5) P(c,f(g(f(g(x),c)),c),f(x,c)). ** KEPT: 3976 (3824,7,3824,3,31) P(c,f(g(f(c,c)),c),e). ** KEPT: 3977 (3824,7,3627,5,31) P(b,f(b,c),f(f(b,b),c)). ** KEPT: 3978 (3824,7,2897,5) P(c,f(g(x),c),f(f(c,g(x)),c)). ** KEPT: 3979 (3824,7,2896,5,31) P(c,f(x,c),f(f(c,x),c)). ** KEPT: 3980 (3824,7,2552,5,31) P(b,f(c,c),f(f(b,c),c)). ** KEPT: 3981 (3824,7,2551,5,31) P(h,f(c,c),f(f(h,c),c)). ** KEPT: 3982 (3824,7,1034,5,31) P(h,f(a,c),f(f(h,a),c)). ** KEPT: 3983 (3824,7,817,5,31) P(b,f(a,c),f(f(b,a),c)). ** KEPT: 3984 (3824,7,426,156) P(a,f(g(f(h,a)),c),f(b,a)). ** KEPT: 3985 (3824,7,426,39) P(a,f(g(f(h,a)),c),f(f(g(h),a),b)). ** KEPT: 3986 (3824,7,426,5) P(a,f(g(f(h,a)),c),f(g(h),c)). ** KEPT: 3987 (3824,7,414,202) P(d,f(g(f(k,d)),c),f(h,a)). ** KEPT: 3988 (3824,7,414,39) P(d,f(g(f(k,d)),c),f(f(g(k),a),b)). ** KEPT: 3989 (3824,7,414,5) P(d,f(g(f(k,d)),c),f(g(k),c)). ** KEPT: 3990 (3824,7,398,77) P(b,f(g(f(k,d)),c),a). ** KEPT: 3991 (3824,7,397,77) P(b,f(g(f(d,b)),c),a). ** KEPT: 3992 (3824,7,320,5,31) P(d,f(c,c),f(f(d,c),c)). ** KEPT: 3993 (3824,7,284,39) P(a,f(g(f(b,a)),c),f(f(g(b),a),b)). ** KEPT: 3994 (3824,7,284,5) P(a,f(g(f(b,a)),c),f(g(b),c)). ** KEPT: 3995 (3824,7,260,39,459) P(b,f(g(f(c,b)),c),e). ** KEPT: 3996 (3824,7,222,39,459) P(b,f(g(f(d,c)),c),e). ** KEPT: 3997 (3824,7,204,202) P(d,f(g(f(d,b)),c),f(h,a)). ** KEPT: 3998 (3824,7,204,39) P(d,f(g(f(d,b)),c),f(f(g(k),a),b)). ** KEPT: 3999 (3824,7,204,5) P(d,f(g(f(d,b)),c),f(g(k),c)). ** KEPT: 4000 (3824,7,193,39) P(h,f(g(b),c),f(f(f(g(k),h),a),b)). ** KEPT: 4001 (3824,7,193,5) P(h,f(g(b),c),f(f(g(k),h),c)). ** KEPT: 4002 (3824,7,188,39) P(h,f(g(f(h,g(b))),c),f(f(k,a),b)). ** KEPT: 4003 (3824,7,188,5) P(h,f(g(f(h,g(b))),c),f(k,c)). ** KEPT: 4004 (3824,7,168,39) P(k,f(g(f(b,g(h))),c),f(f(h,a),b)). ** KEPT: 4005 (3824,7,168,5) P(k,f(g(f(b,g(h))),c),f(h,c)). ** KEPT: 4006 (3824,7,143,77) P(c,f(g(f(c,b)),c),a). ** KEPT: 4007 (3824,7,135,39) P(a,f(g(b),c),f(f(f(g(d),a),a),b)). ** KEPT: 4008 (3824,7,135,5) P(a,f(g(b),c),f(f(g(d),a),c)). ** KEPT: 4009 (3824,7,115,78) P(a,f(g(f(a,g(b))),c),f(c,b)). ** KEPT: 4010 (3824,7,115,5) P(a,f(g(f(a,g(b))),c),f(d,c)). ** KEPT: 4011 (3824,7,97,39) P(e,f(g(b),c),f(f(f(g(d),h),a),b)). ** KEPT: 4012 (3824,7,97,5) P(e,f(g(b),c),f(f(g(d),h),c)). ** KEPT: 4013 (3824,7,63,39) P(d,f(g(f(b,g(a))),c),f(f(a,a),b)). ** KEPT: 4014 (3824,7,63,5) P(d,f(g(f(b,g(a))),c),f(a,c)). ** KEPT: 4015 (3824,7,37,39) P(f(a,f(b,x)),f(g(x),c),f(f(c,a),b)). ** KEPT: 4016 (3824,7,37,37) P(f(a,f(b,x)),f(g(x),c),f(a,f(b,c))). ** KEPT: 4017 (3824,7,37,5) P(f(a,f(b,x)),f(g(x),c),f(c,c)). ** KEPT: 4018 (3824,7,35,39) P(e,f(g(b),c),f(f(f(g(c),a),a),b)). ** KEPT: 4019 (3824,7,35,5) P(e,f(g(b),c),f(f(g(c),a),c)). ** KEPT: 4020 (3824,7,34,39) P(f(x,c),f(g(b),c),f(f(f(x,a),a),b)). ** KEPT: 4021 (3824,7,34,5) P(f(x,c),f(g(b),c),f(f(x,a),c)). ** KEPT: 4022 (3824,7,5,1405) P(f(f(b,g(c)),x),f(g(x),c),b). ** KEPT: 4023 (3824,7,5,1379) P(f(f(d,g(c)),x),f(g(x),c),d). ** KEPT: 4024 (3824,7,5,1094) P(f(f(a,g(c)),x),f(g(x),c),a). ** KEPT: 4025 (3824,7,5,528) P(f(f(g(c),d),x),f(g(x),c),b). ** KEPT: 4026 (3824,7,5,202) P(f(g(k),x),f(g(x),c),f(h,a)). ** KEPT: 4027 (3824,7,5,156) P(f(g(h),x),f(g(x),c),f(b,a)). ** KEPT: 4028 (3824,7,5,123) P(f(f(h,g(a)),x),f(g(x),c),d). ** KEPT: 4029 (3824,7,5,78) P(f(d,x),f(g(x),c),f(c,b)). ** KEPT: 4030 (3824,7,5,77) P(f(g(d),x),f(g(x),c),a). ** KEPT: 4031 (3824,7,5,40) P(f(g(a),x),f(g(x),c),b). ** KEPT: 4032 (3824,7,5,39) P(f(x,y),f(g(y),c),f(f(x,a),b)). ** KEPT: 4033 (3824,7,5,5) P(f(x,y),f(g(y),c),f(x,c)). ** KEPT: 4034 (3824,7,5,3) P(f(g(c),x),f(g(x),c),e). ** KEPT: 4035 (3824,7,39,5) P(c,c,f(x,f(f(f(g(x),c),a),b))). ** KEPT: 4036 (3824,7,5,5) P(c,x,f(y,f(f(g(y),c),x))). ** KEPT: 4037 (3824,7,4,5,27) P(c,g(f(g(x),c)),x). ** KEPT: 4038 (3824,6,3627,5) P(f(b,b),f(g(b),f(g(b),c)),c). ** KEPT: 4039 (3824,6,2552,5) P(f(b,c),f(g(c),f(g(b),c)),c). ** KEPT: 4040 (3824,6,1405,5) P(f(b,g(c)),f(c,f(g(b),c)),c). ** KEPT: 4041 (3824,6,1270,5) P(f(b,g(d)),f(d,f(g(b),c)),c). ** KEPT: 4042 (3824,6,922,5) P(f(g(d),k),f(d,f(g(b),c)),c). ** KEPT: 4043 (3824,6,817,5) P(f(b,a),f(g(a),f(g(b),c)),c). ** KEPT: 4044 (3824,6,528,5) P(f(g(c),d),f(c,f(g(b),c)),c). ** KEPT: 4045 (3824,6,398,5) P(g(d),f(f(k,d),f(g(b),c)),c). ** KEPT: 4046 (3824,6,397,5) P(g(d),f(f(d,b),f(g(b),c)),c). ** KEPT: 4047 (3824,6,311,5,31) P(g(b),f(g(a),f(c,c)),c). ** KEPT: 4048 (3824,6,260,5) P(g(c),f(f(c,b),f(g(b),c)),c). ** KEPT: 4049 (3824,6,222,5) P(g(c),f(f(d,c),f(g(b),c)),c). ** KEPT: 4050 (3824,6,216,5,31) P(g(a),f(g(d),f(c,c)),c). ** KEPT: 4051 (3824,6,202,37) P(g(k),f(a,f(b,f(g(f(h,a)),c))),c). ** KEPT: 4052 (3824,6,202,5) P(g(k),f(c,f(g(f(h,a)),c)),c). ** KEPT: 4053 (3824,6,200,5,31) P(h,f(g(d),f(k,c)),c). ** KEPT: 4054 (3824,6,197,5) P(h,f(a,f(g(f(g(k),c)),c)),c). ** KEPT: 4055 (3824,6,180,5) P(f(g(h),k),f(h,f(g(b),c)),c). ** KEPT: 4056 (3824,6,173,5) P(d,f(b,f(g(f(k,d)),c)),c). ** KEPT: 4057 (3824,6,165,5) P(k,f(d,f(g(f(d,b)),c)),c). ** KEPT: 4058 (3824,6,156,37) P(g(h),f(a,f(b,f(g(f(b,a)),c))),c). ** KEPT: 4059 (3824,6,156,5) P(g(h),f(c,f(g(f(b,a)),c)),c). ** KEPT: 4060 (3824,6,152,5) P(b,f(a,f(g(f(g(h),c)),c)),c). ** KEPT: 4061 (3824,6,128,5,31) P(b,f(g(c),f(a,c)),c). ** KEPT: 4062 (3824,6,122,5) P(f(g(a),d),f(a,f(g(b),c)),c). ** KEPT: 4063 (3824,6,101,5) P(g(h),f(d,f(g(b),c)),c). ** KEPT: 4064 (3824,6,78,37) P(d,f(a,f(b,f(g(f(c,b)),c))),c). ** KEPT: 4065 (3824,6,78,5) P(d,f(c,f(g(f(c,b)),c)),c). ** KEPT: 4066 (3824,6,74,5) P(c,f(b,f(g(f(d,c)),c)),c). ** KEPT: 4067 (3824,6,65,5,31) P(g(c),f(d,f(a,c)),c). ** KEPT: 4068 (3824,6,40,5) P(g(a),f(c,f(g(b),c)),c). ** KEPT: 4069 (3824,6,39,37) P(x,f(a,f(b,f(g(f(f(x,a),b)),c))),c). ** KEPT: 4070 (3824,6,39,5) P(x,f(c,f(g(f(f(x,a),b)),c)),c). ** KEPT: 4071 (3824,6,37,37) P(c,f(a,f(b,f(g(f(a,f(b,c))),c))),c). ** KEPT: 4072 (3824,6,37,5) P(c,f(x,f(g(f(a,f(b,x))),c)),c). ** KEPT: 4073 (3824,6,34,5) P(f(x,a),f(b,f(g(f(x,c)),c)),c). ** KEPT: 4074 (3824,6,5,37) P(x,f(a,f(b,f(g(f(x,c)),c))),c). ** KEPT: 4075 (3824,6,5,5) P(x,f(y,f(g(f(x,y)),c)),c). ** KEPT: 4076 (3824,6,3824,37) P(x,c,f(a,f(b,f(g(f(g(x),c)),c)))). ** KEPT: 4077 (3824,6,3824,5) P(x,c,f(c,f(g(f(g(x),c)),c))). ** KEPT: 4078 (3824,6,3627,5,31) P(f(b,b),c,f(b,f(b,c))). ** KEPT: 4079 (3824,6,2897,5) P(f(c,g(x)),c,f(c,f(g(x),c))). ** KEPT: 4080 (3824,6,2896,5,31) P(f(c,x),c,f(c,f(x,c))). ** KEPT: 4081 (3824,6,2552,5,31) P(f(b,c),c,f(b,f(c,c))). ** KEPT: 4082 (3824,6,2551,5,31) P(f(h,c),c,f(h,f(c,c))). ** KEPT: 4083 (3824,6,1034,5,31) P(f(h,a),c,f(h,f(a,c))). ** KEPT: 4084 (3824,6,817,5,31) P(f(b,a),c,f(b,f(a,c))). ** KEPT: 4085 (3824,6,426,5) P(g(h),c,f(a,f(g(f(h,a)),c))). ** KEPT: 4086 (3824,6,414,5) P(g(k),c,f(d,f(g(f(k,d)),c))). ** KEPT: 4087 (3824,6,398,5) P(g(d),c,f(b,f(g(f(k,d)),c))). ** KEPT: 4088 (3824,6,397,5) P(g(d),c,f(b,f(g(f(d,b)),c))). ** KEPT: 4089 (3824,6,320,5,31) P(f(d,c),c,f(d,f(c,c))). ** KEPT: 4090 (3824,6,284,5) P(g(b),c,f(a,f(g(f(b,a)),c))). ** KEPT: 4091 (3824,6,260,5) P(g(c),c,f(b,f(g(f(c,b)),c))). ** KEPT: 4092 (3824,6,222,5) P(g(c),c,f(b,f(g(f(d,c)),c))). ** KEPT: 4093 (3824,6,204,5) P(g(k),c,f(d,f(g(f(d,b)),c))). ** KEPT: 4094 (3824,6,193,5) P(f(g(k),h),c,f(h,f(g(b),c))). ** KEPT: 4095 (3824,6,188,5) P(k,c,f(h,f(g(f(h,g(b))),c))). ** KEPT: 4096 (3824,6,168,5) P(h,c,f(k,f(g(f(b,g(h))),c))). ** KEPT: 4097 (3824,6,143,37) P(g(d),c,f(a,f(b,f(g(f(c,b)),c)))). ** KEPT: 4098 (3824,6,143,5) P(g(d),c,f(c,f(g(f(c,b)),c))). ** KEPT: 4099 (3824,6,135,5) P(f(g(d),a),c,f(a,f(g(b),c))). ** KEPT: 4100 (3824,6,115,5) P(d,c,f(a,f(g(f(a,g(b))),c))). ** KEPT: 4101 (3824,6,97,5,28) P(f(g(d),h),c,f(g(b),c)). ** KEPT: 4102 (3824,6,63,5) P(a,c,f(d,f(g(f(b,g(a))),c))). ** KEPT: 4103 (3824,6,37,5) P(c,c,f(f(a,f(b,x)),f(g(x),c))). ** KEPT: 4104 (3824,6,35,5,28) P(f(g(c),a),c,f(g(b),c)). ** KEPT: 4105 (3824,6,34,5) P(f(x,a),c,f(f(x,c),f(g(b),c))). ** KEPT: 4106 (3824,6,5,5) P(x,c,f(f(x,y),f(g(y),c))). ** KEPT: 4107 (3824,6,39,39) P(x,f(f(f(g(x),c),a),b),f(f(c,a),b)). ** KEPT: 4108 (3824,6,39,37) P(x,f(f(f(g(x),c),a),b),f(a,f(b,c))). ** KEPT: 4109 (3824,6,39,5) P(x,f(f(f(g(x),c),a),b),f(c,c)). ** KEPT: 4110 (3824,6,5,1485) P(x,f(f(g(x),c),f(g(c),d)),d). ** KEPT: 4111 (3824,6,5,1454) P(x,f(f(g(x),c),f(g(c),a)),a). ** KEPT: 4112 (3824,6,5,1237) P(x,f(f(g(x),c),f(g(d),h)),a). ** KEPT: 4113 (3824,6,5,475) P(x,f(f(g(x),c),f(b,g(c))),d). ** KEPT: 4114 (3824,6,5,434) P(x,f(f(g(x),c),g(f(h,a))),k). ** KEPT: 4115 (3824,6,5,292) P(x,f(f(g(x),c),g(f(b,a))),h). ** KEPT: 4116 (3824,6,5,74) P(x,f(f(g(x),c),b),f(d,c)). ** KEPT: 4117 (3824,6,5,39) P(x,f(f(g(x),c),c),f(f(c,a),b)). ** KEPT: 4118 (3824,6,5,38) P(x,f(f(g(x),c),g(b)),a). ** KEPT: 4119 (3824,6,5,37) P(x,f(f(g(x),c),y),f(a,f(b,y))). ** KEPT: 4120 (3824,6,5,21) P(x,f(f(g(x),c),g(a)),d). ** KEPT: 4121 (3824,6,5,5) P(x,f(f(g(x),c),y),f(c,y)). ** KEPT: 4122 (3824,6,5,4) P(x,f(f(g(x),c),g(c)),e). ** KEPT: 4123 (3824,6,4,37) P(x,e,f(a,f(b,g(f(g(x),c))))). ** KEPT: 4124 (3824,6,4,5) P(x,e,f(c,g(f(g(x),c)))). >>>> Starting back demodulation with: 3966 (3965) EQUAL(f(x,f(g(x),c)),c). >> back demodulating: 2054 (2053) EQUAL(f(k,f(g(k),c)),c). >> back demodulating: 2053 (1014,8,5) EQUAL(f(k,f(g(k),c)),c). >> back demodulating: 1956 (1955) EQUAL(f(h,f(g(h),c)),c). >> back demodulating: 1955 (794,8,5) EQUAL(f(h,f(g(h),c)),c). 3967 back subsumes: 2545 (34,7,5,794) P(f(h,f(g(h),a)),b,c). 3967 back subsumes: 2544 (34,7,5,1014) P(f(k,f(g(k),a)),b,c). 3967 back subsumes: 695 (135,7,5,62) P(f(d,f(g(d),a)),b,c). 3978 back subsumes: 3285 (2897,7,794,5) P(c,f(g(h),c),f(f(c,g(h)),c)). 3978 back subsumes: 3284 (2897,7,1014,5) P(c,f(g(k),c),f(f(c,g(k)),c)). 3979 back subsumes: 3978 (3824,7,2897,5) P(c,f(g(x),c),f(f(c,g(x)),c)). 3979 back subsumes: 3208 (2896,7,237,5) P(c,f(d,c),f(f(c,d),c)). 3979 back subsumes: 3203 (2896,7,2557,5) P(c,f(h,c),f(f(c,h),c)). 3979 back subsumes: 2657 (2558,7,252,5) P(c,f(b,c),f(f(c,b),c)). 4015 back subsumes: 3453 (39,7,37,794) P(f(a,f(b,h)),f(g(h),c),f(f(c,a),b)). 4015 back subsumes: 3452 (39,7,37,1014) P(f(a,f(b,k)),f(g(k),c),f(f(c,a),b)). 4016 back subsumes: 2737 (37,7,37,794) P(f(a,f(b,h)),f(g(h),c),f(a,f(b,c))). 4016 back subsumes: 2734 (37,7,37,1014) P(f(a,f(b,k)),f(g(k),c),f(a,f(b,c))). 4017 back subsumes: 2936 (37,7,794,5) P(f(a,f(b,h)),f(g(h),c),f(c,c)). 4017 back subsumes: 2931 (37,7,1014,5) P(f(a,f(b,k)),f(g(k),c),f(c,c)). 4022 back subsumes: 2327 (1405,7,5,794) P(f(f(b,g(c)),h),f(g(h),c),b). 4022 back subsumes: 2326 (1405,7,5,1014) P(f(f(b,g(c)),k),f(g(k),c),b). 4023 back subsumes: 2283 (1379,7,5,794) P(f(f(d,g(c)),h),f(g(h),c),d). 4023 back subsumes: 2282 (1379,7,5,1014) P(f(f(d,g(c)),k),f(g(k),c),d). 4024 back subsumes: 2107 (1094,7,5,794) P(f(f(a,g(c)),h),f(g(h),c),a). 4024 back subsumes: 2106 (1094,7,5,1014) P(f(f(a,g(c)),k),f(g(k),c),a). 4025 back subsumes: 2056 (1014,7,5,528) P(f(f(g(c),d),k),f(g(k),c),b). 4025 back subsumes: 1962 (794,7,5,528) P(f(f(g(c),d),h),f(g(h),c),b). 4026 back subsumes: 980 (193,6,152,5) P(f(g(k),h),f(g(h),c),f(h,a)). 4027 back subsumes: 1013 (197,6,180,5) P(f(g(h),k),f(g(k),c),f(b,a)). 4028 back subsumes: 2057 (1014,7,5,123) P(f(f(h,g(a)),k),f(g(k),c),d). 4028 back subsumes: 1963 (794,7,5,123) P(f(f(h,g(a)),h),f(g(h),c),d). 4029 back subsumes: 2058 (1014,7,5,78) P(f(d,k),f(g(k),c),f(c,b)). 4029 back subsumes: 1964 (794,7,5,78) P(f(d,h),f(g(h),c),f(c,b)). 4029 back subsumes: 1575 (373,6,5,78) P(f(d,b),f(g(b),c),f(c,b)). 4030 back subsumes: 1011 (197,6,182,5,28) P(f(g(d),k),f(g(k),c),a). 4030 back subsumes: 793 (152,6,97,5,28) P(f(g(d),h),f(g(h),c),a). 4031 back subsumes: 2059 (1014,7,5,40) P(f(g(a),k),f(g(k),c),b). 4031 back subsumes: 1965 (794,7,5,40) P(f(g(a),h),f(g(h),c),b). 4032 back subsumes: 3960 (3627,6,5,39) P(f(b,b),f(g(b),c),f(f(b,a),b)). 4032 back subsumes: 3658 (39,6,2896,5) P(f(c,x),f(g(x),c),f(f(c,a),b)). 4032 back subsumes: 3468 (39,7,5,794) P(f(x,h),f(g(h),c),f(f(x,a),b)). 4032 back subsumes: 3467 (39,7,5,1014) P(f(x,k),f(g(k),c),f(f(x,a),b)). 4033 back subsumes: 2060 (1014,7,5,5) P(f(x,k),f(g(k),c),f(x,c)). 4033 back subsumes: 1966 (794,7,5,5) P(f(x,h),f(g(h),c),f(x,c)). 4034 back subsumes: 2061 (1014,7,5,3) P(f(g(c),k),f(g(k),c),e). 4034 back subsumes: 1967 (794,7,5,3) P(f(g(c),h),f(g(h),c),e). 4035 back subsumes: 3497 (39,7,794,5) P(c,c,f(h,f(f(f(g(h),c),a),b))). 4035 back subsumes: 3496 (39,7,1014,5) P(c,c,f(k,f(f(f(g(k),c),a),b))). 4036 back subsumes: 2062 (1014,7,5,5) P(c,x,f(k,f(f(g(k),c),x))). 4036 back subsumes: 1968 (794,7,5,5) P(c,x,f(h,f(f(g(h),c),x))). 4037 back subsumes: 2063 (1014,7,4,5,27) P(c,g(f(g(k),c)),k). 4037 back subsumes: 1969 (794,7,4,5,27) P(c,g(f(g(h),c)),h). 4079 back subsumes: 3328 (2897,6,794,5) P(f(c,g(h)),c,f(c,f(g(h),c))). 4079 back subsumes: 3327 (2897,6,1014,5) P(f(c,g(k)),c,f(c,f(g(k),c))). 4080 back subsumes: 4079 (3824,6,2897,5) P(f(c,g(x)),c,f(c,f(g(x),c))). 4080 back subsumes: 3218 (2896,6,237,5) P(f(c,d),c,f(c,f(d,c))). 4080 back subsumes: 3213 (2896,6,2557,5) P(f(c,h),c,f(c,f(h,c))). 4080 back subsumes: 2674 (2558,6,252,5) P(f(c,b),c,f(c,f(b,c))). 4103 back subsumes: 3096 (37,6,794,5) P(c,c,f(f(a,f(b,h)),f(g(h),c))). 4103 back subsumes: 3093 (37,6,1014,5) P(c,c,f(f(a,f(b,k)),f(g(k),c))). 4106 back subsumes: 2070 (1014,6,5,5) P(x,c,f(f(x,k),f(g(k),c))). 4106 back subsumes: 1981 (794,6,5,5) P(x,c,f(f(x,h),f(g(h),c))). 4107 back subsumes: 3684 (39,6,794,39) P(h,f(f(f(g(h),c),a),b),f(f(c,a),b)). 4107 back subsumes: 3680 (39,6,1014,39) P(k,f(f(f(g(k),c),a),b),f(f(c,a),b)). 4108 back subsumes: 3845 (39,6,794,37) P(h,f(f(f(g(h),c),a),b),f(a,f(b,c))). 4108 back subsumes: 3843 (39,6,1014,37) P(k,f(f(f(g(k),c),a),b),f(a,f(b,c))). 4109 back subsumes: 3846 (39,6,794,5) P(h,f(f(f(g(h),c),a),b),f(c,c)). 4109 back subsumes: 3844 (39,6,1014,5) P(k,f(f(f(g(k),c),a),b),f(c,c)). 4110 back subsumes: 2400 (1485,6,794,5) P(h,f(f(g(h),c),f(g(c),d)),d). 4110 back subsumes: 2399 (1485,6,1014,5) P(k,f(f(g(k),c),f(g(c),d)),d). 4111 back subsumes: 2367 (1454,6,794,5) P(h,f(f(g(h),c),f(g(c),a)),a). 4111 back subsumes: 2366 (1454,6,1014,5) P(k,f(f(g(k),c),f(g(c),a)),a). 4112 back subsumes: 2148 (1237,6,794,5) P(h,f(f(g(h),c),f(g(d),h)),a). 4112 back subsumes: 2147 (1237,6,1014,5) P(k,f(f(g(k),c),f(g(d),h)),a). 4113 back subsumes: 2071 (1014,6,5,475) P(k,f(f(g(k),c),f(b,g(c))),d). 4113 back subsumes: 1982 (794,6,5,475) P(h,f(f(g(h),c),f(b,g(c))),d). 4114 back subsumes: 2072 (1014,6,5,434) P(k,f(f(g(k),c),g(f(h,a))),k). 4114 back subsumes: 1983 (794,6,5,434) P(h,f(f(g(h),c),g(f(h,a))),k). 4115 back subsumes: 2073 (1014,6,5,292) P(k,f(f(g(k),c),g(f(b,a))),h). 4115 back subsumes: 1984 (794,6,5,292) P(h,f(f(g(h),c),g(f(b,a))),h). 4116 back subsumes: 2074 (1014,6,5,74) P(k,f(f(g(k),c),b),f(d,c)). 4116 back subsumes: 1985 (794,6,5,74) P(h,f(f(g(h),c),b),f(d,c)). 4117 back subsumes: 3685 (39,6,794,5) P(h,f(f(g(h),c),c),f(f(c,a),b)). 4117 back subsumes: 3681 (39,6,1014,5) P(k,f(f(g(k),c),c),f(f(c,a),b)). 4118 back subsumes: 2075 (1014,6,5,38) P(k,f(f(g(k),c),g(b)),a). 4118 back subsumes: 1986 (794,6,5,38) P(h,f(f(g(h),c),g(b)),a). 4119 back subsumes: 3015 (37,6,794,5) P(h,f(f(g(h),c),x),f(a,f(b,x))). 4119 back subsumes: 3013 (37,6,1014,5) P(k,f(f(g(k),c),x),f(a,f(b,x))). 4120 back subsumes: 2076 (1014,6,5,21) P(k,f(f(g(k),c),g(a)),d). 4120 back subsumes: 1987 (794,6,5,21) P(h,f(f(g(h),c),g(a)),d). 4121 back subsumes: 2077 (1014,6,5,5) P(k,f(f(g(k),c),x),f(c,x)). 4121 back subsumes: 1988 (794,6,5,5) P(h,f(f(g(h),c),x),f(c,x)). 4122 back subsumes: 2078 (1014,6,5,4) P(k,f(f(g(k),c),g(c)),e). 4122 back subsumes: 1989 (794,6,5,4) P(h,f(f(g(h),c),g(c)),e). 4123 back subsumes: 3016 (37,6,794,4) P(h,e,f(a,f(b,g(f(g(h),c))))). 4123 back subsumes: 3014 (37,6,1014,4) P(k,e,f(a,f(b,g(f(g(k),c))))). 4124 back subsumes: 2079 (1014,6,4,5) P(k,e,f(c,g(f(g(k),c)))). 4124 back subsumes: 1990 (794,6,4,5) P(h,e,f(c,g(f(g(h),c)))). new given clause: 3826 (39,6,3,5,28,33) P(g(x),f(x,c),c). ** KEPT: 4125 (3826,8,5) EQUAL(f(g(x),f(x,c)),c). ---> New Demodulator: 4126 (4125) EQUAL(f(g(x),f(x,c)),c). ** KEPT: 4127 (3826,7,5,34) P(f(g(x),f(x,a)),b,c). ** KEPT: 4128 (3826,7,37,39) P(f(a,f(b,g(x))),f(x,c),f(f(c,a),b)). ** KEPT: 4129 (3826,7,37,37) P(f(a,f(b,g(x))),f(x,c),f(a,f(b,c))). ** KEPT: 4130 (3826,7,37,5) P(f(a,f(b,g(x))),f(x,c),f(c,c)). ** KEPT: 4131 (3826,7,5,1405) P(f(f(b,g(c)),g(x)),f(x,c),b). ** KEPT: 4132 (3826,7,5,1379) P(f(f(d,g(c)),g(x)),f(x,c),d). ** KEPT: 4133 (3826,7,5,1094) P(f(f(a,g(c)),g(x)),f(x,c),a). ** KEPT: 4134 (3826,7,5,528) P(f(f(g(c),d),g(x)),f(x,c),b). ** KEPT: 4135 (3826,7,5,202) P(f(g(k),g(x)),f(x,c),f(h,a)). ** KEPT: 4136 (3826,7,5,156) P(f(g(h),g(x)),f(x,c),f(b,a)). ** KEPT: 4137 (3826,7,5,123) P(f(f(h,g(a)),g(x)),f(x,c),d). ** KEPT: 4138 (3826,7,5,78) P(f(d,g(x)),f(x,c),f(c,b)). ** KEPT: 4139 (3826,7,5,77) P(f(g(d),g(x)),f(x,c),a). ** KEPT: 4140 (3826,7,5,40) P(f(g(a),g(x)),f(x,c),b). ** KEPT: 4141 (3826,7,5,39) P(f(x,g(y)),f(y,c),f(f(x,a),b)). ** KEPT: 4142 (3826,7,5,5) P(f(x,g(y)),f(y,c),f(x,c)). ** KEPT: 4143 (3826,7,5,3) P(f(g(c),g(x)),f(x,c),e). ** KEPT: 4144 (3826,7,3824,39) P(c,f(g(f(x,c)),c),f(f(g(x),a),b)). ** KEPT: 4145 (3826,7,3824,5) P(c,f(g(f(x,c)),c),f(g(x),c)). ** KEPT: 4146 (3826,7,39,5) P(c,c,f(g(x),f(f(f(x,c),a),b))). ** KEPT: 4147 (3826,7,5,5) P(c,x,f(g(y),f(f(y,c),x))). ** KEPT: 4148 (3826,7,4,5,27) P(c,g(f(x,c)),g(x)). ** KEPT: 4149 (3826,6,37,5) P(c,c,f(f(a,f(b,g(x))),f(x,c))). ** KEPT: 4150 (3826,6,5,5) P(x,c,f(f(x,g(y)),f(y,c))). ** KEPT: 4151 (3826,6,3824,37) P(g(x),c,f(a,f(b,f(g(f(x,c)),c)))). ** KEPT: 4152 (3826,6,3824,5) P(g(x),c,f(c,f(g(f(x,c)),c))). ** KEPT: 4153 (3826,6,39,39) P(g(x),f(f(f(x,c),a),b),f(f(c,a),b)). ** KEPT: 4154 (3826,6,39,37) P(g(x),f(f(f(x,c),a),b),f(a,f(b,c))). ** KEPT: 4155 (3826,6,39,5) P(g(x),f(f(f(x,c),a),b),f(c,c)). ** KEPT: 4156 (3826,6,5,1485) P(g(x),f(f(x,c),f(g(c),d)),d). ** KEPT: 4157 (3826,6,5,1454) P(g(x),f(f(x,c),f(g(c),a)),a). ** KEPT: 4158 (3826,6,5,1237) P(g(x),f(f(x,c),f(g(d),h)),a). ** KEPT: 4159 (3826,6,5,475) P(g(x),f(f(x,c),f(b,g(c))),d). ** KEPT: 4160 (3826,6,5,434) P(g(x),f(f(x,c),g(f(h,a))),k). ** KEPT: 4161 (3826,6,5,292) P(g(x),f(f(x,c),g(f(b,a))),h). ** KEPT: 4162 (3826,6,5,74) P(g(x),f(f(x,c),b),f(d,c)). ** KEPT: 4163 (3826,6,5,39) P(g(x),f(f(x,c),c),f(f(c,a),b)). ** KEPT: 4164 (3826,6,5,38) P(g(x),f(f(x,c),g(b)),a). ** KEPT: 4165 (3826,6,5,37) P(g(x),f(f(x,c),y),f(a,f(b,y))). ** KEPT: 4166 (3826,6,5,21) P(g(x),f(f(x,c),g(a)),d). ** KEPT: 4167 (3826,6,5,5) P(g(x),f(f(x,c),y),f(c,y)). ** KEPT: 4168 (3826,6,5,4) P(g(x),f(f(x,c),g(c)),e). ** KEPT: 4169 (3826,6,4,37) P(g(x),e,f(a,f(b,g(f(x,c))))). ** KEPT: 4170 (3826,6,4,5) P(g(x),e,f(c,g(f(x,c)))). >>>> Starting back demodulation with: 4126 (4125) EQUAL(f(g(x),f(x,c)),c). >> back demodulating: 2655 (2654) EQUAL(f(g(b),f(b,c)),c). >> back demodulating: 2654 (2558,8,5) EQUAL(f(g(b),f(b,c)),c). >> back demodulating: 2626 (2625) EQUAL(f(g(h),f(h,c)),c). >> back demodulating: 2625 (2557,8,5) EQUAL(f(g(h),f(h,c)),c). >> back demodulating: 1134 (1133) EQUAL(f(g(d),f(d,c)),c). >> back demodulating: 1133 (237,8,5) EQUAL(f(g(d),f(d,c)),c). 4128 back subsumes: 3454 (39,7,37,237) P(f(a,f(b,g(d))),f(d,c),f(f(c,a),b)). 4128 back subsumes: 3451 (39,7,37,2557) P(f(a,f(b,g(h))),f(h,c),f(f(c,a),b)). 4129 back subsumes: 2764 (37,7,37,237) P(f(a,f(b,g(d))),f(d,c),f(a,f(b,c))). 4129 back subsumes: 2719 (37,7,37,2557) P(f(a,f(b,g(h))),f(h,c),f(a,f(b,c))). 4130 back subsumes: 2958 (37,7,237,5) P(f(a,f(b,g(d))),f(d,c),f(c,c)). 4130 back subsumes: 2914 (37,7,2557,5) P(f(a,f(b,g(h))),f(h,c),f(c,c)). 4131 back subsumes: 2658 (2558,7,5,1405) P(f(f(b,g(c)),g(b)),f(b,c),b). 4131 back subsumes: 2627 (2557,7,5,1405) P(f(f(b,g(c)),g(h)),f(h,c),b). 4131 back subsumes: 2329 (1405,7,5,237) P(f(f(b,g(c)),g(d)),f(d,c),b). 4132 back subsumes: 2659 (2558,7,5,1379) P(f(f(d,g(c)),g(b)),f(b,c),d). 4132 back subsumes: 2628 (2557,7,5,1379) P(f(f(d,g(c)),g(h)),f(h,c),d). 4132 back subsumes: 2285 (1379,7,5,237) P(f(f(d,g(c)),g(d)),f(d,c),d). 4133 back subsumes: 2660 (2558,7,5,1094) P(f(f(a,g(c)),g(b)),f(b,c),a). 4133 back subsumes: 2629 (2557,7,5,1094) P(f(f(a,g(c)),g(h)),f(h,c),a). 4133 back subsumes: 2109 (1094,7,5,237) P(f(f(a,g(c)),g(d)),f(d,c),a). 4134 back subsumes: 2661 (2558,7,5,528) P(f(f(g(c),d),g(b)),f(b,c),b). 4134 back subsumes: 2630 (2557,7,5,528) P(f(f(g(c),d),g(h)),f(h,c),b). 4134 back subsumes: 1820 (528,7,5,237) P(f(f(g(c),d),g(d)),f(d,c),b). 4135 back subsumes: 2662 (2558,7,5,202) P(f(g(k),g(b)),f(b,c),f(h,a)). 4135 back subsumes: 2631 (2557,7,5,202) P(f(g(k),g(h)),f(h,c),f(h,a)). 4135 back subsumes: 1135 (237,7,5,202) P(f(g(k),g(d)),f(d,c),f(h,a)). 4136 back subsumes: 2663 (2558,7,5,156) P(f(g(h),g(b)),f(b,c),f(b,a)). 4136 back subsumes: 2632 (2557,7,5,156) P(f(g(h),g(h)),f(h,c),f(b,a)). 4136 back subsumes: 1136 (237,7,5,156) P(f(g(h),g(d)),f(d,c),f(b,a)). 4137 back subsumes: 2664 (2558,7,5,123) P(f(f(h,g(a)),g(b)),f(b,c),d). 4137 back subsumes: 2633 (2557,7,5,123) P(f(f(h,g(a)),g(h)),f(h,c),d). 4137 back subsumes: 1137 (237,7,5,123) P(f(f(h,g(a)),g(d)),f(d,c),d). 4138 back subsumes: 2319 (1379,6,5,78) P(f(d,g(c)),f(c,c),f(c,b)). 4139 back subsumes: 2665 (2558,7,5,77) P(f(g(d),g(b)),f(b,c),a). 4139 back subsumes: 2634 (2557,7,5,77) P(f(g(d),g(h)),f(h,c),a). 4139 back subsumes: 1138 (237,7,5,77) P(f(g(d),g(d)),f(d,c),a). 4140 back subsumes: 2666 (2558,7,5,40) P(f(g(a),g(b)),f(b,c),b). 4140 back subsumes: 2635 (2557,7,5,40) P(f(g(a),g(h)),f(h,c),b). 4140 back subsumes: 1139 (237,7,5,40) P(f(g(a),g(d)),f(d,c),b). 4141 back subsumes: 3688 (39,6,676,5) P(f(h,g(a)),f(a,c),f(f(h,a),b)). 4141 back subsumes: 3679 (39,6,1094,5) P(f(a,g(c)),f(c,c),f(f(a,a),b)). 4141 back subsumes: 3671 (39,6,1405,5) P(f(b,g(c)),f(c,c),f(f(b,a),b)). 4141 back subsumes: 3656 (39,6,2897,5) P(f(c,g(x)),f(x,c),f(f(c,a),b)). 4141 back subsumes: 3469 (39,7,5,237) P(f(x,g(d)),f(d,c),f(f(x,a),b)). 4141 back subsumes: 3466 (39,7,5,2557) P(f(x,g(h)),f(h,c),f(f(x,a),b)). 4141 back subsumes: 3465 (39,7,5,2558) P(f(x,g(b)),f(b,c),f(f(x,a),b)). 4142 back subsumes: 2667 (2558,7,5,5) P(f(x,g(b)),f(b,c),f(x,c)). 4142 back subsumes: 2636 (2557,7,5,5) P(f(x,g(h)),f(h,c),f(x,c)). 4142 back subsumes: 1140 (237,7,5,5) P(f(x,g(d)),f(d,c),f(x,c)). 4143 back subsumes: 2668 (2558,7,5,3) P(f(g(c),g(b)),f(b,c),e). 4143 back subsumes: 2637 (2557,7,5,3) P(f(g(c),g(h)),f(h,c),e). 4143 back subsumes: 1141 (237,7,5,3) P(f(g(c),g(d)),f(d,c),e). 4146 back subsumes: 3523 (39,7,237,5) P(c,c,f(g(d),f(f(f(d,c),a),b))). 4146 back subsumes: 3485 (39,7,2557,5) P(c,c,f(g(h),f(f(f(h,c),a),b))). 4146 back subsumes: 3484 (39,7,2558,5) P(c,c,f(g(b),f(f(f(b,c),a),b))). 4147 back subsumes: 2669 (2558,7,5,5) P(c,x,f(g(b),f(f(b,c),x))). 4147 back subsumes: 2638 (2557,7,5,5) P(c,x,f(g(h),f(f(h,c),x))). 4147 back subsumes: 1142 (237,7,5,5) P(c,x,f(g(d),f(f(d,c),x))). 4148 back subsumes: 2670 (2558,7,4,5,27) P(c,g(f(b,c)),g(b)). 4148 back subsumes: 2639 (2557,7,4,5,27) P(c,g(f(h,c)),g(h)). 4148 back subsumes: 1143 (237,7,4,5,27) P(c,g(f(d,c)),g(d)). 4149 back subsumes: 3122 (37,6,237,5) P(c,c,f(f(a,f(b,g(d))),f(d,c))). 4149 back subsumes: 3078 (37,6,2557,5) P(c,c,f(f(a,f(b,g(h))),f(h,c))). 4150 back subsumes: 2675 (2558,6,5,5) P(x,c,f(f(x,g(b)),f(b,c))). 4150 back subsumes: 2642 (2557,6,5,5) P(x,c,f(f(x,g(h)),f(h,c))). 4150 back subsumes: 1144 (237,6,5,5) P(x,c,f(f(x,g(d)),f(d,c))). 4153 back subsumes: 3722 (39,6,237,39) P(g(d),f(f(f(d,c),a),b),f(f(c,a),b)). 4153 back subsumes: 3661 (39,6,2557,39) P(g(h),f(f(f(h,c),a),b),f(f(c,a),b)). 4153 back subsumes: 3659 (39,6,2558,39) P(g(b),f(f(f(b,c),a),b),f(f(c,a),b)). 4154 back subsumes: 3862 (39,6,237,37) P(g(d),f(f(f(d,c),a),b),f(a,f(b,c))). 4154 back subsumes: 3833 (39,6,2557,37) P(g(h),f(f(f(h,c),a),b),f(a,f(b,c))). 4154 back subsumes: 3831 (39,6,2558,37) P(g(b),f(f(f(b,c),a),b),f(a,f(b,c))). 4155 back subsumes: 3863 (39,6,237,5) P(g(d),f(f(f(d,c),a),b),f(c,c)). 4155 back subsumes: 3834 (39,6,2557,5) P(g(h),f(f(f(h,c),a),b),f(c,c)). 4155 back subsumes: 3832 (39,6,2558,5) P(g(b),f(f(f(b,c),a),b),f(c,c)). 4156 back subsumes: 2676 (2558,6,5,1485) P(g(b),f(f(b,c),f(g(c),d)),d). 4156 back subsumes: 2643 (2557,6,5,1485) P(g(h),f(f(h,c),f(g(c),d)),d). 4156 back subsumes: 2402 (1485,6,237,5) P(g(d),f(f(d,c),f(g(c),d)),d). 4157 back subsumes: 2677 (2558,6,5,1454) P(g(b),f(f(b,c),f(g(c),a)),a). 4157 back subsumes: 2644 (2557,6,5,1454) P(g(h),f(f(h,c),f(g(c),a)),a). 4157 back subsumes: 2369 (1454,6,237,5) P(g(d),f(f(d,c),f(g(c),a)),a). 4158 back subsumes: 2678 (2558,6,5,1237) P(g(b),f(f(b,c),f(g(d),h)),a). 4158 back subsumes: 2645 (2557,6,5,1237) P(g(h),f(f(h,c),f(g(d),h)),a). 4158 back subsumes: 2150 (1237,6,237,5) P(g(d),f(f(d,c),f(g(d),h)),a). 4159 back subsumes: 2679 (2558,6,5,475) P(g(b),f(f(b,c),f(b,g(c))),d). 4159 back subsumes: 2646 (2557,6,5,475) P(g(h),f(f(h,c),f(b,g(c))),d). 4159 back subsumes: 1796 (475,6,237,5) P(g(d),f(f(d,c),f(b,g(c))),d). 4160 back subsumes: 2680 (2558,6,5,434) P(g(b),f(f(b,c),g(f(h,a))),k). 4160 back subsumes: 2647 (2557,6,5,434) P(g(h),f(f(h,c),g(f(h,a))),k). 4160 back subsumes: 1739 (434,6,237,5) P(g(d),f(f(d,c),g(f(h,a))),k). 4161 back subsumes: 2681 (2558,6,5,292) P(g(b),f(f(b,c),g(f(b,a))),h). 4161 back subsumes: 2648 (2557,6,5,292) P(g(h),f(f(h,c),g(f(b,a))),h). 4161 back subsumes: 1325 (292,6,237,5) P(g(d),f(f(d,c),g(f(b,a))),h). 4162 back subsumes: 2682 (2558,6,5,74) P(g(b),f(f(b,c),b),f(d,c)). 4162 back subsumes: 2649 (2557,6,5,74) P(g(h),f(f(h,c),b),f(d,c)). 4162 back subsumes: 1145 (237,6,5,74) P(g(d),f(f(d,c),b),f(d,c)). 4163 back subsumes: 3723 (39,6,237,5) P(g(d),f(f(d,c),c),f(f(c,a),b)). 4163 back subsumes: 3662 (39,6,2557,5) P(g(h),f(f(h,c),c),f(f(c,a),b)). 4163 back subsumes: 3660 (39,6,2558,5) P(g(b),f(f(b,c),c),f(f(c,a),b)). 4164 back subsumes: 2683 (2558,6,5,38) P(g(b),f(f(b,c),g(b)),a). 4164 back subsumes: 2650 (2557,6,5,38) P(g(h),f(f(h,c),g(b)),a). 4165 back subsumes: 3018 (37,6,237,5) P(g(d),f(f(d,c),x),f(a,f(b,x))). 4165 back subsumes: 3007 (37,6,2557,5) P(g(h),f(f(h,c),x),f(a,f(b,x))). 4165 back subsumes: 3005 (37,6,2558,5) P(g(b),f(f(b,c),x),f(a,f(b,x))). 4166 back subsumes: 2684 (2558,6,5,21) P(g(b),f(f(b,c),g(a)),d). 4166 back subsumes: 2651 (2557,6,5,21) P(g(h),f(f(h,c),g(a)),d). 4166 back subsumes: 1146 (237,6,5,21) P(g(d),f(f(d,c),g(a)),d). 4167 back subsumes: 2685 (2558,6,5,5) P(g(b),f(f(b,c),x),f(c,x)). 4167 back subsumes: 2652 (2557,6,5,5) P(g(h),f(f(h,c),x),f(c,x)). 4167 back subsumes: 1147 (237,6,5,5) P(g(d),f(f(d,c),x),f(c,x)). 4169 back subsumes: 3019 (37,6,237,4) P(g(d),e,f(a,f(b,g(f(d,c))))). 4169 back subsumes: 3008 (37,6,2557,4) P(g(h),e,f(a,f(b,g(f(h,c))))). 4169 back subsumes: 3006 (37,6,2558,4) P(g(b),e,f(a,f(b,g(f(b,c))))). 4170 back subsumes: 2686 (2558,6,4,5) P(g(b),e,f(c,g(f(b,c)))). 4170 back subsumes: 2653 (2557,6,4,5) P(g(h),e,f(c,g(f(h,c)))). 4170 back subsumes: 1149 (237,6,4,5) P(g(d),e,f(c,g(f(d,c)))). new given clause: 41 (20,6,5,5) P(a,f(b,x),f(c,x)). ** KEPT: 4171 (41,7,2897,5,57) P(c,f(b,x),f(d,f(c,x))). ** KEPT: 4172 (41,7,676,5) P(h,f(b,x),f(f(h,g(a)),f(c,x))). ** KEPT: 4173 (41,7,309,5) P(e,f(b,x),f(f(b,g(c)),f(c,x))). ** KEPT: 4174 (41,7,307,5) P(h,f(b,x),f(f(d,g(c)),f(c,x))). ** KEPT: 4175 (41,7,197,5) P(f(g(k),c),f(b,x),f(h,f(c,x))). ** KEPT: 4176 (41,7,152,5) P(f(g(h),c),f(b,x),f(b,f(c,x))). ** KEPT: 4177 (41,7,122,5) P(b,f(b,x),f(f(g(a),d),f(c,x))). ** KEPT: 4178 (41,7,117,260) P(g(b),f(b,b),b). ** KEPT: 4179 (41,7,117,5) P(g(b),f(b,x),f(g(c),f(c,x))). ** KEPT: 4180 (41,7,72,5) P(e,f(b,x),f(f(g(c),d),f(c,x))). ** KEPT: 4181 (41,7,37,37) P(f(a,f(b,a)),f(b,x),f(a,f(b,f(c,x)))). ** KEPT: 4182 (41,7,37,5) P(f(a,f(b,a)),f(b,x),f(c,f(c,x))). ** KEPT: 4183 (41,7,5,2897) P(f(f(c,g(f(c,x))),a),f(b,x),c). ** KEPT: 4184 (41,7,5,37) P(f(c,a),f(b,x),f(a,f(b,f(c,x)))). ** KEPT: 4185 (41,7,5,5) P(f(x,a),f(b,y),f(x,f(c,y))). ** KEPT: 4186 (41,7,5,3) P(f(g(f(c,x)),a),f(b,x),e). ** KEPT: 4187 (41,7,3,5) P(e,f(b,x),f(g(a),f(c,x))). ** KEPT: 4188 (41,7,3824,39) P(f(c,x),f(g(f(b,x)),c),f(f(a,a),b)). ** KEPT: 4189 (41,7,3824,5) P(f(c,x),f(g(f(b,x)),c),f(a,c)). ** KEPT: 4190 (41,7,39,5) P(f(c,x),c,f(a,f(f(f(b,x),a),b))). ** KEPT: 4191 (41,7,5,5) P(f(c,x),y,f(a,f(f(b,x),y))). ** KEPT: 4192 (41,7,4,5,27) P(f(c,x),g(f(b,x)),a). ** KEPT: 4193 (41,6,1454,5) P(c,f(f(g(c),a),f(b,x)),f(c,x)). ** KEPT: 4194 (41,6,1237,5) P(c,f(f(g(d),h),f(b,x)),f(c,x)). ** KEPT: 4195 (41,6,1094,37) P(f(a,g(c)),f(a,f(b,f(b,x))),f(c,x)). ** KEPT: 4196 (41,6,1094,5) P(f(a,g(c)),f(c,f(b,x)),f(c,x)). ** KEPT: 4197 (41,6,760,5) P(f(a,g(h)),f(h,f(b,x)),f(c,x)). ** KEPT: 4198 (41,6,426,5) P(g(h),f(f(h,a),f(b,x)),f(c,x)). ** KEPT: 4199 (41,6,284,5) P(g(b),f(f(b,a),f(b,x)),f(c,x)). ** KEPT: 4200 (41,6,271,5) P(f(c,g(d)),f(h,f(b,x)),f(c,x)). ** KEPT: 4201 (41,6,135,5) P(f(g(d),a),f(b,f(b,x)),f(c,x)). ** KEPT: 4202 (41,6,115,5) P(d,f(f(a,g(b)),f(b,x)),f(c,x)). ** KEPT: 4203 (41,6,77,37) P(g(d),f(a,f(b,f(b,x))),f(c,x)). ** KEPT: 4204 (41,6,77,5) P(g(d),f(c,f(b,x)),f(c,x)). ** KEPT: 4205 (41,6,38,5) P(c,f(g(b),f(b,x)),f(c,x)). ** KEPT: 4206 (41,6,2897,37,57) P(d,f(c,x),f(a,f(b,f(b,x)))). ** KEPT: 4207 (41,6,2897,5,57) P(d,f(c,x),f(c,f(b,x))). ** KEPT: 4208 (41,6,676,5) P(f(h,g(a)),f(c,x),f(h,f(b,x))). ** KEPT: 4209 (41,6,307,5) P(f(d,g(c)),f(c,x),f(h,f(b,x))). ** KEPT: 4210 (41,6,197,5) P(h,f(c,x),f(f(g(k),c),f(b,x))). ** KEPT: 4211 (41,6,152,5) P(b,f(c,x),f(f(g(h),c),f(b,x))). ** KEPT: 4212 (41,6,122,5) P(f(g(a),d),f(c,x),f(b,f(b,x))). ** KEPT: 4213 (41,6,117,284) P(g(c),f(c,a),a). ** KEPT: 4214 (41,6,117,5) P(g(c),f(c,x),f(g(b),f(b,x))). ** KEPT: 4215 (41,6,37,5) P(c,f(c,x),f(f(a,f(b,a)),f(b,x))). ** KEPT: 4216 (41,6,5,5) P(x,f(c,y),f(f(x,a),f(b,y))). ** KEPT: 4217 (41,6,3824,5) P(a,c,f(f(c,x),f(g(f(b,x)),c))). ** KEPT: 4218 (41,6,39,39) P(a,f(f(f(b,x),a),b),f(f(f(c,x),a),b)). ** KEPT: 4219 (41,6,39,5) P(a,f(f(f(b,x),a),b),f(f(c,x),c)). ** KEPT: 4220 (41,6,5,3824) P(a,f(f(b,x),f(g(f(c,x)),c)),c). ** KEPT: 4221 (41,6,5,2897) P(a,f(f(b,g(x)),x),c). ** KEPT: 4222 (41,6,5,2896) P(a,f(f(b,x),g(x)),c). ** KEPT: 4223 (41,6,5,255) P(a,f(f(b,b),g(c)),d). ** KEPT: 4224 (41,6,5,39) P(a,f(f(b,x),c),f(f(f(c,x),a),b)). ** KEPT: 4225 (41,6,5,5) P(a,f(f(b,x),y),f(f(c,x),y)). ** KEPT: 4226 (41,6,5,4) P(a,f(f(b,x),g(f(c,x))),e). ** KEPT: 4227 (41,6,4,5) P(a,e,f(f(c,x),g(f(b,x)))). 4221 back subsumes: 507 (63,6,5,62) P(a,f(f(b,g(a)),a),c). 4225 back subsumes: 3808 (39,6,20,39) P(a,f(f(b,a),b),f(f(c,a),b)). new given clause: 4178 (41,7,117,260) P(g(b),f(b,b),b). ** KEPT: 4228 (4178,8,5) EQUAL(f(g(b),f(b,b)),b). ---> New Demodulator: 4229 (4228) EQUAL(f(g(b),f(b,b)),b). ** KEPT: 4230 (4178,7,3627,5) P(b,f(b,b),f(f(b,b),b)). ** KEPT: 4231 (4178,7,2897,5,31) P(c,f(b,b),f(f(c,b),b)). ** KEPT: 4232 (4178,7,373,5) P(d,f(b,b),f(f(d,b),b)). ** KEPT: 4233 (4178,7,5,2897,109) P(f(a,g(b)),f(b,b),c). ** KEPT: 4234 (4178,7,5,193) P(f(f(g(k),h),g(b)),f(b,b),h). ** KEPT: 4235 (4178,7,5,135) P(f(f(g(d),a),g(b)),f(b,b),a). ** KEPT: 4236 (4178,7,5,97) P(f(f(g(d),h),g(b)),f(b,b),e). ** KEPT: 4237 (4178,7,5,87) P(f(h,g(b)),f(b,b),d). ** KEPT: 4238 (4178,7,5,35) P(f(f(g(c),a),g(b)),f(b,b),e). ** KEPT: 4239 (4178,7,5,34) P(f(f(x,a),g(b)),f(b,b),f(x,c)). ** KEPT: 4240 (4178,7,5,5) P(f(x,g(b)),f(b,b),f(x,b)). ** KEPT: 4241 (4178,7,5,3) P(f(g(b),g(b)),f(b,b),e). ** KEPT: 4242 (4178,7,3824,39) P(b,f(g(f(b,b)),c),f(f(g(b),a),b)). ** KEPT: 4243 (4178,7,3824,5) P(b,f(g(f(b,b)),c),f(g(b),c)). ** KEPT: 4244 (4178,7,39,5) P(b,c,f(g(b),f(f(f(b,b),a),b))). ** KEPT: 4245 (4178,7,5,5) P(b,x,f(g(b),f(f(b,b),x))). ** KEPT: 4246 (4178,7,4,5,27) P(b,g(f(b,b)),g(b)). ** KEPT: 4247 (4178,6,90,5) P(g(d),f(h,f(b,b)),b). ** KEPT: 4248 (4178,6,3627,5) P(f(b,b),b,f(b,f(b,b))). ** KEPT: 4249 (4178,6,2897,5,31) P(f(c,b),b,f(c,f(b,b))). ** KEPT: 4250 (4178,6,373,5) P(f(d,b),b,f(d,f(b,b))). ** KEPT: 4251 (4178,6,5,5) P(x,b,f(f(x,g(b)),f(b,b))). ** KEPT: 4252 (4178,6,3824,5) P(g(b),c,f(b,f(g(f(b,b)),c))). ** KEPT: 4253 (4178,6,39,39) P(g(b),f(f(f(b,b),a),b),f(f(b,a),b)). ** KEPT: 4254 (4178,6,39,5) P(g(b),f(f(f(b,b),a),b),f(b,c)). ** KEPT: 4255 (4178,6,5,3824) P(g(b),f(f(b,b),f(g(b),c)),c). ** KEPT: 4256 (4178,6,5,362) P(g(b),f(f(b,b),f(g(d),h)),e). ** KEPT: 4257 (4178,6,5,331) P(g(b),f(f(b,b),f(g(c),a)),e). ** KEPT: 4258 (4178,6,5,154) P(g(b),f(f(b,b),g(d)),g(h)). ** KEPT: 4259 (4178,6,5,152) P(g(b),f(f(b,b),a),f(g(h),c)). ** KEPT: 4260 (4178,6,5,128) P(g(b),f(f(b,b),g(c)),g(a)). ** KEPT: 4261 (4178,6,5,39) P(g(b),f(f(b,b),c),f(f(b,a),b)). ** KEPT: 4262 (4178,6,5,5) P(g(b),f(f(b,b),x),f(b,x)). ** KEPT: 4263 (4178,6,4,5) P(g(b),e,f(b,g(f(b,b)))). >>>> Starting back demodulation with: 4229 (4228) EQUAL(f(g(b),f(b,b)),b). >> back demodulating: 3943 (3627,7,5,3) P(f(g(b),f(b,b)),g(b),e). new given clause: 4213 (41,6,117,284) P(g(c),f(c,a),a). ** KEPT: 4264 (4213,8,5) EQUAL(f(g(c),f(c,a)),a). ---> New Demodulator: 4265 (4264) EQUAL(f(g(c),f(c,a)),a). ** KEPT: 4266 (4213,7,2897,5,31) P(c,f(c,a),f(f(c,c),a)). ** KEPT: 4267 (4213,7,2552,5) P(b,f(c,a),f(f(b,c),a)). ** KEPT: 4268 (4213,7,2551,5) P(h,f(c,a),f(f(h,c),a)). ** KEPT: 4269 (4213,7,320,5) P(d,f(c,a),f(f(d,c),a)). ** KEPT: 4270 (4213,7,5,676) P(f(f(h,g(a)),g(c)),f(c,a),h). ** KEPT: 4271 (4213,7,5,309) P(f(f(b,g(c)),g(c)),f(c,a),e). ** KEPT: 4272 (4213,7,5,307) P(f(f(d,g(c)),g(c)),f(c,a),h). ** KEPT: 4273 (4213,7,5,197) P(f(h,g(c)),f(c,a),f(g(k),c)). ** KEPT: 4274 (4213,7,5,122) P(f(f(g(a),d),g(c)),f(c,a),b). ** KEPT: 4275 (4213,7,5,117) P(f(g(c),g(c)),f(c,a),g(b)). ** KEPT: 4276 (4213,7,5,72) P(f(f(g(c),d),g(c)),f(c,a),e). ** KEPT: 4277 (4213,7,5,5) P(f(x,g(c)),f(c,a),f(x,a)). ** KEPT: 4278 (4213,7,5,3) P(f(g(a),g(c)),f(c,a),e). ** KEPT: 4279 (4213,7,3824,39,459) P(a,f(g(f(c,a)),c),e). ** KEPT: 4280 (4213,7,39,5) P(a,c,f(g(c),f(f(f(c,a),a),b))). ** KEPT: 4281 (4213,7,5,5) P(a,x,f(g(c),f(f(c,a),x))). ** KEPT: 4282 (4213,7,4,5,27) P(a,g(f(c,a)),g(c)). ** KEPT: 4283 (4213,6,311,5) P(g(b),f(g(a),f(c,a)),a). ** KEPT: 4284 (4213,6,216,5) P(g(a),f(g(d),f(c,a)),a). ** KEPT: 4285 (4213,6,2897,5,31) P(f(c,c),a,f(c,f(c,a))). ** KEPT: 4286 (4213,6,2552,5) P(f(b,c),a,f(b,f(c,a))). ** KEPT: 4287 (4213,6,2551,5) P(f(h,c),a,f(h,f(c,a))). ** KEPT: 4288 (4213,6,320,5) P(f(d,c),a,f(d,f(c,a))). ** KEPT: 4289 (4213,6,5,5) P(x,a,f(f(x,g(c)),f(c,a))). ** KEPT: 4290 (4213,6,3824,5) P(g(c),c,f(a,f(g(f(c,a)),c))). ** KEPT: 4291 (4213,6,39,39) P(g(c),f(f(f(c,a),a),b),f(f(a,a),b)). ** KEPT: 4292 (4213,6,39,5) P(g(c),f(f(f(c,a),a),b),f(a,c)). ** KEPT: 4293 (4213,6,5,345) P(g(c),f(f(c,a),f(g(c),d)),e). ** KEPT: 4294 (4213,6,5,140) P(g(c),f(f(c,a),g(c)),g(d)). ** KEPT: 4295 (4213,6,5,63) P(g(c),f(f(c,a),f(b,g(a))),d). ** KEPT: 4296 (4213,6,5,42) P(g(c),f(f(c,a),f(b,g(c))),e). ** KEPT: 4297 (4213,6,5,41) P(g(c),f(f(c,a),f(b,x)),f(c,x)). ** KEPT: 4298 (4213,6,5,39) P(g(c),f(f(c,a),c),f(f(a,a),b)). ** KEPT: 4299 (4213,6,5,5) P(g(c),f(f(c,a),x),f(a,x)). ** KEPT: 4300 (4213,6,4,5) P(g(c),e,f(a,g(f(c,a)))). >>>> Starting back demodulation with: 4265 (4264) EQUAL(f(g(c),f(c,a)),a). new given clause: 60 (21,7,3,5) P(e,g(a),f(g(c),d)). ** KEPT: 4301 (60,7,5,5,28) P(f(g(c),d),x,f(g(a),x)). ** KEPT: 4302 (60,6,457,5) P(h,f(f(g(d),k),g(a)),f(g(c),d)). ** KEPT: 4303 (60,6,389,5) P(f(h,g(d)),f(k,g(a)),f(g(c),d)). ** KEPT: 4304 (60,6,362,5) P(b,f(f(g(d),h),g(a)),f(g(c),d)). ** KEPT: 4305 (60,6,345,5) P(a,f(f(g(c),d),g(a)),f(g(c),d)). ** KEPT: 4306 (60,6,331,5) P(b,f(f(g(c),a),g(a)),f(g(c),d)). ** KEPT: 4307 (60,6,273,5) P(f(b,g(d)),f(h,g(a)),f(g(c),d)). ** KEPT: 4308 (60,6,212,5) P(f(a,g(c)),f(d,g(a)),f(g(c),d)). ** KEPT: 4309 (60,6,190,5) P(k,f(f(h,g(d)),g(a)),f(g(c),d)). ** KEPT: 4310 (60,6,182,5) P(f(g(d),k),f(h,g(a)),f(g(c),d)). ** KEPT: 4311 (60,6,104,5) P(h,f(f(b,g(d)),g(a)),f(g(c),d)). ** KEPT: 4312 (60,6,97,5) P(f(g(d),h),f(b,g(a)),f(g(c),d)). ** KEPT: 4313 (60,6,80,5) P(d,f(f(a,g(c)),g(a)),f(g(c),d)). ** KEPT: 4314 (60,6,42,5) P(a,f(f(b,g(c)),g(a)),f(g(c),d)). ** KEPT: 4315 (60,6,4,5) P(x,f(g(x),g(a)),f(g(c),d)). ** KEPT: 4316 (60,6,3,2897,31) P(g(f(c,a)),c,f(g(c),d)). ** KEPT: 4317 (60,6,3,1034) P(g(f(h,a)),h,f(g(c),d)). ** KEPT: 4318 (60,6,3,817) P(g(f(b,a)),b,f(g(c),d)). ** KEPT: 4319 (60,6,3,5) P(g(x),f(x,g(a)),f(g(c),d)). ** KEPT: 4320 (60,6,5,5,27) P(x,f(g(c),d),f(x,g(a))). ** KEPT: 4321 (60,6,5,5) P(e,f(g(a),x),f(f(g(c),d),x)). 4319 back subsumes: 489 (63,7,117,5) P(g(b),f(b,g(a)),f(g(c),d)). 4320 back subsumes: 1901 (676,7,345,5,27) P(h,f(g(c),d),f(h,g(a))). new given clause: 67 (21,6,5,4) P(c,f(g(a),g(d)),e). ** KEPT: 4322 (67,8,37) EQUAL(f(a,f(b,f(g(a),g(d)))),e). ---> New Demodulator: 4323 (4322) EQUAL(f(a,f(b,f(g(a),g(d)))),e). ** KEPT: 4324 (67,8,5) EQUAL(f(c,f(g(a),g(d))),e). ---> New Demodulator: 4325 (4324) EQUAL(f(c,f(g(a),g(d))),e). ** KEPT: 4326 (67,7,1405,5,27) P(b,f(g(a),g(d)),f(b,g(c))). ** KEPT: 4327 (67,7,1379,5,27) P(d,f(g(a),g(d)),f(d,g(c))). ** KEPT: 4328 (67,7,1094,5,27) P(a,f(g(a),g(d)),f(a,g(c))). ** KEPT: 4329 (67,7,528,5,27) P(b,f(g(a),g(d)),f(g(c),d)). ** KEPT: 4330 (67,7,123,5,27) P(d,f(g(a),g(d)),f(h,g(a))). ** KEPT: 4331 (67,7,78,5,27) P(f(c,b),f(g(a),g(d)),d). ** KEPT: 4332 (67,7,77,5,27) P(a,f(g(a),g(d)),g(d)). ** KEPT: 4333 (67,7,40,5,27) P(b,f(g(a),g(d)),g(a)). ** KEPT: 4334 (67,7,39,2897,26,27) P(f(f(c,a),b),f(g(a),g(d)),c). ** KEPT: 4335 (67,7,39,5,27) P(f(f(x,a),b),f(g(a),g(d)),x). ** KEPT: 4336 (67,7,37,37,27,33) P(f(a,f(b,c)),f(g(a),g(d)),c). ** KEPT: 4337 (67,7,5,2897,26,27) P(f(c,c),f(g(a),g(d)),c). ** KEPT: 4338 (67,7,5,5,27) P(f(x,c),f(g(a),g(d)),x). ** KEPT: 4339 (67,7,3824,39) P(e,f(g(f(g(a),g(d))),c),f(f(c,a),b)). ** KEPT: 4340 (67,7,3824,37) P(e,f(g(f(g(a),g(d))),c),f(a,f(b,c))). ** KEPT: 4341 (67,7,3824,5) P(e,f(g(f(g(a),g(d))),c),f(c,c)). ** KEPT: 4342 (67,7,39,37) P(e,c,f(a,f(b,f(f(f(g(a),g(d)),a),b)))). ** KEPT: 4343 (67,7,39,5) P(e,c,f(c,f(f(f(g(a),g(d)),a),b))). ** KEPT: 4344 (67,7,5,37) P(e,x,f(a,f(b,f(f(g(a),g(d)),x)))). ** KEPT: 4345 (67,7,5,5) P(e,x,f(c,f(f(g(a),g(d)),x))). ** KEPT: 4346 (67,7,4,37,27,33) P(e,g(f(g(a),g(d))),c). ** KEPT: 4347 (67,6,3826,5) P(g(x),f(f(x,c),f(g(a),g(d))),e). ** KEPT: 4348 (67,6,3824,5) P(x,f(f(g(x),c),f(g(a),g(d))),e). ** KEPT: 4349 (67,6,2897,2897) P(f(c,g(f(c,g(f(g(a),g(d)))))),c,e). ** KEPT: 4350 (67,6,2897,5) P(f(c,g(x)),f(x,f(g(a),g(d))),e). ** KEPT: 4351 (67,6,2896,5) P(f(c,x),f(g(x),f(g(a),g(d))),e). ** KEPT: 4352 (67,6,187,5) P(k,f(f(h,a),f(g(a),g(d))),e). ** KEPT: 4353 (67,6,149,5) P(f(a,g(h)),f(d,f(g(a),g(d))),e). ** KEPT: 4354 (67,6,143,5) P(g(d),f(f(c,b),f(g(a),g(d))),e). ** KEPT: 4355 (67,6,110,5) P(f(d,c),f(g(b),f(g(a),g(d))),e). ** KEPT: 4356 (67,6,102,5) P(h,f(f(b,a),f(g(a),g(d))),e). ** KEPT: 4357 (67,6,62,5) P(d,f(a,f(g(a),g(d))),e). ** KEPT: 4358 (67,6,20,5) P(a,f(b,f(g(a),g(d))),e). ** KEPT: 4359 (67,6,1405,5) P(f(b,g(c)),e,f(b,f(g(a),g(d)))). ** KEPT: 4360 (67,6,1379,5) P(f(d,g(c)),e,f(d,f(g(a),g(d)))). ** KEPT: 4361 (67,6,1094,5) P(f(a,g(c)),e,f(a,f(g(a),g(d)))). ** KEPT: 4362 (67,6,528,5) P(f(g(c),d),e,f(b,f(g(a),g(d)))). ** KEPT: 4363 (67,6,202,5) P(g(k),e,f(f(h,a),f(g(a),g(d)))). ** KEPT: 4364 (67,6,156,5) P(g(h),e,f(f(b,a),f(g(a),g(d)))). ** KEPT: 4365 (67,6,123,5) P(f(h,g(a)),e,f(d,f(g(a),g(d)))). ** KEPT: 4366 (67,6,78,5) P(d,e,f(f(c,b),f(g(a),g(d)))). ** KEPT: 4367 (67,6,77,5) P(g(d),e,f(a,f(g(a),g(d)))). ** KEPT: 4368 (67,6,40,5) P(g(a),e,f(b,f(g(a),g(d)))). ** KEPT: 4369 (67,6,39,5) P(x,e,f(f(f(x,a),b),f(g(a),g(d)))). ** KEPT: 4370 (67,6,37,5) P(c,e,f(f(a,f(b,c)),f(g(a),g(d)))). ** KEPT: 4371 (67,6,5,5) P(x,e,f(f(x,c),f(g(a),g(d)))). ** KEPT: 4372 (67,6,3824,5,28) P(c,c,f(g(f(g(a),g(d))),c)). ** KEPT: 4373 (67,6,39,39,28,33) P(c,f(f(f(g(a),g(d)),a),b),c). ** KEPT: 4374 (67,6,5,3824,26,28) P(c,f(f(g(a),g(d)),c),c). ** KEPT: 4375 (67,6,5,60) P(c,f(f(g(a),g(d)),g(a)),f(g(c),d)). ** KEPT: 4376 (67,6,5,5,28) P(c,f(f(g(a),g(d)),x),x). ** KEPT: 4377 (67,6,4,5,28) P(c,e,g(f(g(a),g(d)))). >>>> Starting back demodulation with: 4323 (4322) EQUAL(f(a,f(b,f(g(a),g(d)))),e). >>>> Starting back demodulation with: 4325 (4324) EQUAL(f(c,f(g(a),g(d))),e). 4335 back subsumes: 4334 (67,7,39,2897,26,27) P(f(f(c,a),b),f(g(a),g(d)),c). 4338 back subsumes: 4337 (67,7,5,2897,26,27) P(f(c,c),f(g(a),g(d)),c). 4376 back subsumes: 4374 (67,6,5,3824,26,28) P(c,f(f(g(a),g(d)),c),c). new given clause: 71 (62,7,5,5) P(f(x,d),a,f(x,c)). ** KEPT: 4378 (71,8,5) EQUAL(f(f(x,d),a),f(x,c)). ** KEPT: 4379 (71,7,39,1454) P(f(f(f(x,d),a),b),f(g(c),a),f(x,c)). ** KEPT: 4380 (71,7,39,1237) P(f(f(f(x,d),a),b),f(g(d),h),f(x,c)). ** KEPT: 4381 (71,7,39,38) P(f(f(f(x,d),a),b),g(b),f(x,c)). ** KEPT: 4382 (71,7,5,4213) P(f(f(x,d),g(c)),f(c,a),f(x,c)). ** KEPT: 4383 (71,7,5,1454) P(f(f(x,d),c),f(g(c),a),f(x,c)). ** KEPT: 4384 (71,7,5,1237) P(f(f(x,d),c),f(g(d),h),f(x,c)). ** KEPT: 4385 (71,7,5,1094) P(f(f(x,d),f(a,g(c))),c,f(x,c)). ** KEPT: 4386 (71,7,5,760) P(f(f(x,d),f(a,g(h))),h,f(x,c)). ** KEPT: 4387 (71,7,5,426) P(f(f(x,d),g(h)),f(h,a),f(x,c)). ** KEPT: 4388 (71,7,5,284) P(f(f(x,d),g(b)),f(b,a),f(x,c)). ** KEPT: 4389 (71,7,5,271) P(f(f(x,d),f(c,g(d))),h,f(x,c)). ** KEPT: 4390 (71,7,5,135) P(f(f(x,d),f(g(d),a)),b,f(x,c)). ** KEPT: 4391 (71,7,5,115) P(f(f(x,d),d),f(a,g(b)),f(x,c)). ** KEPT: 4392 (71,7,5,77) P(f(f(x,d),g(d)),c,f(x,c)). ** KEPT: 4393 (71,7,5,38) P(f(f(x,d),c),g(b),f(x,c)). ** KEPT: 4394 (71,7,5,2) P(f(f(x,d),a),e,f(x,c)). ** KEPT: 4395 (71,7,2897,5) P(c,a,f(f(c,g(f(x,d))),f(x,c))). ** KEPT: 4396 (71,7,398,5) P(b,a,f(g(d),f(k,c))). ** KEPT: 4397 (71,7,37,37) P(f(a,f(b,f(x,d))),a,f(a,f(b,f(x,c)))). ** KEPT: 4398 (71,7,37,5) P(f(a,f(b,f(x,d))),a,f(c,f(x,c))). ** KEPT: 4399 (71,7,5,3826) P(f(g(x),f(x,d)),a,c). ** KEPT: 4400 (71,7,5,3824) P(f(x,f(g(x),d)),a,c). ** KEPT: 4401 (71,7,5,2897) P(f(f(c,g(f(x,c))),f(x,d)),a,c). ** KEPT: 4402 (71,7,5,222) P(f(g(c),f(d,d)),a,b). ** KEPT: 4403 (71,7,5,37) P(f(c,f(x,d)),a,f(a,f(b,f(x,c)))). ** KEPT: 4404 (71,7,5,5) P(f(x,f(y,d)),a,f(x,f(y,c))). ** KEPT: 4405 (71,7,5,3) P(f(g(f(x,c)),f(x,d)),a,e). ** KEPT: 4406 (71,7,3,5) P(e,a,f(g(f(x,d)),f(x,c))). ** KEPT: 4407 (71,7,3824,39,121) P(f(x,c),b,f(f(f(x,d),a),b)). ** KEPT: 4408 (71,7,3824,5,121) P(f(x,c),b,f(f(x,d),c)). ** KEPT: 4409 (71,7,140,409) P(f(k,c),g(c),k). ** KEPT: 4410 (71,7,140,5) P(f(x,c),g(c),f(f(x,d),g(d))). ** KEPT: 4411 (71,7,63,5) P(f(x,c),f(b,g(a)),f(f(x,d),d)). ** KEPT: 4412 (71,7,41,5) P(f(x,c),f(b,y),f(f(x,d),f(c,y))). ** KEPT: 4413 (71,7,39,5) P(f(x,c),c,f(f(x,d),f(f(a,a),b))). ** KEPT: 4414 (71,7,5,5) P(f(x,c),y,f(f(x,d),f(a,y))). ** KEPT: 4415 (71,7,2,5) P(f(x,c),e,f(f(x,d),a)). ** KEPT: 4416 (71,6,41,5) P(a,f(f(b,d),a),f(c,c)). ** KEPT: 4417 (71,6,1,5) P(e,f(f(x,d),a),f(x,c)). ** KEPT: 4418 (71,6,2897,37) P(f(c,g(f(x,d))),f(x,c),f(a,f(b,a))). ** KEPT: 4419 (71,6,2897,5) P(f(c,g(f(x,d))),f(x,c),f(c,a)). ** KEPT: 4420 (71,6,41,5) P(a,f(b,c),f(f(c,d),a)). ** KEPT: 4421 (71,6,37,5) P(c,f(x,c),f(f(a,f(b,f(x,d))),a)). ** KEPT: 4422 (71,6,5,5) P(x,f(y,c),f(f(x,f(y,d)),a)). ** KEPT: 4423 (71,6,3,5,28) P(g(f(x,d)),f(x,c),a). ** KEPT: 4424 (71,6,1,5) P(e,f(x,c),f(f(x,d),a)). ** KEPT: 4425 (71,6,3824,5,121) P(f(x,d),c,f(f(x,c),b)). ** KEPT: 4426 (71,6,345,5) P(f(x,d),e,f(f(x,c),f(g(c),d))). ** KEPT: 4427 (71,6,140,2552) P(f(b,d),g(d),b). ** KEPT: 4428 (71,6,140,2551) P(f(h,d),g(d),h). ** KEPT: 4429 (71,6,140,320) P(f(d,d),g(d),d). ** KEPT: 4430 (71,6,140,5) P(f(x,d),g(d),f(f(x,c),g(c))). ** KEPT: 4431 (71,6,63,5) P(f(x,d),d,f(f(x,c),f(b,g(a)))). ** KEPT: 4432 (71,6,42,5) P(f(x,d),e,f(f(x,c),f(b,g(c)))). ** KEPT: 4433 (71,6,41,5) P(f(x,d),f(c,y),f(f(x,c),f(b,y))). ** KEPT: 4434 (71,6,39,39) P(f(x,d),f(f(a,a),b),f(f(f(x,c),a),b)). ** KEPT: 4435 (71,6,39,5) P(f(x,d),f(f(a,a),b),f(f(x,c),c)). ** KEPT: 4436 (71,6,5,3824) P(f(x,d),f(a,f(g(f(x,c)),c)),c). ** KEPT: 4437 (71,6,5,39) P(f(x,d),f(a,c),f(f(f(x,c),a),b)). ** KEPT: 4438 (71,6,5,5) P(f(x,d),f(a,y),f(f(x,c),y)). ** KEPT: 4439 (71,6,5,4) P(f(x,d),f(a,g(f(x,c))),e). ** KEPT: 4440 (71,6,4,5) P(f(x,d),e,f(f(x,c),g(a))). 4400 back subsumes: 635 (122,7,5,20) P(f(a,f(g(a),d)),a,c). 4404 back subsumes: 2806 (37,7,37,62) P(f(a,f(b,d)),a,f(a,f(b,c))). new given clause: 4409 (71,7,140,409) P(f(k,c),g(c),k). ** KEPT: 4441 (4409,8,5) EQUAL(f(f(k,c),g(c)),k). ---> New Demodulator: 4442 (4441) EQUAL(f(f(k,c),g(c)),k). ** KEPT: 4443 (4409,7,5,311) P(f(f(k,c),g(b)),g(a),k). ** KEPT: 4444 (4409,7,5,216) P(f(f(k,c),g(a)),g(d),k). ** KEPT: 4445 (4409,7,2897,5) P(c,g(c),f(f(c,g(f(k,c))),k)). ** KEPT: 4446 (4409,7,37,37) P(f(a,f(b,f(k,c))),g(c),f(a,f(b,k))). ** KEPT: 4447 (4409,7,37,5) P(f(a,f(b,f(k,c))),g(c),f(c,k)). ** KEPT: 4448 (4409,7,5,2897) P(f(f(c,g(k)),f(k,c)),g(c),c). ** KEPT: 4449 (4409,7,5,389) P(f(f(h,g(d)),f(k,c)),g(c),e). ** KEPT: 4450 (4409,7,5,172) P(f(g(d),f(k,c)),g(c),g(h)). ** KEPT: 4451 (4409,7,5,37) P(f(c,f(k,c)),g(c),f(a,f(b,k))). ** KEPT: 4452 (4409,7,5,5) P(f(x,f(k,c)),g(c),f(x,k)). ** KEPT: 4453 (4409,7,3,5) P(e,g(c),f(g(f(k,c)),k)). ** KEPT: 4454 (4409,7,4213,5) P(k,f(c,a),f(f(k,c),a)). ** KEPT: 4455 (4409,7,3826,5) P(k,f(c,c),f(f(k,c),c)). ** KEPT: 4456 (4409,7,260,5) P(k,f(c,b),f(f(k,c),b)). ** KEPT: 4457 (4409,7,5,5) P(k,x,f(f(k,c),f(g(c),x))). ** KEPT: 4458 (4409,6,34,128) P(f(k,a),g(a),k). ** KEPT: 4459 (4409,6,2897,37,473) P(f(c,g(f(k,c))),k,e). ** KEPT: 4460 (4409,6,37,5) P(c,k,f(f(a,f(b,f(k,c))),g(c))). ** KEPT: 4461 (4409,6,5,5) P(x,k,f(f(x,f(k,c)),g(c))). ** KEPT: 4462 (4409,6,3,5,28) P(g(f(k,c)),k,g(c)). ** KEPT: 4463 (4409,6,4213,5) P(f(k,c),a,f(k,f(c,a))). ** KEPT: 4464 (4409,6,3826,5) P(f(k,c),c,f(k,f(c,c))). ** KEPT: 4465 (4409,6,260,5) P(f(k,c),b,f(k,f(c,b))). ** KEPT: 4466 (4409,6,5,3824) P(f(k,c),f(g(c),f(g(k),c)),c). ** KEPT: 4467 (4409,6,5,190) P(f(k,c),f(g(c),f(h,g(d))),e). ** KEPT: 4468 (4409,6,5,188) P(f(k,c),f(g(c),f(h,g(b))),h). ** KEPT: 4469 (4409,6,5,187) P(f(k,c),f(g(c),f(h,a)),c). ** KEPT: 4470 (4409,6,5,167) P(f(k,c),f(g(c),h),d). ** KEPT: 4471 (4409,6,5,5) P(f(k,c),f(g(c),x),f(k,x)). ** KEPT: 4472 (4409,6,5,4) P(f(k,c),f(g(c),g(k)),e). >>>> Starting back demodulation with: 4442 (4441) EQUAL(f(f(k,c),g(c)),k). new given clause: 4427 (71,6,140,2552) P(f(b,d),g(d),b). ** KEPT: 4473 (4427,8,5) EQUAL(f(f(b,d),g(d)),b). ---> New Demodulator: 4474 (4473) EQUAL(f(f(b,d),g(d)),b). ** KEPT: 4475 (4427,7,5,392) P(f(f(b,d),g(h)),g(k),b). ** KEPT: 4476 (4427,7,5,275) P(f(f(b,d),g(b)),g(h),b). ** KEPT: 4477 (4427,7,5,140) P(f(f(b,d),a),g(c),b). ** KEPT: 4478 (4427,7,2897,5) P(c,g(d),f(f(c,g(f(b,d))),b)). ** KEPT: 4479 (4427,7,37,74) P(f(a,f(b,f(b,d))),g(d),f(d,c)). ** KEPT: 4480 (4427,7,37,37) P(f(a,f(b,f(b,d))),g(d),f(a,f(b,b))). ** KEPT: 4481 (4427,7,37,5) P(f(a,f(b,f(b,d))),g(d),f(c,b)). ** KEPT: 4482 (4427,7,5,193) P(f(f(g(k),h),f(b,d)),g(d),h). ** KEPT: 4483 (4427,7,5,173) P(f(d,f(b,d)),g(d),f(k,d)). ** KEPT: 4484 (4427,7,5,135) P(f(f(g(d),a),f(b,d)),g(d),a). ** KEPT: 4485 (4427,7,5,97) P(f(f(g(d),h),f(b,d)),g(d),e). ** KEPT: 4486 (4427,7,5,87) P(f(h,f(b,d)),g(d),d). ** KEPT: 4487 (4427,7,5,74) P(f(c,f(b,d)),g(d),f(d,c)). ** KEPT: 4488 (4427,7,5,37) P(f(c,f(b,d)),g(d),f(a,f(b,b))). ** KEPT: 4489 (4427,7,5,35) P(f(f(g(c),a),f(b,d)),g(d),e). ** KEPT: 4490 (4427,7,5,34) P(f(f(x,a),f(b,d)),g(d),f(x,c)). ** KEPT: 4491 (4427,7,5,5) P(f(x,f(b,d)),g(d),f(x,b)). ** KEPT: 4492 (4427,7,5,3) P(f(g(b),f(b,d)),g(d),e). ** KEPT: 4493 (4427,7,3,5) P(e,g(d),f(g(f(b,d)),b)). ** KEPT: 4494 (4427,7,3826,5) P(b,f(d,c),f(f(b,d),c)). ** KEPT: 4495 (4427,7,397,5) P(b,f(d,b),f(f(b,d),b)). ** KEPT: 4496 (4427,7,5,5) P(b,x,f(f(b,d),f(g(d),x))). ** KEPT: 4497 (4427,6,2897,37) P(f(c,g(f(b,d))),b,f(a,f(b,g(d)))). ** KEPT: 4498 (4427,6,2897,5) P(f(c,g(f(b,d))),b,f(c,g(d))). ** KEPT: 4499 (4427,6,37,5) P(c,b,f(f(a,f(b,f(b,d))),g(d))). ** KEPT: 4500 (4427,6,5,5) P(x,b,f(f(x,f(b,d)),g(d))). ** KEPT: 4501 (4427,6,3,5,28) P(g(f(b,d)),b,g(d)). ** KEPT: 4502 (4427,6,3826,5) P(f(b,d),c,f(b,f(d,c))). ** KEPT: 4503 (4427,6,397,5) P(f(b,d),b,f(b,f(d,b))). ** KEPT: 4504 (4427,6,5,3824) P(f(b,d),f(g(d),f(g(b),c)),c). ** KEPT: 4505 (4427,6,5,362) P(f(b,d),f(g(d),f(g(d),h)),e). ** KEPT: 4506 (4427,6,5,331) P(f(b,d),f(g(d),f(g(c),a)),e). ** KEPT: 4507 (4427,6,5,154) P(f(b,d),f(g(d),g(d)),g(h)). ** KEPT: 4508 (4427,6,5,152) P(f(b,d),f(g(d),a),f(g(h),c)). ** KEPT: 4509 (4427,6,5,128) P(f(b,d),f(g(d),g(c)),g(a)). ** KEPT: 4510 (4427,6,5,5) P(f(b,d),f(g(d),x),f(b,x)). ** KEPT: 4511 (4427,6,5,4) P(f(b,d),f(g(d),g(b)),e). >>>> Starting back demodulation with: 4474 (4473) EQUAL(f(f(b,d),g(d)),b). new given clause: 4428 (71,6,140,2551) P(f(h,d),g(d),h). ** KEPT: 4512 (4428,8,5) EQUAL(f(f(h,d),g(d)),h). ---> New Demodulator: 4513 (4512) EQUAL(f(f(h,d),g(d)),h). ** KEPT: 4514 (4428,7,5,392) P(f(f(h,d),g(h)),g(k),h). ** KEPT: 4515 (4428,7,5,275) P(f(f(h,d),g(b)),g(h),h). ** KEPT: 4516 (4428,7,5,140) P(f(f(h,d),a),g(c),h). ** KEPT: 4517 (4428,7,2897,5) P(c,g(d),f(f(c,g(f(h,d))),h)). ** KEPT: 4518 (4428,7,37,37) P(f(a,f(b,f(h,d))),g(d),f(a,f(b,h))). ** KEPT: 4519 (4428,7,37,5) P(f(a,f(b,f(h,d))),g(d),f(c,h)). ** KEPT: 4520 (4428,7,5,2897) P(f(f(c,g(h)),f(h,d)),g(d),c). ** KEPT: 4521 (4428,7,5,760) P(f(f(a,g(h)),f(h,d)),g(d),a). ** KEPT: 4522 (4428,7,5,273) P(f(f(b,g(d)),f(h,d)),g(d),e). ** KEPT: 4523 (4428,7,5,271) P(f(f(c,g(d)),f(h,d)),g(d),a). ** KEPT: 4524 (4428,7,5,182) P(f(f(g(d),k),f(h,d)),g(d),e). ** KEPT: 4525 (4428,7,5,180) P(f(f(g(h),k),f(h,d)),g(d),b). ** KEPT: 4526 (4428,7,5,167) P(f(k,f(h,d)),g(d),d). ** KEPT: 4527 (4428,7,5,90) P(f(g(d),f(h,d)),g(d),g(b)). ** KEPT: 4528 (4428,7,5,37) P(f(c,f(h,d)),g(d),f(a,f(b,h))). ** KEPT: 4529 (4428,7,5,5) P(f(x,f(h,d)),g(d),f(x,h)). ** KEPT: 4530 (4428,7,5,3) P(f(g(h),f(h,d)),g(d),e). ** KEPT: 4531 (4428,7,3,5) P(e,g(d),f(g(f(h,d)),h)). ** KEPT: 4532 (4428,7,3826,5) P(h,f(d,c),f(f(h,d),c)). ** KEPT: 4533 (4428,7,397,5) P(h,f(d,b),f(f(h,d),b)). ** KEPT: 4534 (4428,7,5,5) P(h,x,f(f(h,d),f(g(d),x))). ** KEPT: 4535 (4428,6,2897,37) P(f(c,g(f(h,d))),h,f(a,f(b,g(d)))). ** KEPT: 4536 (4428,6,2897,5) P(f(c,g(f(h,d))),h,f(c,g(d))). ** KEPT: 4537 (4428,6,37,5) P(c,h,f(f(a,f(b,f(h,d))),g(d))). ** KEPT: 4538 (4428,6,5,5) P(x,h,f(f(x,f(h,d)),g(d))). ** KEPT: 4539 (4428,6,3,5,28) P(g(f(h,d)),h,g(d)). ** KEPT: 4540 (4428,6,3826,5) P(f(h,d),c,f(h,f(d,c))). ** KEPT: 4541 (4428,6,397,5) P(f(h,d),b,f(h,f(d,b))). ** KEPT: 4542 (4428,6,5,3824) P(f(h,d),f(g(d),f(g(h),c)),c). ** KEPT: 4543 (4428,6,5,457) P(f(h,d),f(g(d),f(g(d),k)),e). ** KEPT: 4544 (4428,6,5,200) P(f(h,d),f(g(d),g(d)),g(k)). ** KEPT: 4545 (4428,6,5,197) P(f(h,d),f(g(d),a),f(g(k),c)). ** KEPT: 4546 (4428,6,5,168) P(f(h,d),f(g(d),f(b,g(h))),k). ** KEPT: 4547 (4428,6,5,104) P(f(h,d),f(g(d),f(b,g(d))),e). ** KEPT: 4548 (4428,6,5,102) P(f(h,d),f(g(d),f(b,a)),c). ** KEPT: 4549 (4428,6,5,87) P(f(h,d),f(g(d),b),d). ** KEPT: 4550 (4428,6,5,5) P(f(h,d),f(g(d),x),f(h,x)). ** KEPT: 4551 (4428,6,5,4) P(f(h,d),f(g(d),g(h)),e). >>>> Starting back demodulation with: 4513 (4512) EQUAL(f(f(h,d),g(d)),h). new given clause: 4429 (71,6,140,320) P(f(d,d),g(d),d). ** KEPT: 4552 (4429,8,5) EQUAL(f(f(d,d),g(d)),d). ---> New Demodulator: 4553 (4552) EQUAL(f(f(d,d),g(d)),d). ** KEPT: 4554 (4429,7,5,392) P(f(f(d,d),g(h)),g(k),d). ** KEPT: 4555 (4429,7,5,275) P(f(f(d,d),g(b)),g(h),d). ** KEPT: 4556 (4429,7,5,140) P(f(f(d,d),a),g(c),d). ** KEPT: 4557 (4429,7,2897,5) P(c,g(d),f(f(c,g(f(d,d))),d)). ** KEPT: 4558 (4429,7,37,37) P(f(a,f(b,f(d,d))),g(d),f(a,f(b,d))). ** KEPT: 4559 (4429,7,37,5) P(f(a,f(b,f(d,d))),g(d),f(c,d)). ** KEPT: 4560 (4429,7,5,2897) P(f(f(c,g(d)),f(d,d)),g(d),c). ** KEPT: 4561 (4429,7,5,1600) P(f(f(h,g(d)),f(d,d)),g(d),h). ** KEPT: 4562 (4429,7,5,1270) P(f(f(b,g(d)),f(d,d)),g(d),b). ** KEPT: 4563 (4429,7,5,922) P(f(f(g(d),k),f(d,d)),g(d),b). ** KEPT: 4564 (4429,7,5,212) P(f(f(a,g(c)),f(d,d)),g(d),e). ** KEPT: 4565 (4429,7,5,186) P(f(g(k),f(d,d)),g(d),h). ** KEPT: 4566 (4429,7,5,165) P(f(k,f(d,d)),g(d),f(d,b)). ** KEPT: 4567 (4429,7,5,149) P(f(f(a,g(h)),f(d,d)),g(d),c). ** KEPT: 4568 (4429,7,5,101) P(f(g(h),f(d,d)),g(d),b). ** KEPT: 4569 (4429,7,5,65) P(f(g(c),f(d,d)),g(d),g(a)). ** KEPT: 4570 (4429,7,5,37) P(f(c,f(d,d)),g(d),f(a,f(b,d))). ** KEPT: 4571 (4429,7,5,5) P(f(x,f(d,d)),g(d),f(x,d)). ** KEPT: 4572 (4429,7,5,3) P(f(g(d),f(d,d)),g(d),e). ** KEPT: 4573 (4429,7,3,5) P(e,g(d),f(g(f(d,d)),d)). ** KEPT: 4574 (4429,7,3826,5) P(d,f(d,c),f(f(d,d),c)). ** KEPT: 4575 (4429,7,397,5) P(d,f(d,b),f(f(d,d),b)). ** KEPT: 4576 (4429,7,5,5) P(d,x,f(f(d,d),f(g(d),x))). ** KEPT: 4577 (4429,6,2897,37) P(f(c,g(f(d,d))),d,f(a,f(b,g(d)))). ** KEPT: 4578 (4429,6,2897,5) P(f(c,g(f(d,d))),d,f(c,g(d))). ** KEPT: 4579 (4429,6,37,5) P(c,d,f(f(a,f(b,f(d,d))),g(d))). ** KEPT: 4580 (4429,6,5,5) P(x,d,f(f(x,f(d,d)),g(d))). ** KEPT: 4581 (4429,6,3,5,28) P(g(f(d,d)),d,g(d)). ** KEPT: 4582 (4429,6,3826,5) P(f(d,d),c,f(d,f(d,c))). ** KEPT: 4583 (4429,6,397,5) P(f(d,d),b,f(d,f(d,b))). ** KEPT: 4584 (4429,6,5,3824,134) P(f(d,d),f(g(d),a),c). ** KEPT: 4585 (4429,6,5,1769) P(f(d,d),f(g(d),f(g(d),k)),k). ** KEPT: 4586 (4429,6,5,1529) P(f(d,d),f(g(d),f(g(d),h)),h). ** KEPT: 4587 (4429,6,5,1373) P(f(d,d),f(g(d),f(g(c),a)),h). ** KEPT: 4588 (4429,6,5,566) P(f(d,d),f(g(d),f(b,g(d))),k). ** KEPT: 4589 (4429,6,5,173) P(f(d,d),f(g(d),b),f(k,d)). ** KEPT: 4590 (4429,6,5,115) P(f(d,d),f(g(d),f(a,g(b))),a). ** KEPT: 4591 (4429,6,5,105) P(f(d,d),f(g(d),g(h)),k). ** KEPT: 4592 (4429,6,5,80) P(f(d,d),f(g(d),f(a,g(c))),e). ** KEPT: 4593 (4429,6,5,22) P(f(d,d),f(g(d),g(b)),h). ** KEPT: 4594 (4429,6,5,5) P(f(d,d),f(g(d),x),f(d,x)). ** KEPT: 4595 (4429,6,5,4) P(f(d,d),f(g(d),g(d)),e). >>>> Starting back demodulation with: 4553 (4552) EQUAL(f(f(d,d),g(d)),d). new given clause: 4458 (4409,6,34,128) P(f(k,a),g(a),k). ** KEPT: 4596 (4458,8,5) EQUAL(f(f(k,a),g(a)),k). ---> New Demodulator: 4597 (4596) EQUAL(f(f(k,a),g(a)),k). ** KEPT: 4598 (4458,7,5,65) P(f(f(k,a),g(c)),d,k). ** KEPT: 4599 (4458,7,2897,5) P(c,g(a),f(f(c,g(f(k,a))),k)). ** KEPT: 4600 (4458,7,37,37) P(f(a,f(b,f(k,a))),g(a),f(a,f(b,k))). ** KEPT: 4601 (4458,7,37,5) P(f(a,f(b,f(k,a))),g(a),f(c,k)). ** KEPT: 4602 (4458,7,5,2897) P(f(f(c,g(k)),f(k,a)),g(a),c). ** KEPT: 4603 (4458,7,5,389) P(f(f(h,g(d)),f(k,a)),g(a),e). ** KEPT: 4604 (4458,7,5,172) P(f(g(d),f(k,a)),g(a),g(h)). ** KEPT: 4605 (4458,7,5,37) P(f(c,f(k,a)),g(a),f(a,f(b,k))). ** KEPT: 4606 (4458,7,5,5) P(f(x,f(k,a)),g(a),f(x,k)). ** KEPT: 4607 (4458,7,5,3) P(f(g(k),f(k,a)),g(a),e). ** KEPT: 4608 (4458,7,3,5) P(e,g(a),f(g(f(k,a)),k)). ** KEPT: 4609 (4458,7,3826,5) P(k,f(a,c),f(f(k,a),c)). ** KEPT: 4610 (4458,7,5,5) P(k,x,f(f(k,a),f(g(a),x))). ** KEPT: 4611 (4458,6,2897,37,487) P(f(c,g(f(k,a))),k,d). ** KEPT: 4612 (4458,6,37,5) P(c,k,f(f(a,f(b,f(k,a))),g(a))). ** KEPT: 4613 (4458,6,5,5) P(x,k,f(f(x,f(k,a)),g(a))). ** KEPT: 4614 (4458,6,3,60) P(g(f(k,a)),k,f(g(c),d)). ** KEPT: 4615 (4458,6,3,5,28) P(g(f(k,a)),k,g(a)). ** KEPT: 4616 (4458,6,3826,5) P(f(k,a),c,f(k,f(a,c))). ** KEPT: 4617 (4458,6,5,3824) P(f(k,a),f(g(a),f(g(k),c)),c). ** KEPT: 4618 (4458,6,5,190) P(f(k,a),f(g(a),f(h,g(d))),e). ** KEPT: 4619 (4458,6,5,188) P(f(k,a),f(g(a),f(h,g(b))),h). ** KEPT: 4620 (4458,6,5,187) P(f(k,a),f(g(a),f(h,a)),c). ** KEPT: 4621 (4458,6,5,167) P(f(k,a),f(g(a),h),d). ** KEPT: 4622 (4458,6,5,165) P(f(k,a),f(g(a),d),f(d,b)). ** KEPT: 4623 (4458,6,5,5) P(f(k,a),f(g(a),x),f(k,x)). ** KEPT: 4624 (4458,6,5,4) P(f(k,a),f(g(a),g(k)),e). >>>> Starting back demodulation with: 4597 (4596) EQUAL(f(f(k,a),g(a)),k). new given clause: 75 (62,7,5,5) P(c,x,f(d,f(a,x))). ** KEPT: 4625 (75,19) P(f(d,f(a,c)),c,e). ** KEPT: 4626 (75,18) P(c,f(d,f(a,c)),e). ** KEPT: 4627 (75,13,444) P(c,g(k),f(d,f(a,f(h,g(d))))). ** KEPT: 4628 (75,13,386) P(c,g(h),f(d,f(a,f(g(d),k)))). ** KEPT: 4629 (75,13,363) P(c,f(d,b),f(d,f(a,f(k,d)))). ** KEPT: 4630 (75,13,346) P(c,g(h),f(d,f(a,f(b,g(d))))). ** KEPT: 4631 (75,13,332) P(c,g(d),f(d,f(a,f(a,g(c))))). ** KEPT: 4632 (75,13,304) P(c,g(b),f(d,f(a,f(g(c),a)))). ** KEPT: 4633 (75,13,268) P(c,g(b),f(d,f(a,f(g(d),h)))). ** KEPT: 4634 (75,13,225) P(c,f(c,b),f(d,f(a,f(d,c)))). ** KEPT: 4635 (75,8,1454) EQUAL(f(d,f(a,f(g(c),a))),a). ---> New Demodulator: 4636 (4635) EQUAL(f(d,f(a,f(g(c),a))),a). ** KEPT: 4637 (75,8,1237) EQUAL(f(d,f(a,f(g(d),h))),a). ---> New Demodulator: 4638 (4637) EQUAL(f(d,f(a,f(g(d),h))),a). ** KEPT: 4639 (75,8,434) EQUAL(f(d,f(a,g(f(h,a)))),k). ---> New Demodulator: 4640 (4639) EQUAL(f(d,f(a,g(f(h,a)))),k). ** KEPT: 4641 (75,8,292) EQUAL(f(d,f(a,g(f(b,a)))),h). ---> New Demodulator: 4642 (4641) EQUAL(f(d,f(a,g(f(b,a)))),h). ** KEPT: 4643 (75,8,67) EQUAL(f(d,f(a,f(g(a),g(d)))),e). ---> New Demodulator: 4644 (4643) EQUAL(f(d,f(a,f(g(a),g(d)))),e). ** KEPT: 4645 (75,8,39) EQUAL(f(d,f(a,c)),f(f(c,a),b)). ** KEPT: 4646 (75,8,37) EQUAL(f(d,f(a,x)),f(a,f(b,x))). ** KEPT: 4647 (75,8,5) EQUAL(f(d,f(a,x)),f(c,x)). ** KEPT: 4648 (75,7,1485,5) P(d,x,f(d,f(a,f(f(g(c),d),x)))). ** KEPT: 4649 (75,7,1454,3824,1347) P(a,f(b,c),f(d,f(a,c))). ** KEPT: 4650 (75,7,1454,39) P(a,c,f(d,f(a,f(f(f(g(c),a),a),b)))). ** KEPT: 4651 (75,7,1454,5) P(a,x,f(d,f(a,f(f(g(c),a),x)))). ** KEPT: 4652 (75,7,1237,39) P(a,c,f(d,f(a,f(f(f(g(d),h),a),b)))). ** KEPT: 4653 (75,7,1237,5) P(a,x,f(d,f(a,f(f(g(d),h),x)))). ** KEPT: 4654 (75,7,475,5) P(d,x,f(d,f(a,f(f(b,g(c)),x)))). ** KEPT: 4655 (75,7,434,3826) P(k,f(f(h,a),c),f(d,f(a,c))). ** KEPT: 4656 (75,7,434,39) P(k,c,f(d,f(a,f(f(g(f(h,a)),a),b)))). ** KEPT: 4657 (75,7,434,5) P(k,x,f(d,f(a,f(g(f(h,a)),x)))). ** KEPT: 4658 (75,7,292,3826) P(h,f(f(b,a),c),f(d,f(a,c))). ** KEPT: 4659 (75,7,292,39) P(h,c,f(d,f(a,f(f(g(f(b,a)),a),b)))). ** KEPT: 4660 (75,7,292,5) P(h,x,f(d,f(a,f(g(f(b,a)),x)))). ** KEPT: 4661 (75,7,75,4458) P(f(d,f(a,f(k,a))),g(a),f(d,f(a,k))). ** KEPT: 4662 (75,7,75,4429) P(f(d,f(a,f(d,d))),g(d),f(d,f(a,d))). ** KEPT: 4663 (75,7,75,4428) P(f(d,f(a,f(h,d))),g(d),f(d,f(a,h))). ** KEPT: 4664 (75,7,75,4427,33) P(f(d,f(a,f(b,d))),g(d),f(d,c)). ** KEPT: 4665 (75,7,75,4409) P(f(d,f(a,f(k,c))),g(c),f(d,f(a,k))). ** KEPT: 4666 (75,7,75,4213,531) P(e,f(c,a),f(d,f(a,a))). ** KEPT: 4667 (75,7,75,3826) P(f(d,f(a,g(x))),f(x,c),f(d,f(a,c))). ** KEPT: 4668 (75,7,75,3824) P(f(d,f(a,x)),f(g(x),c),f(d,f(a,c))). ** KEPT: 4669 (75,7,75,3627,33) P(f(d,f(a,f(b,b))),g(b),f(d,c)). ** KEPT: 4670 (75,7,75,2897) P(f(d,f(a,f(c,g(x)))),x,f(d,f(a,c))). ** KEPT: 4671 (75,7,75,2896) P(f(d,f(a,f(c,x))),g(x),f(d,f(a,c))). ** KEPT: 4672 (75,7,75,2552,33) P(f(d,f(a,f(b,c))),g(c),f(d,c)). ** KEPT: 4673 (75,7,75,2551) P(f(d,f(a,f(h,c))),g(c),f(d,f(a,h))). ** KEPT: 4674 (75,7,75,1769) P(f(d,f(a,d)),f(g(d),k),f(d,f(a,k))). ** KEPT: 4675 (75,7,75,1600) P(f(d,f(a,f(h,g(d)))),d,f(d,f(a,h))). ** KEPT: 4676 (75,7,75,1529) P(f(d,f(a,d)),f(g(d),h),f(d,f(a,h))). ** KEPT: 4677 (75,7,75,1485) P(f(d,f(a,c)),f(g(c),d),f(d,f(a,d))). ** KEPT: 4678 (75,7,75,1454) P(f(d,f(a,c)),f(g(c),a),f(d,f(a,a))). ** KEPT: 4679 (75,7,75,1379) P(f(d,f(a,f(d,g(c)))),c,f(d,f(a,d))). ** KEPT: 4680 (75,7,75,1373) P(f(d,f(a,d)),f(g(c),a),f(d,f(a,h))). ** KEPT: 4681 (75,7,75,1270,33) P(f(d,f(a,f(b,g(d)))),d,f(d,c)). ** KEPT: 4682 (75,7,75,1237) P(f(d,f(a,c)),f(g(d),h),f(d,f(a,a))). ** KEPT: 4683 (75,7,75,1094) P(f(d,f(a,f(a,g(c)))),c,f(d,f(a,a))). ** KEPT: 4684 (75,7,75,1034) P(f(d,f(a,f(h,a))),g(a),f(d,f(a,h))). ** KEPT: 4685 (75,7,75,922,33) P(f(d,f(a,f(g(d),k))),d,f(d,c)). ** KEPT: 4686 (75,7,75,817,33) P(f(d,f(a,f(b,a))),g(a),f(d,c)). ** KEPT: 4687 (75,7,75,760) P(f(d,f(a,f(a,g(h)))),h,f(d,f(a,a))). ** KEPT: 4688 (75,7,75,676) P(f(d,f(a,f(h,g(a)))),a,f(d,f(a,h))). ** KEPT: 4689 (75,7,75,566) P(f(d,f(a,d)),f(b,g(d)),f(d,f(a,k))). ** KEPT: 4690 (75,7,75,475) P(f(d,f(a,c)),f(b,g(c)),f(d,f(a,d))). ** KEPT: 4691 (75,7,75,457,27,70) P(f(d,f(a,h)),f(g(d),k),c). ** KEPT: 4692 (75,7,75,434) P(f(d,f(a,c)),g(f(h,a)),f(d,f(a,k))). ** KEPT: 4693 (75,7,75,426) P(f(d,f(a,g(h))),f(h,a),f(d,f(a,a))). ** KEPT: 4694 (75,7,75,414) P(f(d,f(a,g(k))),f(k,d),f(d,f(a,d))). ** KEPT: 4695 (75,7,75,409) P(f(d,f(a,f(k,d))),g(d),f(d,f(a,k))). ** KEPT: 4696 (75,7,75,398,33) P(f(d,f(a,g(d))),f(k,d),f(d,c)). ** KEPT: 4697 (75,7,75,397,33) P(f(d,f(a,g(d))),f(d,b),f(d,c)). ** KEPT: 4698 (75,7,75,392) P(f(d,f(a,g(h))),g(k),f(d,f(a,g(d)))). ** KEPT: 4699 (75,7,75,389,27,70) P(f(d,f(a,f(h,g(d)))),k,c). ** KEPT: 4700 (75,7,75,373) P(f(d,f(a,f(d,b))),g(b),f(d,f(a,d))). ** KEPT: 4701 (75,7,75,351) P(f(d,f(a,f(d,b))),g(d),f(d,f(a,k))). ** KEPT: 4702 (75,7,75,345,27,70) P(f(d,f(a,a)),f(g(c),d),c). ** KEPT: 4703 (75,7,75,320) P(f(d,f(a,f(d,c))),g(c),f(d,f(a,d))). ** KEPT: 4704 (75,7,75,307) P(f(d,f(a,f(d,g(c)))),a,f(d,f(a,h))). ** KEPT: 4705 (75,7,75,292) P(f(d,f(a,c)),g(f(b,a)),f(d,f(a,h))). ** KEPT: 4706 (75,7,75,284,596) P(a,f(b,a),f(d,f(a,a))). ** KEPT: 4707 (75,7,75,275,596) P(a,g(h),f(d,f(a,g(d)))). ** KEPT: 4708 (75,7,75,273,27,70) P(f(d,f(a,f(b,g(d)))),h,c). ** KEPT: 4709 (75,7,75,271) P(f(d,f(a,f(c,g(d)))),h,f(d,f(a,a))). ** KEPT: 4710 (75,7,75,255) P(f(d,f(a,f(c,b))),g(c),f(d,f(a,d))). ** KEPT: 4711 (75,7,75,212,27,70) P(f(d,f(a,f(a,g(c)))),d,c). ** KEPT: 4712 (75,7,75,204) P(f(d,f(a,g(k))),f(d,b),f(d,f(a,d))). ** KEPT: 4713 (75,7,75,202) P(f(d,f(a,g(k))),c,f(d,f(a,f(h,a)))). ** KEPT: 4714 (75,7,75,200) P(f(d,f(a,h)),g(d),f(d,f(a,g(k)))). ** KEPT: 4715 (75,7,75,197) P(f(d,f(a,h)),a,f(d,f(a,f(g(k),c)))). ** KEPT: 4716 (75,7,75,193) P(f(d,f(a,f(g(k),h))),b,f(d,f(a,h))). ** KEPT: 4717 (75,7,75,190,27,70) P(f(d,f(a,k)),f(h,g(d)),c). ** KEPT: 4718 (75,7,75,188) P(f(d,f(a,k)),f(h,g(b)),f(d,f(a,h))). ** KEPT: 4719 (75,7,75,187) P(f(d,f(a,k)),f(h,a),f(d,f(a,c))). ** KEPT: 4720 (75,7,75,186) P(f(d,f(a,g(k))),d,f(d,f(a,h))). ** KEPT: 4721 (75,7,75,182,27,70) P(f(d,f(a,f(g(d),k))),h,c). ** KEPT: 4722 (75,7,75,180,33) P(f(d,f(a,f(g(h),k))),h,f(d,c)). ** KEPT: 4723 (75,7,75,179) P(f(d,f(a,f(k,d))),g(b),f(d,f(a,d))). ** KEPT: 4724 (75,7,75,173) P(f(d,f(a,d)),b,f(d,f(a,f(k,d)))). ** KEPT: 4725 (75,7,75,172) P(f(d,f(a,g(d))),k,f(d,f(a,g(h)))). ** KEPT: 4726 (75,7,75,168) P(f(d,f(a,h)),f(b,g(h)),f(d,f(a,k))). ** KEPT: 4727 (75,7,75,167) P(f(d,f(a,k)),h,f(d,f(a,d))). ** KEPT: 4728 (75,7,75,165) P(f(d,f(a,k)),d,f(d,f(a,f(d,b)))). ** KEPT: 4729 (75,7,75,156) P(f(d,f(a,g(h))),c,f(d,f(a,f(b,a)))). ** KEPT: 4730 (75,7,75,154,33) P(f(d,c),g(d),f(d,f(a,g(h)))). ** KEPT: 4731 (75,7,75,152,33) P(f(d,c),a,f(d,f(a,f(g(h),c)))). ** KEPT: 4732 (75,7,75,149) P(f(d,f(a,f(a,g(h)))),d,f(d,f(a,c))). ** KEPT: 4733 (75,7,75,143) P(f(d,f(a,g(d))),f(c,b),f(d,f(a,c))). ** KEPT: 4734 (75,7,75,140) P(f(d,f(a,a)),g(c),f(d,f(a,g(d)))). ** KEPT: 4735 (75,7,75,135) P(f(d,f(a,f(g(d),a))),b,f(d,f(a,a))). ** KEPT: 4736 (75,7,75,123) P(f(d,f(a,f(h,g(a)))),c,f(d,f(a,d))). ** KEPT: 4737 (75,7,75,122,33) P(f(d,f(a,f(g(a),d))),a,f(d,c)). ** KEPT: 4738 (75,7,75,115) P(f(d,f(a,d)),f(a,g(b)),f(d,f(a,a))). ** KEPT: 4739 (75,7,75,110) P(f(d,f(a,f(d,c))),g(b),f(d,f(a,c))). ** KEPT: 4740 (75,7,75,105) P(f(d,f(a,d)),g(h),f(d,f(a,k))). ** KEPT: 4741 (75,7,75,104,27,70) P(f(d,f(a,h)),f(b,g(d)),c). ** KEPT: 4742 (75,7,75,102) P(f(d,f(a,h)),f(b,a),f(d,f(a,c))). ** KEPT: 4743 (75,7,75,90,596) P(f(d,f(a,g(d))),h,a). ** KEPT: 4744 (75,7,75,87) P(f(d,f(a,h)),b,f(d,f(a,d))). ** KEPT: 4745 (75,7,75,80,27,70) P(f(d,f(a,d)),f(a,g(c)),c). ** KEPT: 4746 (75,7,75,78) P(f(d,f(a,d)),c,f(d,f(a,f(c,b)))). ** KEPT: 4747 (75,7,75,77) P(f(d,f(a,g(d))),c,f(d,f(a,a))). ** KEPT: 4748 (75,7,75,75) P(f(d,f(a,c)),x,f(d,f(a,f(d,f(a,x))))). ** KEPT: 4749 (75,7,75,74) P(f(d,f(a,c)),b,f(d,f(a,f(d,c)))). ** KEPT: 4750 (75,7,75,71) P(f(d,f(a,f(x,d))),a,f(d,f(a,f(x,c)))). ** KEPT: 4751 (75,7,75,67,27,70) P(f(d,f(a,c)),f(g(a),g(d)),c). ** KEPT: 4752 (75,7,75,63) P(f(d,f(a,a)),f(b,g(a)),f(d,f(a,d))). ** KEPT: 4753 (75,7,75,42,27,70) P(f(d,f(a,a)),f(b,g(c)),c). ** KEPT: 4754 (75,7,75,41) P(f(d,f(a,a)),f(b,x),f(d,f(a,f(c,x)))). ** KEPT: 4755 (75,7,75,39) P(f(d,f(a,x)),c,f(d,f(a,f(f(x,a),b)))). ** KEPT: 4756 (75,7,75,38) P(f(d,f(a,c)),g(b),f(d,f(a,a))). ** KEPT: 4757 (75,7,75,37) P(f(d,f(a,c)),x,f(d,f(a,f(a,f(b,x))))). ** KEPT: 4758 (75,7,75,34) P(f(d,f(a,f(x,a))),b,f(d,f(a,f(x,c)))). ** KEPT: 4759 (75,7,75,22) P(f(d,f(a,d)),g(b),f(d,f(a,h))). ** KEPT: 4760 (75,7,75,21) P(f(d,f(a,c)),g(a),f(d,f(a,d))). ** KEPT: 4761 (75,7,75,5) P(f(d,f(a,x)),y,f(d,f(a,f(x,y)))). ** KEPT: 4762 (75,7,75,4,27,70) P(f(d,f(a,x)),g(x),c). ** KEPT: 4763 (75,7,75,3,27,70) P(f(d,f(a,g(x))),x,c). ** KEPT: 4764 (75,7,74,3824) P(f(d,c),f(g(b),c),f(d,f(a,c))). ** KEPT: 4765 (75,7,74,39) P(f(d,c),c,f(d,f(a,f(f(b,a),b)))). ** KEPT: 4766 (75,7,67,3824) P(e,f(g(f(g(a),g(d))),c),f(d,f(a,c))). ** KEPT: 4767 (75,7,67,39) P(e,c,f(d,f(a,f(f(f(g(a),g(d)),a),b)))). ** KEPT: 4768 (75,7,67,5) P(e,x,f(d,f(a,f(f(g(a),g(d)),x)))). ** KEPT: 4769 (75,7,39,3824,30) P(f(f(c,a),b),e,f(d,f(a,c))). ** KEPT: 4770 (75,7,39,1485) P(f(f(c,a),b),f(g(c),d),f(d,f(a,d))). ** KEPT: 4771 (75,7,39,1454) P(f(f(c,a),b),f(g(c),a),f(d,f(a,a))). ** KEPT: 4772 (75,7,39,1237) P(f(f(c,a),b),f(g(d),h),f(d,f(a,a))). ** KEPT: 4773 (75,7,39,475) P(f(f(c,a),b),f(b,g(c)),f(d,f(a,d))). ** KEPT: 4774 (75,7,39,434) P(f(f(c,a),b),g(f(h,a)),f(d,f(a,k))). ** KEPT: 4775 (75,7,39,292) P(f(f(c,a),b),g(f(b,a)),f(d,f(a,h))). ** KEPT: 4776 (75,7,39,75) P(f(f(c,a),b),x,f(d,f(a,f(d,f(a,x))))). ** KEPT: 4777 (75,7,39,74) P(f(f(c,a),b),b,f(d,f(a,f(d,c)))). ** KEPT: 4778 (75,7,39,39) P(f(f(c,a),b),c,f(d,f(a,f(f(c,a),b)))). ** KEPT: 4779 (75,7,39,38) P(f(f(c,a),b),g(b),f(d,f(a,a))). ** KEPT: 4780 (75,7,39,37) P(f(f(c,a),b),x,f(d,f(a,f(a,f(b,x))))). ** KEPT: 4781 (75,7,39,21) P(f(f(c,a),b),g(a),f(d,f(a,d))). ** KEPT: 4782 (75,7,39,5) P(f(f(c,a),b),x,f(d,f(a,f(c,x)))). ** KEPT: 4783 (75,7,38,39) P(a,c,f(d,f(a,f(f(g(b),a),b)))). ** KEPT: 4784 (75,7,38,5) P(a,x,f(d,f(a,f(g(b),x)))). ** KEPT: 4785 (75,7,37,4458) P(f(a,f(b,f(k,a))),g(a),f(d,f(a,k))). ** KEPT: 4786 (75,7,37,4429) P(f(a,f(b,f(d,d))),g(d),f(d,f(a,d))). ** KEPT: 4787 (75,7,37,4428) P(f(a,f(b,f(h,d))),g(d),f(d,f(a,h))). ** KEPT: 4788 (75,7,37,4409) P(f(a,f(b,f(k,c))),g(c),f(d,f(a,k))). ** KEPT: 4789 (75,7,37,3826) P(f(a,f(b,g(x))),f(x,c),f(d,f(a,c))). ** KEPT: 4790 (75,7,37,3824) P(f(a,f(b,x)),f(g(x),c),f(d,f(a,c))). ** KEPT: 4791 (75,7,37,2897) P(f(a,f(b,f(c,g(x)))),x,f(d,f(a,c))). ** KEPT: 4792 (75,7,37,2896) P(f(a,f(b,f(c,x))),g(x),f(d,f(a,c))). ** KEPT: 4793 (75,7,37,2551) P(f(a,f(b,f(h,c))),g(c),f(d,f(a,h))). ** KEPT: 4794 (75,7,37,1769) P(f(a,f(b,d)),f(g(d),k),f(d,f(a,k))). ** KEPT: 4795 (75,7,37,1600) P(f(a,f(b,f(h,g(d)))),d,f(d,f(a,h))). ** KEPT: 4796 (75,7,37,1529) P(f(a,f(b,d)),f(g(d),h),f(d,f(a,h))). ** KEPT: 4797 (75,7,37,1485) P(f(a,f(b,c)),f(g(c),d),f(d,f(a,d))). ** KEPT: 4798 (75,7,37,1454) P(f(a,f(b,c)),f(g(c),a),f(d,f(a,a))). ** KEPT: 4799 (75,7,37,1379) P(f(a,f(b,f(d,g(c)))),c,f(d,f(a,d))). ** KEPT: 4800 (75,7,37,1373) P(f(a,f(b,d)),f(g(c),a),f(d,f(a,h))). ** KEPT: 4801 (75,7,37,1237) P(f(a,f(b,c)),f(g(d),h),f(d,f(a,a))). ** KEPT: 4802 (75,7,37,1094) P(f(a,f(b,f(a,g(c)))),c,f(d,f(a,a))). ** KEPT: 4803 (75,7,37,1034) P(f(a,f(b,f(h,a))),g(a),f(d,f(a,h))). ** KEPT: 4804 (75,7,37,760) P(f(a,f(b,f(a,g(h)))),h,f(d,f(a,a))). ** KEPT: 4805 (75,7,37,676) P(f(a,f(b,f(h,g(a)))),a,f(d,f(a,h))). ** KEPT: 4806 (75,7,37,566) P(f(a,f(b,d)),f(b,g(d)),f(d,f(a,k))). ** KEPT: 4807 (75,7,37,475) P(f(a,f(b,c)),f(b,g(c)),f(d,f(a,d))). ** KEPT: 4808 (75,7,37,434) P(f(a,f(b,c)),g(f(h,a)),f(d,f(a,k))). ** KEPT: 4809 (75,7,37,426) P(f(a,f(b,g(h))),f(h,a),f(d,f(a,a))). ** KEPT: 4810 (75,7,37,414) P(f(a,f(b,g(k))),f(k,d),f(d,f(a,d))). ** KEPT: 4811 (75,7,37,409) P(f(a,f(b,f(k,d))),g(d),f(d,f(a,k))). ** KEPT: 4812 (75,7,37,392) P(f(a,f(b,g(h))),g(k),f(d,f(a,g(d)))). ** KEPT: 4813 (75,7,37,373) P(f(a,f(b,f(d,b))),g(b),f(d,f(a,d))). ** KEPT: 4814 (75,7,37,351) P(f(a,f(b,f(d,b))),g(d),f(d,f(a,k))). ** KEPT: 4815 (75,7,37,320) P(f(a,f(b,f(d,c))),g(c),f(d,f(a,d))). ** KEPT: 4816 (75,7,37,307) P(f(a,f(b,f(d,g(c)))),a,f(d,f(a,h))). ** KEPT: 4817 (75,7,37,292) P(f(a,f(b,c)),g(f(b,a)),f(d,f(a,h))). ** KEPT: 4818 (75,7,37,271) P(f(a,f(b,f(c,g(d)))),h,f(d,f(a,a))). ** KEPT: 4819 (75,7,37,255) P(f(a,f(b,f(c,b))),g(c),f(d,f(a,d))). ** KEPT: 4820 (75,7,37,204) P(f(a,f(b,g(k))),f(d,b),f(d,f(a,d))). ** KEPT: 4821 (75,7,37,202) P(f(a,f(b,g(k))),c,f(d,f(a,f(h,a)))). ** KEPT: 4822 (75,7,37,200) P(f(a,f(b,h)),g(d),f(d,f(a,g(k)))). ** KEPT: 4823 (75,7,37,197) P(f(a,f(b,h)),a,f(d,f(a,f(g(k),c)))). ** KEPT: 4824 (75,7,37,193) P(f(a,f(b,f(g(k),h))),b,f(d,f(a,h))). ** KEPT: 4825 (75,7,37,188) P(f(a,f(b,k)),f(h,g(b)),f(d,f(a,h))). ** KEPT: 4826 (75,7,37,187) P(f(a,f(b,k)),f(h,a),f(d,f(a,c))). ** KEPT: 4827 (75,7,37,186) P(f(a,f(b,g(k))),d,f(d,f(a,h))). ** KEPT: 4828 (75,7,37,179) P(f(a,f(b,f(k,d))),g(b),f(d,f(a,d))). ** KEPT: 4829 (75,7,37,173) P(f(a,f(b,d)),b,f(d,f(a,f(k,d)))). ** KEPT: 4830 (75,7,37,172) P(f(a,f(b,g(d))),k,f(d,f(a,g(h)))). ** KEPT: 4831 (75,7,37,168) P(f(a,f(b,h)),f(b,g(h)),f(d,f(a,k))). ** KEPT: 4832 (75,7,37,167) P(f(a,f(b,k)),h,f(d,f(a,d))). ** KEPT: 4833 (75,7,37,165) P(f(a,f(b,k)),d,f(d,f(a,f(d,b)))). ** KEPT: 4834 (75,7,37,156) P(f(a,f(b,g(h))),c,f(d,f(a,f(b,a)))). ** KEPT: 4835 (75,7,37,154) P(f(a,f(b,b)),g(d),f(d,f(a,g(h)))). ** KEPT: 4836 (75,7,37,152) P(f(a,f(b,b)),a,f(d,f(a,f(g(h),c)))). ** KEPT: 4837 (75,7,37,149) P(f(a,f(b,f(a,g(h)))),d,f(d,f(a,c))). ** KEPT: 4838 (75,7,37,143) P(f(a,f(b,g(d))),f(c,b),f(d,f(a,c))). ** KEPT: 4839 (75,7,37,140) P(f(a,f(b,a)),g(c),f(d,f(a,g(d)))). ** KEPT: 4840 (75,7,37,135) P(f(a,f(b,f(g(d),a))),b,f(d,f(a,a))). ** KEPT: 4841 (75,7,37,123) P(f(a,f(b,f(h,g(a)))),c,f(d,f(a,d))). ** KEPT: 4842 (75,7,37,115) P(f(a,f(b,d)),f(a,g(b)),f(d,f(a,a))). ** KEPT: 4843 (75,7,37,110) P(f(a,f(b,f(d,c))),g(b),f(d,f(a,c))). ** KEPT: 4844 (75,7,37,105) P(f(a,f(b,d)),g(h),f(d,f(a,k))). ** KEPT: 4845 (75,7,37,102) P(f(a,f(b,h)),f(b,a),f(d,f(a,c))). ** KEPT: 4846 (75,7,37,87) P(f(a,f(b,h)),b,f(d,f(a,d))). ** KEPT: 4847 (75,7,37,78) P(f(a,f(b,d)),c,f(d,f(a,f(c,b)))). ** KEPT: 4848 (75,7,37,77) P(f(a,f(b,g(d))),c,f(d,f(a,a))). ** KEPT: 4849 (75,7,37,75) P(f(a,f(b,c)),x,f(d,f(a,f(d,f(a,x))))). ** KEPT: 4850 (75,7,37,74) P(f(a,f(b,c)),b,f(d,f(a,f(d,c)))). ** KEPT: 4851 (75,7,37,71) P(f(a,f(b,f(x,d))),a,f(d,f(a,f(x,c)))). ** KEPT: 4852 (75,7,37,63) P(f(a,f(b,a)),f(b,g(a)),f(d,f(a,d))). ** KEPT: 4853 (75,7,37,62) P(f(a,f(b,d)),a,f(d,f(a,c))). ** KEPT: 4854 (75,7,37,41) P(f(a,f(b,a)),f(b,x),f(d,f(a,f(c,x)))). ** KEPT: 4855 (75,7,37,39) P(f(a,f(b,x)),c,f(d,f(a,f(f(x,a),b)))). ** KEPT: 4856 (75,7,37,38) P(f(a,f(b,c)),g(b),f(d,f(a,a))). ** KEPT: 4857 (75,7,37,37) P(f(a,f(b,c)),x,f(d,f(a,f(a,f(b,x))))). ** KEPT: 4858 (75,7,37,34) P(f(a,f(b,f(x,a))),b,f(d,f(a,f(x,c)))). ** KEPT: 4859 (75,7,37,22) P(f(a,f(b,d)),g(b),f(d,f(a,h))). ** KEPT: 4860 (75,7,37,21) P(f(a,f(b,c)),g(a),f(d,f(a,d))). ** KEPT: 4861 (75,7,37,20) P(f(a,f(b,a)),b,f(d,f(a,c))). ** KEPT: 4862 (75,7,37,5) P(f(a,f(b,x)),y,f(d,f(a,f(x,y)))). ** KEPT: 4863 (75,7,37,2) P(f(a,f(b,x)),e,f(d,f(a,x))). ** KEPT: 4864 (75,7,21,5) P(d,x,f(d,f(a,f(g(a),x)))). ** KEPT: 4865 (75,7,5,4458) P(f(c,f(k,a)),g(a),f(d,f(a,k))). ** KEPT: 4866 (75,7,5,4429) P(f(c,f(d,d)),g(d),f(d,f(a,d))). ** KEPT: 4867 (75,7,5,4428) P(f(c,f(h,d)),g(d),f(d,f(a,h))). ** KEPT: 4868 (75,7,5,4409) P(f(c,f(k,c)),g(c),f(d,f(a,k))). ** KEPT: 4869 (75,7,5,3826) P(f(c,g(x)),f(x,c),f(d,f(a,c))). ** KEPT: 4870 (75,7,5,3824) P(f(c,x),f(g(x),c),f(d,f(a,c))). ** KEPT: 4871 (75,7,5,2897) P(f(c,f(c,g(x))),x,f(d,f(a,c))). ** KEPT: 4872 (75,7,5,2896) P(f(c,f(c,x)),g(x),f(d,f(a,c))). ** KEPT: 4873 (75,7,5,2551) P(f(c,f(h,c)),g(c),f(d,f(a,h))). ** KEPT: 4874 (75,7,5,1769) P(f(c,d),f(g(d),k),f(d,f(a,k))). ** KEPT: 4875 (75,7,5,1600) P(f(c,f(h,g(d))),d,f(d,f(a,h))). ** KEPT: 4876 (75,7,5,1529) P(f(c,d),f(g(d),h),f(d,f(a,h))). ** KEPT: 4877 (75,7,5,1485) P(f(c,c),f(g(c),d),f(d,f(a,d))). ** KEPT: 4878 (75,7,5,1454) P(f(c,c),f(g(c),a),f(d,f(a,a))). ** KEPT: 4879 (75,7,5,1379) P(f(c,f(d,g(c))),c,f(d,f(a,d))). ** KEPT: 4880 (75,7,5,1373) P(f(c,d),f(g(c),a),f(d,f(a,h))). ** KEPT: 4881 (75,7,5,1237) P(f(c,c),f(g(d),h),f(d,f(a,a))). ** KEPT: 4882 (75,7,5,1094) P(f(c,f(a,g(c))),c,f(d,f(a,a))). ** KEPT: 4883 (75,7,5,1034) P(f(c,f(h,a)),g(a),f(d,f(a,h))). ** KEPT: 4884 (75,7,5,760) P(f(c,f(a,g(h))),h,f(d,f(a,a))). ** KEPT: 4885 (75,7,5,676) P(f(c,f(h,g(a))),a,f(d,f(a,h))). ** KEPT: 4886 (75,7,5,566) P(f(c,d),f(b,g(d)),f(d,f(a,k))). ** KEPT: 4887 (75,7,5,475) P(f(c,c),f(b,g(c)),f(d,f(a,d))). ** KEPT: 4888 (75,7,5,434) P(f(c,c),g(f(h,a)),f(d,f(a,k))). ** KEPT: 4889 (75,7,5,426) P(f(c,g(h)),f(h,a),f(d,f(a,a))). ** KEPT: 4890 (75,7,5,414) P(f(c,g(k)),f(k,d),f(d,f(a,d))). ** KEPT: 4891 (75,7,5,409) P(f(c,f(k,d)),g(d),f(d,f(a,k))). ** KEPT: 4892 (75,7,5,392) P(f(c,g(h)),g(k),f(d,f(a,g(d)))). ** KEPT: 4893 (75,7,5,373) P(f(c,f(d,b)),g(b),f(d,f(a,d))). ** KEPT: 4894 (75,7,5,351) P(f(c,f(d,b)),g(d),f(d,f(a,k))). ** KEPT: 4895 (75,7,5,320) P(f(c,f(d,c)),g(c),f(d,f(a,d))). ** KEPT: 4896 (75,7,5,307) P(f(c,f(d,g(c))),a,f(d,f(a,h))). ** KEPT: 4897 (75,7,5,292) P(f(c,c),g(f(b,a)),f(d,f(a,h))). ** KEPT: 4898 (75,7,5,271) P(f(c,f(c,g(d))),h,f(d,f(a,a))). ** KEPT: 4899 (75,7,5,255) P(f(c,f(c,b)),g(c),f(d,f(a,d))). ** KEPT: 4900 (75,7,5,204) P(f(c,g(k)),f(d,b),f(d,f(a,d))). ** KEPT: 4901 (75,7,5,202) P(f(c,g(k)),c,f(d,f(a,f(h,a)))). ** KEPT: 4902 (75,7,5,200) P(f(c,h),g(d),f(d,f(a,g(k)))). ** KEPT: 4903 (75,7,5,197) P(f(c,h),a,f(d,f(a,f(g(k),c)))). ** KEPT: 4904 (75,7,5,193) P(f(c,f(g(k),h)),b,f(d,f(a,h))). ** KEPT: 4905 (75,7,5,188) P(f(c,k),f(h,g(b)),f(d,f(a,h))). ** KEPT: 4906 (75,7,5,187) P(f(c,k),f(h,a),f(d,f(a,c))). ** KEPT: 4907 (75,7,5,186) P(f(c,g(k)),d,f(d,f(a,h))). ** KEPT: 4908 (75,7,5,179) P(f(c,f(k,d)),g(b),f(d,f(a,d))). ** KEPT: 4909 (75,7,5,173) P(f(c,d),b,f(d,f(a,f(k,d)))). ** KEPT: 4910 (75,7,5,172) P(f(c,g(d)),k,f(d,f(a,g(h)))). ** KEPT: 4911 (75,7,5,168) P(f(c,h),f(b,g(h)),f(d,f(a,k))). ** KEPT: 4912 (75,7,5,167) P(f(c,k),h,f(d,f(a,d))). ** KEPT: 4913 (75,7,5,165) P(f(c,k),d,f(d,f(a,f(d,b)))). ** KEPT: 4914 (75,7,5,156) P(f(c,g(h)),c,f(d,f(a,f(b,a)))). ** KEPT: 4915 (75,7,5,154) P(f(c,b),g(d),f(d,f(a,g(h)))). ** KEPT: 4916 (75,7,5,152) P(f(c,b),a,f(d,f(a,f(g(h),c)))). ** KEPT: 4917 (75,7,5,149) P(f(c,f(a,g(h))),d,f(d,f(a,c))). ** KEPT: 4918 (75,7,5,143) P(f(c,g(d)),f(c,b),f(d,f(a,c))). ** KEPT: 4919 (75,7,5,140) P(f(c,a),g(c),f(d,f(a,g(d)))). ** KEPT: 4920 (75,7,5,135) P(f(c,f(g(d),a)),b,f(d,f(a,a))). ** KEPT: 4921 (75,7,5,123) P(f(c,f(h,g(a))),c,f(d,f(a,d))). ** KEPT: 4922 (75,7,5,115) P(f(c,d),f(a,g(b)),f(d,f(a,a))). ** KEPT: 4923 (75,7,5,110) P(f(c,f(d,c)),g(b),f(d,f(a,c))). ** KEPT: 4924 (75,7,5,105) P(f(c,d),g(h),f(d,f(a,k))). ** KEPT: 4925 (75,7,5,102) P(f(c,h),f(b,a),f(d,f(a,c))). ** KEPT: 4926 (75,7,5,87) P(f(c,h),b,f(d,f(a,d))). ** KEPT: 4927 (75,7,5,78) P(f(c,d),c,f(d,f(a,f(c,b)))). ** KEPT: 4928 (75,7,5,77) P(f(c,g(d)),c,f(d,f(a,a))). ** KEPT: 4929 (75,7,5,75) P(f(c,c),x,f(d,f(a,f(d,f(a,x))))). ** KEPT: 4930 (75,7,5,74) P(f(c,c),b,f(d,f(a,f(d,c)))). ** KEPT: 4931 (75,7,5,71) P(f(c,f(x,d)),a,f(d,f(a,f(x,c)))). ** KEPT: 4932 (75,7,5,63) P(f(c,a),f(b,g(a)),f(d,f(a,d))). ** KEPT: 4933 (75,7,5,62) P(f(c,d),a,f(d,f(a,c))). ** KEPT: 4934 (75,7,5,41) P(f(c,a),f(b,x),f(d,f(a,f(c,x)))). ** KEPT: 4935 (75,7,5,39) P(f(c,x),c,f(d,f(a,f(f(x,a),b)))). ** KEPT: 4936 (75,7,5,38) P(f(c,c),g(b),f(d,f(a,a))). ** KEPT: 4937 (75,7,5,37) P(f(c,c),x,f(d,f(a,f(a,f(b,x))))). ** KEPT: 4938 (75,7,5,34) P(f(c,f(x,a)),b,f(d,f(a,f(x,c)))). ** KEPT: 4939 (75,7,5,22) P(f(c,d),g(b),f(d,f(a,h))). ** KEPT: 4940 (75,7,5,21) P(f(c,c),g(a),f(d,f(a,d))). ** KEPT: 4941 (75,7,5,20) P(f(c,a),b,f(d,f(a,c))). ** KEPT: 4942 (75,7,5,5) P(f(c,x),y,f(d,f(a,f(x,y)))). ** KEPT: 4943 (75,7,5,2) P(f(c,x),e,f(d,f(a,x))). ** KEPT: 4944 (75,7,4,3826) P(e,f(c,c),f(d,f(a,c))). ** KEPT: 4945 (75,7,4,5) P(e,x,f(d,f(a,f(g(c),x)))). ** KEPT: 4946 (75,7,1405,5) P(b,x,f(f(b,g(c)),f(d,f(a,x)))). ** KEPT: 4947 (75,7,1379,5) P(d,x,f(f(d,g(c)),f(d,f(a,x)))). ** KEPT: 4948 (75,7,1094,5) P(a,x,f(f(a,g(c)),f(d,f(a,x)))). ** KEPT: 4949 (75,7,528,5) P(b,x,f(f(g(c),d),f(d,f(a,x)))). ** KEPT: 4950 (75,7,202,5) P(f(h,a),x,f(g(k),f(d,f(a,x)))). ** KEPT: 4951 (75,7,156,5) P(f(b,a),x,f(g(h),f(d,f(a,x)))). ** KEPT: 4952 (75,7,123,5) P(d,x,f(f(h,g(a)),f(d,f(a,x)))). ** KEPT: 4953 (75,7,78,5) P(f(c,b),x,f(d,f(d,f(a,x)))). ** KEPT: 4954 (75,7,77,5) P(a,x,f(g(d),f(d,f(a,x)))). ** KEPT: 4955 (75,7,75,37) P(f(d,f(a,c)),x,f(a,f(b,f(d,f(a,x))))). ** KEPT: 4956 (75,7,75,5) P(f(d,f(a,c)),x,f(c,f(d,f(a,x)))). ** KEPT: 4957 (75,7,40,5) P(b,x,f(g(a),f(d,f(a,x)))). ** KEPT: 4958 (75,7,39,2897) P(f(f(f(c,g(f(d,f(a,x)))),a),b),x,c). ** KEPT: 4959 (75,7,39,37) P(f(f(c,a),b),x,f(a,f(b,f(d,f(a,x))))). ** KEPT: 4960 (75,7,39,5) P(f(f(x,a),b),y,f(x,f(d,f(a,y)))). ** KEPT: 4961 (75,7,39,3) P(f(f(g(f(d,f(a,x))),a),b),x,e). ** KEPT: 4962 (75,7,37,37) P(f(a,f(b,c)),x,f(a,f(b,f(d,f(a,x))))). ** KEPT: 4963 (75,7,37,5) P(f(a,f(b,c)),x,f(c,f(d,f(a,x)))). ** KEPT: 4964 (75,7,5,2897) P(f(f(c,g(f(d,f(a,x)))),c),x,c). ** KEPT: 4965 (75,7,5,37) P(f(c,c),x,f(a,f(b,f(d,f(a,x))))). ** KEPT: 4966 (75,7,5,5) P(f(x,c),y,f(x,f(d,f(a,y)))). ** KEPT: 4967 (75,7,5,3) P(f(g(f(d,f(a,x))),c),x,e). ** KEPT: 4968 (75,7,3,5) P(e,x,f(g(c),f(d,f(a,x)))). ** KEPT: 4969 (75,7,4458,37) P(f(d,f(a,f(k,a))),g(a),f(a,f(b,k))). ** KEPT: 4970 (75,7,4458,5) P(f(d,f(a,f(k,a))),g(a),f(c,k)). ** KEPT: 4971 (75,7,4429,37) P(f(d,f(a,f(d,d))),g(d),f(a,f(b,d))). ** KEPT: 4972 (75,7,4429,5) P(f(d,f(a,f(d,d))),g(d),f(c,d)). ** KEPT: 4973 (75,7,4428,37) P(f(d,f(a,f(h,d))),g(d),f(a,f(b,h))). ** KEPT: 4974 (75,7,4428,5) P(f(d,f(a,f(h,d))),g(d),f(c,h)). ** KEPT: 4975 (75,7,4427,37) P(f(d,f(a,f(b,d))),g(d),f(a,f(b,b))). ** KEPT: 4976 (75,7,4427,5) P(f(d,f(a,f(b,d))),g(d),f(c,b)). ** KEPT: 4977 (75,7,4409,37) P(f(d,f(a,f(k,c))),g(c),f(a,f(b,k))). ** KEPT: 4978 (75,7,4409,5) P(f(d,f(a,f(k,c))),g(c),f(c,k)). ** KEPT: 4979 (75,7,3826,39) P(f(d,f(a,g(x))),f(x,c),f(f(c,a),b)). ** KEPT: 4980 (75,7,3826,37) P(f(d,f(a,g(x))),f(x,c),f(a,f(b,c))). ** KEPT: 4981 (75,7,3826,5) P(f(d,f(a,g(x))),f(x,c),f(c,c)). ** KEPT: 4982 (75,7,3824,39) P(f(d,f(a,x)),f(g(x),c),f(f(c,a),b)). ** KEPT: 4983 (75,7,3824,37) P(f(d,f(a,x)),f(g(x),c),f(a,f(b,c))). ** KEPT: 4984 (75,7,3824,5) P(f(d,f(a,x)),f(g(x),c),f(c,c)). ** KEPT: 4985 (75,7,3627,37) P(f(d,f(a,f(b,b))),g(b),f(a,f(b,b))). ** KEPT: 4986 (75,7,3627,5) P(f(d,f(a,f(b,b))),g(b),f(c,b)). ** KEPT: 4987 (75,7,2897,39) P(f(d,f(a,f(c,g(x)))),x,f(f(c,a),b)). ** KEPT: 4988 (75,7,2897,37) P(f(d,f(a,f(c,g(x)))),x,f(a,f(b,c))). ** KEPT: 4989 (75,7,2897,5) P(f(d,f(a,f(c,g(x)))),x,f(c,c)). ** KEPT: 4990 (75,7,2896,39) P(f(d,f(a,f(c,x))),g(x),f(f(c,a),b)). ** KEPT: 4991 (75,7,2896,37) P(f(d,f(a,f(c,x))),g(x),f(a,f(b,c))). ** KEPT: 4992 (75,7,2896,5) P(f(d,f(a,f(c,x))),g(x),f(c,c)). ** KEPT: 4993 (75,7,2552,37) P(f(d,f(a,f(b,c))),g(c),f(a,f(b,b))). ** KEPT: 4994 (75,7,2552,5) P(f(d,f(a,f(b,c))),g(c),f(c,b)). ** KEPT: 4995 (75,7,2551,37) P(f(d,f(a,f(h,c))),g(c),f(a,f(b,h))). ** KEPT: 4996 (75,7,2551,5) P(f(d,f(a,f(h,c))),g(c),f(c,h)). ** KEPT: 4997 (75,7,1769,37) P(f(d,f(a,d)),f(g(d),k),f(a,f(b,k))). ** KEPT: 4998 (75,7,1769,5) P(f(d,f(a,d)),f(g(d),k),f(c,k)). ** KEPT: 4999 (75,7,1600,37) P(f(d,f(a,f(h,g(d)))),d,f(a,f(b,h))). ** KEPT: 5000 (75,7,1600,5) P(f(d,f(a,f(h,g(d)))),d,f(c,h)). ** KEPT: 5001 (75,7,1529,37) P(f(d,f(a,d)),f(g(d),h),f(a,f(b,h))). ** KEPT: 5002 (75,7,1529,5) P(f(d,f(a,d)),f(g(d),h),f(c,h)). ** KEPT: 5003 (75,7,1485,37) P(f(d,f(a,c)),f(g(c),d),f(a,f(b,d))). ** KEPT: 5004 (75,7,1485,5) P(f(d,f(a,c)),f(g(c),d),f(c,d)). ** KEPT: 5005 (75,7,1454,37) P(f(d,f(a,c)),f(g(c),a),f(a,f(b,a))). ** KEPT: 5006 (75,7,1454,5) P(f(d,f(a,c)),f(g(c),a),f(c,a)). ** KEPT: 5007 (75,7,1379,37) P(f(d,f(a,f(d,g(c)))),c,f(a,f(b,d))). ** KEPT: 5008 (75,7,1379,5) P(f(d,f(a,f(d,g(c)))),c,f(c,d)). ** KEPT: 5009 (75,7,1373,37) P(f(d,f(a,d)),f(g(c),a),f(a,f(b,h))). ** KEPT: 5010 (75,7,1373,5) P(f(d,f(a,d)),f(g(c),a),f(c,h)). ** KEPT: 5011 (75,7,1270,37) P(f(d,f(a,f(b,g(d)))),d,f(a,f(b,b))). ** KEPT: 5012 (75,7,1270,5) P(f(d,f(a,f(b,g(d)))),d,f(c,b)). ** KEPT: 5013 (75,7,1237,37) P(f(d,f(a,c)),f(g(d),h),f(a,f(b,a))). ** KEPT: 5014 (75,7,1237,5) P(f(d,f(a,c)),f(g(d),h),f(c,a)). ** KEPT: 5015 (75,7,1094,37) P(f(d,f(a,f(a,g(c)))),c,f(a,f(b,a))). ** KEPT: 5016 (75,7,1094,5) P(f(d,f(a,f(a,g(c)))),c,f(c,a)). ** KEPT: 5017 (75,7,1034,37) P(f(d,f(a,f(h,a))),g(a),f(a,f(b,h))). ** KEPT: 5018 (75,7,1034,5) P(f(d,f(a,f(h,a))),g(a),f(c,h)). ** KEPT: 5019 (75,7,922,37) P(f(d,f(a,f(g(d),k))),d,f(a,f(b,b))). ** KEPT: 5020 (75,7,922,5) P(f(d,f(a,f(g(d),k))),d,f(c,b)). ** KEPT: 5021 (75,7,817,37) P(f(d,f(a,f(b,a))),g(a),f(a,f(b,b))). ** KEPT: 5022 (75,7,817,5) P(f(d,f(a,f(b,a))),g(a),f(c,b)). ** KEPT: 5023 (75,7,760,37) P(f(d,f(a,f(a,g(h)))),h,f(a,f(b,a))). ** KEPT: 5024 (75,7,760,5) P(f(d,f(a,f(a,g(h)))),h,f(c,a)). ** KEPT: 5025 (75,7,676,37) P(f(d,f(a,f(h,g(a)))),a,f(a,f(b,h))). ** KEPT: 5026 (75,7,676,5) P(f(d,f(a,f(h,g(a)))),a,f(c,h)). ** KEPT: 5027 (75,7,566,37) P(f(d,f(a,d)),f(b,g(d)),f(a,f(b,k))). ** KEPT: 5028 (75,7,566,5) P(f(d,f(a,d)),f(b,g(d)),f(c,k)). ** KEPT: 5029 (75,7,475,37) P(f(d,f(a,c)),f(b,g(c)),f(a,f(b,d))). ** KEPT: 5030 (75,7,475,5) P(f(d,f(a,c)),f(b,g(c)),f(c,d)). ** KEPT: 5031 (75,7,434,37) P(f(d,f(a,c)),g(f(h,a)),f(a,f(b,k))). ** KEPT: 5032 (75,7,434,5) P(f(d,f(a,c)),g(f(h,a)),f(c,k)). ** KEPT: 5033 (75,7,426,37) P(f(d,f(a,g(h))),f(h,a),f(a,f(b,a))). ** KEPT: 5034 (75,7,426,5) P(f(d,f(a,g(h))),f(h,a),f(c,a)). ** KEPT: 5035 (75,7,414,37) P(f(d,f(a,g(k))),f(k,d),f(a,f(b,d))). ** KEPT: 5036 (75,7,414,5) P(f(d,f(a,g(k))),f(k,d),f(c,d)). ** KEPT: 5037 (75,7,409,37) P(f(d,f(a,f(k,d))),g(d),f(a,f(b,k))). ** KEPT: 5038 (75,7,409,5) P(f(d,f(a,f(k,d))),g(d),f(c,k)). ** KEPT: 5039 (75,7,398,37) P(f(d,f(a,g(d))),f(k,d),f(a,f(b,b))). ** KEPT: 5040 (75,7,398,5) P(f(d,f(a,g(d))),f(k,d),f(c,b)). ** KEPT: 5041 (75,7,397,37) P(f(d,f(a,g(d))),f(d,b),f(a,f(b,b))). ** KEPT: 5042 (75,7,397,5) P(f(d,f(a,g(d))),f(d,b),f(c,b)). ** KEPT: 5043 (75,7,392,37) P(f(d,f(a,g(h))),g(k),f(a,f(b,g(d)))). ** KEPT: 5044 (75,7,392,5) P(f(d,f(a,g(h))),g(k),f(c,g(d))). ** KEPT: 5045 (75,7,373,37) P(f(d,f(a,f(d,b))),g(b),f(a,f(b,d))). ** KEPT: 5046 (75,7,373,5) P(f(d,f(a,f(d,b))),g(b),f(c,d)). ** KEPT: 5047 (75,7,351,37) P(f(d,f(a,f(d,b))),g(d),f(a,f(b,k))). ** KEPT: 5048 (75,7,351,5) P(f(d,f(a,f(d,b))),g(d),f(c,k)). ** KEPT: 5049 (75,7,320,37) P(f(d,f(a,f(d,c))),g(c),f(a,f(b,d))). ** KEPT: 5050 (75,7,320,5) P(f(d,f(a,f(d,c))),g(c),f(c,d)). ** KEPT: 5051 (75,7,307,37) P(f(d,f(a,f(d,g(c)))),a,f(a,f(b,h))). ** KEPT: 5052 (75,7,307,5) P(f(d,f(a,f(d,g(c)))),a,f(c,h)). ** KEPT: 5053 (75,7,292,37) P(f(d,f(a,c)),g(f(b,a)),f(a,f(b,h))). ** KEPT: 5054 (75,7,292,5) P(f(d,f(a,c)),g(f(b,a)),f(c,h)). ** KEPT: 5055 (75,7,271,37) P(f(d,f(a,f(c,g(d)))),h,f(a,f(b,a))). ** KEPT: 5056 (75,7,271,5) P(f(d,f(a,f(c,g(d)))),h,f(c,a)). ** KEPT: 5057 (75,7,255,37) P(f(d,f(a,f(c,b))),g(c),f(a,f(b,d))). ** KEPT: 5058 (75,7,255,5) P(f(d,f(a,f(c,b))),g(c),f(c,d)). ** KEPT: 5059 (75,7,204,37) P(f(d,f(a,g(k))),f(d,b),f(a,f(b,d))). ** KEPT: 5060 (75,7,204,5) P(f(d,f(a,g(k))),f(d,b),f(c,d)). ** KEPT: 5061 (75,7,202,37) P(f(d,f(a,g(k))),c,f(a,f(b,f(h,a)))). ** KEPT: 5062 (75,7,202,5) P(f(d,f(a,g(k))),c,f(c,f(h,a))). ** KEPT: 5063 (75,7,200,37) P(f(d,f(a,h)),g(d),f(a,f(b,g(k)))). ** KEPT: 5064 (75,7,200,5) P(f(d,f(a,h)),g(d),f(c,g(k))). ** KEPT: 5065 (75,7,197,37) P(f(d,f(a,h)),a,f(a,f(b,f(g(k),c)))). ** KEPT: 5066 (75,7,197,5) P(f(d,f(a,h)),a,f(c,f(g(k),c))). ** KEPT: 5067 (75,7,193,37) P(f(d,f(a,f(g(k),h))),b,f(a,f(b,h))). ** KEPT: 5068 (75,7,193,5) P(f(d,f(a,f(g(k),h))),b,f(c,h)). ** KEPT: 5069 (75,7,188,37) P(f(d,f(a,k)),f(h,g(b)),f(a,f(b,h))). ** KEPT: 5070 (75,7,188,5) P(f(d,f(a,k)),f(h,g(b)),f(c,h)). ** KEPT: 5071 (75,7,187,39) P(f(d,f(a,k)),f(h,a),f(f(c,a),b)). ** KEPT: 5072 (75,7,187,37) P(f(d,f(a,k)),f(h,a),f(a,f(b,c))). ** KEPT: 5073 (75,7,187,5) P(f(d,f(a,k)),f(h,a),f(c,c)). ** KEPT: 5074 (75,7,186,37) P(f(d,f(a,g(k))),d,f(a,f(b,h))). ** KEPT: 5075 (75,7,186,5) P(f(d,f(a,g(k))),d,f(c,h)). ** KEPT: 5076 (75,7,180,37) P(f(d,f(a,f(g(h),k))),h,f(a,f(b,b))). ** KEPT: 5077 (75,7,180,5) P(f(d,f(a,f(g(h),k))),h,f(c,b)). ** KEPT: 5078 (75,7,179,37) P(f(d,f(a,f(k,d))),g(b),f(a,f(b,d))). ** KEPT: 5079 (75,7,179,5) P(f(d,f(a,f(k,d))),g(b),f(c,d)). ** KEPT: 5080 (75,7,173,37) P(f(d,f(a,d)),b,f(a,f(b,f(k,d)))). ** KEPT: 5081 (75,7,173,5) P(f(d,f(a,d)),b,f(c,f(k,d))). ** KEPT: 5082 (75,7,172,37) P(f(d,f(a,g(d))),k,f(a,f(b,g(h)))). ** KEPT: 5083 (75,7,172,5) P(f(d,f(a,g(d))),k,f(c,g(h))). ** KEPT: 5084 (75,7,168,37) P(f(d,f(a,h)),f(b,g(h)),f(a,f(b,k))). ** KEPT: 5085 (75,7,168,5) P(f(d,f(a,h)),f(b,g(h)),f(c,k)). ** KEPT: 5086 (75,7,167,37) P(f(d,f(a,k)),h,f(a,f(b,d))). ** KEPT: 5087 (75,7,167,5) P(f(d,f(a,k)),h,f(c,d)). ** KEPT: 5088 (75,7,165,37) P(f(d,f(a,k)),d,f(a,f(b,f(d,b)))). ** KEPT: 5089 (75,7,165,5) P(f(d,f(a,k)),d,f(c,f(d,b))). ** KEPT: 5090 (75,7,156,37) P(f(d,f(a,g(h))),c,f(a,f(b,f(b,a)))). ** KEPT: 5091 (75,7,156,5) P(f(d,f(a,g(h))),c,f(c,f(b,a))). ** KEPT: 5092 (75,7,149,39) P(f(d,f(a,f(a,g(h)))),d,f(f(c,a),b)). ** KEPT: 5093 (75,7,149,37) P(f(d,f(a,f(a,g(h)))),d,f(a,f(b,c))). ** KEPT: 5094 (75,7,149,5) P(f(d,f(a,f(a,g(h)))),d,f(c,c)). ** KEPT: 5095 (75,7,143,39) P(f(d,f(a,g(d))),f(c,b),f(f(c,a),b)). ** KEPT: 5096 (75,7,143,37) P(f(d,f(a,g(d))),f(c,b),f(a,f(b,c))). ** KEPT: 5097 (75,7,143,5) P(f(d,f(a,g(d))),f(c,b),f(c,c)). ** KEPT: 5098 (75,7,140,37) P(f(d,f(a,a)),g(c),f(a,f(b,g(d)))). ** KEPT: 5099 (75,7,140,5) P(f(d,f(a,a)),g(c),f(c,g(d))). ** KEPT: 5100 (75,7,135,37) P(f(d,f(a,f(g(d),a))),b,f(a,f(b,a))). ** KEPT: 5101 (75,7,135,5) P(f(d,f(a,f(g(d),a))),b,f(c,a)). ** KEPT: 5102 (75,7,123,37) P(f(d,f(a,f(h,g(a)))),c,f(a,f(b,d))). ** KEPT: 5103 (75,7,123,5) P(f(d,f(a,f(h,g(a)))),c,f(c,d)). ** KEPT: 5104 (75,7,122,37) P(f(d,f(a,f(g(a),d))),a,f(a,f(b,b))). ** KEPT: 5105 (75,7,122,5) P(f(d,f(a,f(g(a),d))),a,f(c,b)). ** KEPT: 5106 (75,7,115,37) P(f(d,f(a,d)),f(a,g(b)),f(a,f(b,a))). ** KEPT: 5107 (75,7,115,5) P(f(d,f(a,d)),f(a,g(b)),f(c,a)). ** KEPT: 5108 (75,7,110,39) P(f(d,f(a,f(d,c))),g(b),f(f(c,a),b)). ** KEPT: 5109 (75,7,110,37) P(f(d,f(a,f(d,c))),g(b),f(a,f(b,c))). ** KEPT: 5110 (75,7,110,5) P(f(d,f(a,f(d,c))),g(b),f(c,c)). ** KEPT: 5111 (75,7,105,37) P(f(d,f(a,d)),g(h),f(a,f(b,k))). ** KEPT: 5112 (75,7,105,5) P(f(d,f(a,d)),g(h),f(c,k)). ** KEPT: 5113 (75,7,102,39) P(f(d,f(a,h)),f(b,a),f(f(c,a),b)). ** KEPT: 5114 (75,7,102,37) P(f(d,f(a,h)),f(b,a),f(a,f(b,c))). ** KEPT: 5115 (75,7,102,5) P(f(d,f(a,h)),f(b,a),f(c,c)). ** KEPT: 5116 (75,7,101,37) P(f(d,f(a,g(h))),d,f(a,f(b,b))). ** KEPT: 5117 (75,7,87,37) P(f(d,f(a,h)),b,f(a,f(b,d))). ** KEPT: 5118 (75,7,87,5) P(f(d,f(a,h)),b,f(c,d)). ** KEPT: 5119 (75,7,78,37) P(f(d,f(a,d)),c,f(a,f(b,f(c,b)))). ** KEPT: 5120 (75,7,78,5) P(f(d,f(a,d)),c,f(c,f(c,b))). ** KEPT: 5121 (75,7,77,37) P(f(d,f(a,g(d))),c,f(a,f(b,a))). ** KEPT: 5122 (75,7,77,5) P(f(d,f(a,g(d))),c,f(c,a)). ** KEPT: 5123 (75,7,74,37) P(f(d,f(a,c)),b,f(a,f(b,f(d,c)))). ** KEPT: 5124 (75,7,74,5) P(f(d,f(a,c)),b,f(c,f(d,c))). ** KEPT: 5125 (75,7,71,37) P(f(d,f(a,f(x,d))),a,f(a,f(b,f(x,c)))). ** KEPT: 5126 (75,7,71,5) P(f(d,f(a,f(x,d))),a,f(c,f(x,c))). ** KEPT: 5127 (75,7,63,37) P(f(d,f(a,a)),f(b,g(a)),f(a,f(b,d))). ** KEPT: 5128 (75,7,63,5) P(f(d,f(a,a)),f(b,g(a)),f(c,d)). ** KEPT: 5129 (75,7,62,39) P(f(d,f(a,d)),a,f(f(c,a),b)). ** KEPT: 5130 (75,7,62,37) P(f(d,f(a,d)),a,f(a,f(b,c))). ** KEPT: 5131 (75,7,62,5) P(f(d,f(a,d)),a,f(c,c)). ** KEPT: 5132 (75,7,41,37) P(f(d,f(a,a)),f(b,x),f(a,f(b,f(c,x)))). ** KEPT: 5133 (75,7,41,5) P(f(d,f(a,a)),f(b,x),f(c,f(c,x))). ** KEPT: 5134 (75,7,39,37) P(f(d,f(a,x)),c,f(a,f(b,f(f(x,a),b)))). ** KEPT: 5135 (75,7,39,5) P(f(d,f(a,x)),c,f(c,f(f(x,a),b))). ** KEPT: 5136 (75,7,38,37) P(f(d,f(a,c)),g(b),f(a,f(b,a))). ** KEPT: 5137 (75,7,38,5) P(f(d,f(a,c)),g(b),f(c,a)). ** KEPT: 5138 (75,7,37,37) P(f(d,f(a,c)),x,f(a,f(b,f(a,f(b,x))))). ** KEPT: 5139 (75,7,37,5) P(f(d,f(a,c)),x,f(c,f(a,f(b,x)))). ** KEPT: 5140 (75,7,34,37) P(f(d,f(a,f(x,a))),b,f(a,f(b,f(x,c)))). ** KEPT: 5141 (75,7,34,5) P(f(d,f(a,f(x,a))),b,f(c,f(x,c))). ** KEPT: 5142 (75,7,22,37) P(f(d,f(a,d)),g(b),f(a,f(b,h))). ** KEPT: 5143 (75,7,22,5) P(f(d,f(a,d)),g(b),f(c,h)). ** KEPT: 5144 (75,7,21,37) P(f(d,f(a,c)),g(a),f(a,f(b,d))). ** KEPT: 5145 (75,7,21,5) P(f(d,f(a,c)),g(a),f(c,d)). ** KEPT: 5146 (75,7,20,39) P(f(d,f(a,a)),b,f(f(c,a),b)). ** KEPT: 5147 (75,7,20,37) P(f(d,f(a,a)),b,f(a,f(b,c))). ** KEPT: 5148 (75,7,20,5) P(f(d,f(a,a)),b,f(c,c)). ** KEPT: 5149 (75,7,5,37) P(f(d,f(a,x)),y,f(a,f(b,f(x,y)))). ** KEPT: 5150 (75,7,5,5) P(f(d,f(a,x)),y,f(c,f(x,y))). ** KEPT: 5151 (75,7,2,39) P(f(d,f(a,c)),e,f(f(c,a),b)). ** KEPT: 5152 (75,7,2,37) P(f(d,f(a,x)),e,f(a,f(b,x))). ** KEPT: 5153 (75,7,2,5) P(f(d,f(a,x)),e,f(c,x)). ** KEPT: 5154 (75,6,3826,3824) P(g(x),c,f(d,f(a,f(g(f(x,c)),c)))). ** KEPT: 5155 (75,6,3826,39) P(g(x),f(f(f(x,c),a),b),f(d,f(a,c))). ** KEPT: 5156 (75,6,3826,5) P(g(x),f(f(x,c),y),f(d,f(a,y))). ** KEPT: 5157 (75,6,3826,4) P(g(x),e,f(d,f(a,g(f(x,c))))). ** KEPT: 5158 (75,6,3824,3824) P(x,c,f(d,f(a,f(g(f(g(x),c)),c)))). ** KEPT: 5159 (75,6,3824,39) P(x,f(f(f(g(x),c),a),b),f(d,f(a,c))). ** KEPT: 5160 (75,6,3824,5) P(x,f(f(g(x),c),y),f(d,f(a,y))). ** KEPT: 5161 (75,6,3824,4) P(x,e,f(d,f(a,g(f(g(x),c))))). ** KEPT: 5162 (75,6,2897,4429) P(f(c,g(f(d,d))),d,f(d,f(a,g(d)))). ** KEPT: 5163 (75,6,2897,4428) P(f(c,g(f(h,d))),h,f(d,f(a,g(d)))). ** KEPT: 5164 (75,6,2897,4427) P(f(c,g(f(b,d))),b,f(d,f(a,g(d)))). ** KEPT: 5165 (75,6,2897,2897) P(f(c,g(f(c,g(x)))),c,f(d,f(a,x))). ** KEPT: 5166 (75,6,2897,2896) P(f(c,g(f(c,x))),c,f(d,f(a,g(x)))). ** KEPT: 5167 (75,6,2897,1379) P(f(c,g(f(d,g(c)))),d,f(d,f(a,c))). ** KEPT: 5168 (75,6,2897,760) P(f(c,g(f(a,g(h)))),a,f(d,f(a,h))). ** KEPT: 5169 (75,6,2897,676) P(f(c,g(f(h,g(a)))),h,f(d,f(a,a))). ** KEPT: 5170 (75,6,2897,566) P(f(c,g(d)),k,f(d,f(a,f(b,g(d))))). ** KEPT: 5171 (75,6,2897,457) P(f(c,g(h)),e,f(d,f(a,f(g(d),k)))). ** KEPT: 5172 (75,6,2897,409) P(f(c,g(f(k,d))),k,f(d,f(a,g(d)))). ** KEPT: 5173 (75,6,2897,351) P(f(c,g(f(d,b))),k,f(d,f(a,g(d)))). ** KEPT: 5174 (75,6,2897,307) P(f(c,g(f(d,g(c)))),h,f(d,f(a,a))). ** KEPT: 5175 (75,6,2897,271) P(f(c,g(f(c,g(d)))),a,f(d,f(a,h))). ** KEPT: 5176 (75,6,2897,197) P(f(c,g(h)),f(g(k),c),f(d,f(a,a))). ** KEPT: 5177 (75,6,2897,190) P(f(c,g(k)),e,f(d,f(a,f(h,g(d))))). ** KEPT: 5178 (75,6,2897,188) P(f(c,g(k)),h,f(d,f(a,f(h,g(b))))). ** KEPT: 5179 (75,6,2897,180) P(f(c,g(f(g(h),k))),b,f(d,f(a,h))). ** KEPT: 5180 (75,6,2897,168) P(f(c,g(h)),k,f(d,f(a,f(b,g(h))))). ** KEPT: 5181 (75,6,2897,152,109) P(a,f(g(h),c),f(d,f(a,a))). ** KEPT: 5182 (75,6,2897,149) P(f(c,g(f(a,g(h)))),c,f(d,f(a,d))). ** KEPT: 5183 (75,6,2897,123) P(f(c,g(f(h,g(a)))),d,f(d,f(a,c))). ** KEPT: 5184 (75,6,2897,122) P(f(c,g(f(g(a),d))),b,f(d,f(a,a))). ** KEPT: 5185 (75,6,2897,115) P(f(c,g(d)),a,f(d,f(a,f(a,g(b))))). ** KEPT: 5186 (75,6,2897,104) P(f(c,g(h)),e,f(d,f(a,f(b,g(d))))). ** KEPT: 5187 (75,6,2897,80) P(f(c,g(d)),e,f(d,f(a,f(a,g(c))))). ** KEPT: 5188 (75,6,2897,71) P(f(c,g(f(x,d))),f(x,c),f(d,f(a,a))). ** KEPT: 5189 (75,6,2897,41,57) P(d,f(c,x),f(d,f(a,f(b,x)))). ** KEPT: 5190 (75,6,2897,39) P(f(c,g(x)),f(f(x,a),b),f(d,f(a,c))). ** KEPT: 5191 (75,6,2897,37,29) P(e,f(a,f(b,x)),f(d,f(a,x))). ** KEPT: 5192 (75,6,2897,5) P(f(c,g(x)),f(x,y),f(d,f(a,y))). ** KEPT: 5193 (75,6,2896,39) P(f(c,x),f(f(g(x),a),b),f(d,f(a,c))). ** KEPT: 5194 (75,6,2896,5) P(f(c,x),f(g(x),y),f(d,f(a,y))). ** KEPT: 5195 (75,6,187,39) P(k,f(f(f(h,a),a),b),f(d,f(a,c))). ** KEPT: 5196 (75,6,187,5) P(k,f(f(h,a),x),f(d,f(a,x))). ** KEPT: 5197 (75,6,149,3824,134) P(f(a,g(h)),c,f(d,f(a,a))). ** KEPT: 5198 (75,6,149,1769) P(f(a,g(h)),k,f(d,f(a,f(g(d),k)))). ** KEPT: 5199 (75,6,149,566) P(f(a,g(h)),k,f(d,f(a,f(b,g(d))))). ** KEPT: 5200 (75,6,149,115) P(f(a,g(h)),a,f(d,f(a,f(a,g(b))))). ** KEPT: 5201 (75,6,149,105) P(f(a,g(h)),k,f(d,f(a,g(h)))). ** KEPT: 5202 (75,6,149,80) P(f(a,g(h)),e,f(d,f(a,f(a,g(c))))). ** KEPT: 5203 (75,6,149,78) P(f(a,g(h)),f(c,b),f(d,f(a,c))). ** KEPT: 5204 (75,6,149,5) P(f(a,g(h)),f(d,x),f(d,f(a,x))). ** KEPT: 5205 (75,6,149,4) P(f(a,g(h)),e,f(d,f(a,g(d)))). ** KEPT: 5206 (75,6,143,3824) P(g(d),c,f(d,f(a,f(g(f(c,b)),c)))). ** KEPT: 5207 (75,6,143,39) P(g(d),f(f(f(c,b),a),b),f(d,f(a,c))). ** KEPT: 5208 (75,6,143,5) P(g(d),f(f(c,b),x),f(d,f(a,x))). ** KEPT: 5209 (75,6,143,4) P(g(d),e,f(d,f(a,g(f(c,b))))). ** KEPT: 5210 (75,6,110,39) P(f(d,c),f(f(g(b),a),b),f(d,f(a,c))). ** KEPT: 5211 (75,6,110,5) P(f(d,c),f(g(b),x),f(d,f(a,x))). ** KEPT: 5212 (75,6,102,39) P(h,f(f(f(b,a),a),b),f(d,f(a,c))). ** KEPT: 5213 (75,6,102,5) P(h,f(f(b,a),x),f(d,f(a,x))). ** KEPT: 5214 (75,6,62,39) P(d,f(f(a,a),b),f(d,f(a,c))). ** KEPT: 5215 (75,6,20,39) P(a,f(f(b,a),b),f(d,f(a,c))). ** KEPT: 5216 (75,6,20,5) P(a,f(b,x),f(d,f(a,x))). ** KEPT: 5217 (75,6,1,39) P(e,f(f(c,a),b),f(d,f(a,c))). ** KEPT: 5218 (75,6,1,5) P(e,f(c,x),f(d,f(a,x))). ** KEPT: 5219 (75,6,2897,39,29) P(e,f(d,f(a,c)),f(f(c,a),b)). ** KEPT: 5220 (75,6,2897,37,29) P(e,f(d,f(a,x)),f(a,f(b,x))). ** KEPT: 5221 (75,6,2897,5,29) P(e,f(d,f(a,x)),f(c,x)). ** KEPT: 5222 (75,6,1405,3824) P(f(b,g(c)),f(d,f(a,f(g(b),c))),c). ** KEPT: 5223 (75,6,1405,154) P(f(b,g(c)),f(d,f(a,g(d))),g(h)). ** KEPT: 5224 (75,6,1405,152) P(f(b,g(c)),f(d,f(a,a)),f(g(h),c)). ** KEPT: 5225 (75,6,1405,39) P(f(b,g(c)),f(d,f(a,c)),f(f(b,a),b)). ** KEPT: 5226 (75,6,1405,5) P(f(b,g(c)),f(d,f(a,x)),f(b,x)). ** KEPT: 5227 (75,6,1379,3824,134) P(f(d,g(c)),f(d,f(a,a)),c). ** KEPT: 5228 (75,6,1379,1769) P(f(d,g(c)),f(d,f(a,f(g(d),k))),k). ** KEPT: 5229 (75,6,1379,566) P(f(d,g(c)),f(d,f(a,f(b,g(d)))),k). ** KEPT: 5230 (75,6,1379,115) P(f(d,g(c)),f(d,f(a,f(a,g(b)))),a). ** KEPT: 5231 (75,6,1379,105) P(f(d,g(c)),f(d,f(a,g(h))),k). ** KEPT: 5232 (75,6,1379,80) P(f(d,g(c)),f(d,f(a,f(a,g(c)))),e). ** KEPT: 5233 (75,6,1379,78) P(f(d,g(c)),f(d,f(a,c)),f(c,b)). ** KEPT: 5234 (75,6,1379,5) P(f(d,g(c)),f(d,f(a,x)),f(d,x)). ** KEPT: 5235 (75,6,1379,4) P(f(d,g(c)),f(d,f(a,g(d))),e). ** KEPT: 5236 (75,6,1094,41) P(f(a,g(c)),f(d,f(a,f(b,x))),f(c,x)). ** KEPT: 5237 (75,6,1094,39) P(f(a,g(c)),f(d,f(a,c)),f(f(a,a),b)). ** KEPT: 5238 (75,6,528,3824) P(f(g(c),d),f(d,f(a,f(g(b),c))),c). ** KEPT: 5239 (75,6,528,154) P(f(g(c),d),f(d,f(a,g(d))),g(h)). ** KEPT: 5240 (75,6,528,152) P(f(g(c),d),f(d,f(a,a)),f(g(h),c)). ** KEPT: 5241 (75,6,528,39) P(f(g(c),d),f(d,f(a,c)),f(f(b,a),b)). ** KEPT: 5242 (75,6,528,5) P(f(g(c),d),f(d,f(a,x)),f(b,x)). ** KEPT: 5243 (75,6,202,3824) P(g(k),f(d,f(a,f(g(f(h,a)),c))),c). ** KEPT: 5244 (75,6,202,39) P(g(k),f(d,f(a,c)),f(f(f(h,a),a),b)). ** KEPT: 5245 (75,6,202,5) P(g(k),f(d,f(a,x)),f(f(h,a),x)). ** KEPT: 5246 (75,6,156,3824) P(g(h),f(d,f(a,f(g(f(b,a)),c))),c). ** KEPT: 5247 (75,6,156,39) P(g(h),f(d,f(a,c)),f(f(f(b,a),a),b)). ** KEPT: 5248 (75,6,156,5) P(g(h),f(d,f(a,x)),f(f(b,a),x)). ** KEPT: 5249 (75,6,123,3824,134) P(f(h,g(a)),f(d,f(a,a)),c). ** KEPT: 5250 (75,6,123,1769) P(f(h,g(a)),f(d,f(a,f(g(d),k))),k). ** KEPT: 5251 (75,6,123,566) P(f(h,g(a)),f(d,f(a,f(b,g(d)))),k). ** KEPT: 5252 (75,6,123,115) P(f(h,g(a)),f(d,f(a,f(a,g(b)))),a). ** KEPT: 5253 (75,6,123,105) P(f(h,g(a)),f(d,f(a,g(h))),k). ** KEPT: 5254 (75,6,123,80) P(f(h,g(a)),f(d,f(a,f(a,g(c)))),e). ** KEPT: 5255 (75,6,123,78) P(f(h,g(a)),f(d,f(a,c)),f(c,b)). ** KEPT: 5256 (75,6,123,5) P(f(h,g(a)),f(d,f(a,x)),f(d,x)). ** KEPT: 5257 (75,6,123,4) P(f(h,g(a)),f(d,f(a,g(d))),e). ** KEPT: 5258 (75,6,78,3824) P(d,f(d,f(a,f(g(f(c,b)),c))),c). ** KEPT: 5259 (75,6,78,39) P(d,f(d,f(a,c)),f(f(f(c,b),a),b)). ** KEPT: 5260 (75,6,78,5) P(d,f(d,f(a,x)),f(f(c,b),x)). ** KEPT: 5261 (75,6,78,4) P(d,f(d,f(a,g(f(c,b)))),e). ** KEPT: 5262 (75,6,77,63,487) P(g(d),f(d,d),d). ** KEPT: 5263 (75,6,77,41) P(g(d),f(d,f(a,f(b,x))),f(c,x)). ** KEPT: 5264 (75,6,77,39) P(g(d),f(d,f(a,c)),f(f(a,a),b)). ** KEPT: 5265 (75,6,77,5) P(g(d),f(d,f(a,x)),f(a,x)). ** KEPT: 5266 (75,6,75,3824) P(c,f(d,f(a,f(g(f(d,f(a,c))),c))),c). ** KEPT: 5267 (75,6,75,39) P(c,f(d,f(a,c)),f(f(f(d,f(a,c)),a),b)). ** KEPT: 5268 (75,6,75,5) P(c,f(d,f(a,x)),f(f(d,f(a,c)),x)). ** KEPT: 5269 (75,6,75,4) P(c,f(d,f(a,g(f(d,f(a,c))))),e). ** KEPT: 5270 (75,6,40,3824) P(g(a),f(d,f(a,f(g(b),c))),c). ** KEPT: 5271 (75,6,40,154) P(g(a),f(d,f(a,g(d))),g(h)). ** KEPT: 5272 (75,6,40,152) P(g(a),f(d,f(a,a)),f(g(h),c)). ** KEPT: 5273 (75,6,40,39) P(g(a),f(d,f(a,c)),f(f(b,a),b)). ** KEPT: 5274 (75,6,40,5) P(g(a),f(d,f(a,x)),f(b,x)). ** KEPT: 5275 (75,6,39,3824) P(x,f(d,f(a,f(g(f(f(x,a),b)),c))),c). ** KEPT: 5276 (75,6,39,39) P(x,f(d,f(a,c)),f(f(f(f(x,a),b),a),b)). ** KEPT: 5277 (75,6,39,5) P(x,f(d,f(a,y)),f(f(f(x,a),b),y)). ** KEPT: 5278 (75,6,39,4) P(x,f(d,f(a,g(f(f(x,a),b)))),e). ** KEPT: 5279 (75,6,37,3824) P(c,f(d,f(a,f(g(f(a,f(b,c))),c))),c). ** KEPT: 5280 (75,6,37,39) P(c,f(d,f(a,c)),f(f(f(a,f(b,c)),a),b)). ** KEPT: 5281 (75,6,37,5) P(c,f(d,f(a,x)),f(f(a,f(b,c)),x)). ** KEPT: 5282 (75,6,37,4) P(c,f(d,f(a,g(f(a,f(b,c))))),e). ** KEPT: 5283 (75,6,5,3824) P(x,f(d,f(a,f(g(f(x,c)),c))),c). ** KEPT: 5284 (75,6,5,39) P(x,f(d,f(a,c)),f(f(f(x,c),a),b)). ** KEPT: 5285 (75,6,5,5) P(x,f(d,f(a,y)),f(f(x,c),y)). ** KEPT: 5286 (75,6,5,4) P(x,f(d,f(a,g(f(x,c)))),e). ** KEPT: 5287 (75,6,3,5,28) P(g(c),f(d,f(a,x)),x). ** KEPT: 5288 (75,6,4458,5) P(c,k,f(f(d,f(a,f(k,a))),g(a))). ** KEPT: 5289 (75,6,4429,5) P(c,d,f(f(d,f(a,f(d,d))),g(d))). ** KEPT: 5290 (75,6,4428,5) P(c,h,f(f(d,f(a,f(h,d))),g(d))). ** KEPT: 5291 (75,6,4427,5) P(c,b,f(f(d,f(a,f(b,d))),g(d))). ** KEPT: 5292 (75,6,4409,5) P(c,k,f(f(d,f(a,f(k,c))),g(c))). ** KEPT: 5293 (75,6,3826,5) P(c,c,f(f(d,f(a,g(x))),f(x,c))). ** KEPT: 5294 (75,6,3824,5) P(c,c,f(f(d,f(a,x)),f(g(x),c))). ** KEPT: 5295 (75,6,3627,5) P(c,b,f(f(d,f(a,f(b,b))),g(b))). ** KEPT: 5296 (75,6,2897,5) P(c,c,f(f(d,f(a,f(c,g(x)))),x)). ** KEPT: 5297 (75,6,2896,5) P(c,c,f(f(d,f(a,f(c,x))),g(x))). ** KEPT: 5298 (75,6,2552,5) P(c,b,f(f(d,f(a,f(b,c))),g(c))). ** KEPT: 5299 (75,6,2551,5) P(c,h,f(f(d,f(a,f(h,c))),g(c))). ** KEPT: 5300 (75,6,1769,5) P(c,k,f(f(d,f(a,d)),f(g(d),k))). ** KEPT: 5301 (75,6,1600,5) P(c,h,f(f(d,f(a,f(h,g(d)))),d)). ** KEPT: 5302 (75,6,1529,5) P(c,h,f(f(d,f(a,d)),f(g(d),h))). ** KEPT: 5303 (75,6,1485,5) P(c,d,f(f(d,f(a,c)),f(g(c),d))). ** KEPT: 5304 (75,6,1454,5) P(c,a,f(f(d,f(a,c)),f(g(c),a))). ** KEPT: 5305 (75,6,1379,39) P(c,d,f(f(f(d,f(a,f(d,g(c)))),a),b)). ** KEPT: 5306 (75,6,1379,5) P(c,d,f(f(d,f(a,f(d,g(c)))),c)). ** KEPT: 5307 (75,6,1373,5) P(c,h,f(f(d,f(a,d)),f(g(c),a))). ** KEPT: 5308 (75,6,1270,5) P(c,b,f(f(d,f(a,f(b,g(d)))),d)). ** KEPT: 5309 (75,6,1237,5) P(c,a,f(f(d,f(a,c)),f(g(d),h))). ** KEPT: 5310 (75,6,1094,39) P(c,a,f(f(f(d,f(a,f(a,g(c)))),a),b)). ** KEPT: 5311 (75,6,1094,5) P(c,a,f(f(d,f(a,f(a,g(c)))),c)). ** KEPT: 5312 (75,6,1034,5) P(c,h,f(f(d,f(a,f(h,a))),g(a))). ** KEPT: 5313 (75,6,922,5) P(c,b,f(f(d,f(a,f(g(d),k))),d)). ** KEPT: 5314 (75,6,817,5) P(c,b,f(f(d,f(a,f(b,a))),g(a))). ** KEPT: 5315 (75,6,760,5) P(c,a,f(f(d,f(a,f(a,g(h)))),h)). ** KEPT: 5316 (75,6,676,5) P(c,h,f(f(d,f(a,f(h,g(a)))),a)). ** KEPT: 5317 (75,6,566,5) P(c,k,f(f(d,f(a,d)),f(b,g(d)))). ** KEPT: 5318 (75,6,475,5) P(c,d,f(f(d,f(a,c)),f(b,g(c)))). ** KEPT: 5319 (75,6,457,5) P(c,e,f(f(d,f(a,h)),f(g(d),k))). ** KEPT: 5320 (75,6,434,5) P(c,k,f(f(d,f(a,c)),g(f(h,a)))). ** KEPT: 5321 (75,6,426,5) P(c,a,f(f(d,f(a,g(h))),f(h,a))). ** KEPT: 5322 (75,6,414,5) P(c,d,f(f(d,f(a,g(k))),f(k,d))). ** KEPT: 5323 (75,6,409,5) P(c,k,f(f(d,f(a,f(k,d))),g(d))). ** KEPT: 5324 (75,6,398,5) P(c,b,f(f(d,f(a,g(d))),f(k,d))). ** KEPT: 5325 (75,6,397,5) P(c,b,f(f(d,f(a,g(d))),f(d,b))). ** KEPT: 5326 (75,6,392,5) P(c,g(d),f(f(d,f(a,g(h))),g(k))). ** KEPT: 5327 (75,6,389,5) P(c,e,f(f(d,f(a,f(h,g(d)))),k)). ** KEPT: 5328 (75,6,373,5) P(c,d,f(f(d,f(a,f(d,b))),g(b))). ** KEPT: 5329 (75,6,351,5) P(c,k,f(f(d,f(a,f(d,b))),g(d))). ** KEPT: 5330 (75,6,345,5) P(c,e,f(f(d,f(a,a)),f(g(c),d))). ** KEPT: 5331 (75,6,320,5) P(c,d,f(f(d,f(a,f(d,c))),g(c))). ** KEPT: 5332 (75,6,307,5) P(c,h,f(f(d,f(a,f(d,g(c)))),a)). ** KEPT: 5333 (75,6,292,5) P(c,h,f(f(d,f(a,c)),g(f(b,a)))). ** KEPT: 5334 (75,6,273,5) P(c,e,f(f(d,f(a,f(b,g(d)))),h)). ** KEPT: 5335 (75,6,271,5) P(c,a,f(f(d,f(a,f(c,g(d)))),h)). ** KEPT: 5336 (75,6,255,5) P(c,d,f(f(d,f(a,f(c,b))),g(c))). ** KEPT: 5337 (75,6,212,5) P(c,e,f(f(d,f(a,f(a,g(c)))),d)). ** KEPT: 5338 (75,6,204,5) P(c,d,f(f(d,f(a,g(k))),f(d,b))). ** KEPT: 5339 (75,6,202,39) P(c,f(h,a),f(f(f(d,f(a,g(k))),a),b)). ** KEPT: 5340 (75,6,202,5) P(c,f(h,a),f(f(d,f(a,g(k))),c)). ** KEPT: 5341 (75,6,200,5) P(c,g(k),f(f(d,f(a,h)),g(d))). ** KEPT: 5342 (75,6,197,5) P(c,f(g(k),c),f(f(d,f(a,h)),a)). ** KEPT: 5343 (75,6,193,5) P(c,h,f(f(d,f(a,f(g(k),h))),b)). ** KEPT: 5344 (75,6,190,5) P(c,e,f(f(d,f(a,k)),f(h,g(d)))). ** KEPT: 5345 (75,6,188,5) P(c,h,f(f(d,f(a,k)),f(h,g(b)))). ** KEPT: 5346 (75,6,187,5) P(c,c,f(f(d,f(a,k)),f(h,a))). ** KEPT: 5347 (75,6,186,5) P(c,h,f(f(d,f(a,g(k))),d)). ** KEPT: 5348 (75,6,182,5) P(c,e,f(f(d,f(a,f(g(d),k))),h)). ** KEPT: 5349 (75,6,180,5) P(c,b,f(f(d,f(a,f(g(h),k))),h)). ** KEPT: 5350 (75,6,179,5) P(c,d,f(f(d,f(a,f(k,d))),g(b))). ** KEPT: 5351 (75,6,173,5) P(c,f(k,d),f(f(d,f(a,d)),b)). ** KEPT: 5352 (75,6,172,5) P(c,g(h),f(f(d,f(a,g(d))),k)). ** KEPT: 5353 (75,6,168,5) P(c,k,f(f(d,f(a,h)),f(b,g(h)))). ** KEPT: 5354 (75,6,167,5) P(c,d,f(f(d,f(a,k)),h)). ** KEPT: 5355 (75,6,165,5) P(c,f(d,b),f(f(d,f(a,k)),d)). ** KEPT: 5356 (75,6,156,39) P(c,f(b,a),f(f(f(d,f(a,g(h))),a),b)). ** KEPT: 5357 (75,6,156,5) P(c,f(b,a),f(f(d,f(a,g(h))),c)). ** KEPT: 5358 (75,6,149,5) P(c,c,f(f(d,f(a,f(a,g(h)))),d)). ** KEPT: 5359 (75,6,143,5) P(c,c,f(f(d,f(a,g(d))),f(c,b))). ** KEPT: 5360 (75,6,140,5) P(c,g(d),f(f(d,f(a,a)),g(c))). ** KEPT: 5361 (75,6,135,5) P(c,a,f(f(d,f(a,f(g(d),a))),b)). ** KEPT: 5362 (75,6,123,39) P(c,d,f(f(f(d,f(a,f(h,g(a)))),a),b)). ** KEPT: 5363 (75,6,123,5) P(c,d,f(f(d,f(a,f(h,g(a)))),c)). ** KEPT: 5364 (75,6,122,5) P(c,b,f(f(d,f(a,f(g(a),d))),a)). ** KEPT: 5365 (75,6,115,5) P(c,a,f(f(d,f(a,d)),f(a,g(b)))). ** KEPT: 5366 (75,6,110,5) P(c,c,f(f(d,f(a,f(d,c))),g(b))). ** KEPT: 5367 (75,6,105,5) P(c,k,f(f(d,f(a,d)),g(h))). ** KEPT: 5368 (75,6,104,5) P(c,e,f(f(d,f(a,h)),f(b,g(d)))). ** KEPT: 5369 (75,6,102,5) P(c,c,f(f(d,f(a,h)),f(b,a))). ** KEPT: 5370 (75,6,101,5) P(c,b,f(f(d,f(a,g(h))),d)). ** KEPT: 5371 (75,6,90,5) P(c,g(b),f(f(d,f(a,g(d))),h)). ** KEPT: 5372 (75,6,87,5) P(c,d,f(f(d,f(a,h)),b)). ** KEPT: 5373 (75,6,80,5) P(c,e,f(f(d,f(a,d)),f(a,g(c)))). ** KEPT: 5374 (75,6,78,39) P(c,f(c,b),f(f(f(d,f(a,d)),a),b)). ** KEPT: 5375 (75,6,78,5) P(c,f(c,b),f(f(d,f(a,d)),c)). ** KEPT: 5376 (75,6,77,39) P(c,a,f(f(f(d,f(a,g(d))),a),b)). ** KEPT: 5377 (75,6,77,5) P(c,a,f(f(d,f(a,g(d))),c)). ** KEPT: 5378 (75,6,74,5) P(c,f(d,c),f(f(d,f(a,c)),b)). ** KEPT: 5379 (75,6,71,5) P(c,f(x,c),f(f(d,f(a,f(x,d))),a)). ** KEPT: 5380 (75,6,67,5) P(c,e,f(f(d,f(a,c)),f(g(a),g(d)))). ** KEPT: 5381 (75,6,63,5) P(c,d,f(f(d,f(a,a)),f(b,g(a)))). ** KEPT: 5382 (75,6,62,5) P(c,c,f(f(d,f(a,d)),a)). ** KEPT: 5383 (75,6,42,5) P(c,e,f(f(d,f(a,a)),f(b,g(c)))). ** KEPT: 5384 (75,6,41,5) P(c,f(c,x),f(f(d,f(a,a)),f(b,x))). ** KEPT: 5385 (75,6,39,39) P(c,f(f(x,a),b),f(f(f(d,f(a,x)),a),b)). ** KEPT: 5386 (75,6,39,5) P(c,f(f(x,a),b),f(f(d,f(a,x)),c)). ** KEPT: 5387 (75,6,38,5) P(c,a,f(f(d,f(a,c)),g(b))). ** KEPT: 5388 (75,6,37,3824) P(c,f(a,f(b,f(g(f(d,f(a,c))),c))),c). ** KEPT: 5389 (75,6,37,39) P(c,f(a,f(b,c)),f(f(f(d,f(a,c)),a),b)). ** KEPT: 5390 (75,6,37,5) P(c,f(a,f(b,x)),f(f(d,f(a,c)),x)). ** KEPT: 5391 (75,6,37,4) P(c,f(a,f(b,g(f(d,f(a,c))))),e). ** KEPT: 5392 (75,6,34,5) P(c,f(x,c),f(f(d,f(a,f(x,a))),b)). ** KEPT: 5393 (75,6,22,5) P(c,h,f(f(d,f(a,d)),g(b))). ** KEPT: 5394 (75,6,21,5) P(c,d,f(f(d,f(a,c)),g(a))). ** KEPT: 5395 (75,6,20,5) P(c,c,f(f(d,f(a,a)),b)). ** KEPT: 5396 (75,6,5,3824) P(c,f(x,f(g(f(d,f(a,x))),c)),c). ** KEPT: 5397 (75,6,5,39) P(c,f(x,c),f(f(f(d,f(a,x)),a),b)). ** KEPT: 5398 (75,6,5,5) P(c,f(x,y),f(f(d,f(a,x)),y)). ** KEPT: 5399 (75,6,5,4) P(c,f(x,g(f(d,f(a,x)))),e). ** KEPT: 5400 (75,6,4,5) P(c,e,f(f(d,f(a,x)),g(x))). ** KEPT: 5401 (75,6,3,5) P(c,e,f(f(d,f(a,g(x))),x)). >>>> Starting back demodulation with: 4636 (4635) EQUAL(f(d,f(a,f(g(c),a))),a). >> back demodulating: 4632 (75,13,304) P(c,g(b),f(d,f(a,f(g(c),a)))). >>>> Starting back demodulation with: 4638 (4637) EQUAL(f(d,f(a,f(g(d),h))),a). >> back demodulating: 4633 (75,13,268) P(c,g(b),f(d,f(a,f(g(d),h)))). >>>> Starting back demodulation with: 4640 (4639) EQUAL(f(d,f(a,g(f(h,a)))),k). >>>> Starting back demodulation with: 4642 (4641) EQUAL(f(d,f(a,g(f(b,a)))),h). >>>> Starting back demodulation with: 4644 (4643) EQUAL(f(d,f(a,f(g(a),g(d)))),e). 4763 back subsumes: 1934 (760,7,5,62) P(f(d,f(a,g(h))),h,c). 4942 back subsumes: 2907 (37,7,78,5) P(f(c,b),x,f(d,f(a,f(b,x)))). 5192 back subsumes: 4890 (75,7,5,414) P(f(c,g(k)),f(k,d),f(d,f(a,d))). 5192 back subsumes: 4889 (75,7,5,426) P(f(c,g(h)),f(h,a),f(d,f(a,a))). 5192 back subsumes: 4869 (75,7,5,3826) P(f(c,g(x)),f(x,c),f(d,f(a,c))). 5194 back subsumes: 4878 (75,7,5,1454) P(f(c,c),f(g(c),a),f(d,f(a,a))). 5194 back subsumes: 4877 (75,7,5,1485) P(f(c,c),f(g(c),d),f(d,f(a,d))). 5194 back subsumes: 4876 (75,7,5,1529) P(f(c,d),f(g( search stopped by max_kept option. d),h),f(d,f(a,h))). 5194 back subsumes: 4874 (75,7,5,1769) P(f(c,d),f(g(d),k),f(d,f(a,k))). 5194 back subsumes: 4870 (75,7,5,3824) P(f(c,x),f(g(x),c),f(d,f(a,c))). 5196 back subsumes: 4655 (75,7,434,3826) P(k,f(f(h,a),c),f(d,f(a,c))). 5211 back subsumes: 4764 (75,7,74,3824) P(f(d,c),f(g(b),c),f(d,f(a,c))). 5213 back subsumes: 4658 (75,7,292,3826) P(h,f(f(b,a),c),f(d,f(a,c))). 5216 back subsumes: 4706 (75,7,75,284,596) P(a,f(b,a),f(d,f(a,a))). 5216 back subsumes: 4649 (75,7,1454,3824,1347) P(a,f(b,c),f(d,f(a,c))). 5218 back subsumes: 4944 (75,7,4,3826) P(e,f(c,c),f(d,f(a,c))). 5218 back subsumes: 4666 (75,7,75,4213,531) P(e,f(c,a),f(d,f(a,a))). 5287 back subsumes: 4067 (3824,6,65,5,31) P(g(c),f(d,f(a,c)),c). ------------ END OF SEARCH ------------ search stopped by max_kept option. --------------- options --------------- set(hyper_res). set(demod_hist). set(for_sub). set(Unit_deletion). set(print_kept). set(factor). set(back_sub). set(print_back_sub). set(print_given). set(check_arity). set(back_demod). set(print_new_demod). set(print_back_demod). clear(binary_res). clear(UR_res). clear(para_from). clear(para_into). clear(demod_inf). clear(para_from_left). clear(para_from_right). clear(para_into_vars). clear(para_from_vars). clear(para_all). clear(para_ones_rule). clear(no_para_into_left). clear(no_para_into_right). clear(demod_linear). clear(print_gen). clear(sort_literals). clear(print_weight). clear(sos_fifo). clear(bird_print). clear(atom_wt_max_args). clear(print_lists_at_end). clear(free_all_mem). clear(for_sub_fpa). clear(no_fapl). clear(no_fanl). clear(order_eq). clear(dynamic_demod). assign(report, 0). assign(max_seconds, 0). assign(max_given, 0). assign(max_kept, 5000). assign(max_gen, 0). assign(max_mem, 0). assign(max_weight, 0). assign(max_literals, 0). assign(fpa_literals, 3). assign(fpa_terms, 3). assign(demod_limit, 100). assign(max_proofs, 1). assign(neg_weight, 0). ------------- memory usage ------------ 55 mallocs of 32700 bytes each (1756.3+ K) type (bytes each) gets frees in use avail bytes sym_ent ( 64) 31 0 31 0 1.9 K term ( 16) 206909 198465 8444 13 132.1 K rel ( 20) 178484 157150 21334 11 416.9 K term_ptr ( 8) 63609 6141 57468 249 450.9 K fpa_head ( 12) 673 22 651 0 7.6 K fpa_tree ( 28) 140642 140642 0 30 0.8 K context ( 260) 59804 59804 0 5 1.3 K trail ( 12) 68275 68275 0 10 0.1 K imd_tree ( 24) 309 12 297 0 7.0 K imd_pos ( 416) 45410 45410 0 2 0.8 K is_tree ( 12) 24950 2114 22836 101 268.8 K is_pos (1216) 306633 306633 0 4 4.8 K fsub_pos ( 8) 20627 20627 0 1 0.0 K literal ( 16) 17276 11853 5423 2 84.8 K clause ( 28) 15535 10134 5401 1 147.7 K list ( 60) 3 0 3 0 0.2 K clash_nd ( 32) 2359 2359 0 2 0.1 K clause_ptr ( 8) 6195 794 5401 5 42.2 K int_ptr ( 8) 67261 45950 21311 7 166.5 K -------------- statistics ------------- clauses input 31 clauses given 163 clauses generated 15188 demodulation rewrites 8096 clauses wt or lit delete 0 tautologies deleted 0 clauses forward subsumed 10131 (clauses subsumed by sos) 2964 unit deletions 0 clauses kept 5248 new demodualtors 122 empty clauses 0 factors generated 0 clauses back demodulated 191 clauses back subsumed 344 clauses not processed 0 ----------- times (seconds) ----------- run time 241.08 input time 0.34 binary_res time 0.00 hyper_res time 49.74 UR_res time 0.00 para_into time 0.00 para_from time 0.00 pre_process time 120.61 demod time 24.53 weigh time 2.03 for_sub time 31.45 unit_del time 10.99 post_process time 66.66 back_sub time 26.66 conflict time 14.39 factor time 0.56 back demod time 13.28 FPA build time 7.48 IS build time 3.70 print_cl time 20.42 cl integrate time 7.04 window time 0.00 SHAR_EOF if test -f 'commutator.ver2.clauses' then echo shar: over-writing existing file "'commutator.ver2.clauses'" fi cat << \SHAR_EOF > 'commutator.ver2.clauses' % problem-set/algebra/groups/commutator.ver2.clauses % created : 08/11/88 % revised : 08/12/88 % description: % % Theorem: (commutator thm.) if, for all x in G, x*x*x=e then % {{x,y},y}=e, where {x,y}=x*y*inverse(x)*inverse(y) is the % commutator of x and y. % representation: % % declare_predicate(1,[O]). % declare_predicate(2,[EQUAL]). % declare_function(1,[g]). % declare_functions(2,[f,l]). % declare_constants([e,a,b,c,d,h,j,k]). % declare_variables([x,y,z]). % % O(x) : membership in a subgroup of index 2 (see index) % g(x) : inverse of x % f(x,y) : names the product of x and y % l(x,y) : names an element in O (see index) % e : identity element % For any x and y in the group x*y is also in the group. No clause is needed % here since this is an instance of reflexivity given as EQUAL(x,x). % There exists an identity element 'e' defined below. % left identity EQUAL(f(e,x),x). % right identity EQUAL(f(x,e),x). % For any x in the group, there exists an element y such that x*y = y*x = e. % left inverse EQUAL(f(g(x),x),e). % right inverse EQUAL(f(x,g(x)),e). % The operation '*' is associative EQUAL(f(f(x,y),z),f(x,f(y,z))). % The operation '*' is well-defined. No clause is needed here since this % is an instance of reflexivity given as EQUAL(x,x). % reflexivity EQUAL(x,x). % denial of the theorem: exist a,b such that {{a,b},b} <> e. % i.e. e <> a*b*g(a)*g(b)*b*b*a*g(b)*g(a)*g(b). EQUAL(f(a,b),c). EQUAL(f(c,g(a)),d). EQUAL(f(d,g(b)),h). EQUAL(f(h,b),j). EQUAL(f(j,g(h)),k). -EQUAL(f(k,g(b)),e). SHAR_EOF if test -f 'commutator.ver2.in' then echo shar: over-writing existing file "'commutator.ver2.in'" fi cat << \SHAR_EOF > 'commutator.ver2.in' % problem-set/algebra/groups/commutator.ver2.in % created : 08/11/88 % revised : 08/11/88 % description: % % Theorem: (commutator thm.) if, for all x in G, x*x*x=e then % {{x,y},y}=e, where {x,y}=x*y*inverse(x)*inverse(y) is the % commutator of x and y. % representation: % % declare_predicate(1,[O]). % declare_predicate(2,[EQUAL]). % declare_function(1,[g]). % declare_functions(2,[f,l]). % declare_constants([e,a,b,c,d,h,j,k]). % declare_variables([x,y,z]). % % O(x) : membership in a subgroup of index 2 (see index) % g(x) : inverse of x % f(x,y) : names the product of x and y % l(x,y) : names an element in O (see index) % e : identity element set(para_into). set(para_from). set(para_from_left). set(para_from_right). set(back_demod). set(UR_res). assign(max_kept,5000). list(axioms). % For any x and y in the group x*y is also in the group. No clause is needed % here since this is an instance of reflexivity given as EQUAL(x,x). % There exists an identity element 'e' defined below. % left identity EQUAL(f(e,x),x). % right identity EQUAL(f(x,e),x). % For any x in the group, there exists an element y such that x*y = y*x = e. % left inverse EQUAL(f(g(x),x),e). % right inverse EQUAL(f(x,g(x)),e). % The operation '*' is associative EQUAL(f(f(x,y),z),f(x,f(y,z))). % The operation '*' is well-defined. No clause is needed here since this % is an instance of reflexivity given as EQUAL(x,x). % reflexivity EQUAL(x,x). end_of_list. list(sos). % denial of the theorem: exist a,b such that {{a,b},b} <> e. % i.e. e <> a*b*g(a)*g(b)*b*b*a*g(b)*g(a)*g(b). EQUAL(f(a,b),c). EQUAL(f(c,g(a)),d). EQUAL(f(d,g(b)),h). EQUAL(f(h,b),j). EQUAL(f(j,g(h)),k). -EQUAL(f(k,g(b)),e). end_of_list. list(demodulators). EQUAL(g(e),e). EQUAL(g(g(x)),x). end_of_list. SHAR_EOF if test -f 'commutator.ver2.out' then echo shar: over-writing existing file "'commutator.ver2.out'" fi cat << \SHAR_EOF > 'commutator.ver2.out' OTTER version 0.91, 14 June 1988. set(para_into). set(para_from). set(para_from_left). set(para_from_right). set(back_demod). set(UR_res). assign(max_kept,5000). list(axioms). 1 EQUAL(f(e,x),x). 2 EQUAL(f(x,e),x). 3 EQUAL(f(g(x),x),e). 4 EQUAL(f(x,g(x)),e). 5 EQUAL(f(f(x,y),z),f(x,f(y,z))). 6 EQUAL(x,x). end_of_list. list(sos). 7 EQUAL(f(a,b),c). 8 EQUAL(f(c,g(a)),d). 9 EQUAL(f(d,g(b)),h). 10 EQUAL(f(h,b),j). 11 EQUAL(f(j,g(h)),k). 12 -EQUAL(f(k,g(b)),e). end_of_list. list(demodulators). 13 EQUAL(g(e),e). 14 EQUAL(g(g(x)),x). end_of_list. new given clause: 7 EQUAL(f(a,b),c). ** KEPT: 15 (7,5) EQUAL(f(f(x,a),b),f(x,c)). ** KEPT: 16 (7,5) EQUAL(f(a,f(b,x)),f(c,x)). new given clause: 10 EQUAL(f(h,b),j). ** KEPT: 17 (10,5) EQUAL(f(f(x,h),b),f(x,j)). ** KEPT: 18 (10,5) EQUAL(f(h,f(b,x)),f(j,x)). new given clause: 8 EQUAL(f(c,g(a)),d). ** KEPT: 19 (7,8) EQUAL(f(f(a,b),g(a)),d). ---> New Demodulator: 20 (19) EQUAL(f(f(a,b),g(a)),d). >>>> Starting back demodulation with: 20 (19) EQUAL(f(f(a,b),g(a)),d). ** KEPT: 21 (8,5) EQUAL(f(f(x,c),g(a)),f(x,d)). ** KEPT: 22 (8,5) EQUAL(f(c,f(g(a),x)),f(d,x)). new given clause: 9 EQUAL(f(d,g(b)),h). ** KEPT: 23 (8,9) EQUAL(f(f(c,g(a)),g(b)),h). ---> New Demodulator: 24 (23) EQUAL(f(f(c,g(a)),g(b)),h). >>>> Starting back demodulation with: 24 (23) EQUAL(f(f(c,g(a)),g(b)),h). ** KEPT: 25 (9,5) EQUAL(f(f(x,d),g(b)),f(x,h)). ** KEPT: 26 (9,5) EQUAL(f(d,f(g(b),x)),f(h,x)). ** KEPT: 27 (9,10) EQUAL(f(f(d,g(b)),b),j). ---> New Demodulator: 28 (27) EQUAL(f(f(d,g(b)),b),j). >>>> Starting back demodulation with: 28 (27) EQUAL(f(f(d,g(b)),b),j). new given clause: 11 EQUAL(f(j,g(h)),k). ** KEPT: 29 (10,11) EQUAL(f(f(h,b),g(h)),k). ---> New Demodulator: 30 (29) EQUAL(f(f(h,b),g(h)),k). ** KEPT: 31 (9,11) EQUAL(f(j,g(f(d,g(b)))),k). ---> New Demodulator: 32 (31) EQUAL(f(j,g(f(d,g(b)))),k). >>>> Starting back demodulation with: 30 (29) EQUAL(f(f(h,b),g(h)),k). >>>> Starting back demodulation with: 32 (31) EQUAL(f(j,g(f(d,g(b)))),k). ** KEPT: 33 (11,5) EQUAL(f(f(x,j),g(h)),f(x,k)). ** KEPT: 34 (11,5) EQUAL(f(j,f(g(h),x)),f(k,x)). new given clause: 12 -EQUAL(f(k,g(b)),e). ** KEPT: 35 (11,12) -EQUAL(f(f(j,g(h)),g(b)),e). ** KEPT: 36 (4,12) -EQUAL(f(k,g(b)),f(x,g(x))). ** KEPT: 37 (3,12) -EQUAL(f(k,g(b)),f(g(x),x)). new given clause: 19 (7,8) EQUAL(f(f(a,b),g(a)),d). ** KEPT: 38 (5,19) EQUAL(f(a,f(b,g(a))),d). ---> New Demodulator: 39 (38) EQUAL(f(a,f(b,g(a))),d). >>>> Starting back demodulation with: 39 (38) EQUAL(f(a,f(b,g(a))),d). ** KEPT: 40 (19,5) EQUAL(f(f(x,f(a,b)),g(a)),f(x,d)). ** KEPT: 41 (19,5) EQUAL(f(f(a,b),f(g(a),x)),f(d,x)). new given clause: 27 (9,10) EQUAL(f(f(d,g(b)),b),j). ** KEPT: 42 (5,27) EQUAL(f(d,f(g(b),b)),j). ---> New Demodulator: 43 (42) EQUAL(f(d,f(g(b),b)),j). >>>> Starting back demodulation with: 43 (42) EQUAL(f(d,f(g(b),b)),j). ** KEPT: 44 (27,5) EQUAL(f(f(x,f(d,g(b))),b),f(x,j)). ** KEPT: 45 (27,5) EQUAL(f(f(d,g(b)),f(b,x)),f(j,x)). new given clause: 29 (10,11) EQUAL(f(f(h,b),g(h)),k). ** KEPT: 46 (9,29) EQUAL(f(f(h,b),g(f(d,g(b)))),k). ---> New Demodulator: 47 (46) EQUAL(f(f(h,b),g(f(d,g(b)))),k). ** KEPT: 48 (5,29) EQUAL(f(h,f(b,g(h))),k). ---> New Demodulator: 49 (48) EQUAL(f(h,f(b,g(h))),k). >>>> Starting back demodulation with: 47 (46) EQUAL(f(f(h,b),g(f(d,g(b)))),k). >>>> Starting back demodulation with: 49 (48) EQUAL(f(h,f(b,g(h))),k). ** KEPT: 50 (29,5) EQUAL(f(f(x,f(h,b)),g(h)),f(x,k)). ** KEPT: 51 (29,5) EQUAL(f(f(h,b),f(g(h),x)),f(k,x)). new given clause: 38 (5,19) EQUAL(f(a,f(b,g(a))),d). ** KEPT: 52 (38,5) EQUAL(f(f(x,a),f(b,g(a))),f(x,d)). ** KEPT: 53 (38,5) EQUAL(f(a,f(f(b,g(a)),x)),f(d,x)). new given clause: 42 (5,27) EQUAL(f(d,f(g(b),b)),j). ** KEPT: 54 (8,42) EQUAL(f(f(c,g(a)),f(g(b),b)),j). ---> New Demodulator: 55 (54) EQUAL(f(f(c,g(a)),f(g(b),b)),j). ** KEPT: 56 (3,42) EQUAL(f(d,e),j). ---> New Demodulator: 57 (56) EQUAL(f(d,e),j). >>>> Starting back demodulation with: 55 (54) EQUAL(f(f(c,g(a)),f(g(b),b)),j). >>>> Starting back demodulation with: 57 (56) EQUAL(f(d,e),j). ** KEPT: 58 (42,5) EQUAL(f(f(x,d),f(g(b),b)),f(x,j)). ** KEPT: 59 (42,5) EQUAL(f(d,f(f(g(b),b),x)),f(j,x)). new given clause: 56 (3,42) EQUAL(f(d,e),j). ** KEPT: 60 (8,56) EQUAL(f(f(c,g(a)),e),j). ---> New Demodulator: 61 (60) EQUAL(f(f(c,g(a)),e),j). ** KEPT: 62 (4,56) EQUAL(f(d,f(x,g(x))),j). ---> New Demodulator: 63 (62) EQUAL(f(d,f(x,g(x))),j). ** KEPT: 64 (3,56) EQUAL(f(d,f(g(x),x)),j). ---> New Demodulator: 65 (64) EQUAL(f(d,f(g(x),x)),j). ** KEPT: 66 (2,56) EQUAL(j,d). ---> New Demodulator: 67 (66) EQUAL(j,d). ** KEPT: 68 (10,56,57,67) EQUAL(f(h,b),d). ---> New Demodulator: 69 (68) EQUAL(f(h,b),d). >>>> Starting back demodulation with: 61 (60) EQUAL(f(f(c,g(a)),e),j). >>>> Starting back demodulation with: 63 (62) EQUAL(f(d,f(x,g(x))),j). >>>> Starting back demodulation with: 65 (64) EQUAL(f(d,f(g(x),x)),j). >> back demodulating: 43 (42) EQUAL(f(d,f(g(b),b)),j). >> back demodulating: 42 (5,27) EQUAL(f(d,f(g(b),b)),j). >>>> Starting back demodulation with: 67 (66) EQUAL(j,d). >> back demodulating: 11 EQUAL(f(j,g(h)),k). ** KEPT: 70 (11,67) EQUAL(f(d,g(h)),k). ---> New Demodulator: 71 (70) EQUAL(f(d,g(h)),k). >> back demodulating: 17 (10,5) EQUAL(f(f(x,h),b),f(x,j)). ** KEPT: 72 (17,67) EQUAL(f(f(x,h),b),f(x,d)). >> back demodulating: 18 (10,5) EQUAL(f(h,f(b,x)),f(j,x)). ** KEPT: 73 (18,67) EQUAL(f(h,f(b,x)),f(d,x)). >> back demodulating: 31 (9,11) EQUAL(f(j,g(f(d,g(b)))),k). ** KEPT: 74 (31,67) EQUAL(f(d,g(f(d,g(b)))),k). ---> New Demodulator: 75 (74) EQUAL(f(d,g(f(d,g(b)))),k). >> back demodulating: 32 (31) EQUAL(f(j,g(f(d,g(b)))),k). >> back demodulating: 33 (11,5) EQUAL(f(f(x,j),g(h)),f(x,k)). ** KEPT: 76 (33,67) EQUAL(f(f(x,d),g(h)),f(x,k)). >> back demodulating: 34 (11,5) EQUAL(f(j,f(g(h),x)),f(k,x)). ** KEPT: 77 (34,67) EQUAL(f(d,f(g(h),x)),f(k,x)). >> back demodulating: 35 (11,12) -EQUAL(f(f(j,g(h)),g(b)),e). >> back demodulating: 44 (27,5) EQUAL(f(f(x,f(d,g(b))),b),f(x,j)). ** KEPT: 78 (44,67) EQUAL(f(f(x,f(d,g(b))),b),f(x,d)). >> back demodulating: 45 (27,5) EQUAL(f(f(d,g(b)),f(b,x)),f(j,x)). ** KEPT: 79 (45,67) EQUAL(f(f(d,g(b)),f(b,x)),f(d,x)). >> back demodulating: 58 (42,5) EQUAL(f(f(x,d),f(g(b),b)),f(x,j)). ** KEPT: 80 (58,67) EQUAL(f(f(x,d),f(g(b),b)),f(x,d)). >> back demodulating: 59 (42,5) EQUAL(f(d,f(f(g(b),b),x)),f(j,x)). ** KEPT: 81 (59,67) EQUAL(f(d,f(f(g(b),b),x)),f(d,x)). >> back demodulating: 65 (64) EQUAL(f(d,f(g(x),x)),j). ** KEPT: 82 (65,67) EQUAL(f(d,f(g(x),x)),d). ---> New Demodulator: 83 (82) EQUAL(f(d,f(g(x),x)),d). >> back demodulating: 64 (3,56) EQUAL(f(d,f(g(x),x)),j). >> back demodulating: 63 (62) EQUAL(f(d,f(x,g(x))),j). ** KEPT: 84 (63,67) EQUAL(f(d,f(x,g(x))),d). ---> New Demodulator: 85 (84) EQUAL(f(d,f(x,g(x))),d). >> back demodulating: 62 (4,56) EQUAL(f(d,f(x,g(x))),j). >> back demodulating: 61 (60) EQUAL(f(f(c,g(a)),e),j). ** KEPT: 86 (61,67) EQUAL(f(f(c,g(a)),e),d). ---> New Demodulator: 87 (86) EQUAL(f(f(c,g(a)),e),d). >> back demodulating: 60 (8,56) EQUAL(f(f(c,g(a)),e),j). >> back demodulating: 57 (56) EQUAL(f(d,e),j). >> back demodulating: 56 (3,42) EQUAL(f(d,e),j). >> back demodulating: 55 (54) EQUAL(f(f(c,g(a)),f(g(b),b)),j). ** KEPT: 88 (55,67) EQUAL(f(f(c,g(a)),f(g(b),b)),d). ---> New Demodulator: 89 (88) EQUAL(f(f(c,g(a)),f(g(b),b)),d). >> back demodulating: 54 (8,42) EQUAL(f(f(c,g(a)),f(g(b),b)),j). >> back demodulating: 28 (27) EQUAL(f(f(d,g(b)),b),j). ** KEPT: 90 (28,67) EQUAL(f(f(d,g(b)),b),d). ---> New Demodulator: 91 (90) EQUAL(f(f(d,g(b)),b),d). >> back demodulating: 27 (9,10) EQUAL(f(f(d,g(b)),b),j). >> back demodulating: 10 EQUAL(f(h,b),j). >>>> Starting back demodulation with: 69 (68) EQUAL(f(h,b),d). >> back demodulating: 29 (10,11) EQUAL(f(f(h,b),g(h)),k). >> back demodulating: 30 (29) EQUAL(f(f(h,b),g(h)),k). >> back demodulating: 46 (9,29) EQUAL(f(f(h,b),g(f(d,g(b)))),k). >> back demodulating: 47 (46) EQUAL(f(f(h,b),g(f(d,g(b)))),k). >> back demodulating: 50 (29,5) EQUAL(f(f(x,f(h,b)),g(h)),f(x,k)). >> back demodulating: 51 (29,5) EQUAL(f(f(h,b),f(g(h),x)),f(k,x)). >>>> Starting back demodulation with: 71 (70) EQUAL(f(d,g(h)),k). >>>> Starting back demodulation with: 75 (74) EQUAL(f(d,g(f(d,g(b)))),k). >>>> Starting back demodulation with: 83 (82) EQUAL(f(d,f(g(x),x)),d). >>>> Starting back demodulation with: 85 (84) EQUAL(f(d,f(x,g(x))),d). >>>> Starting back demodulation with: 87 (86) EQUAL(f(f(c,g(a)),e),d). >>>> Starting back demodulation with: 89 (88) EQUAL(f(f(c,g(a)),f(g(b),b)),d). >>>> Starting back demodulation with: 91 (90) EQUAL(f(f(d,g(b)),b),d). ** KEPT: 92 (56,5,67) EQUAL(f(d,f(e,x)),f(d,x)). new given clause: 66 (2,56) EQUAL(j,d). new given clause: 68 (10,56,57,67) EQUAL(f(h,b),d). new given clause: 70 (11,67) EQUAL(f(d,g(h)),k). ** KEPT: 93 (8,70) EQUAL(f(f(c,g(a)),g(h)),k). ---> New Demodulator: 94 (93) EQUAL(f(f(c,g(a)),g(h)),k). >>>> Starting back demodulation with: 94 (93) EQUAL(f(f(c,g(a)),g(h)),k). new given clause: 48 (5,29) EQUAL(f(h,f(b,g(h))),k). ** KEPT: 95 (9,48) EQUAL(f(f(d,g(b)),f(b,g(h))),k). ---> New Demodulator: 96 (95) EQUAL(f(f(d,g(b)),f(b,g(h))),k). ** KEPT: 97 (9,48) EQUAL(f(h,f(b,g(f(d,g(b))))),k). ---> New Demodulator: 98 (97) EQUAL(f(h,f(b,g(f(d,g(b))))),k). >>>> Starting back demodulation with: 96 (95) EQUAL(f(f(d,g(b)),f(b,g(h))),k). >>>> Starting back demodulation with: 98 (97) EQUAL(f(h,f(b,g(f(d,g(b))))),k). ** KEPT: 99 (48,5) EQUAL(f(f(x,h),f(b,g(h))),f(x,k)). ** KEPT: 100 (48,5) EQUAL(f(h,f(f(b,g(h)),x)),f(k,x)). new given clause: 82 (65,67) EQUAL(f(d,f(g(x),x)),d). ** KEPT: 101 (8,82) EQUAL(f(f(c,g(a)),f(g(x),x)),d). ---> New Demodulator: 102 (101) EQUAL(f(f(c,g(a)),f(g(x),x)),d). ** KEPT: 103 (5,82) EQUAL(f(d,f(f(g(f(x,y)),x),y)),d). ---> New Demodulator: 104 (103) EQUAL(f(d,f(f(g(f(x,y)),x),y)),d). ** KEPT: 105 (5,82) EQUAL(f(f(d,g(x)),x),d). ---> New Demodulator: 106 (105) EQUAL(f(f(d,g(x)),x),d). >>>> Starting back demodulation with: 102 (101) EQUAL(f(f(c,g(a)),f(g(x),x)),d). >> back demodulating: 89 (88) EQUAL(f(f(c,g(a)),f(g(b),b)),d). >> back demodulating: 88 (55,67) EQUAL(f(f(c,g(a)),f(g(b),b)),d). >>>> Starting back demodulation with: 104 (103) EQUAL(f(d,f(f(g(f(x,y)),x),y)),d). >>>> Starting back demodulation with: 106 (105) EQUAL(f(f(d,g(x)),x),d). >> back demodulating: 91 (90) EQUAL(f(f(d,g(b)),b),d). >> back demodulating: 90 (28,67) EQUAL(f(f(d,g(b)),b),d). ** KEPT: 107 (82,5) EQUAL(f(f(x,d),f(g(y),y)),f(x,d)). ** KEPT: 108 (82,5) EQUAL(f(d,f(f(g(y),y),x)),f(d,x)). 107 back subsumes: 80 (58,67) EQUAL(f(f(x,d),f(g(b),b)),f(x,d)). 108 back subsumes: 81 (59,67) EQUAL(f(d,f(f(g(b),b),x)),f(d,x)). new given clause: 84 (63,67) EQUAL(f(d,f(x,g(x))),d). ** KEPT: 109 (8,84) EQUAL(f(f(c,g(a)),f(x,g(x))),d). ---> New Demodulator: 110 (109) EQUAL(f(f(c,g(a)),f(x,g(x))),d). ** KEPT: 111 (5,84) EQUAL(f(d,f(x,f(y,g(f(x,y))))),d). ---> New Demodulator: 112 (111) EQUAL(f(d,f(x,f(y,g(f(x,y))))),d). ** KEPT: 113 (5,84) EQUAL(f(f(d,x),g(x)),d). ---> New Demodulator: 114 (113) EQUAL(f(f(d,x),g(x)),d). >>>> Starting back demodulation with: 110 (109) EQUAL(f(f(c,g(a)),f(x,g(x))),d). >>>> Starting back demodulation with: 112 (111) EQUAL(f(d,f(x,f(y,g(f(x,y))))),d). >>>> Starting back demodulation with: 114 (113) EQUAL(f(f(d,x),g(x)),d). ** KEPT: 115 (84,5) EQUAL(f(f(x,d),f(y,g(y))),f(x,d)). ** KEPT: 116 (84,5) EQUAL(f(d,f(f(y,g(y)),x)),f(d,x)). new given clause: 86 (61,67) EQUAL(f(f(c,g(a)),e),d). ** KEPT: 117 (5,86) EQUAL(f(c,f(g(a),e)),d). ---> New Demodulator: 118 (117) EQUAL(f(c,f(g(a),e)),d). >>>> Starting back demodulation with: 118 (117) EQUAL(f(c,f(g(a),e)),d). ** KEPT: 119 (86,5) EQUAL(f(f(x,f(c,g(a))),e),f(x,d)). ** KEPT: 120 (86,5) EQUAL(f(f(c,g(a)),f(e,x)),f(d,x)). new given clause: 105 (5,82) EQUAL(f(f(d,g(x)),x),d). ** KEPT: 121 (8,105) EQUAL(f(f(f(c,g(a)),g(x)),x),d). ---> New Demodulator: 122 (121) EQUAL(f(f(f(c,g(a)),g(x)),x),d). ** KEPT: 123 (70,105) EQUAL(f(k,h),d). ---> New Demodulator: 124 (123) EQUAL(f(k,h),d). ** KEPT: 125 (5,105) EQUAL(f(f(f(d,g(f(x,y))),x),y),d). ---> New Demodulator: 126 (125) EQUAL(f(f(f(d,g(f(x,y))),x),y),d). >>>> Starting back demodulation with: 122 (121) EQUAL(f(f(f(c,g(a)),g(x)),x),d). >>>> Starting back demodulation with: 124 (123) EQUAL(f(k,h),d). >>>> Starting back demodulation with: 126 (125) EQUAL(f(f(f(d,g(f(x,y))),x),y),d). ** KEPT: 127 (105,5) EQUAL(f(f(x,f(d,g(y))),y),f(x,d)). ** KEPT: 128 (105,5) EQUAL(f(f(d,g(y)),f(y,x)),f(d,x)). 127 back subsumes: 78 (44,67) EQUAL(f(f(x,f(d,g(b))),b),f(x,d)). 128 back subsumes: 79 (45,67) EQUAL(f(f(d,g(b)),f(b,x)),f(d,x)). new given clause: 123 (70,105) EQUAL(f(k,h),d). ** KEPT: 129 (9,123) EQUAL(f(k,f(d,g(b))),d). ---> New Demodulator: 130 (129) EQUAL(f(k,f(d,g(b))),d). >>>> Starting back demodulation with: 130 (129) EQUAL(f(k,f(d,g(b))),d). ** KEPT: 131 (123,5) EQUAL(f(f(x,k),h),f(x,d)). ** KEPT: 132 (123,5) EQUAL(f(k,f(h,x)),f(d,x)). new given clause: 113 (5,84) EQUAL(f(f(d,x),g(x)),d). ** KEPT: 133 (8,113) EQUAL(f(f(f(c,g(a)),x),g(x)),d). ---> New Demodulator: 134 (133) EQUAL(f(f(f(c,g(a)),x),g(x)),d). ** KEPT: 135 (84,113) EQUAL(f(d,g(f(x,g(x)))),d). ---> New Demodulator: 136 (135) EQUAL(f(d,g(f(x,g(x)))),d). ** KEPT: 137 (82,113) EQUAL(f(d,g(f(g(x),x))),d). ---> New Demodulator: 138 (137) EQUAL(f(d,g(f(g(x),x))),d). ** KEPT: 139 (5,113) EQUAL(f(f(f(d,x),y),g(f(x,y))),d). ---> New Demodulator: 140 (139) EQUAL(f(f(f(d,x),y),g(f(x,y))),d). >>>> Starting back demodulation with: 134 (133) EQUAL(f(f(f(c,g(a)),x),g(x)),d). >>>> Starting back demodulation with: 136 (135) EQUAL(f(d,g(f(x,g(x)))),d). >>>> Starting back demodulation with: 138 (137) EQUAL(f(d,g(f(g(x),x))),d). >>>> Starting back demodulation with: 140 (139) EQUAL(f(f(f(d,x),y),g(f(x,y))),d). ** KEPT: 141 (113,5) EQUAL(f(f(x,f(d,y)),g(y)),f(x,d)). ** KEPT: 142 (113,5) EQUAL(f(f(d,y),f(g(y),x)),f(d,x)). new given clause: 117 (5,86) EQUAL(f(c,f(g(a),e)),d). ** KEPT: 143 (7,117) EQUAL(f(f(a,b),f(g(a),e)),d). ---> New Demodulator: 144 (143) EQUAL(f(f(a,b),f(g(a),e)),d). ** KEPT: 145 (4,117) EQUAL(f(c,f(g(a),f(x,g(x)))),d). ---> New Demodulator: 146 (145) EQUAL(f(c,f(g(a),f(x,g(x)))),d). ** KEPT: 147 (3,117) EQUAL(f(c,f(g(a),f(g(x),x))),d). ---> New Demodulator: 148 (147) EQUAL(f(c,f(g(a),f(g(x),x))),d). >>>> Starting back demodulation with: 144 (143) EQUAL(f(f(a,b),f(g(a),e)),d). >>>> Starting back demodulation with: 146 (145) EQUAL(f(c,f(g(a),f(x,g(x)))),d). >>>> Starting back demodulation with: 148 (147) EQUAL(f(c,f(g(a),f(g(x),x))),d). ** KEPT: 149 (117,5) EQUAL(f(f(x,c),f(g(a),e)),f(x,d)). ** KEPT: 150 (117,5) EQUAL(f(c,f(f(g(a),e),x)),f(d,x)). new given clause: 129 (9,123) EQUAL(f(k,f(d,g(b))),d). ** KEPT: 151 (5,129) EQUAL(f(f(k,d),g(b)),d). ---> New Demodulator: 152 (151) EQUAL(f(f(k,d),g(b)),d). >>>> Starting back demodulation with: 152 (151) EQUAL(f(f(k,d),g(b)),d). ** KEPT: 153 (129,5) EQUAL(f(f(x,k),f(d,g(b))),f(x,d)). ** KEPT: 154 (129,5) EQUAL(f(k,f(f(d,g(b)),x)),f(d,x)). new given clause: 151 (5,129) EQUAL(f(f(k,d),g(b)),d). ** KEPT: 155 (8,151) EQUAL(f(f(k,f(c,g(a))),g(b)),d). ---> New Demodulator: 156 (155) EQUAL(f(f(k,f(c,g(a))),g(b)),d). >>>> Starting back demodulation with: 156 (155) EQUAL(f(f(k,f(c,g(a))),g(b)),d). ** KEPT: 157 (151,5) EQUAL(f(f(x,f(k,d)),g(b)),f(x,d)). ** KEPT: 158 (151,5) EQUAL(f(f(k,d),f(g(b),x)),f(d,x)). new given clause: 15 (7,5) EQUAL(f(f(x,a),b),f(x,c)). ** KEPT: 159 (105,15) EQUAL(f(f(d,g(a)),c),f(d,b)). ** KEPT: 160 (5,15) EQUAL(f(f(x,f(y,a)),b),f(f(x,y),c)). ** KEPT: 161 (3,15) EQUAL(f(g(a),c),f(e,b)). ** KEPT: 162 (1,15) EQUAL(f(a,b),f(e,c)). ** KEPT: 163 (5,15) EQUAL(f(x,f(a,b)),f(x,c)). ** KEPT: 164 (105,15) EQUAL(f(f(f(d,g(c)),a),b),d). ---> New Demodulator: 165 (164) EQUAL(f(f(f(d,g(c)),a),b),d). ** KEPT: 166 (5,15) EQUAL(f(f(f(x,y),a),b),f(x,f(y,c))). ** KEPT: 167 (3,15) EQUAL(f(f(g(c),a),b),e). ---> New Demodulator: 168 (167) EQUAL(f(f(g(c),a),b),e). ** KEPT: 169 (1,15) EQUAL(f(f(e,a),b),c). ---> New Demodulator: 170 (169) EQUAL(f(f(e,a),b),c). >>>> Starting back demodulation with: 165 (164) EQUAL(f(f(f(d,g(c)),a),b),d). >>>> Starting back demodulation with: 168 (167) EQUAL(f(f(g(c),a),b),e). >>>> Starting back demodulation with: 170 (169) EQUAL(f(f(e,a),b),c). ** KEPT: 171 (15,5) EQUAL(f(f(x,f(y,a)),b),f(x,f(y,c))). ** KEPT: 172 (15,5) EQUAL(f(f(x,a),f(b,y)),f(f(x,c),y)). ** KEPT: 173 (15,113) EQUAL(f(f(f(d,a),b),g(c)),d). ---> New Demodulator: 174 (173) EQUAL(f(f(f(d,a),b),g(c)),d). ** KEPT: 175 (15,5) EQUAL(f(x,f(f(y,a),b)),f(f(x,y),c)). ** KEPT: 176 (15,5) EQUAL(f(f(f(x,a),b),y),f(x,f(c,y))). >>>> Starting back demodulation with: 174 (173) EQUAL(f(f(f(d,a),b),g(c)),d). new given clause: 162 (1,15) EQUAL(f(a,b),f(e,c)). ** KEPT: 177 (4,162) EQUAL(f(f(x,g(x)),c),f(a,b)). ** KEPT: 178 (3,162) EQUAL(f(f(g(x),x),c),f(a,b)). ** KEPT: 179 (162,19) EQUAL(f(f(e,c),g(a)),d). ---> New Demodulator: 180 (179) EQUAL(f(f(e,c),g(a)),d). ** KEPT: 181 (162,5) EQUAL(f(f(x,a),b),f(x,f(e,c))). ** KEPT: 182 (162,5) EQUAL(f(a,f(b,x)),f(f(e,c),x)). ** KEPT: 183 (162,5) EQUAL(f(f(x,e),c),f(x,f(a,b))). ** KEPT: 184 (162,5) EQUAL(f(f(a,b),x),f(e,f(c,x))). >>>> Starting back demodulation with: 180 (179) EQUAL(f(f(e,c),g(a)),d). new given clause: 169 (1,15) EQUAL(f(f(e,a),b),c). ** KEPT: 185 (4,169) EQUAL(f(f(f(x,g(x)),a),b),c). ---> New Demodulator: 186 (185) EQUAL(f(f(f(x,g(x)),a),b),c). ** KEPT: 187 (3,169) EQUAL(f(f(f(g(x),x),a),b),c). ---> New Demodulator: 188 (187) EQUAL(f(f(f(g(x),x),a),b),c). ** KEPT: 189 (5,169) EQUAL(f(e,f(a,b)),c). ---> New Demodulator: 190 (189) EQUAL(f(e,f(a,b)),c). >>>> Starting back demodulation with: 186 (185) EQUAL(f(f(f(x,g(x)),a),b),c). >>>> Starting back demodulation with: 188 (187) EQUAL(f(f(f(g(x),x),a),b),c). >>>> Starting back demodulation with: 190 (189) EQUAL(f(e,f(a,b)),c). ** KEPT: 191 (169,5) EQUAL(f(f(x,f(e,a)),b),f(x,c)). ** KEPT: 192 (169,5) EQUAL(f(f(e,a),f(b,x)),f(c,x)). new given clause: 189 (5,169) EQUAL(f(e,f(a,b)),c). ** KEPT: 193 (4,189) EQUAL(f(f(x,g(x)),f(a,b)),c). ---> New Demodulator: 194 (193) EQUAL(f(f(x,g(x)),f(a,b)),c). ** KEPT: 195 (3,189) EQUAL(f(f(g(x),x),f(a,b)),c). ---> New Demodulator: 196 (195) EQUAL(f(f(g(x),x),f(a,b)),c). ** KEPT: 197 (162,189) EQUAL(f(e,f(e,c)),c). ---> New Demodulator: 198 (197) EQUAL(f(e,f(e,c)),c). >>>> Starting back demodulation with: 194 (193) EQUAL(f(f(x,g(x)),f(a,b)),c). >>>> Starting back demodulation with: 196 (195) EQUAL(f(f(g(x),x),f(a,b)),c). >>>> Starting back demodulation with: 198 (197) EQUAL(f(e,f(e,c)),c). ** KEPT: 199 (189,5) EQUAL(f(f(x,e),f(a,b)),f(x,c)). ** KEPT: 200 (189,5) EQUAL(f(e,f(f(a,b),x)),f(c,x)). new given clause: 197 (162,189) EQUAL(f(e,f(e,c)),c). ** KEPT: 201 (4,197) EQUAL(f(f(x,g(x)),f(e,c)),c). ---> New Demodulator: 202 (201) EQUAL(f(f(x,g(x)),f(e,c)),c). ** KEPT: 203 (3,197) EQUAL(f(f(g(x),x),f(e,c)),c). ---> New Demodulator: 204 (203) EQUAL(f(f(g(x),x),f(e,c)),c). ** KEPT: 205 (4,197) EQUAL(f(e,f(f(x,g(x)),c)),c). ---> New Demodulator: 206 (205) EQUAL(f(e,f(f(x,g(x)),c)),c). ** KEPT: 207 (3,197) EQUAL(f(e,f(f(g(x),x),c)),c). ---> New Demodulator: 208 (207) EQUAL(f(e,f(f(g(x),x),c)),c). ** KEPT: 209 (5,197) EQUAL(f(f(e,e),c),c). ---> New Demodulator: 210 (209) EQUAL(f(f(e,e),c),c). >>>> Starting back demodulation with: 202 (201) EQUAL(f(f(x,g(x)),f(e,c)),c). >>>> Starting back demodulation with: 204 (203) EQUAL(f(f(g(x),x),f(e,c)),c). >>>> Starting back demodulation with: 206 (205) EQUAL(f(e,f(f(x,g(x)),c)),c). >>>> Starting back demodulation with: 208 (207) EQUAL(f(e,f(f(g(x),x),c)),c). >>>> Starting back demodulation with: 210 (209) EQUAL(f(f(e,e),c),c). ** KEPT: 211 (197,5) EQUAL(f(f(x,e),f(e,c)),f(x,c)). ** KEPT: 212 (197,5) EQUAL(f(e,f(f(e,c),x)),f(c,x)). new given clause: 209 (5,197) EQUAL(f(f(e,e),c),c). ** KEPT: 213 (4,209) EQUAL(f(f(f(x,g(x)),e),c),c). ---> New Demodulator: 214 (213) EQUAL(f(f(f(x,g(x)),e),c),c). ** KEPT: 215 (3,209) EQUAL(f(f(f(g(x),x),e),c),c). ---> New Demodulator: 216 (215) EQUAL(f(f(f(g(x),x),e),c),c). ** KEPT: 217 (4,209) EQUAL(f(f(e,f(x,g(x))),c),c). ---> New Demodulator: 218 (217) EQUAL(f(f(e,f(x,g(x))),c),c). ** KEPT: 219 (3,209) EQUAL(f(f(e,f(g(x),x)),c),c). ---> New Demodulator: 220 (219) EQUAL(f(f(e,f(g(x),x)),c),c). ** KEPT: 221 (7,209) EQUAL(f(f(e,e),f(a,b)),c). ---> New Demodulator: 222 (221) EQUAL(f(f(e,e),f(a,b)),c). ** KEPT: 223 (15,209) EQUAL(f(f(f(e,e),a),b),c). ---> New Demodulator: 224 (223) EQUAL(f(f(f(e,e),a),b),c). >>>> Starting back demodulation with: 214 (213) EQUAL(f(f(f(x,g(x)),e),c),c). >>>> Starting back demodulation with: 216 (215) EQUAL(f(f(f(g(x),x),e),c),c). >>>> Starting back demodulation with: 218 (217) EQUAL(f(f(e,f(x,g(x))),c),c). >>>> Starting back demodulation with: 220 (219) EQUAL(f(f(e,f(g(x),x)),c),c). >>>> Starting back demodulation with: 222 (221) EQUAL(f(f(e,e),f(a,b)),c). >>>> Starting back demodulation with: 224 (223) EQUAL(f(f(f(e,e),a),b),c). ** KEPT: 225 (209,5) EQUAL(f(f(x,f(e,e)),c),f(x,c)). ** KEPT: 226 (209,5) EQUAL(f(f(e,e),f(c,x)),f(c,x)). new given clause: 161 (3,15) EQUAL(f(g(a),c),f(e,b)). ** KEPT: 227 (7,161) EQUAL(f(g(a),f(a,b)),f(e,b)). ** KEPT: 228 (15,161) EQUAL(f(f(g(a),a),b),f(e,b)). ** KEPT: 229 (4,161) EQUAL(f(f(x,g(x)),b),f(g(a),c)). ** KEPT: 230 (3,161) EQUAL(f(f(g(x),x),b),f(g(a),c)). ** KEPT: 231 (1,161) EQUAL(f(g(a),c),b). ---> New Demodulator: 232 (231) EQUAL(f(g(a),c),b). >>>> Starting back demodulation with: 232 (231) EQUAL(f(g(a),c),b). >> back demodulating: 230 (3,161) EQUAL(f(f(g(x),x),b),f(g(a),c)). ** KEPT: 233 (230,232) EQUAL(f(f(g(x),x),b),b). ---> New Demodulator: 234 (233) EQUAL(f(f(g(x),x),b),b). >> back demodulating: 229 (4,161) EQUAL(f(f(x,g(x)),b),f(g(a),c)). ** KEPT: 235 (229,232) EQUAL(f(f(x,g(x)),b),b). ---> New Demodulator: 236 (235) EQUAL(f(f(x,g(x)),b),b). >> back demodulating: 161 (3,15) EQUAL(f(g(a),c),f(e,b)). >>>> Starting back demodulation with: 234 (233) EQUAL(f(f(g(x),x),b),b). >> back demodulating: 228 (15,161) EQUAL(f(f(g(a),a),b),f(e,b)). >>>> Starting back demodulation with: 236 (235) EQUAL(f(f(x,g(x)),b),b). ** KEPT: 237 (161,5) EQUAL(f(f(x,g(a)),c),f(x,f(e,b))). ** KEPT: 238 (161,5) EQUAL(f(g(a),f(c,x)),f(f(e,b),x)). ** KEPT: 239 (161,5,232) EQUAL(f(f(x,e),b),f(x,b)). new given clause: 231 (1,161) EQUAL(f(g(a),c),b). ** KEPT: 240 (7,231) EQUAL(f(g(a),f(a,b)),b). ---> New Demodulator: 241 (240) EQUAL(f(g(a),f(a,b)),b). >>>> Starting back demodulation with: 241 (240) EQUAL(f(g(a),f(a,b)),b). >> back demodulating: 227 (7,161) EQUAL(f(g(a),f(a,b)),f(e,b)). ** KEPT: 242 (231,5) EQUAL(f(f(x,g(a)),c),f(x,b)). ** KEPT: 243 (231,5) EQUAL(f(g(a),f(c,x)),f(b,x)). 242 back subsumes: 159 (105,15) EQUAL(f(f(d,g(a)),c),f(d,b)). new given clause: 167 (3,15) EQUAL(f(f(g(c),a),b),e). ** KEPT: 244 (7,167) EQUAL(f(f(g(f(a,b)),a),b),e). ---> New Demodulator: 245 (244) EQUAL(f(f(g(f(a,b)),a),b),e). ** KEPT: 246 (5,167) EQUAL(f(g(c),f(a,b)),e). ---> New Demodulator: 247 (246) EQUAL(f(g(c),f(a,b)),e). >>>> Starting back demodulation with: 245 (244) EQUAL(f(f(g(f(a,b)),a),b),e). >>>> Starting back demodulation with: 247 (246) EQUAL(f(g(c),f(a,b)),e). ** KEPT: 248 (167,5) EQUAL(f(f(x,f(g(c),a)),b),f(x,e)). ** KEPT: 249 (167,5) EQUAL(f(f(g(c),a),f(b,x)),f(e,x)). new given clause: 179 (162,19) EQUAL(f(f(e,c),g(a)),d). ** KEPT: 250 (4,179) EQUAL(f(f(f(x,g(x)),c),g(a)),d). ---> New Demodulator: 251 (250) EQUAL(f(f(f(x,g(x)),c),g(a)),d). ** KEPT: 252 (3,179) EQUAL(f(f(f(g(x),x),c),g(a)),d). ---> New Demodulator: 253 (252) EQUAL(f(f(f(g(x),x),c),g(a)),d). ** KEPT: 254 (5,179) EQUAL(f(e,f(c,g(a))),d). ---> New Demodulator: 255 (254) EQUAL(f(e,f(c,g(a))),d). >>>> Starting back demodulation with: 251 (250) EQUAL(f(f(f(x,g(x)),c),g(a)),d). >>>> Starting back demodulation with: 253 (252) EQUAL(f(f(f(g(x),x),c),g(a)),d). >>>> Starting back demodulation with: 255 (254) EQUAL(f(e,f(c,g(a))),d). ** KEPT: 256 (179,5) EQUAL(f(f(x,f(e,c)),g(a)),f(x,d)). ** KEPT: 257 (179,5) EQUAL(f(f(e,c),f(g(a),x)),f(d,x)). new given clause: 233 (230,232) EQUAL(f(f(g(x),x),b),b). ** KEPT: 258 (5,233) EQUAL(f(f(f(g(f(x,y)),x),y),b),b). ---> New Demodulator: 259 (258) EQUAL(f(f(f(g(f(x,y)),x),y),b),b). ** KEPT: 260 (5,233) EQUAL(f(g(x),f(x,b)),b). ---> New Demodulator: 261 (260) EQUAL(f(g(x),f(x,b)),b). >>>> Starting back demodulation with: 259 (258) EQUAL(f(f(f(g(f(x,y)),x),y),b),b). >>>> Starting back demodulation with: 261 (260) EQUAL(f(g(x),f(x,b)),b). >> back demodulating: 241 (240) EQUAL(f(g(a),f(a,b)),b). >> back demodulating: 240 (7,231) EQUAL(f(g(a),f(a,b)),b). ** KEPT: 262 (233,5) EQUAL(f(f(x,f(g(y),y)),b),f(x,b)). ** KEPT: 263 (233,5) EQUAL(f(f(g(y),y),f(b,x)),f(b,x)). new given clause: 235 (229,232) EQUAL(f(f(x,g(x)),b),b). ** KEPT: 264 (5,235) EQUAL(f(f(x,f(y,g(f(x,y)))),b),b). ---> New Demodulator: 265 (264) EQUAL(f(f(x,f(y,g(f(x,y)))),b),b). ** KEPT: 266 (5,235) EQUAL(f(x,f(g(x),b)),b). ---> New Demodulator: 267 (266) EQUAL(f(x,f(g(x),b)),b). >>>> Starting back demodulation with: 265 (264) EQUAL(f(f(x,f(y,g(f(x,y)))),b),b). >>>> Starting back demodulation with: 267 (266) EQUAL(f(x,f(g(x),b)),b). ** KEPT: 268 (235,5) EQUAL(f(f(x,f(y,g(y))),b),f(x,b)). ** KEPT: 269 (235,5) EQUAL(f(f(y,g(y)),f(b,x)),f(b,x)). new given clause: 246 (5,167) EQUAL(f(g(c),f(a,b)),e). ** KEPT: 270 (162,246) EQUAL(f(g(c),f(e,c)),e). ---> New Demodulator: 271 (270) EQUAL(f(g(c),f(e,c)),e). >>>> Starting back demodulation with: 271 (270) EQUAL(f(g(c),f(e,c)),e). ** KEPT: 272 (246,5) EQUAL(f(f(x,g(c)),f(a,b)),f(x,e)). ** KEPT: 273 (246,5) EQUAL(f(g(c),f(f(a,b),x)),f(e,x)). new given clause: 254 (5,179) EQUAL(f(e,f(c,g(a))),d). ** KEPT: 274 (4,254) EQUAL(f(f(x,g(x)),f(c,g(a))),d). ---> New Demodulator: 275 (274) EQUAL(f(f(x,g(x)),f(c,g(a))),d). ** KEPT: 276 (3,254) EQUAL(f(f(g(x),x),f(c,g(a))),d). ---> New Demodulator: 277 (276) EQUAL(f(f(g(x),x),f(c,g(a))),d). >>>> Starting back demodulation with: 275 (274) EQUAL(f(f(x,g(x)),f(c,g(a))),d). >>>> Starting back demodulation with: 277 (276) EQUAL(f(f(g(x),x),f(c,g(a))),d). ** KEPT: 278 (254,5) EQUAL(f(f(x,e),f(c,g(a))),f(x,d)). ** KEPT: 279 (254,5) EQUAL(f(e,f(f(c,g(a)),x)),f(d,x)). new given clause: 260 (5,233) EQUAL(f(g(x),f(x,b)),b). ** KEPT: 280 (235,260) EQUAL(f(g(f(x,g(x))),b),b). ---> New Demodulator: 281 (280) EQUAL(f(g(f(x,g(x))),b),b). ** KEPT: 282 (233,260) EQUAL(f(g(f(g(x),x)),b),b). ---> New Demodulator: 283 (282) EQUAL(f(g(f(g(x),x)),b),b). ** KEPT: 284 (167,260) EQUAL(f(g(f(g(c),a)),e),b). ---> New Demodulator: 285 (284) EQUAL(f(g(f(g(c),a)),e),b). ** KEPT: 286 (169,260) EQUAL(f(g(f(e,a)),c),b). ---> New Demodulator: 287 (286) EQUAL(f(g(f(e,a)),c),b). ** KEPT: 288 (162,260) EQUAL(f(g(a),f(e,c)),b). ---> New Demodulator: 289 (288) EQUAL(f(g(a),f(e,c)),b). ** KEPT: 290 (15,260) EQUAL(f(g(f(x,a)),f(x,c)),b). ---> New Demodulator: 291 (290) EQUAL(f(g(f(x,a)),f(x,c)),b). ** KEPT: 292 (105,260) EQUAL(f(g(f(d,g(b))),d),b). ---> New Demodulator: 293 (292) EQUAL(f(g(f(d,g(b))),d),b). ** KEPT: 294 (68,260) EQUAL(f(g(h),d),b). ---> New Demodulator: 295 (294) EQUAL(f(g(h),d),b). ** KEPT: 296 (5,260) EQUAL(f(g(f(x,y)),f(x,f(y,b))),b). ---> New Demodulator: 297 (296) EQUAL(f(g(f(x,y)),f(x,f(y,b))),b). >>>> Starting back demodulation with: 281 (280) EQUAL(f(g(f(x,g(x))),b),b). >>>> Starting back demodulation with: 283 (282) EQUAL(f(g(f(g(x),x)),b),b). >>>> Starting back demodulation with: 285 (284) EQUAL(f(g(f(g(c),a)),e),b). >>>> Starting back demodulation with: 287 (286) EQUAL(f(g(f(e,a)),c),b). >>>> Starting back demodulation with: 289 (288) EQUAL(f(g(a),f(e,c)),b). >>>> Starting back demodulation with: 291 (290) EQUAL(f(g(f(x,a)),f(x,c)),b). >>>> Starting back demodulation with: 293 (292) EQUAL(f(g(f(d,g(b))),d),b). >>>> Starting back demodulation with: 295 (294) EQUAL(f(g(h),d),b). >>>> Starting back demodulation with: 297 (296) EQUAL(f(g(f(x,y)),f(x,f(y,b))),b). ** KEPT: 298 (260,5) EQUAL(f(f(x,g(y)),f(y,b)),f(x,b)). ** KEPT: 299 (260,5) EQUAL(f(g(y),f(f(y,b),x)),f(b,x)). new given clause: 294 (68,260) EQUAL(f(g(h),d),b). ** KEPT: 300 (8,294) EQUAL(f(g(h),f(c,g(a))),b). ---> New Demodulator: 301 (300) EQUAL(f(g(h),f(c,g(a))),b). >>>> Starting back demodulation with: 301 (300) EQUAL(f(g(h),f(c,g(a))),b). ** KEPT: 302 (294,5) EQUAL(f(f(x,g(h)),d),f(x,b)). ** KEPT: 303 (294,5) EQUAL(f(g(h),f(d,x)),f(b,x)). new given clause: 266 (5,235) EQUAL(f(x,f(g(x),b)),b). ** KEPT: 304 (5,266) EQUAL(f(x,f(y,f(g(f(x,y)),b))),b). ---> New Demodulator: 305 (304) EQUAL(f(x,f(y,f(g(f(x,y)),b))),b). >>>> Starting back demodulation with: 305 (304) EQUAL(f(x,f(y,f(g(f(x,y)),b))),b). ** KEPT: 306 (266,113) EQUAL(f(b,g(f(g(d),b))),d). ---> New Demodulator: 307 (306) EQUAL(f(b,g(f(g(d),b))),d). ** KEPT: 308 (266,5) EQUAL(f(f(x,y),f(g(y),b)),f(x,b)). ** KEPT: 309 (266,5) EQUAL(f(y,f(f(g(y),b),x)),f(b,x)). >>>> Starting back demodulation with: 307 (306) EQUAL(f(b,g(f(g(d),b))),d). new given clause: 270 (162,246) EQUAL(f(g(c),f(e,c)),e). ** KEPT: 310 (7,270) EQUAL(f(g(f(a,b)),f(e,c)),e). ---> New Demodulator: 311 (310) EQUAL(f(g(f(a,b)),f(e,c)),e). ** KEPT: 312 (4,270) EQUAL(f(g(c),f(f(x,g(x)),c)),e). ---> New Demodulator: 313 (312) EQUAL(f(g(c),f(f(x,g(x)),c)),e). ** KEPT: 314 (3,270) EQUAL(f(g(c),f(f(g(x),x),c)),e). ---> New Demodulator: 315 (314) EQUAL(f(g(c),f(f(g(x),x),c)),e). ** KEPT: 316 (5,270) EQUAL(f(f(g(c),e),c),e). ---> New Demodulator: 317 (316) EQUAL(f(f(g(c),e),c),e). >>>> Starting back demodulation with: 311 (310) EQUAL(f(g(f(a,b)),f(e,c)),e). >>>> Starting back demodulation with: 313 (312) EQUAL(f(g(c),f(f(x,g(x)),c)),e). >>>> Starting back demodulation with: 315 (314) EQUAL(f(g(c),f(f(g(x),x),c)),e). >>>> Starting back demodulation with: 317 (316) EQUAL(f(f(g(c),e),c),e). ** KEPT: 318 (270,5) EQUAL(f(f(x,g(c)),f(e,c)),f(x,e)). ** KEPT: 319 (270,5) EQUAL(f(g(c),f(f(e,c),x)),f(e,x)). new given clause: 286 (169,260) EQUAL(f(g(f(e,a)),c),b). ** KEPT: 320 (4,286) EQUAL(f(g(f(f(x,g(x)),a)),c),b). ---> New Demodulator: 321 (320) EQUAL(f(g(f(f(x,g(x)),a)),c),b). ** KEPT: 322 (3,286) EQUAL(f(g(f(f(g(x),x),a)),c),b). ---> New Demodulator: 323 (322) EQUAL(f(g(f(f(g(x),x),a)),c),b). ** KEPT: 324 (7,286) EQUAL(f(g(f(e,a)),f(a,b)),b). ---> New Demodulator: 325 (324) EQUAL(f(g(f(e,a)),f(a,b)),b). ** KEPT: 326 (15,286) EQUAL(f(f(g(f(e,a)),a),b),b). ---> New Demodulator: 327 (326) EQUAL(f(f(g(f(e,a)),a),b),b). >>>> Starting back demodulation with: 321 (320) EQUAL(f(g(f(f(x,g(x)),a)),c),b). >>>> Starting back demodulation with: 323 (322) EQUAL(f(g(f(f(g(x),x),a)),c),b). >>>> Starting back demodulation with: 325 (324) EQUAL(f(g(f(e,a)),f(a,b)),b). >>>> Starting back demodulation with: 327 (326) EQUAL(f(f(g(f(e,a)),a),b),b). ** KEPT: 328 (286,5) EQUAL(f(f(x,g(f(e,a))),c),f(x,b)). ** KEPT: 329 (286,5) EQUAL(f(g(f(e,a)),f(c,x)),f(b,x)). new given clause: 288 (162,260) EQUAL(f(g(a),f(e,c)),b). ** KEPT: 330 (4,288) EQUAL(f(g(a),f(f(x,g(x)),c)),b). ---> New Demodulator: 331 (330) EQUAL(f(g(a),f(f(x,g(x)),c)),b). ** KEPT: 332 (3,288) EQUAL(f(g(a),f(f(g(x),x),c)),b). ---> New Demodulator: 333 (332) EQUAL(f(g(a),f(f(g(x),x),c)),b). ** KEPT: 334 (5,288) EQUAL(f(f(g(a),e),c),b). ---> New Demodulator: 335 (334) EQUAL(f(f(g(a),e),c),b). >>>> Starting back demodulation with: 331 (330) EQUAL(f(g(a),f(f(x,g(x)),c)),b). >>>> Starting back demodulation with: 333 (332) EQUAL(f(g(a),f(f(g(x),x),c)),b). >>>> Starting back demodulation with: 335 (334) EQUAL(f(f(g(a),e),c),b). ** KEPT: 336 (288,5) EQUAL(f(f(x,g(a)),f(e,c)),f(x,b)). ** KEPT: 337 (288,5) EQUAL(f(g(a),f(f(e,c),x)),f(b,x)). new given clause: 316 (5,270) EQUAL(f(f(g(c),e),c),e). ** KEPT: 338 (7,316) EQUAL(f(f(g(f(a,b)),e),c),e). ---> New Demodulator: 339 (338) EQUAL(f(f(g(f(a,b)),e),c),e). ** KEPT: 340 (4,316) EQUAL(f(f(g(c),f(x,g(x))),c),e). ---> New Demodulator: 341 (340) EQUAL(f(f(g(c),f(x,g(x))),c),e). ** KEPT: 342 (3,316) EQUAL(f(f(g(c),f(g(x),x)),c),e). ---> New Demodulator: 343 (342) EQUAL(f(f(g(c),f(g(x),x)),c),e). ** KEPT: 344 (7,316) EQUAL(f(f(g(c),e),f(a,b)),e). ---> New Demodulator: 345 (344) EQUAL(f(f(g(c),e),f(a,b)),e). ** KEPT: 346 (15,316) EQUAL(f(f(f(g(c),e),a),b),e). ---> New Demodulator: 347 (346) EQUAL(f(f(f(g(c),e),a),b),e). >>>> Starting back demodulation with: 339 (338) EQUAL(f(f(g(f(a,b)),e),c),e). >>>> Starting back demodulation with: 341 (340) EQUAL(f(f(g(c),f(x,g(x))),c),e). >>>> Starting back demodulation with: 343 (342) EQUAL(f(f(g(c),f(g(x),x)),c),e). >>>> Starting back demodulation with: 345 (344) EQUAL(f(f(g(c),e),f(a,b)),e). >>>> Starting back demodulation with: 347 (346) EQUAL(f(f(f(g(c),e),a),b),e). ** KEPT: 348 (316,5) EQUAL(f(f(x,f(g(c),e)),c),f(x,e)). ** KEPT: 349 (316,5) EQUAL(f(f(g(c),e),f(c,x)),f(e,x)). new given clause: 334 (5,288) EQUAL(f(f(g(a),e),c),b). ** KEPT: 350 (4,334) EQUAL(f(f(g(a),f(x,g(x))),c),b). ---> New Demodulator: 351 (350) EQUAL(f(f(g(a),f(x,g(x))),c),b). ** KEPT: 352 (3,334) EQUAL(f(f(g(a),f(g(x),x)),c),b). ---> New Demodulator: 353 (352) EQUAL(f(f(g(a),f(g(x),x)),c),b). ** KEPT: 354 (7,334) EQUAL(f(f(g(a),e),f(a,b)),b). ---> New Demodulator: 355 (354) EQUAL(f(f(g(a),e),f(a,b)),b). ** KEPT: 356 (15,334) EQUAL(f(f(f(g(a),e),a),b),b). ---> New Demodulator: 357 (356) EQUAL(f(f(f(g(a),e),a),b),b). >>>> Starting back demodulation with: 351 (350) EQUAL(f(f(g(a),f(x,g(x))),c),b). >>>> Starting back demodulation with: 353 (352) EQUAL(f(f(g(a),f(g(x),x)),c),b). >>>> Starting back demodulation with: 355 (354) EQUAL(f(f(g(a),e),f(a,b)),b). >>>> Starting back demodulation with: 357 (356) EQUAL(f(f(f(g(a),e),a),b),b). ** KEPT: 358 (334,5) EQUAL(f(f(x,f(g(a),e)),c),f(x,b)). ** KEPT: 359 (334,5) EQUAL(f(f(g(a),e),f(c,x)),f(b,x)). new given clause: 16 (7,5) EQUAL(f(a,f(b,x)),f(c,x)). ** KEPT: 360 (266,16) EQUAL(f(c,f(g(b),b)),f(a,b)). ** KEPT: 361 (15,16) EQUAL(f(a,f(f(b,a),b)),f(c,c)). ** KEPT: 362 (5,16) EQUAL(f(a,f(f(b,x),y)),f(c,f(x,y))). ** KEPT: 363 (4,16) EQUAL(f(c,g(b)),f(a,e)). ** KEPT: 364 (2,16) EQUAL(f(c,e),f(a,b)). ** KEPT: 365 (5,16) EQUAL(f(f(a,b),x),f(c,x)). ** KEPT: 366 (7,16) EQUAL(f(a,f(b,x)),f(f(a,b),x)). ** KEPT: 367 (266,16) EQUAL(f(a,f(b,f(g(c),b))),b). ---> New Demodulator: 368 (367) EQUAL(f(a,f(b,f(g(c),b))),b). ** KEPT: 369 (15,16) EQUAL(f(a,f(b,c)),f(f(c,a),b)). ** KEPT: 370 (117,16) EQUAL(f(a,f(b,f(g(a),e))),d). ---> New Demodulator: 371 (370) EQUAL(f(a,f(b,f(g(a),e))),d). ** KEPT: 372 (5,16) EQUAL(f(a,f(b,f(x,y))),f(f(c,x),y)). ** KEPT: 373 (4,16) EQUAL(f(a,f(b,g(c))),e). ---> New Demodulator: 374 (373) EQUAL(f(a,f(b,g(c))),e). ** KEPT: 375 (2,16) EQUAL(f(a,f(b,e)),c). ---> New Demodulator: 376 (375) EQUAL(f(a,f(b,e)),c). >>>> Starting back demodulation with: 368 (367) EQUAL(f(a,f(b,f(g(c),b))),b). >>>> Starting back demodulation with: 371 (370) EQUAL(f(a,f(b,f(g(a),e))),d). >>>> Starting back demodulation with: 374 (373) EQUAL(f(a,f(b,g(c))),e). >>>> Starting back demodulation with: 376 (375) EQUAL(f(a,f(b,e)),c). ** KEPT: 377 (16,5) EQUAL(f(f(x,a),f(b,y)),f(x,f(c,y))). ** KEPT: 378 (16,5) EQUAL(f(a,f(f(b,x),y)),f(f(c,x),y)). ** KEPT: 379 (16,260) EQUAL(f(g(c),f(a,f(b,b))),b). ---> New Demodulator: 380 (379) EQUAL(f(g(c),f(a,f(b,b))),b). ** KEPT: 381 (16,15) EQUAL(f(f(a,f(b,a)),b),f(c,c)). ** KEPT: 382 (16,5) EQUAL(f(x,f(a,f(b,y))),f(f(x,c),y)). ** KEPT: 383 (16,5) EQUAL(f(f(a,f(b,x)),y),f(c,f(x,y))). >>>> Starting back demodulation with: 380 (379) EQUAL(f(g(c),f(a,f(b,b))),b). new given clause: 364 (2,16) EQUAL(f(c,e),f(a,b)). ** KEPT: 384 (4,364) EQUAL(f(c,f(x,g(x))),f(a,b)). ** KEPT: 385 (3,364) EQUAL(f(c,f(g(x),x)),f(a,b)). ** KEPT: 386 (162,364) EQUAL(f(c,e),f(e,c)). 385 back subsumes: 360 (266,16) EQUAL(f(c,f(g(b),b)),f(a,b)). ** KEPT: 387 (364,5) EQUAL(f(f(x,c),e),f(x,f(a,b))). ** KEPT: 388 (364,5) EQUAL(f(c,f(e,x)),f(f(a,b),x)). ** KEPT: 389 (364,260) EQUAL(f(g(a),f(c,e)),b). ---> New Demodulator: 390 (389) EQUAL(f(g(a),f(c,e)),b). ** KEPT: 391 (364,246) EQUAL(f(g(c),f(c,e)),e). ---> New Demodulator: 392 (391) EQUAL(f(g(c),f(c,e)),e). ** KEPT: 393 (364,189) EQUAL(f(e,f(c,e)),c). ---> New Demodulator: 394 (393) EQUAL(f(e,f(c,e)),c). ** KEPT: 395 (364,19) EQUAL(f(f(c,e),g(a)),d). ---> New Demodulator: 396 (395) EQUAL(f(f(c,e),g(a)),d). ** KEPT: 397 (364,5) EQUAL(f(f(x,a),b),f(x,f(c,e))). ** KEPT: 398 (364,5) EQUAL(f(a,f(b,x)),f(f(c,e),x)). >>>> Starting back demodulation with: 390 (389) EQUAL(f(g(a),f(c,e)),b). >>>> Starting back demodulation with: 392 (391) EQUAL(f(g(c),f(c,e)),e). >>>> Starting back demodulation with: 394 (393) EQUAL(f(e,f(c,e)),c). >>>> Starting back demodulation with: 396 (395) EQUAL(f(f(c,e),g(a)),d). new given clause: 375 (2,16) EQUAL(f(a,f(b,e)),c). ** KEPT: 399 (4,375) EQUAL(f(a,f(b,f(x,g(x)))),c). ---> New Demodulator: 400 (399) EQUAL(f(a,f(b,f(x,g(x)))),c). ** KEPT: 401 (3,375) EQUAL(f(a,f(b,f(g(x),x))),c). ---> New Demodulator: 402 (401) EQUAL(f(a,f(b,f(g(x),x))),c). ** KEPT: 403 (5,375) EQUAL(f(f(a,b),e),c). ---> New Demodulator: 404 (403) EQUAL(f(f(a,b),e),c). >>>> Starting back demodulation with: 400 (399) EQUAL(f(a,f(b,f(x,g(x)))),c). >>>> Starting back demodulation with: 402 (401) EQUAL(f(a,f(b,f(g(x),x))),c). >>>> Starting back demodulation with: 404 (403) EQUAL(f(f(a,b),e),c). ** KEPT: 405 (375,5) EQUAL(f(f(x,a),f(b,e)),f(x,c)). ** KEPT: 406 (375,5) EQUAL(f(a,f(f(b,e),x)),f(c,x)). new given clause: 386 (162,364) EQUAL(f(c,e),f(e,c)). ** KEPT: 407 (4,386) EQUAL(f(c,f(x,g(x))),f(e,c)). ** KEPT: 408 (3,386) EQUAL(f(c,f(g(x),x)),f(e,c)). ** KEPT: 409 (4,386) EQUAL(f(f(x,g(x)),c),f(c,e)). ** KEPT: 410 (3,386) EQUAL(f(f(g(x),x),c),f(c,e)). ** KEPT: 411 (386,5) EQUAL(f(f(x,c),e),f(x,f(e,c))). ** KEPT: 412 (386,5) EQUAL(f(c,f(e,x)),f(f(e,c),x)). ** KEPT: 413 (386,5) EQUAL(f(f(x,e),c),f(x,f(c,e))). ** KEPT: 414 (386,5) EQUAL(f(f(c,e),x),f(e,f(c,x))). new given clause: 393 (364,189) EQUAL(f(e,f(c,e)),c). ** KEPT: 415 (4,393) EQUAL(f(f(x,g(x)),f(c,e)),c). ---> New Demodulator: 416 (415) EQUAL(f(f(x,g(x)),f(c,e)),c). ** KEPT: 417 (3,393) EQUAL(f(f(g(x),x),f(c,e)),c). ---> New Demodulator: 418 (417) EQUAL(f(f(g(x),x),f(c,e)),c). ** KEPT: 419 (4,393) EQUAL(f(e,f(c,f(x,g(x)))),c). ---> New Demodulator: 420 (419) EQUAL(f(e,f(c,f(x,g(x)))),c). ** KEPT: 421 (3,393) EQUAL(f(e,f(c,f(g(x),x))),c). ---> New Demodulator: 422 (421) EQUAL(f(e,f(c,f(g(x),x))),c). ** KEPT: 423 (5,393) EQUAL(f(f(e,c),e),c). ---> New Demodulator: 424 (423) EQUAL(f(f(e,c),e),c). >>>> Starting back demodulation with: 416 (415) EQUAL(f(f(x,g(x)),f(c,e)),c). >>>> Starting back demodulation with: 418 (417) EQUAL(f(f(g(x),x),f(c,e)),c). >>>> Starting back demodulation with: 420 (419) EQUAL(f(e,f(c,f(x,g(x)))),c). >>>> Starting back demodulation with: 422 (421) EQUAL(f(e,f(c,f(g(x),x))),c). >>>> Starting back demodulation with: 424 (423) EQUAL(f(f(e,c),e),c). ** KEPT: 425 (393,5) EQUAL(f(f(x,e),f(c,e)),f(x,c)). ** KEPT: 426 (393,5) EQUAL(f(e,f(f(c,e),x)),f(c,x)). new given clause: 403 (5,375) EQUAL(f(f(a,b),e),c). ** KEPT: 427 (364,403) EQUAL(f(f(c,e),e),c). ---> New Demodulator: 428 (427) EQUAL(f(f(c,e),e),c). ** KEPT: 429 (4,403) EQUAL(f(f(a,b),f(x,g(x))),c). ---> New Demodulator: 430 (429) EQUAL(f(f(a,b),f(x,g(x))),c). ** KEPT: 431 (3,403) EQUAL(f(f(a,b),f(g(x),x)),c). ---> New Demodulator: 432 (431) EQUAL(f(f(a,b),f(g(x),x)),c). >>>> Starting back demodulation with: 428 (427) EQUAL(f(f(c,e),e),c). >>>> Starting back demodulation with: 430 (429) EQUAL(f(f(a,b),f(x,g(x))),c). >>>> Starting back demodulation with: 432 (431) EQUAL(f(f(a,b),f(g(x),x)),c). ** KEPT: 433 (403,5) EQUAL(f(f(x,f(a,b)),e),f(x,c)). ** KEPT: 434 (403,5) EQUAL(f(f(a,b),f(e,x)),f(c,x)). new given clause: 423 (5,393) EQUAL(f(f(e,c),e),c). ** KEPT: 435 (4,423) EQUAL(f(f(f(x,g(x)),c),e),c). ---> New Demodulator: 436 (435) EQUAL(f(f(f(x,g(x)),c),e),c). ** KEPT: 437 (3,423) EQUAL(f(f(f(g(x),x),c),e),c). ---> New Demodulator: 438 (437) EQUAL(f(f(f(g(x),x),c),e),c). ** KEPT: 439 (4,423) EQUAL(f(f(e,c),f(x,g(x))),c). ---> New Demodulator: 440 (439) EQUAL(f(f(e,c),f(x,g(x))),c). ** KEPT: 441 (3,423) EQUAL(f(f(e,c),f(g(x),x)),c). ---> New Demodulator: 442 (441) EQUAL(f(f(e,c),f(g(x),x)),c). >>>> Starting back demodulation with: 436 (435) EQUAL(f(f(f(x,g(x)),c),e),c). >>>> Starting back demodulation with: 438 (437) EQUAL(f(f(f(g(x),x),c),e),c). >>>> Starting back demodulation with: 440 (439) EQUAL(f(f(e,c),f(x,g(x))),c). >>>> Starting back demodulation with: 442 (441) EQUAL(f(f(e,c),f(g(x),x)),c). ** KEPT: 443 (423,5) EQUAL(f(f(x,f(e,c)),e),f(x,c)). ** KEPT: 444 (423,5) EQUAL(f(f(e,c),f(e,x)),f(c,x)). new given clause: 427 (364,403) EQUAL(f(f(c,e),e),c). ** KEPT: 445 (4,427) EQUAL(f(f(c,f(x,g(x))),e),c). ---> New Demodulator: 446 (445) EQUAL(f(f(c,f(x,g(x))),e),c). ** KEPT: 447 (3,427) EQUAL(f(f(c,f(g(x),x)),e),c). ---> New Demodulator: 448 (447) EQUAL(f(f(c,f(g(x),x)),e),c). ** KEPT: 449 (4,427) EQUAL(f(f(c,e),f(x,g(x))),c). ---> New Demodulator: 450 (449) EQUAL(f(f(c,e),f(x,g(x))),c). ** KEPT: 451 (3,427) EQUAL(f(f(c,e),f(g(x),x)),c). ---> New Demodulator: 452 (451) EQUAL(f(f(c,e),f(g(x),x)),c). ** KEPT: 453 (5,427) EQUAL(f(c,f(e,e)),c). ---> New Demodulator: 454 (453) EQUAL(f(c,f(e,e)),c). >>>> Starting back demodulation with: 446 (445) EQUAL(f(f(c,f(x,g(x))),e),c). >>>> Starting back demodulation with: 448 (447) EQUAL(f(f(c,f(g(x),x)),e),c). >>>> Starting back demodulation with: 450 (449) EQUAL(f(f(c,e),f(x,g(x))),c). >>>> Starting back demodulation with: 452 (451) EQUAL(f(f(c,e),f(g(x),x)),c). >>>> Starting back demodulation with: 454 (453) EQUAL(f(c,f(e,e)),c). ** KEPT: 455 (427,5) EQUAL(f(f(x,f(c,e)),e),f(x,c)). ** KEPT: 456 (427,5) EQUAL(f(f(c,e),f(e,x)),f(c,x)). new given clause: 453 (5,427) EQUAL(f(c,f(e,e)),c). ** KEPT: 457 (7,453) EQUAL(f(f(a,b),f(e,e)),c). ---> New Demodulator: 458 (457) EQUAL(f(f(a,b),f(e,e)),c). ** KEPT: 459 (4,453) EQUAL(f(c,f(f(x,g(x)),e)),c). ---> New Demodulator: 460 (459) EQUAL(f(c,f(f(x,g(x)),e)),c). ** KEPT: 461 (3,453) EQUAL(f(c,f(f(g(x),x),e)),c). ---> New Demodulator: 462 (461) EQUAL(f(c,f(f(g(x),x),e)),c). ** KEPT: 463 (4,453) EQUAL(f(c,f(e,f(x,g(x)))),c). ---> New Demodulator: 464 (463) EQUAL(f(c,f(e,f(x,g(x)))),c). ** KEPT: 465 (3,453) EQUAL(f(c,f(e,f(g(x),x))),c). ---> New Demodulator: 466 (465) EQUAL(f(c,f(e,f(g(x),x))),c). ** KEPT: 467 (16,453) EQUAL(f(a,f(b,f(e,e))),c). ---> New Demodulator: 468 (467) EQUAL(f(a,f(b,f(e,e))),c). >>>> Starting back demodulation with: 458 (457) EQUAL(f(f(a,b),f(e,e)),c). >>>> Starting back demodulation with: 460 (459) EQUAL(f(c,f(f(x,g(x)),e)),c). >>>> Starting back demodulation with: 462 (461) EQUAL(f(c,f(f(g(x),x),e)),c). >>>> Starting back demodulation with: 464 (463) EQUAL(f(c,f(e,f(x,g(x)))),c). >>>> Starting back demodulation with: 466 (465) EQUAL(f(c,f(e,f(g(x),x))),c). >>>> Starting back demodulation with: 468 (467) EQUAL(f(a,f(b,f(e,e))),c). ** KEPT: 469 (453,5) EQUAL(f(f(x,c),f(e,e)),f(x,c)). ** KEPT: 470 (453,5) EQUAL(f(c,f(f(e,e),x)),f(c,x)). new given clause: 363 (4,16) EQUAL(f(c,g(b)),f(a,e)). ** KEPT: 471 (7,363) EQUAL(f(f(a,b),g(b)),f(a,e)). ** KEPT: 472 (16,363) EQUAL(f(a,f(b,g(b))),f(a,e)). ** KEPT: 473 (4,363) EQUAL(f(a,f(x,g(x))),f(c,g(b))). ** KEPT: 474 (3,363) EQUAL(f(a,f(g(x),x)),f(c,g(b))). ** KEPT: 475 (2,363) EQUAL(f(c,g(b)),a). ---> New Demodulator: 476 (475) EQUAL(f(c,g(b)),a). >>>> Starting back demodulation with: 476 (475) EQUAL(f(c,g(b)),a). >> back demodulating: 474 (3,363) EQUAL(f(a,f(g(x),x)),f(c,g(b))). ** KEPT: 477 (474,476) EQUAL(f(a,f(g(x),x)),a). ---> New Demodulator: 478 (477) EQUAL(f(a,f(g(x),x)),a). >> back demodulating: 473 (4,363) EQUAL(f(a,f(x,g(x))),f(c,g(b))). ** KEPT: 479 (473,476) EQUAL(f(a,f(x,g(x))),a). ---> New Demodulator: 480 (479) EQUAL(f(a,f(x,g(x))),a). >> back demodulating: 363 (4,16) EQUAL(f(c,g(b)),f(a,e)). >>>> Starting back demodulation with: 478 (477) EQUAL(f(a,f(g(x),x)),a). >>>> Starting back demodulation with: 480 (479) EQUAL(f(a,f(x,g(x))),a). >> back demodulating: 472 (16,363) EQUAL(f(a,f(b,g(b))),f(a,e)). ** KEPT: 481 (363,5) EQUAL(f(f(x,c),g(b)),f(x,f(a,e))). ** KEPT: 482 (363,5) EQUAL(f(c,f(g(b),x)),f(f(a,e),x)). ** KEPT: 483 (363,5,476) EQUAL(f(a,f(e,x)),f(a,x)). new given clause: 475 (2,363) EQUAL(f(c,g(b)),a). ** KEPT: 484 (7,475) EQUAL(f(f(a,b),g(b)),a). ---> New Demodulator: 485 (484) EQUAL(f(f(a,b),g(b)),a). >>>> Starting back demodulation with: 485 (484) EQUAL(f(f(a,b),g(b)),a). >> back demodulating: 471 (7,363) EQUAL(f(f(a,b),g(b)),f(a,e)). ** KEPT: 486 (475,5) EQUAL(f(f(x,c),g(b)),f(x,a)). ** KEPT: 487 (475,5) EQUAL(f(c,f(g(b),x)),f(a,x)). new given clause: 373 (4,16) EQUAL(f(a,f(b,g(c))),e). ** KEPT: 488 (7,373) EQUAL(f(a,f(b,g(f(a,b)))),e). ---> New Demodulator: 489 (488) EQUAL(f(a,f(b,g(f(a,b)))),e). ** KEPT: 490 (5,373) EQUAL(f(f(a,b),g(c)),e). ---> New Demodulator: 491 (490) EQUAL(f(f(a,b),g(c)),e). >>>> Starting back demodulation with: 489 (488) EQUAL(f(a,f(b,g(f(a,b)))),e). >>>> Starting back demodulation with: 491 (490) EQUAL(f(f(a,b),g(c)),e). ** KEPT: 492 (373,5) EQUAL(f(f(x,a),f(b,g(c))),f(x,e)). ** KEPT: 493 (373,5) EQUAL(f(a,f(f(b,g(c)),x)),f(e,x)). new given clause: 389 (364,260) EQUAL(f(g(a),f(c,e)),b). ** KEPT: 494 (4,389) EQUAL(f(g(a),f(c,f(x,g(x)))),b). ---> New Demodulator: 495 (494) EQUAL(f(g(a),f(c,f(x,g(x)))),b). ** KEPT: 496 (3,389) EQUAL(f(g(a),f(c,f(g(x),x))),b). ---> New Demodulator: 497 (496) EQUAL(f(g(a),f(c,f(g(x),x))),b). >>>> Starting back demodulation with: 495 (494) EQUAL(f(g(a),f(c,f(x,g(x)))),b). >>>> Starting back demodulation with: 497 (496) EQUAL(f(g(a),f(c,f(g(x),x))),b). ** KEPT: 498 (389,5) EQUAL(f(f(x,g(a)),f(c,e)),f(x,b)). ** KEPT: 499 (389,5) EQUAL(f(g(a),f(f(c,e),x)),f(b,x)). new given clause: 391 (364,246) EQUAL(f(g(c),f(c,e)),e). ** KEPT: 500 (7,391) EQUAL(f(g(f(a,b)),f(c,e)),e). ---> New Demodulator: 501 (500) EQUAL(f(g(f(a,b)),f(c,e)),e). ** KEPT: 502 (4,391) EQUAL(f(g(c),f(c,f(x,g(x)))),e). ---> New Demodulator: 503 (502) EQUAL(f(g(c),f(c,f(x,g(x)))),e). ** KEPT: 504 (3,391) EQUAL(f(g(c),f(c,f(g(x),x))),e). ---> New Demodulator: 505 (504) EQUAL(f(g(c),f(c,f(g(x),x))),e). ** KEPT: 506 (5,391) EQUAL(f(f(g(c),c),e),e). ---> New Demodulator: 507 (506) EQUAL(f(f(g(c),c),e),e). >>>> Starting back demodulation with: 501 (500) EQUAL(f(g(f(a,b)),f(c,e)),e). >>>> Starting back demodulation with: 503 (502) EQUAL(f(g(c),f(c,f(x,g(x)))),e). >>>> Starting back demodulation with: 505 (504) EQUAL(f(g(c),f(c,f(g(x),x))),e). >>>> Starting back demodulation with: 507 (506) EQUAL(f(f(g(c),c),e),e). ** KEPT: 508 (391,5) EQUAL(f(f(x,g(c)),f(c,e)),f(x,e)). ** KEPT: 509 (391,5) EQUAL(f(g(c),f(f(c,e),x)),f(e,x)). new given clause: 395 (364,19) EQUAL(f(f(c,e),g(a)),d). ** KEPT: 510 (4,395) EQUAL(f(f(c,f(x,g(x))),g(a)),d). ---> New Demodulator: 511 (510) EQUAL(f(f(c,f(x,g(x))),g(a)),d). ** KEPT: 512 (3,395) EQUAL(f(f(c,f(g(x),x)),g(a)),d). ---> New Demodulator: 513 (512) EQUAL(f(f(c,f(g(x),x)),g(a)),d). ** KEPT: 514 (5,395) EQUAL(f(c,f(e,g(a))),d). ---> New Demodulator: 515 (514) EQUAL(f(c,f(e,g(a))),d). >>>> Starting back demodulation with: 511 (510) EQUAL(f(f(c,f(x,g(x))),g(a)),d). >>>> Starting back demodulation with: 513 (512) EQUAL(f(f(c,f(g(x),x)),g(a)),d). >>>> Starting back demodulation with: 515 (514) EQUAL(f(c,f(e,g(a))),d). ** KEPT: 516 (395,5) EQUAL(f(f(x,f(c,e)),g(a)),f(x,d)). ** KEPT: 517 (395,5) EQUAL(f(f(c,e),f(g(a),x)),f(d,x)). new given clause: 477 (474,476) EQUAL(f(a,f(g(x),x)),a). ** KEPT: 518 (5,477) EQUAL(f(a,f(f(g(f(x,y)),x),y)),a). ---> New Demodulator: 519 (518) EQUAL(f(a,f(f(g(f(x,y)),x),y)),a). ** KEPT: 520 (5,477) EQUAL(f(f(a,g(x)),x),a). ---> New Demodulator: 521 (520) EQUAL(f(f(a,g(x)),x),a). >>>> Starting back demodulation with: 519 (518) EQUAL(f(a,f(f(g(f(x,y)),x),y)),a). >>>> Starting back demodulation with: 521 (520) EQUAL(f(f(a,g(x)),x),a). ** KEPT: 522 (477,5) EQUAL(f(f(x,a),f(g(y),y)),f(x,a)). ** KEPT: 523 (477,5) EQUAL(f(a,f(f(g(y),y),x)),f(a,x)). new given clause: 479 (473,476) EQUAL(f(a,f(x,g(x))),a). ** KEPT: 524 (5,479) EQUAL(f(a,f(x,f(y,g(f(x,y))))),a). ---> New Demodulator: 525 (524) EQUAL(f(a,f(x,f(y,g(f(x,y))))),a). ** KEPT: 526 (5,479) EQUAL(f(f(a,x),g(x)),a). ---> New Demodulator: 527 (526) EQUAL(f(f(a,x),g(x)),a). >>>> Starting back demodulation with: 525 (524) EQUAL(f(a,f(x,f(y,g(f(x,y))))),a). >>>> Starting back demodulation with: 527 (526) EQUAL(f(f(a,x),g(x)),a). >> back demodulating: 485 (484) EQUAL(f(f(a,b),g(b)),a). >> back demodulating: 484 (7,475) EQUAL(f(f(a,b),g(b)),a). ** KEPT: 528 (479,5) EQUAL(f(f(x,a),f(y,g(y))),f(x,a)). ** KEPT: 529 (479,5) EQUAL(f(a,f(f(y,g(y)),x)),f(a,x)). new given clause: 490 (5,373) EQUAL(f(f(a,b),g(c)),e). ** KEPT: 530 (364,490) EQUAL(f(f(c,e),g(c)),e). ---> New Demodulator: 531 (530) EQUAL(f(f(c,e),g(c)),e). ** KEPT: 532 (162,490) EQUAL(f(f(e,c),g(c)),e). ---> New Demodulator: 533 (532) EQUAL(f(f(e,c),g(c)),e). >>>> Starting back demodulation with: 531 (530) EQUAL(f(f(c,e),g(c)),e). >>>> Starting back demodulation with: 533 (532) EQUAL(f(f(e,c),g(c)),e). ** KEPT: 534 (490,5) EQUAL(f(f(x,f(a,b)),g(c)),f(x,e)). ** KEPT: 535 (490,5) EQUAL(f(f(a,b),f(g(c),x)),f(e,x)). new given clause: 506 (5,391) EQUAL(f(f(g(c),c),e),e). ** KEPT: 536 (7,506) EQUAL(f(f(g(f(a,b)),c),e),e). ---> New Demodulator: 537 (536) EQUAL(f(f(g(f(a,b)),c),e),e). ** KEPT: 538 (4,506) EQUAL(f(f(g(c),c),f(x,g(x))),e). ---> New Demodulator: 539 (538) EQUAL(f(f(g(c),c),f(x,g(x))),e). ** KEPT: 540 (3,506) EQUAL(f(f(g(c),c),f(g(x),x)),e). ---> New Demodulator: 541 (540) EQUAL(f(f(g(c),c),f(g(x),x)),e). >>>> Starting back demodulation with: 537 (536) EQUAL(f(f(g(f(a,b)),c),e),e). >>>> Starting back demodulation with: 539 (538) EQUAL(f(f(g(c),c),f(x,g(x))),e). >>>> Starting back demodulation with: 541 (540) EQUAL(f(f(g(c),c),f(g(x),x)),e). ** KEPT: 542 (506,5) EQUAL(f(f(x,f(g(c),c)),e),f(x,e)). ** KEPT: 543 (506,5) EQUAL(f(f(g(c),c),f(e,x)),f(e,x)). new given clause: 514 (5,395) EQUAL(f(c,f(e,g(a))),d). ** KEPT: 544 (7,514) EQUAL(f(f(a,b),f(e,g(a))),d). ---> New Demodulator: 545 (544) EQUAL(f(f(a,b),f(e,g(a))),d). ** KEPT: 546 (4,514) EQUAL(f(c,f(f(x,g(x)),g(a))),d). ---> New Demodulator: 547 (546) EQUAL(f(c,f(f(x,g(x)),g(a))),d). ** KEPT: 548 (3,514) EQUAL(f(c,f(f(g(x),x),g(a))),d). ---> New Demodulator: 549 (548) EQUAL(f(c,f(f(g(x),x),g(a))),d). ** KEPT: 550 (16,514) EQUAL(f(a,f(b,f(e,g(a)))),d). ---> New Demodulator: 551 (550) EQUAL(f(a,f(b,f(e,g(a)))),d). >>>> Starting back demodulation with: 545 (544) EQUAL(f(f(a,b),f(e,g(a))),d). >>>> Starting back demodulation with: 547 (546) EQUAL(f(c,f(f(x,g(x)),g(a))),d). >>>> Starting back demodulation with: 549 (548) EQUAL(f(c,f(f(g(x),x),g(a))),d). >>>> Starting back demodulation with: 551 (550) EQUAL(f(a,f(b,f(e,g(a)))),d). ** KEPT: 552 (514,5) EQUAL(f(f(x,c),f(e,g(a))),f(x,d)). ** KEPT: 553 (514,5) EQUAL(f(c,f(f(e,g(a)),x)),f(d,x)). new given clause: 520 (5,477) EQUAL(f(f(a,g(x)),x),a). ** KEPT: 554 (15,520) EQUAL(f(f(f(a,g(c)),a),b),a). ---> New Demodulator: 555 (554) EQUAL(f(f(f(a,g(c)),a),b),a). ** KEPT: 556 (5,520) EQUAL(f(f(f(a,g(f(x,y))),x),y),a). ---> New Demodulator: 557 (556) EQUAL(f(f(f(a,g(f(x,y))),x),y),a). >>>> Starting back demodulation with: 555 (554) EQUAL(f(f(f(a,g(c)),a),b),a). >>>> Starting back demodulation with: 557 (556) EQUAL(f(f(f(a,g(f(x,y))),x),y),a). ** KEPT: 558 (520,260) EQUAL(f(g(f(a,g(b))),a),b). ---> New Demodulator: 559 (558) EQUAL(f(g(f(a,g(b))),a),b). ** KEPT: 560 (520,5) EQUAL(f(f(x,f(a,g(y))),y),f(x,a)). ** KEPT: 561 (520,5) EQUAL(f(f(a,g(y)),f(y,x)),f(a,x)). >>>> Starting back demodulation with: 559 (558) EQUAL(f(g(f(a,g(b))),a),b). new given clause: 526 (5,479) EQUAL(f(f(a,x),g(x)),a). ** KEPT: 562 (479,526) EQUAL(f(a,g(f(x,g(x)))),a). ---> New Demodulator: 563 (562) EQUAL(f(a,g(f(x,g(x)))),a). ** KEPT: 564 (477,526) EQUAL(f(a,g(f(g(x),x))),a). ---> New Demodulator: 565 (564) EQUAL(f(a,g(f(g(x),x))),a). ** KEPT: 566 (373,526) EQUAL(f(e,g(f(b,g(c)))),a). ---> New Demodulator: 567 (566) EQUAL(f(e,g(f(b,g(c)))),a). ** KEPT: 568 (375,526) EQUAL(f(c,g(f(b,e))),a). ---> New Demodulator: 569 (568) EQUAL(f(c,g(f(b,e))),a). ** KEPT: 570 (364,526) EQUAL(f(f(c,e),g(b)),a). ---> New Demodulator: 571 (570) EQUAL(f(f(c,e),g(b)),a). ** KEPT: 572 (16,526) EQUAL(f(f(c,x),g(f(b,x))),a). ---> New Demodulator: 573 (572) EQUAL(f(f(c,x),g(f(b,x))),a). ** KEPT: 574 (266,526) EQUAL(f(b,g(f(g(a),b))),a). ---> New Demodulator: 575 (574) EQUAL(f(b,g(f(g(a),b))),a). ** KEPT: 576 (162,526) EQUAL(f(f(e,c),g(b)),a). ---> New Demodulator: 577 (576) EQUAL(f(f(e,c),g(b)),a). ** KEPT: 578 (15,526) EQUAL(f(f(f(a,a),b),g(c)),a). ---> New Demodulator: 579 (578) EQUAL(f(f(f(a,a),b),g(c)),a). ** KEPT: 580 (38,526) EQUAL(f(d,g(f(b,g(a)))),a). ---> New Demodulator: 581 (580) EQUAL(f(d,g(f(b,g(a)))),a). ** KEPT: 582 (5,526) EQUAL(f(f(f(a,x),y),g(f(x,y))),a). ---> New Demodulator: 583 (582) EQUAL(f(f(f(a,x),y),g(f(x,y))),a). >>>> Starting back demodulation with: 563 (562) EQUAL(f(a,g(f(x,g(x)))),a). >>>> Starting back demodulation with: 565 (564) EQUAL(f(a,g(f(g(x),x))),a). >>>> Starting back demodulation with: 567 (566) EQUAL(f(e,g(f(b,g(c)))),a). >>>> Starting back demodulation with: 569 (568) EQUAL(f(c,g(f(b,e))),a). >>>> Starting back demodulation with: 571 (570) EQUAL(f(f(c,e),g(b)),a). >>>> Starting back demodulation with: 573 (572) EQUAL(f(f(c,x),g(f(b,x))),a). >>>> Starting back demodulation with: 575 (574) EQUAL(f(b,g(f(g(a),b))),a). >>>> Starting back demodulation with: 577 (576) EQUAL(f(f(e,c),g(b)),a). >>>> Starting back demodulation with: 579 (578) EQUAL(f(f(f(a,a),b),g(c)),a). >>>> Starting back demodulation with: 581 (580) EQUAL(f(d,g(f(b,g(a)))),a). >>>> Starting back demodulation with: 583 (582) EQUAL(f(f(f(a,x),y),g(f(x,y))),a). ** KEPT: 584 (526,5) EQUAL(f(f(x,f(a,y)),g(y)),f(x,a)). ** KEPT: 585 (526,5) EQUAL(f(f(a,y),f(g(y),x)),f(a,x)). new given clause: 530 (364,490) EQUAL(f(f(c,e),g(c)),e). ** KEPT: 586 (4,530) EQUAL(f(f(c,f(x,g(x))),g(c)),e). ---> New Demodulator: 587 (586) EQUAL(f(f(c,f(x,g(x))),g(c)),e). ** KEPT: 588 (3,530) EQUAL(f(f(c,f(g(x),x)),g(c)),e). ---> New Demodulator: 589 (588) EQUAL(f(f(c,f(g(x),x)),g(c)),e). ** KEPT: 590 (7,530) EQUAL(f(f(c,e),g(f(a,b))),e). ---> New Demodulator: 591 (590) EQUAL(f(f(c,e),g(f(a,b))),e). ** KEPT: 592 (5,530) EQUAL(f(c,f(e,g(c))),e). ---> New Demodulator: 593 (592) EQUAL(f(c,f(e,g(c))),e). >>>> Starting back demodulation with: 587 (586) EQUAL(f(f(c,f(x,g(x))),g(c)),e). >>>> Starting back demodulation with: 589 (588) EQUAL(f(f(c,f(g(x),x)),g(c)),e). >>>> Starting back demodulation with: 591 (590) EQUAL(f(f(c,e),g(f(a,b))),e). >>>> Starting back demodulation with: 593 (592) EQUAL(f(c,f(e,g(c))),e). ** KEPT: 594 (530,5) EQUAL(f(f(x,f(c,e)),g(c)),f(x,e)). ** KEPT: 595 (530,5) EQUAL(f(f(c,e),f(g(c),x)),f(e,x)). new given clause: 532 (162,490) EQUAL(f(f(e,c),g(c)),e). ** KEPT: 596 (4,532) EQUAL(f(f(f(x,g(x)),c),g(c)),e). ---> New Demodulator: 597 (596) EQUAL(f(f(f(x,g(x)),c),g(c)),e). ** KEPT: 598 (3,532) EQUAL(f(f(f(g(x),x),c),g(c)),e). ---> New Demodulator: 599 (598) EQUAL(f(f(f(g(x),x),c),g(c)),e). ** KEPT: 600 (7,532) EQUAL(f(f(e,c),g(f(a,b))),e). ---> New Demodulator: 601 (600) EQUAL(f(f(e,c),g(f(a,b))),e). ** KEPT: 602 (5,532) EQUAL(f(e,f(c,g(c))),e). ---> New Demodulator: 603 (602) EQUAL(f(e,f(c,g(c))),e). >>>> Starting back demodulation with: 597 (596) EQUAL(f(f(f(x,g(x)),c),g(c)),e). >>>> Starting back demodulation with: 599 (598) EQUAL(f(f(f(g(x),x),c),g(c)),e). >>>> Starting back demodulation with: 601 (600) EQUAL(f(f(e,c),g(f(a,b))),e). >>>> Starting back demodulation with: 603 (602) EQUAL(f(e,f(c,g(c))),e). ** KEPT: 604 (532,5) EQUAL(f(f(x,f(e,c)),g(c)),f(x,e)). ** KEPT: 605 (532,5) EQUAL(f(f(e,c),f(g(c),x)),f(e,x)). new given clause: 568 (375,526) EQUAL(f(c,g(f(b,e))),a). ** KEPT: 606 (7,568) EQUAL(f(f(a,b),g(f(b,e))),a). ---> New Demodulator: 607 (606) EQUAL(f(f(a,b),g(f(b,e))),a). ** KEPT: 608 (4,568) EQUAL(f(c,g(f(b,f(x,g(x))))),a). ---> New Demodulator: 609 (608) EQUAL(f(c,g(f(b,f(x,g(x))))),a). ** KEPT: 610 (3,568) EQUAL(f(c,g(f(b,f(g(x),x)))),a). ---> New Demodulator: 611 (610) EQUAL(f(c,g(f(b,f(g(x),x)))),a). ** KEPT: 612 (16,568) EQUAL(f(a,f(b,g(f(b,e)))),a). ---> New Demodulator: 613 (612) EQUAL(f(a,f(b,g(f(b,e)))),a). >>>> Starting back demodulation with: 607 (606) EQUAL(f(f(a,b),g(f(b,e))),a). >>>> Starting back demodulation with: 609 (608) EQUAL(f(c,g(f(b,f(x,g(x))))),a). >>>> Starting back demodulation with: 611 (610) EQUAL(f(c,g(f(b,f(g(x),x)))),a). >>>> Starting back demodulation with: 613 (612) EQUAL(f(a,f(b,g(f(b,e)))),a). ** KEPT: 614 (568,5) EQUAL(f(f(x,c),g(f(b,e))),f(x,a)). ** KEPT: 615 (568,5) EQUAL(f(c,f(g(f(b,e)),x)),f(a,x)). new given clause: 570 (364,526) EQUAL(f(f(c,e),g(b)),a). ** KEPT: 616 (4,570) EQUAL(f(f(c,f(x,g(x))),g(b)),a). ---> New Demodulator: 617 (616) EQUAL(f(f(c,f(x,g(x))),g(b)),a). ** KEPT: 618 (3,570) EQUAL(f(f(c,f(g(x),x)),g(b)),a). ---> New Demodulator: 619 (618) EQUAL(f(f(c,f(g(x),x)),g(b)),a). ** KEPT: 620 (5,570) EQUAL(f(c,f(e,g(b))),a). ---> New Demodulator: 621 (620) EQUAL(f(c,f(e,g(b))),a). >>>> Starting back demodulation with: 617 (616) EQUAL(f(f(c,f(x,g(x))),g(b)),a). >>>> Starting back demodulation with: 619 (618) EQUAL(f(f(c,f(g(x),x)),g(b)),a). >>>> Starting back demodulation with: 621 (620) EQUAL(f(c,f(e,g(b))),a). ** KEPT: 622 (570,5) EQUAL(f(f(x,f(c,e)),g(b)),f(x,a)). ** KEPT: 623 (570,5) EQUAL(f(f(c,e),f(g(b),x)),f(a,x)). new given clause: 576 (162,526) EQUAL(f(f(e,c),g(b)),a). ** KEPT: 624 (4,576) EQUAL(f(f(f(x,g(x)),c),g(b)),a). ---> New Demodulator: 625 (624) EQUAL(f(f(f(x,g(x)),c),g(b)),a). ** KEPT: 626 (3,576) EQUAL(f(f(f(g(x),x),c),g(b)),a). ---> New Demodulator: 627 (626) EQUAL(f(f(f(g(x),x),c),g(b)),a). >>>> Starting back demodulation with: 625 (624) EQUAL(f(f(f(x,g(x)),c),g(b)),a). >>>> Starting back demodulation with: 627 (626) EQUAL(f(f(f(g(x),x),c),g(b)),a). ** KEPT: 628 (576,5) EQUAL(f(f(x,f(e,c)),g(b)),f(x,a)). ** KEPT: 629 (576,5) EQUAL(f(f(e,c),f(g(b),x)),f(a,x)). new given clause: 592 (5,530) EQUAL(f(c,f(e,g(c))),e). ** KEPT: 630 (7,592) EQUAL(f(f(a,b),f(e,g(c))),e). ---> New Demodulator: 631 (630) EQUAL(f(f(a,b),f(e,g(c))),e). ** KEPT: 632 (4,592) EQUAL(f(c,f(f(x,g(x)),g(c))),e). ---> New Demodulator: 633 (632) EQUAL(f(c,f(f(x,g(x)),g(c))),e). ** KEPT: 634 (3,592) EQUAL(f(c,f(f(g(x),x),g(c))),e). ---> New Demodulator: 635 (634) EQUAL(f(c,f(f(g(x),x),g(c))),e). ** KEPT: 636 (7,592) EQUAL(f(c,f(e,g(f(a,b)))),e). ---> New Demodulator: 637 (636) EQUAL(f(c,f(e,g(f(a,b)))),e). ** KEPT: 638 (16,592) EQUAL(f(a,f(b,f(e,g(c)))),e). ---> New Demodulator: 639 (638) EQUAL(f(a,f(b,f(e,g(c)))),e). >>>> Starting back demodulation with: 631 (630) EQUAL(f(f(a,b),f(e,g(c))),e). >>>> Starting back demodulation with: 633 (632) EQUAL(f(c,f(f(x,g(x)),g(c))),e). >>>> Starting back demodulation with: 635 (634) EQUAL(f(c,f(f(g(x),x),g(c))),e). >>>> Starting back demodulation with: 637 (636) EQUAL(f(c,f(e,g(f(a,b)))),e). >>>> Starting back demodulation with: 639 (638) EQUAL(f(a,f(b,f(e,g(c)))),e). ** KEPT: 640 (592,5) EQUAL(f(f(x,c),f(e,g(c))),f(x,e)). ** KEPT: 641 (592,5) EQUAL(f(c,f(f(e,g(c)),x)),f(e,x)). new given clause: 602 (5,532) EQUAL(f(e,f(c,g(c))),e). ** KEPT: 642 (4,602) EQUAL(f(f(x,g(x)),f(c,g(c))),e). ---> New Demodulator: 643 (642) EQUAL(f(f(x,g(x)),f(c,g(c))),e). ** KEPT: 644 (3,602) EQUAL(f(f(g(x),x),f(c,g(c))),e). ---> New Demodulator: 645 (644) EQUAL(f(f(g(x),x),f(c,g(c))),e). ** KEPT: 646 (7,602) EQUAL(f(e,f(c,g(f(a,b)))),e). ---> New Demodulator: 647 (646) EQUAL(f(e,f(c,g(f(a,b)))),e). >>>> Starting back demodulation with: 643 (642) EQUAL(f(f(x,g(x)),f(c,g(c))),e). >>>> Starting back demodulation with: 645 (644) EQUAL(f(f(g(x),x),f(c,g(c))),e). >>>> Starting back demodulation with: 647 (646) EQUAL(f(e,f(c,g(f(a,b)))),e). ** KEPT: 648 (602,5) EQUAL(f(f(x,e),f(c,g(c))),f(x,e)). ** KEPT: 649 (602,5) EQUAL(f(e,f(f(c,g(c)),x)),f(e,x)). new given clause: 620 (5,570) EQUAL(f(c,f(e,g(b))),a). ** KEPT: 650 (7,620) EQUAL(f(f(a,b),f(e,g(b))),a). ---> New Demodulator: 651 (650) EQUAL(f(f(a,b),f(e,g(b))),a). ** KEPT: 652 (4,620) EQUAL(f(c,f(f(x,g(x)),g(b))),a). ---> New Demodulator: 653 (652) EQUAL(f(c,f(f(x,g(x)),g(b))),a). ** KEPT: 654 (3,620) EQUAL(f(c,f(f(g(x),x),g(b))),a). ---> New Demodulator: 655 (654) EQUAL(f(c,f(f(g(x),x),g(b))),a). ** KEPT: 656 (16,620) EQUAL(f(a,f(b,f(e,g(b)))),a). ---> New Demodulator: 657 (656) EQUAL(f(a,f(b,f(e,g(b)))),a). >>>> Starting back demodulation with: 651 (650) EQUAL(f(f(a,b),f(e,g(b))),a). >>>> Starting back demodulation with: 653 (652) EQUAL(f(c,f(f(x,g(x)),g(b))),a). >>>> Starting back demodulation with: 655 (654) EQUAL(f(c,f(f(g(x),x),g(b))),a). >>>> Starting back demodulation with: 657 (656) EQUAL(f(a,f(b,f(e,g(b)))),a). ** KEPT: 658 (620,5) EQUAL(f(f(x,c),f(e,g(b))),f(x,a)). ** KEPT: 659 (620,5) EQUAL(f(c,f(f(e,g(b)),x)),f(a,x)). new given clause: 23 (8,9) EQUAL(f(f(c,g(a)),g(b)),h). ** KEPT: 660 (5,23) EQUAL(f(c,f(g(a),g(b))),h). ---> New Demodulator: 661 (660) EQUAL(f(c,f(g(a),g(b))),h). >>>> Starting back demodulation with: 661 (660) EQUAL(f(c,f(g(a),g(b))),h). ** KEPT: 662 (23,5) EQUAL(f(f(x,f(c,g(a))),g(b)),f(x,h)). ** KEPT: 663 (23,5) EQUAL(f(f(c,g(a)),f(g(b),x)),f(h,x)). new given clause: 36 (4,12) -EQUAL(f(k,g(b)),f(x,g(x))). ** KEPT: 664 (5,36) -EQUAL(f(x,f(y,g(f(x,y)))),f(k,g(b))). new given clause: 37 (3,12) -EQUAL(f(k,g(b)),f(g(x),x)). ** KEPT: 665 (5,37) -EQUAL(f(f(g(f(x,y)),x),y),f(k,g(b))). new given clause: 72 (17,67) EQUAL(f(f(x,h),b),f(x,d)). ** KEPT: 666 (16,72) EQUAL(f(f(a,f(b,h)),b),f(c,d)). ** KEPT: 667 (123,72) EQUAL(f(k,d),f(d,b)). ** KEPT: 668 (5,72) EQUAL(f(f(x,f(y,h)),b),f(f(x,y),d)). ** KEPT: 669 (8,72) EQUAL(f(x,f(c,g(a))),f(f(x,h),b)). ** KEPT: 670 (520,72) EQUAL(f(f(f(a,g(d)),h),b),a). ---> New Demodulator: 671 (670) EQUAL(f(f(f(a,g(d)),h),b),a). ** KEPT: 672 (16,72) EQUAL(f(a,f(b,d)),f(f(c,h),b)). ** KEPT: 673 (105,72) EQUAL(f(f(f(d,g(d)),h),b),d). ---> New Demodulator: 674 (673) EQUAL(f(f(f(d,g(d)),h),b),d). ** KEPT: 675 (5,72) EQUAL(f(f(f(x,y),h),b),f(x,f(y,d))). ** KEPT: 676 (3,72) EQUAL(f(f(g(d),h),b),e). ---> New Demodulator: 677 (676) EQUAL(f(f(g(d),h),b),e). ** KEPT: 678 (1,72) EQUAL(f(f(e,h),b),d). ---> New Demodulator: 679 (678) EQUAL(f(f(e,h),b),d). >>>> Starting back demodulation with: 671 (670) EQUAL(f(f(f(a,g(d)),h),b),a). >>>> Starting back demodulation with: 674 (673) EQUAL(f(f(f(d,g(d)),h),b),d). >>>> Starting back demodulation with: 677 (676) EQUAL(f(f(g(d),h),b),e). >>>> Starting back demodulation with: 679 (678) EQUAL(f(f(e,h),b),d). ** KEPT: 680 (72,260) EQUAL(f(g(f(x,h)),f(x,d)),b). ---> New Demodulator: 681 (680) EQUAL(f(g(f(x,h)),f(x,d)),b). ** KEPT: 682 (72,5) EQUAL(f(f(x,f(y,h)),b),f(x,f(y,d))). ** KEPT: 683 (72,5) EQUAL(f(f(x,h),f(b,y)),f(f(x,d),y)). ** KEPT: 684 (72,526) EQUAL(f(f(f(a,h),b),g(d)),a). ---> New Demodulator: 685 (684) EQUAL(f(f(f(a,h),b),g(d)),a). ** KEPT: 686 (72,16) EQUAL(f(a,f(f(b,h),b)),f(c,d)). ** KEPT: 687 (72,113) EQUAL(f(f(f(d,h),b),g(d)),d). ---> New Demodulator: 688 (687) EQUAL(f(f(f(d,h),b),g(d)),d). ** KEPT: 689 (72,5) EQUAL(f(x,f(f(y,h),b)),f(f(x,y),d)). ** KEPT: 690 (72,5) EQUAL(f(f(f(x,h),b),y),f(x,f(d,y))). >>>> Starting back demodulation with: 681 (680) EQUAL(f(g(f(x,h)),f(x,d)),b). >>>> Starting back demodulation with: 685 (684) EQUAL(f(f(f(a,h),b),g(d)),a). >>>> Starting back demodulation with: 688 (687) EQUAL(f(f(f(d,h),b),g(d)),d). new given clause: 667 (123,72) EQUAL(f(k,d),f(d,b)). ** KEPT: 691 (8,667) EQUAL(f(k,f(c,g(a))),f(d,b)). ** KEPT: 692 (8,667) EQUAL(f(f(c,g(a)),b),f(k,d)). ** KEPT: 693 (667,5) EQUAL(f(f(x,k),d),f(x,f(d,b))). ** KEPT: 694 (667,5) EQUAL(f(k,f(d,x)),f(f(d,b),x)). ** KEPT: 695 (667,260) EQUAL(f(g(d),f(k,d)),b). ---> New Demodulator: 696 (695) EQUAL(f(g(d),f(k,d)),b). ** KEPT: 697 (667,5) EQUAL(f(f(x,d),b),f(x,f(k,d))). ** KEPT: 698 (667,5) EQUAL(f(d,f(b,x)),f(f(k,d),x)). >>>> Starting back demodulation with: 696 (695) EQUAL(f(g(d),f(k,d)),b). new given clause: 678 (1,72) EQUAL(f(f(e,h),b),d). ** KEPT: 699 (4,678) EQUAL(f(f(f(x,g(x)),h),b),d). ---> New Demodulator: 700 (699) EQUAL(f(f(f(x,g(x)),h),b),d). ** KEPT: 701 (3,678) EQUAL(f(f(f(g(x),x),h),b),d). ---> New Demodulator: 702 (701) EQUAL(f(f(f(g(x),x),h),b),d). ** KEPT: 703 (9,678) EQUAL(f(f(e,f(d,g(b))),b),d). ---> New Demodulator: 704 (703) EQUAL(f(f(e,f(d,g(b))),b),d). >>>> Starting back demodulation with: 700 (699) EQUAL(f(f(f(x,g(x)),h),b),d). >> back demodulating: 674 (673) EQUAL(f(f(f(d,g(d)),h),b),d). >> back demodulating: 673 (105,72) EQUAL(f(f(f(d,g(d)),h),b),d). >>>> Starting back demodulation with: 702 (701) EQUAL(f(f(f(g(x),x),h),b),d). >>>> Starting back demodulation with: 704 (703) EQUAL(f(f(e,f(d,g(b))),b),d). ** KEPT: 705 (678,260) EQUAL(f(g(f(e,h)),d),b). ---> New Demodulator: 706 (705) EQUAL(f(g(f(e,h)),d),b). ** KEPT: 707 (678,5) EQUAL(f(f(x,f(e,h)),b),f(x,d)). ** KEPT: 708 (678,5) EQUAL(f(f(e,h),f(b,x)),f(d,x)). >>>> Starting back demodulation with: 706 (705) EQUAL(f(g(f(e,h)),d),b). new given clause: 676 (3,72) EQUAL(f(f(g(d),h),b),e). ** KEPT: 709 (8,676) EQUAL(f(f(g(f(c,g(a))),h),b),e). ---> New Demodulator: 710 (709) EQUAL(f(f(g(f(c,g(a))),h),b),e). ** KEPT: 711 (9,676) EQUAL(f(f(g(d),f(d,g(b))),b),e). ---> New Demodulator: 712 (711) EQUAL(f(f(g(d),f(d,g(b))),b),e). >>>> Starting back demodulation with: 710 (709) EQUAL(f(f(g(f(c,g(a))),h),b),e). >>>> Starting back demodulation with: 712 (711) EQUAL(f(f(g(d),f(d,g(b))),b),e). ** KEPT: 713 (676,260) EQUAL(f(g(f(g(d),h)),e),b). ---> New Demodulator: 714 (713) EQUAL(f(g(f(g(d),h)),e),b). ** KEPT: 715 (676,5) EQUAL(f(f(x,f(g(d),h)),b),f(x,e)). ** KEPT: 716 (676,5) EQUAL(f(f(g(d),h),f(b,x)),f(e,x)). >>>> Starting back demodulation with: 714 (713) EQUAL(f(g(f(g(d),h)),e),b). new given clause: 695 (667,260) EQUAL(f(g(d),f(k,d)),b). ** KEPT: 717 (8,695) EQUAL(f(g(f(c,g(a))),f(k,d)),b). ---> New Demodulator: 718 (717) EQUAL(f(g(f(c,g(a))),f(k,d)),b). ** KEPT: 719 (8,695) EQUAL(f(g(d),f(k,f(c,g(a)))),b). ---> New Demodulator: 720 (719) EQUAL(f(g(d),f(k,f(c,g(a)))),b). ** KEPT: 721 (5,695) EQUAL(f(f(g(d),k),d),b). ---> New Demodulator: 722 (721) EQUAL(f(f(g(d),k),d),b). >>>> Starting back demodulation with: 718 (717) EQUAL(f(g(f(c,g(a))),f(k,d)),b). >>>> Starting back demodulation with: 720 (719) EQUAL(f(g(d),f(k,f(c,g(a)))),b). >>>> Starting back demodulation with: 722 (721) EQUAL(f(f(g(d),k),d),b). ** KEPT: 723 (695,5) EQUAL(f(f(x,g(d)),f(k,d)),f(x,b)). ** KEPT: 724 (695,5) EQUAL(f(g(d),f(f(k,d),x)),f(b,x)). new given clause: 705 (678,260) EQUAL(f(g(f(e,h)),d),b). ** KEPT: 725 (4,705) EQUAL(f(g(f(f(x,g(x)),h)),d),b). ---> New Demodulator: 726 (725) EQUAL(f(g(f(f(x,g(x)),h)),d),b). ** KEPT: 727 (3,705) EQUAL(f(g(f(f(g(x),x),h)),d),b). ---> New Demodulator: 728 (727) EQUAL(f(g(f(f(g(x),x),h)),d),b). ** KEPT: 729 (9,705) EQUAL(f(g(f(e,f(d,g(b)))),d),b). ---> New Demodulator: 730 (729) EQUAL(f(g(f(e,f(d,g(b)))),d),b). ** KEPT: 731 (8,705) EQUAL(f(g(f(e,h)),f(c,g(a))),b). ---> New Demodulator: 732 (731) EQUAL(f(g(f(e,h)),f(c,g(a))),b). ** KEPT: 733 (72,705) EQUAL(f(f(g(f(e,h)),h),b),b). ---> New Demodulator: 734 (733) EQUAL(f(f(g(f(e,h)),h),b),b). >>>> Starting back demodulation with: 726 (725) EQUAL(f(g(f(f(x,g(x)),h)),d),b). >>>> Starting back demodulation with: 728 (727) EQUAL(f(g(f(f(g(x),x),h)),d),b). >>>> Starting back demodulation with: 730 (729) EQUAL(f(g(f(e,f(d,g(b)))),d),b). >>>> Starting back demodulation with: 732 (731) EQUAL(f(g(f(e,h)),f(c,g(a))),b). >>>> Starting back demodulation with: 734 (733) EQUAL(f(f(g(f(e,h)),h),b),b). ** KEPT: 735 (705,5) EQUAL(f(f(x,g(f(e,h))),d),f(x,b)). ** KEPT: 736 (705,5) EQUAL(f(g(f(e,h)),f(d,x)),f(b,x)). new given clause: 721 (5,695) EQUAL(f(f(g(d),k),d),b). ** KEPT: 737 (8,721) EQUAL(f(f(g(f(c,g(a))),k),d),b). ---> New Demodulator: 738 (737) EQUAL(f(f(g(f(c,g(a))),k),d),b). ** KEPT: 739 (8,721) EQUAL(f(f(g(d),k),f(c,g(a))),b). ---> New Demodulator: 740 (739) EQUAL(f(f(g(d),k),f(c,g(a))),b). ** KEPT: 741 (72,721) EQUAL(f(f(f(g(d),k),h),b),b). ---> New Demodulator: 742 (741) EQUAL(f(f(f(g(d),k),h),b),b). >>>> Starting back demodulation with: 738 (737) EQUAL(f(f(g(f(c,g(a))),k),d),b). >>>> Starting back demodulation with: 740 (739) EQUAL(f(f(g(d),k),f(c,g(a))),b). >>>> Starting back demodulation with: 742 (741) EQUAL(f(f(f(g(d),k),h),b),b). ** KEPT: 743 (721,5) EQUAL(f(f(x,f(g(d),k)),d),f(x,b)). ** KEPT: 744 (721,5) EQUAL(f(f(g(d),k),f(d,x)),f(b,x)). new given clause: 73 (18,67) EQUAL(f(h,f(b,x)),f(d,x)). ** KEPT: 745 (72,73) EQUAL(f(h,f(f(b,h),b)),f(d,d)). ** KEPT: 746 (15,73) EQUAL(f(h,f(f(b,a),b)),f(d,c)). ** KEPT: 747 (5,73) EQUAL(f(h,f(f(b,x),y)),f(d,f(x,y))). ** KEPT: 748 (4,73) EQUAL(f(d,g(b)),f(h,e)). ** KEPT: 749 (8,73) EQUAL(f(f(c,g(a)),x),f(h,f(b,x))). ** KEPT: 750 (667,73) EQUAL(f(h,f(b,b)),f(k,d)). ** KEPT: 751 (72,73) EQUAL(f(h,f(b,d)),f(f(d,h),b)). ** KEPT: 752 (266,73) EQUAL(f(h,f(b,f(g(d),b))),b). ---> New Demodulator: 753 (752) EQUAL(f(h,f(b,f(g(d),b))),b). ** KEPT: 754 (15,73) EQUAL(f(h,f(b,c)),f(f(d,a),b)). ** KEPT: 755 (84,73) EQUAL(f(h,f(b,f(x,g(x)))),d). ---> New Demodulator: 756 (755) EQUAL(f(h,f(b,f(x,g(x)))),d). ** KEPT: 757 (82,73) EQUAL(f(h,f(b,f(g(x),x))),d). ---> New Demodulator: 758 (757) EQUAL(f(h,f(b,f(g(x),x))),d). ** KEPT: 759 (9,73) EQUAL(f(h,f(b,g(b))),h). ---> New Demodulator: 760 (759) EQUAL(f(h,f(b,g(b))),h). ** KEPT: 761 (5,73) EQUAL(f(h,f(b,f(x,y))),f(f(d,x),y)). ** KEPT: 762 (4,73) EQUAL(f(h,f(b,g(d))),e). ---> New Demodulator: 763 (762) EQUAL(f(h,f(b,g(d))),e). ** KEPT: 764 (2,73) EQUAL(f(h,f(b,e)),d). ---> New Demodulator: 765 (764) EQUAL(f(h,f(b,e)),d). >>>> Starting back demodulation with: 753 (752) EQUAL(f(h,f(b,f(g(d),b))),b). >>>> Starting back demodulation with: 756 (755) EQUAL(f(h,f(b,f(x,g(x)))),d). >>>> Starting back demodulation with: 758 (757) EQUAL(f(h,f(b,f(g(x),x))),d). >>>> Starting back demodulation with: 760 (759) EQUAL(f(h,f(b,g(b))),h). >>>> Starting back demodulation with: 763 (762) EQUAL(f(h,f(b,g(d))),e). >>>> Starting back demodulation with: 765 (764) EQUAL(f(h,f(b,e)),d). ** KEPT: 766 (73,5) EQUAL(f(f(x,h),f(b,y)),f(x,f(d,y))). ** KEPT: 767 (73,5) EQUAL(f(h,f(f(b,x),y)),f(f(d,x),y)). ** KEPT: 768 (73,72) EQUAL(f(f(h,f(b,h)),b),f(d,d)). ** KEPT: 769 (73,260) EQUAL(f(g(d),f(h,f(b,b))),b). ---> New Demodulator: 770 (769) EQUAL(f(g(d),f(h,f(b,b))),b). ** KEPT: 771 (73,15) EQUAL(f(f(h,f(b,a)),b),f(d,c)). ** KEPT: 772 (73,113) EQUAL(f(f(h,f(b,x)),g(x)),d). ---> New Demodulator: 773 (772) EQUAL(f(f(h,f(b,x)),g(x)),d). ** KEPT: 774 (73,105) EQUAL(f(f(h,f(b,g(x))),x),d). ---> New Demodulator: 775 (774) EQUAL(f(f(h,f(b,g(x))),x),d). ** KEPT: 776 (73,5) EQUAL(f(x,f(h,f(b,y))),f(f(x,d),y)). ** KEPT: 777 (73,5) EQUAL(f(f(h,f(b,x)),y),f(d,f(x,y))). >>>> Starting back demodulation with: 770 (769) EQUAL(f(g(d),f(h,f(b,b))),b). >>>> Starting back demodulation with: 773 (772) EQUAL(f(f(h,f(b,x)),g(x)),d). >>>> Starting back demodulation with: 775 (774) EQUAL(f(f(h,f(b,g(x))),x),d). new given clause: 764 (2,73) EQUAL(f(h,f(b,e)),d). ** KEPT: 778 (9,764) EQUAL(f(f(d,g(b)),f(b,e)),d). ---> New Demodulator: 779 (778) EQUAL(f(f(d,g(b)),f(b,e)),d). >>>> Starting back demodulation with: 779 (778) EQUAL(f(f(d,g(b)),f(b,e)),d). ** KEPT: 780 (764,5) EQUAL(f(f(x,h),f(b,e)),f(x,d)). ** KEPT: 781 (764,5) EQUAL(f(h,f(f(b,e),x)),f(d,x)). new given clause: 748 (4,73) EQUAL(f(d,g(b)),f(h,e)). ** KEPT: 782 (4,748) EQUAL(f(h,f(x,g(x))),f(d,g(b))). ** KEPT: 783 (3,748) EQUAL(f(h,f(g(x),x)),f(d,g(b))). ** KEPT: 784 (748,113,14) EQUAL(f(f(h,e),b),d). ---> New Demodulator: 785 (784) EQUAL(f(f(h,e),b),d). ** KEPT: 786 (748,129) EQUAL(f(k,f(h,e)),d). ---> New Demodulator: 787 (786) EQUAL(f(k,f(h,e)),d). ** KEPT: 788 (748,5) EQUAL(f(f(x,d),g(b)),f(x,f(h,e))). ** KEPT: 789 (748,5) EQUAL(f(d,f(g(b),x)),f(f(h,e),x)). ** KEPT: 790 (748,5) EQUAL(f(x,f(d,g(b))),f(f(x,h),e)). ** KEPT: 791 (748,5) EQUAL(f(f(d,g(b)),x),f(h,f(e,x))). >>>> Starting back demodulation with: 785 (784) EQUAL(f(f(h,e),b),d). >>>> Starting back demodulation with: 787 (786) EQUAL(f(k,f(h,e)),d). new given clause: 784 (748,113,14) EQUAL(f(f(h,e),b),d). ** KEPT: 792 (9,784) EQUAL(f(f(f(d,g(b)),e),b),d). ---> New Demodulator: 793 (792) EQUAL(f(f(f(d,g(b)),e),b),d). ** KEPT: 794 (4,784) EQUAL(f(f(h,f(x,g(x))),b),d). ---> New Demodulator: 795 (794) EQUAL(f(f(h,f(x,g(x))),b),d). ** KEPT: 796 (3,784) EQUAL(f(f(h,f(g(x),x)),b),d). ---> New Demodulator: 797 (796) EQUAL(f(f(h,f(g(x),x)),b),d). ** KEPT: 798 (5,784) EQUAL(f(h,f(e,b)),d). ---> New Demodulator: 799 (798) EQUAL(f(h,f(e,b)),d). >>>> Starting back demodulation with: 793 (792) EQUAL(f(f(f(d,g(b)),e),b),d). >>>> Starting back demodulation with: 795 (794) EQUAL(f(f(h,f(x,g(x))),b),d). >>>> Starting back demodulation with: 797 (796) EQUAL(f(f(h,f(g(x),x)),b),d). >>>> Starting back demodulation with: 799 (798) EQUAL(f(h,f(e,b)),d). ** KEPT: 800 (784,260) EQUAL(f(g(f(h,e)),d),b). ---> New Demodulator: 801 (800) EQUAL(f(g(f(h,e)),d),b). ** KEPT: 802 (784,5) EQUAL(f(f(x,f(h,e)),b),f(x,d)). ** KEPT: 803 (784,5) EQUAL(f(f(h,e),f(b,x)),f(d,x)). >>>> Starting back demodulation with: 801 (800) EQUAL(f(g(f(h,e)),d),b). new given clause: 786 (748,129) EQUAL(f(k,f(h,e)),d). ** KEPT: 804 (9,786) EQUAL(f(k,f(f(d,g(b)),e)),d). ---> New Demodulator: 805 (804) EQUAL(f(k,f(f(d,g(b)),e)),d). ** KEPT: 806 (4,786) EQUAL(f(k,f(h,f(x,g(x)))),d). ---> New Demodulator: 807 (806) EQUAL(f(k,f(h,f(x,g(x)))),d). ** KEPT: 808 (3,786) EQUAL(f(k,f(h,f(g(x),x))),d). ---> New Demodulator: 809 (808) EQUAL(f(k,f(h,f(g(x),x))),d). >>>> Starting back demodulation with: 805 (804) EQUAL(f(k,f(f(d,g(b)),e)),d). >>>> Starting back demodulation with: 807 (806) EQUAL(f(k,f(h,f(x,g(x)))),d). >>>> Starting back demodulation with: 809 (808) EQUAL(f(k,f(h,f(g(x),x))),d). ** KEPT: 810 (786,5) EQUAL(f(f(x,k),f(h,e)),f(x,d)). ** KEPT: 811 (786,5) EQUAL(f(k,f(f(h,e),x)),f(d,x)). new given clause: 798 (5,784) EQUAL(f(h,f(e,b)),d). ** KEPT: 812 (9,798) EQUAL(f(f(d,g(b)),f(e,b)),d). ---> New Demodulator: 813 (812) EQUAL(f(f(d,g(b)),f(e,b)),d). >>>> Starting back demodulation with: 813 (812) EQUAL(f(f(d,g(b)),f(e,b)),d). ** KEPT: 814 (798,5) EQUAL(f(f(x,h),f(e,b)),f(x,d)). ** KEPT: 815 (798,5) EQUAL(f(h,f(f(e,b),x)),f(d,x)). new given clause: 759 (9,73) EQUAL(f(h,f(b,g(b))),h). ** KEPT: 816 (9,759) EQUAL(f(f(d,g(b)),f(b,g(b))),h). ---> New Demodulator: 817 (816) EQUAL(f(f(d,g(b)),f(b,g(b))),h). >>>> Starting back demodulation with: 817 (816) EQUAL(f(f(d,g(b)),f(b,g(b))),h). ** KEPT: 818 (759,5) EQUAL(f(f(x,h),f(b,g(b))),f(x,h)). ** KEPT: 819 (759,5) EQUAL(f(h,f(f(b,g(b)),x)),f(h,x)). new given clause: 762 (4,73) EQUAL(f(h,f(b,g(d))),e). ** KEPT: 820 (9,762) EQUAL(f(f(d,g(b)),f(b,g(d))),e). ---> New Demodulator: 821 (820) EQUAL(f(f(d,g(b)),f(b,g(d))),e). ** KEPT: 822 (8,762) EQUAL(f(h,f(b,g(f(c,g(a))))),e). ---> New Demodulator: 823 (822) EQUAL(f(h,f(b,g(f(c,g(a))))),e). >>>> Starting back demodulation with: 821 (820) EQUAL(f(f(d,g(b)),f(b,g(d))),e). >>>> Starting back demodulation with: 823 (822) EQUAL(f(h,f(b,g(f(c,g(a))))),e). ** KEPT: 824 (762,5) EQUAL(f(f(x,h),f(b,g(d))),f(x,e)). ** KEPT: 825 (762,5) EQUAL(f(h,f(f(b,g(d)),x)),f(e,x)). new given clause: 800 (784,260) EQUAL(f(g(f(h,e)),d),b). ** KEPT: 826 (9,800) EQUAL(f(g(f(f(d,g(b)),e)),d),b). ---> New Demodulator: 827 (826) EQUAL(f(g(f(f(d,g(b)),e)),d),b). ** KEPT: 828 (4,800) EQUAL(f(g(f(h,f(x,g(x)))),d),b). ---> New Demodulator: 829 (828) EQUAL(f(g(f(h,f(x,g(x)))),d),b). ** KEPT: 830 (3,800) EQUAL(f(g(f(h,f(g(x),x))),d),b). ---> New Demodulator: 831 (830) EQUAL(f(g(f(h,f(g(x),x))),d),b). ** KEPT: 832 (8,800) EQUAL(f(g(f(h,e)),f(c,g(a))),b). ---> New Demodulator: 833 (832) EQUAL(f(g(f(h,e)),f(c,g(a))),b). ** KEPT: 834 (72,800) EQUAL(f(f(g(f(h,e)),h),b),b). ---> New Demodulator: 835 (834) EQUAL(f(f(g(f(h,e)),h),b),b). >>>> Starting back demodulation with: 827 (826) EQUAL(f(g(f(f(d,g(b)),e)),d),b). >>>> Starting back demodulation with: 829 (828) EQUAL(f(g(f(h,f(x,g(x)))),d),b). >>>> Starting back demodulation with: 831 (830) EQUAL(f(g(f(h,f(g(x),x))),d),b). >>>> Starting back demodulation with: 833 (832) EQUAL(f(g(f(h,e)),f(c,g(a))),b). >>>> Starting back demodulation with: 835 (834) EQUAL(f(f(g(f(h,e)),h),b),b). ** KEPT: 836 (800,5) EQUAL(f(f(x,g(f(h,e))),d),f(x,b)). ** KEPT: 837 (800,5) EQUAL(f(g(f(h,e)),f(d,x)),f(b,x)). new given clause: 74 (31,67) EQUAL(f(d,g(f(d,g(b)))),k). ** KEPT: 838 (8,74) EQUAL(f(f(c,g(a)),g(f(d,g(b)))),k). ---> New Demodulator: 839 (838) EQUAL(f(f(c,g(a)),g(f(d,g(b)))),k). ** KEPT: 840 (748,74) EQUAL(f(d,g(f(h,e))),k). ---> New Demodulator: 841 (840) EQUAL(f(d,g(f(h,e))),k). >>>> Starting back demodulation with: 839 (838) EQUAL(f(f(c,g(a)),g(f(d,g(b)))),k). >>>> Starting back demodulation with: 841 (840) EQUAL(f(d,g(f(h,e))),k). ** KEPT: 842 (74,5) EQUAL(f(f(x,d),g(f(d,g(b)))),f(x,k)). ** KEPT: 843 (74,5) EQUAL(f(d,f(g(f(d,g(b))),x)),f(k,x)). new given clause: 840 (748,74) EQUAL(f(d,g(f(h,e))),k). ** KEPT: 844 (8,840) EQUAL(f(f(c,g(a)),g(f(h,e))),k). ---> New Demodulator: 845 (844) EQUAL(f(f(c,g(a)),g(f(h,e))),k). ** KEPT: 846 (9,840) EQUAL(f(d,g(f(f(d,g(b)),e))),k). ---> New Demodulator: 847 (846) EQUAL(f(d,g(f(f(d,g(b)),e))),k). ** KEPT: 848 (4,840) EQUAL(f(d,g(f(h,f(x,g(x))))),k). ---> New Demodulator: 849 (848) EQUAL(f(d,g(f(h,f(x,g(x))))),k). ** KEPT: 850 (3,840) EQUAL(f(d,g(f(h,f(g(x),x)))),k). ---> New Demodulator: 851 (850) EQUAL(f(d,g(f(h,f(g(x),x)))),k). ** KEPT: 852 (73,840) EQUAL(f(h,f(b,g(f(h,e)))),k). ---> New Demodulator: 853 (852) EQUAL(f(h,f(b,g(f(h,e)))),k). >>>> Starting back demodulation with: 845 (844) EQUAL(f(f(c,g(a)),g(f(h,e))),k). >>>> Starting back demodulation with: 847 (846) EQUAL(f(d,g(f(f(d,g(b)),e))),k). >>>> Starting back demodulation with: 849 (848) EQUAL(f(d,g(f(h,f(x,g(x))))),k). >>>> Starting back demodulation with: 851 (850) EQUAL(f(d,g(f(h,f(g(x),x)))),k). >>>> Starting back demodulation with: 853 (852) EQUAL(f(h,f(b,g(f(h,e)))),k). ** KEPT: 854 (840,5) EQUAL(f(f(x,d),g(f(h,e))),f(x,k)). ** KEPT: 855 (840,5) EQUAL(f(d,f(g(f(h,e)),x)),f(k,x)). new given clause: 92 (56,5,67) EQUAL(f(d,f(e,x)),f(d,x)). ** KEPT: 856 (393,92) EQUAL(f(d,f(c,e)),f(d,c)). ** KEPT: 857 (254,92) EQUAL(f(d,f(c,g(a))),f(d,d)). ** KEPT: 858 (5,92) EQUAL(f(d,f(f(e,x),y)),f(d,f(x,y))). ** KEPT: 859 (92,92) EQUAL(f(d,f(e,f(e,x))),f(d,x)). ** KEPT: 860 (73,92) EQUAL(f(h,f(b,f(e,x))),f(d,x)). ** KEPT: 861 (5,92) EQUAL(f(f(d,e),x),f(d,x)). ** KEPT: 862 (8,92) EQUAL(f(f(c,g(a)),x),f(d,f(e,x))). ** KEPT: 863 (840,92) EQUAL(f(d,f(e,g(f(h,e)))),k). ---> New Demodulator: 864 (863) EQUAL(f(d,f(e,g(f(h,e)))),k). ** KEPT: 865 (74,92) EQUAL(f(d,f(e,g(f(d,g(b))))),k). ---> New Demodulator: 866 (865) EQUAL(f(d,f(e,g(f(d,g(b))))),k). ** KEPT: 867 (748,92) EQUAL(f(d,f(e,g(b))),f(h,e)). ** KEPT: 868 (73,92) EQUAL(f(h,f(b,x)),f(d,f(e,x))). ** KEPT: 869 (667,92) EQUAL(f(d,f(e,b)),f(k,d)). ** KEPT: 870 (72,92) EQUAL(f(d,f(e,d)),f(f(d,h),b)). ** KEPT: 871 (266,92) EQUAL(f(d,f(e,f(g(d),b))),b). ---> New Demodulator: 872 (871) EQUAL(f(d,f(e,f(g(d),b))),b). ** KEPT: 873 (15,92) EQUAL(f(d,f(e,c)),f(f(d,a),b)). ** KEPT: 874 (84,92) EQUAL(f(d,f(e,f(x,g(x)))),d). ---> New Demodulator: 875 (874) EQUAL(f(d,f(e,f(x,g(x)))),d). ** KEPT: 876 (82,92) EQUAL(f(d,f(e,f(g(x),x))),d). ---> New Demodulator: 877 (876) EQUAL(f(d,f(e,f(g(x),x))),d). ** KEPT: 878 (70,92) EQUAL(f(d,f(e,g(h))),k). ---> New Demodulator: 879 (878) EQUAL(f(d,f(e,g(h))),k). ** KEPT: 880 (9,92) EQUAL(f(d,f(e,g(b))),h). ---> New Demodulator: 881 (880) EQUAL(f(d,f(e,g(b))),h). ** KEPT: 882 (5,92) EQUAL(f(d,f(e,f(x,y))),f(f(d,x),y)). ** KEPT: 883 (4,92) EQUAL(f(d,f(e,g(d))),e). ---> New Demodulator: 884 (883) EQUAL(f(d,f(e,g(d))),e). ** KEPT: 885 (2,92) EQUAL(f(d,f(e,e)),d). ---> New Demodulator: 886 (885) EQUAL(f(d,f(e,e)),d). >>>> Starting back demodulation with: 864 (863) EQUAL(f(d,f(e,g(f(h,e)))),k). >>>> Starting back demodulation with: 866 (865) EQUAL(f(d,f(e,g(f(d,g(b))))),k). >>>> Starting back demodulation with: 872 (871) EQUAL(f(d,f(e,f(g(d),b))),b). >>>> Starting back demodulation with: 875 (874) EQUAL(f(d,f(e,f(x,g(x)))),d). >>>> Starting back demodulation with: 877 (876) EQUAL(f(d,f(e,f(g(x),x))),d). >>>> Starting back demodulation with: 879 (878) EQUAL(f(d,f(e,g(h))),k). >>>> Starting back demodulation with: 881 (880) EQUAL(f(d,f(e,g(b))),h). >> back demodulating: 867 (748,92) EQUAL(f(d,f(e,g(b))),f(h,e)). >>>> Starting back demodulation with: 884 (883) EQUAL(f(d,f(e,g(d))),e). >>>> Starting back demodulation with: 886 (885) EQUAL(f(d,f(e,e)),d). ** KEPT: 887 (92,113) EQUAL(f(f(d,x),g(f(e,x))),d). ---> New Demodulator: 888 (887) EQUAL(f(f(d,x),g(f(e,x))),d). ** KEPT: 889 (92,5) EQUAL(f(f(x,d),f(e,y)),f(x,f(d,y))). ** KEPT: 890 (92,5) EQUAL(f(d,f(f(e,x),y)),f(f(d,x),y)). ** KEPT: 891 (92,260) EQUAL(f(g(d),f(d,f(e,b))),b). ---> New Demodulator: 892 (891) EQUAL(f(g(d),f(d,f(e,b))),b). ** KEPT: 893 (92,113) EQUAL(f(f(d,f(e,x)),g(x)),d). ---> New Demodulator: 894 (893) EQUAL(f(f(d,f(e,x)),g(x)),d). ** KEPT: 895 (92,105) EQUAL(f(f(d,f(e,g(x))),x),d). ---> New Demodulator: 896 (895) EQUAL(f(f(d,f(e,g(x))),x),d). ** KEPT: 897 (92,5) EQUAL(f(x,f(d,f(e,y))),f(f(x,d),y)). ** KEPT: 898 (92,5) EQUAL(f(f(d,f(e,x)),y),f(d,f(x,y))). >>>> Starting back demodulation with: 888 (887) EQUAL(f(f(d,x),g(f(e,x))),d). >>>> Starting back demodulation with: 892 (891) EQUAL(f(g(d),f(d,f(e,b))),b). >>>> Starting back demodulation with: 894 (893) EQUAL(f(f(d,f(e,x)),g(x)),d). >>>> Starting back demodulation with: 896 (895) EQUAL(f(f(d,f(e,g(x))),x),d). new given clause: 885 (2,92) EQUAL(f(d,f(e,e)),d). ** KEPT: 899 (8,885) EQUAL(f(f(c,g(a)),f(e,e)),d). ---> New Demodulator: 900 (899) EQUAL(f(f(c,g(a)),f(e,e)),d). ** KEPT: 901 (4,885) EQUAL(f(d,f(f(x,g(x)),e)),d). ---> New Demodulator: 902 (901) EQUAL(f(d,f(f(x,g(x)),e)),d). ** KEPT: 903 (3,885) EQUAL(f(d,f(f(g(x),x),e)),d). ---> New Demodulator: 904 (903) EQUAL(f(d,f(f(g(x),x),e)),d). ** KEPT: 905 (92,885) EQUAL(f(d,f(e,f(e,e))),d). ---> New Demodulator: 906 (905) EQUAL(f(d,f(e,f(e,e))),d). ** KEPT: 907 (73,885) EQUAL(f(h,f(b,f(e,e))),d). ---> New Demodulator: 908 (907) EQUAL(f(h,f(b,f(e,e))),d). ** KEPT: 909 (5,885) EQUAL(f(f(d,e),e),d). ---> New Demodulator: 910 (909) EQUAL(f(f(d,e),e),d). >>>> Starting back demodulation with: 900 (899) EQUAL(f(f(c,g(a)),f(e,e)),d). >>>> Starting back demodulation with: 902 (901) EQUAL(f(d,f(f(x,g(x)),e)),d). >>>> Starting back demodulation with: 904 (903) EQUAL(f(d,f(f(g(x),x),e)),d). >>>> Starting back demodulation with: 906 (905) EQUAL(f(d,f(e,f(e,e))),d). >>>> Starting back demodulation with: 908 (907) EQUAL(f(h,f(b,f(e,e))),d). >>>> Starting back demodulation with: 910 (909) EQUAL(f(f(d,e),e),d). ** KEPT: 911 (885,113) EQUAL(f(d,g(f(e,e))),d). ---> New Demodulator: 912 (911) EQUAL(f(d,g(f(e,e))),d). ** KEPT: 913 (885,5) EQUAL(f(f(x,d),f(e,e)),f(x,d)). ** KEPT: 914 (885,5) EQUAL(f(d,f(f(e,e),x)),f(d,x)). >>>> Starting back demodulation with: 912 (911) EQUAL(f(d,g(f(e,e))),d). new given clause: 909 (5,885) EQUAL(f(f(d,e),e),d). ** KEPT: 915 (4,909) EQUAL(f(f(d,e),f(x,g(x))),d). ---> New Demodulator: 916 (915) EQUAL(f(f(d,e),f(x,g(x))),d). ** KEPT: 917 (3,909) EQUAL(f(f(d,e),f(g(x),x)),d). ---> New Demodulator: 918 (917) EQUAL(f(f(d,e),f(g(x),x)),d). >>>> Starting back demodulation with: 916 (915) EQUAL(f(f(d,e),f(x,g(x))),d). >>>> Starting back demodulation with: 918 (917) EQUAL(f(f(d,e),f(g(x),x)),d). ** KEPT: 919 (909,5) EQUAL(f(f(x,f(d,e)),e),f(x,d)). ** KEPT: 920 (909,5) EQUAL(f(f(d,e),f(e,x)),f(d,x)). new given clause: 878 (70,92) EQUAL(f(d,f(e,g(h))),k). ** KEPT: 921 (8,878) EQUAL(f(f(c,g(a)),f(e,g(h))),k). ---> New Demodulator: 922 (921) EQUAL(f(f(c,g(a)),f(e,g(h))),k). ** KEPT: 923 (4,878) EQUAL(f(d,f(f(x,g(x)),g(h))),k). ---> New Demodulator: 924 (923) EQUAL(f(d,f(f(x,g(x)),g(h))),k). ** KEPT: 925 (3,878) EQUAL(f(d,f(f(g(x),x),g(h))),k). ---> New Demodulator: 926 (925) EQUAL(f(d,f(f(g(x),x),g(h))),k). ** KEPT: 927 (92,878) EQUAL(f(d,f(e,f(e,g(h)))),k). ---> New Demodulator: 928 (927) EQUAL(f(d,f(e,f(e,g(h)))),k). ** KEPT: 929 (73,878) EQUAL(f(h,f(b,f(e,g(h)))),k). ---> New Demodulator: 930 (929) EQUAL(f(h,f(b,f(e,g(h)))),k). ** KEPT: 931 (5,878) EQUAL(f(f(d,e),g(h)),k). ---> New Demodulator: 932 (931) EQUAL(f(f(d,e),g(h)),k). >>>> Starting back demodulation with: 922 (921) EQUAL(f(f(c,g(a)),f(e,g(h))),k). >>>> Starting back demodulation with: 924 (923) EQUAL(f(d,f(f(x,g(x)),g(h))),k). >>>> Starting back demodulation with: 926 (925) EQUAL(f(d,f(f(g(x),x),g(h))),k). >>>> Starting back demodulation with: 928 (927) EQUAL(f(d,f(e,f(e,g(h)))),k). >>>> Starting back demodulation with: 930 (929) EQUAL(f(h,f(b,f(e,g(h)))),k). >>>> Starting back demodulation with: 932 (931) EQUAL(f(f(d,e),g(h)),k). ** KEPT: 933 (878,113) EQUAL(f(k,g(f(e,g(h)))),d). ---> New Demodulator: 934 (933) EQUAL(f(k,g(f(e,g(h)))),d). ** KEPT: 935 (878,5) EQUAL(f(f(x,d),f(e,g(h))),f(x,k)). ** KEPT: 936 (878,5) EQUAL(f(d,f(f(e,g(h)),x)),f(k,x)). >>>> Starting back demodulation with: 934 (933) EQUAL(f(k,g(f(e,g(h)))),d). new given clause: 880 (9,92) EQUAL(f(d,f(e,g(b))),h). ** KEPT: 937 (8,880) EQUAL(f(f(c,g(a)),f(e,g(b))),h). ---> New Demodulator: 938 (937) EQUAL(f(f(c,g(a)),f(e,g(b))),h). ** KEPT: 939 (4,880) EQUAL(f(d,f(f(x,g(x)),g(b))),h). ---> New Demodulator: 940 (939) EQUAL(f(d,f(f(x,g(x)),g(b))),h). ** KEPT: 941 (3,880) EQUAL(f(d,f(f(g(x),x),g(b))),h). ---> New Demodulator: 942 (941) EQUAL(f(d,f(f(g(x),x),g(b))),h). ** KEPT: 943 (92,880) EQUAL(f(d,f(e,f(e,g(b)))),h). ---> New Demodulator: 944 (943) EQUAL(f(d,f(e,f(e,g(b)))),h). ** KEPT: 945 (73,880) EQUAL(f(h,f(b,f(e,g(b)))),h). ---> New Demodulator: 946 (945) EQUAL(f(h,f(b,f(e,g(b)))),h). ** KEPT: 947 (5,880) EQUAL(f(f(d,e),g(b)),h). ---> New Demodulator: 948 (947) EQUAL(f(f(d,e),g(b)),h). >>>> Starting back demodulation with: 938 (937) EQUAL(f(f(c,g(a)),f(e,g(b))),h). >>>> Starting back demodulation with: 940 (939) EQUAL(f(d,f(f(x,g(x)),g(b))),h). >>>> Starting back demodulation with: 942 (941) EQUAL(f(d,f(f(g(x),x),g(b))),h). >>>> Starting back demodulation with: 944 (943) EQUAL(f(d,f(e,f(e,g(b)))),h). >>>> Starting back demodulation with: 946 (945) EQUAL(f(h,f(b,f(e,g(b)))),h). >>>> Starting back demodulation with: 948 (947) EQUAL(f(f(d,e),g(b)),h). ** KEPT: 949 (880,113) EQUAL(f(h,g(f(e,g(b)))),d). ---> New Demodulator: 950 (949) EQUAL(f(h,g(f(e,g(b)))),d). ** KEPT: 951 (880,5) EQUAL(f(f(x,d),f(e,g(b))),f(x,h)). ** KEPT: 952 (880,5) EQUAL(f(d,f(f(e,g(b)),x)),f(h,x)). >>>> Starting back demodulation with: 950 (949) EQUAL(f(h,g(f(e,g(b)))),d). new given clause: 883 (4,92) EQUAL(f(d,f(e,g(d))),e). ** KEPT: 953 (8,883) EQUAL(f(f(c,g(a)),f(e,g(d))),e). ---> New Demodulator: 954 (953) EQUAL(f(f(c,g(a)),f(e,g(d))),e). ** KEPT: 955 (4,883) EQUAL(f(d,f(f(x,g(x)),g(d))),e). ---> New Demodulator: 956 (955) EQUAL(f(d,f(f(x,g(x)),g(d))),e). ** KEPT: 957 (3,883) EQUAL(f(d,f(f(g(x),x),g(d))),e). ---> New Demodulator: 958 (957) EQUAL(f(d,f(f(g(x),x),g(d))),e). ** KEPT: 959 (8,883) EQUAL(f(d,f(e,g(f(c,g(a))))),e). ---> New Demodulator: 960 (959) EQUAL(f(d,f(e,g(f(c,g(a))))),e). ** KEPT: 961 (92,883) EQUAL(f(d,f(e,f(e,g(d)))),e). ---> New Demodulator: 962 (961) EQUAL(f(d,f(e,f(e,g(d)))),e). ** KEPT: 963 (73,883) EQUAL(f(h,f(b,f(e,g(d)))),e). ---> New Demodulator: 964 (963) EQUAL(f(h,f(b,f(e,g(d)))),e). ** KEPT: 965 (5,883) EQUAL(f(f(d,e),g(d)),e). ---> New Demodulator: 966 (965) EQUAL(f(f(d,e),g(d)),e). >>>> Starting back demodulation with: 954 (953) EQUAL(f(f(c,g(a)),f(e,g(d))),e). >>>> Starting back demodulation with: 956 (955) EQUAL(f(d,f(f(x,g(x)),g(d))),e). >>>> Starting back demodulation with: 958 (957) EQUAL(f(d,f(f(g(x),x),g(d))),e). >>>> Starting back demodulation with: 960 (959) EQUAL(f(d,f(e,g(f(c,g(a))))),e). >>>> Starting back demodulation with: 962 (961) EQUAL(f(d,f(e,f(e,g(d)))),e). >>>> Starting back demodulation with: 964 (963) EQUAL(f(h,f(b,f(e,g(d)))),e). >>>> Starting back demodulation with: 966 (965) EQUAL(f(f(d,e),g(d)),e). ** KEPT: 967 (883,113) EQUAL(f(e,g(f(e,g(d)))),d). ---> New Demodulator: 968 (967) EQUAL(f(e,g(f(e,g(d)))),d). ** KEPT: 969 (883,5) EQUAL(f(f(x,d),f(e,g(d))),f(x,e)). ** KEPT: 970 (883,5) EQUAL(f(d,f(f(e,g(d)),x)),f(e,x)). >>>> Starting back demodulation with: 968 (967) EQUAL(f(e,g(f(e,g(d)))),d). new given clause: 911 (885,113) EQUAL(f(d,g(f(e,e))),d). ** KEPT: 971 (8,911) EQUAL(f(f(c,g(a)),g(f(e,e))),d). ---> New Demodulator: 972 (971) EQUAL(f(f(c,g(a)),g(f(e,e))),d). ** KEPT: 973 (4,911) EQUAL(f(d,g(f(f(x,g(x)),e))),d). ---> New Demodulator: 974 (973) EQUAL(f(d,g(f(f(x,g(x)),e))),d). ** KEPT: 975 (3,911) EQUAL(f(d,g(f(f(g(x),x),e))),d). ---> New Demodulator: 976 (975) EQUAL(f(d,g(f(f(g(x),x),e))),d). ** KEPT: 977 (4,911) EQUAL(f(d,g(f(e,f(x,g(x))))),d). ---> New Demodulator: 978 (977) EQUAL(f(d,g(f(e,f(x,g(x))))),d). ** KEPT: 979 (3,911) EQUAL(f(d,g(f(e,f(g(x),x)))),d). ---> New Demodulator: 980 (979) EQUAL(f(d,g(f(e,f(g(x),x)))),d). ** KEPT: 981 (92,911) EQUAL(f(d,f(e,g(f(e,e)))),d). ---> New Demodulator: 982 (981) EQUAL(f(d,f(e,g(f(e,e)))),d). ** KEPT: 983 (73,911) EQUAL(f(h,f(b,g(f(e,e)))),d). ---> New Demodulator: 984 (983) EQUAL(f(h,f(b,g(f(e,e)))),d). >>>> Starting back demodulation with: 972 (971) EQUAL(f(f(c,g(a)),g(f(e,e))),d). >>>> Starting back demodulation with: 974 (973) EQUAL(f(d,g(f(f(x,g(x)),e))),d). >>>> Starting back demodulation with: 976 (975) EQUAL(f(d,g(f(f(g(x),x),e))),d). >>>> Starting back demodulation with: 978 (977) EQUAL(f(d,g(f(e,f(x,g(x))))),d). >>>> Starting back demodulation with: 980 (979) EQUAL(f(d,g(f(e,f(g(x),x)))),d). >>>> Starting back demodulation with: 982 (981) EQUAL(f(d,f(e,g(f(e,e)))),d). >>>> Starting back demodulation with: 984 (983) EQUAL(f(h,f(b,g(f(e,e)))),d). ** KEPT: 985 (911,5) EQUAL(f(f(x,d),g(f(e,e))),f(x,d)). ** KEPT: 986 (911,5) EQUAL(f(d,f(g(f(e,e)),x)),f(d,x)). new given clause: 931 (5,878) EQUAL(f(f(d,e),g(h)),k). ** KEPT: 987 (9,931) EQUAL(f(f(d,e),g(f(d,g(b)))),k). ---> New Demodulator: 988 (987) EQUAL(f(f(d,e),g(f(d,g(b)))),k). >>>> Starting back demodulation with: 988 (987) EQUAL(f(f(d,e),g(f(d,g(b)))),k). ** KEPT: 989 (931,5) EQUAL(f(f(x,f(d,e)),g(h)),f(x,k)). ** KEPT: 990 (931,5) EQUAL(f(f(d,e),f(g(h),x)),f(k,x)). new given clause: 947 (5,880) EQUAL(f(f(d,e),g(b)),h). ** KEPT: 991 (947,5) EQUAL(f(f(x,f(d,e)),g(b)),f(x,h)). ** KEPT: 992 (947,5) EQUAL(f(f(d,e),f(g(b),x)),f(h,x)). new given clause: 965 (5,883) EQUAL(f(f(d,e),g(d)),e). ** KEPT: 993 (8,965) EQUAL(f(f(d,e),g(f(c,g(a)))),e). ---> New Demodulator: 994 (993) EQUAL(f(f(d,e),g(f(c,g(a)))),e). >>>> Starting back demodulation with: 994 (993) EQUAL(f(f(d,e),g(f(c,g(a)))),e). ** KEPT: 995 (965,5) EQUAL(f(f(x,f(d,e)),g(d)),f(x,e)). ** KEPT: 996 (965,5) EQUAL(f(f(d,e),f(g(d),x)),f(e,x)). new given clause: 93 (8,70) EQUAL(f(f(c,g(a)),g(h)),k). ** KEPT: 997 (5,93) EQUAL(f(c,f(g(a),g(h))),k). ---> New Demodulator: 998 (997) EQUAL(f(c,f(g(a),g(h))),k). >>>> Starting back demodulation with: 998 (997) EQUAL(f(c,f(g(a),g(h))),k). ** KEPT: 999 (93,5) EQUAL(f(f(x,f(c,g(a))),g(h)),f(x,k)). ** KEPT: 1000 (93,5) EQUAL(f(f(c,g(a)),f(g(h),x)),f(k,x)). new given clause: 131 (123,5) EQUAL(f(f(x,k),h),f(x,d)). ** KEPT: 1001 (92,131) EQUAL(f(f(d,f(e,k)),h),f(d,d)). ** KEPT: 1002 (73,131) EQUAL(f(f(h,f(b,k)),h),f(d,d)). ** KEPT: 1003 (520,131) EQUAL(f(f(a,g(k)),d),f(a,h)). ** KEPT: 1004 (16,131) EQUAL(f(f(a,f(b,k)),h),f(c,d)). ** KEPT: 1005 (105,131) EQUAL(f(f(d,g(k)),d),f(d,h)). ** KEPT: 1006 (5,131) EQUAL(f(f(x,f(y,k)),h),f(f(x,y),d)). ** KEPT: 1007 (3,131) EQUAL(f(g(k),d),f(e,h)). ** KEPT: 1008 (8,131) EQUAL(f(x,f(c,g(a))),f(f(x,k),h)). ** KEPT: 1009 (92,131) EQUAL(f(d,f(e,d)),f(f(d,k),h)). ** KEPT: 1010 (800,131) EQUAL(f(f(g(f(h,e)),k),h),b). ---> New Demodulator: 1011 (1010) EQUAL(f(f(g(f(h,e)),k),h),b). ** KEPT: 1012 (73,131) EQUAL(f(h,f(b,d)),f(f(d,k),h)). ** KEPT: 1013 (721,131) EQUAL(f(f(f(g(d),k),k),h),b). ---> New Demodulator: 1014 (1013) EQUAL(f(f(f(g(d),k),k),h),b). ** KEPT: 1015 (705,131) EQUAL(f(f(g(f(e,h)),k),h),b). ---> New Demodulator: 1016 (1015) EQUAL(f(f(g(f(e,h)),k),h),b). ** KEPT: 1017 (667,131) EQUAL(f(f(k,k),h),f(d,b)). ** KEPT: 1018 (72,131) EQUAL(f(f(x,k),h),f(f(x,h),b)). ** KEPT: 1019 (520,131) EQUAL(f(f(f(a,g(d)),k),h),a). ---> New Demodulator: 1020 (1019) EQUAL(f(f(f(a,g(d)),k),h),a). ** KEPT: 1021 (16,131) EQUAL(f(a,f(b,d)),f(f(c,k),h)). ** KEPT: 1022 (294,131) EQUAL(f(f(g(h),k),h),b). ---> New Demodulator: 1023 (1022) EQUAL(f(f(g(h),k),h),b). ** KEPT: 1024 (105,131) EQUAL(f(f(f(d,g(d)),k),h),d). ---> New Demodulator: 1025 (1024) EQUAL(f(f(f(d,g(d)),k),h),d). ** KEPT: 1026 (5,131) EQUAL(f(f(f(x,y),k),h),f(x,f(y,d))). ** KEPT: 1027 (3,131) EQUAL(f(f(g(d),k),h),e). ---> New Demodulator: 1028 (1027) EQUAL(f(f(g(d),k),h),e). ** KEPT: 1029 (1,131) EQUAL(f(f(e,k),h),d). ---> New Demodulator: 1030 (1029) EQUAL(f(f(e,k),h),d). >>>> Starting back demodulation with: 1011 (1010) EQUAL(f(f(g(f(h,e)),k),h),b). >>>> Starting back demodulation with: 1014 (1013) EQUAL(f(f(f(g(d),k),k),h),b). >>>> Starting back demodulation with: 1016 (1015) EQUAL(f(f(g(f(e,h)),k),h),b). >>>> Starting back demodulation with: 1020 (1019) EQUAL(f(f(f(a,g(d)),k),h),a). >>>> Starting back demodulation with: 1023 (1022) EQUAL(f(f(g(h),k),h),b). >>>> Starting back demodulation with: 1025 (1024) EQUAL(f(f(f(d,g(d)),k),h),d). >>>> Starting back demodulation with: 1028 (1027) EQUAL(f(f(g(d),k),h),e). >> back demodulating: 741 (72,721) EQUAL(f(f(f(g(d),k),h),b),b). >> back demodulating: 742 (741) EQUAL(f(f(f(g(d),k),h),b),b). >>>> Starting back demodulation with: 1030 (1029) EQUAL(f(f(e,k),h),d). ** KEPT: 1031 (131,72) EQUAL(f(f(x,k),d),f(f(x,d),b)). ** KEPT: 1032 (131,5) EQUAL(f(f(x,f(y,k)),h),f(x,f(y,d))). ** KEPT: 1033 (131,5) EQUAL(f(f(x,k),f(h,y)),f(f(x,d),y)). ** KEPT: 1034 (131,526) EQUAL(f(f(f(a,k),h),g(d)),a). ---> New Demodulator: 1035 (1034) EQUAL(f(f(f(a,k),h),g(d)),a). ** KEPT: 1036 (131,73) EQUAL(f(h,f(f(b,k),h)),f(d,d)). ** KEPT: 1037 (131,16) EQUAL(f(a,f(f(b,k),h)),f(c,d)). ** KEPT: 1038 (131,695) EQUAL(f(g(d),f(f(k,k),h)),b). ---> New Demodulator: 1039 (1038) EQUAL(f(g(d),f(f(k,k),h)),b). ** KEPT: 1040 (131,151) EQUAL(f(f(f(k,k),h),g(b)),d). ---> New Demodulator: 1041 (1040) EQUAL(f(f(f(k,k),h),g(b)),d). ** KEPT: 1042 (131,113) EQUAL(f(f(f(d,k),h),g(d)),d). ---> New Demodulator: 1043 (1042) EQUAL(f(f(f(d,k),h),g(d)),d). ** KEPT: 1044 (131,5) EQUAL(f(x,f(f(y,k),h)),f(f(x,y),d)). ** KEPT: 1045 (131,5) EQUAL(f(f(f(x,k),h),y),f(x,f(d,y))). >>>> Starting back demodulation with: 1035 (1034) EQUAL(f(f(f(a,k),h),g(d)),a). >>>> Starting back demodulation with: 1039 (1038) EQUAL(f(g(d),f(f(k,k),h)),b). >>>> Starting back demodulation with: 1041 (1040) EQUAL(f(f(f(k,k),h),g(b)),d). >>>> Starting back demodulation with: 1043 (1042) EQUAL(f(f(f(d,k),h),g(d)),d). new given clause: 1029 (1,131) EQUAL(f(f(e,k),h),d). ** KEPT: 1046 (4,1029) EQUAL(f(f(f(x,g(x)),k),h),d). ---> New Demodulator: 1047 (1046) EQUAL(f(f(f(x,g(x)),k),h),d). ** KEPT: 1048 (3,1029) EQUAL(f(f(f(g(x),x),k),h),d). ---> New Demodulator: 1049 (1048) EQUAL(f(f(f(g(x),x),k),h),d). ** KEPT: 1050 (9,1029) EQUAL(f(f(e,k),f(d,g(b))),d). ---> New Demodulator: 1051 (1050) EQUAL(f(f(e,k),f(d,g(b))),d). >>>> Starting back demodulation with: 1047 (1046) EQUAL(f(f(f(x,g(x)),k),h),d). >> back demodulating: 1025 (1024) EQUAL(f(f(f(d,g(d)),k),h),d). >> back demodulating: 1024 (105,131) EQUAL(f(f(f(d,g(d)),k),h),d). >>>> Starting back demodulation with: 1049 (1048) EQUAL(f(f(f(g(x),x),k),h),d). >>>> Starting back demodulation with: 1051 (1050) EQUAL(f(f(e,k),f(d,g(b))),d). ** KEPT: 1052 (1029,72) EQUAL(f(f(e,k),d),f(d,b)). ** KEPT: 1053 (1029,5) EQUAL(f(f(x,f(e,k)),h),f(x,d)). ** KEPT: 1054 (1029,5) EQUAL(f(f(e,k),f(h,x)),f(d,x)). 1053 back subsumes: 1001 (92,131) EQUAL(f(f(d,f(e,k)),h),f(d,d)). new given clause: 1007 (3,131) EQUAL(f(g(k),d),f(e,h)). ** KEPT: 1055 (8,1007) EQUAL(f(g(k),f(c,g(a))),f(e,h)). ** KEPT: 1056 (131,1007) EQUAL(f(f(g(k),k),h),f(e,h)). ** KEPT: 1057 (72,1007) EQUAL(f(f(g(k),h),b),f(e,h)). ** KEPT: 1058 (4,1007) EQUAL(f(f(x,g(x)),h),f(g(k),d)). ** KEPT: 1059 (3,1007) EQUAL(f(f(g(x),x),h),f(g(k),d)). ** KEPT: 1060 (9,1007) EQUAL(f(e,f(d,g(b))),f(g(k),d)). ** KEPT: 1061 (1,1007) EQUAL(f(g(k),d),h). ---> New Demodulator: 1062 (1061) EQUAL(f(g(k),d),h). >>>> Starting back demodulation with: 1062 (1061) EQUAL(f(g(k),d),h). >> back demodulating: 1060 (9,1007) EQUAL(f(e,f(d,g(b))),f(g(k),d)). ** KEPT: 1063 (1060,1062) EQUAL(f(e,f(d,g(b))),h). ---> New Demodulator: 1064 (1063) EQUAL(f(e,f(d,g(b))),h). >> back demodulating: 1059 (3,1007) EQUAL(f(f(g(x),x),h),f(g(k),d)). ** KEPT: 1065 (1059,1062) EQUAL(f(f(g(x),x),h),h). ---> New Demodulator: 1066 (1065) EQUAL(f(f(g(x),x),h),h). >> back demodulating: 1058 (4,1007) EQUAL(f(f(x,g(x)),h),f(g(k),d)). ** KEPT: 1067 (1058,1062) EQUAL(f(f(x,g(x)),h),h). ---> New Demodulator: 1068 (1067) EQUAL(f(f(x,g(x)),h),h). >> back demodulating: 1007 (3,131) EQUAL(f(g(k),d),f(e,h)). >>>> Starting back demodulation with: 1064 (1063) EQUAL(f(e,f(d,g(b))),h). >> back demodulating: 703 (9,678) EQUAL(f(f(e,f(d,g(b))),b),d). >> back demodulating: 704 (703) EQUAL(f(f(e,f(d,g(b))),b),d). >> back demodulating: 729 (9,705) EQUAL(f(g(f(e,f(d,g(b)))),d),b). >> back demodulating: 730 (729) EQUAL(f(g(f(e,f(d,g(b)))),d),b). >>>> Starting back demodulation with: 1066 (1065) EQUAL(f(f(g(x),x),h),h). >> back demodulating: 701 (3,678) EQUAL(f(f(f(g(x),x),h),b),d). >> back demodulating: 702 (701) EQUAL(f(f(f(g(x),x),h),b),d). >> back demodulating: 727 (3,705) EQUAL(f(g(f(f(g(x),x),h)),d),b). >> back demodulating: 728 (727) EQUAL(f(g(f(f(g(x),x),h)),d),b). >> back demodulating: 1056 (131,1007) EQUAL(f(f(g(k),k),h),f(e,h)). >>>> Starting back demodulation with: 1068 (1067) EQUAL(f(f(x,g(x)),h),h). >> back demodulating: 699 (4,678) EQUAL(f(f(f(x,g(x)),h),b),d). >> back demodulating: 700 (699) EQUAL(f(f(f(x,g(x)),h),b),d). >> back demodulating: 725 (4,705) EQUAL(f(g(f(f(x,g(x)),h)),d),b). >> back demodulating: 726 (725) EQUAL(f(g(f(f(x,g(x)),h)),d),b). ** KEPT: 1069 (1007,5) EQUAL(f(f(x,g(k)),d),f(x,f(e,h))). ** KEPT: 1070 (1007,5) EQUAL(f(g(k),f(d,x)),f(f(e,h),x)). ** KEPT: 1071 (1007,5,1062) EQUAL(f(f(x,e),h),f(x,h)). new given clause: 1061 (1,1007) EQUAL(f(g(k),d),h). ** KEPT: 1072 (8,1061) EQUAL(f(g(k),f(c,g(a))),h). ---> New Demodulator: 1073 (1072) EQUAL(f(g(k),f(c,g(a))),h). ** KEPT: 1074 (72,1061) EQUAL(f(f(g(k),h),b),h). ---> New Demodulator: 1075 (1074) EQUAL(f(f(g(k),h),b),h). >>>> Starting back demodulation with: 1073 (1072) EQUAL(f(g(k),f(c,g(a))),h). >> back demodulating: 1055 (8,1007) EQUAL(f(g(k),f(c,g(a))),f(e,h)). >>>> Starting back demodulation with: 1075 (1074) EQUAL(f(f(g(k),h),b),h). >> back demodulating: 1057 (72,1007) EQUAL(f(f(g(k),h),b),f(e,h)). ** KEPT: 1076 (1061,5) EQUAL(f(f(x,g(k)),d),f(x,h)). ** KEPT: 1077 (1061,5) EQUAL(f(g(k),f(d,x)),f(h,x)). 1076 back subsumes: 1005 (105,131) EQUAL(f(f(d,g(k)),d),f(d,h)). 1076 back subsumes: 1003 (520,131) EQUAL(f(f(a,g(k)),d),f(a,h)). new given clause: 1022 (294,131) EQUAL(f(f(g(h),k),h),b). ** KEPT: 1078 (9,1022) EQUAL(f(f(g(f(d,g(b))),k),h),b). ---> New Demodulator: 1079 (1078) EQUAL(f(f(g(f(d,g(b))),k),h),b). ** KEPT: 1080 (9,1022) EQUAL(f(f(g(h),k),f(d,g(b))),b). ---> New Demodulator: 1081 (1080) EQUAL(f(f(g(h),k),f(d,g(b))),b). >>>> Starting back demodulation with: 1079 (1078) EQUAL(f(f(g(f(d,g(b))),k),h),b). >>>> Starting back demodulation with: 1081 (1080) EQUAL(f(f(g(h),k),f(d,g(b))),b). ** KEPT: 1082 (1022,72) EQUAL(f(f(g(h),k),d),f(b,b)). ** KEPT: 1083 (1022,5) EQUAL(f(f(x,f(g(h),k)),h),f(x,b)). ** KEPT: 1084 (1022,5) EQUAL(f(f(g(h),k),f(h,x)),f(b,x)). new given clause: 1027 (3,131) EQUAL(f(f(g(d),k),h),e). ** KEPT: 1085 (8,1027) EQUAL(f(f(g(f(c,g(a))),k),h),e). ---> New Demodulator: 1086 (1085) EQUAL(f(f(g(f(c,g(a))),k),h),e). ** KEPT: 1087 (9,1027) EQUAL(f(f(g(d),k),f(d,g(b))),e). ---> New Demodulator: 1088 (1087) EQUAL(f(f(g(d),k),f(d,g(b))),e). >>>> Starting back demodulation with: 1086 (1085) EQUAL(f(f(g(f(c,g(a))),k),h),e). >>>> Starting back demodulation with: 1088 (1087) EQUAL(f(f(g(d),k),f(d,g(b))),e). ** KEPT: 1089 (1027,5) EQUAL(f(f(x,f(g(d),k)),h),f(x,e)). ** KEPT: 1090 (1027,5) EQUAL(f(f(g(d),k),f(h,x)),f(e,x)). new given clause: 1063 (1060,1062) EQUAL(f(e,f(d,g(b))),h). ** KEPT: 1091 (4,1063) EQUAL(f(f(x,g(x)),f(d,g(b))),h). ---> New Demodulator: 1092 (1091) EQUAL(f(f(x,g(x)),f(d,g(b))),h). ** KEPT: 1093 (3,1063) EQUAL(f(f(g(x),x),f(d,g(b))),h). ---> New Demodulator: 1094 (1093) EQUAL(f(f(g(x),x),f(d,g(b))),h). ** KEPT: 1095 (748,1063) EQUAL(f(e,f(h,e)),h). ---> New Demodulator: 1096 (1095) EQUAL(f(e,f(h,e)),h). ** KEPT: 1097 (5,1063) EQUAL(f(f(e,d),g(b)),h). ---> New Demodulator: 1098 (1097) EQUAL(f(f(e,d),g(b)),h). >>>> Starting back demodulation with: 1092 (1091) EQUAL(f(f(x,g(x)),f(d,g(b))),h). >>>> Starting back demodulation with: 1094 (1093) EQUAL(f(f(g(x),x),f(d,g(b))),h). >>>> Starting back demodulation with: 1096 (1095) EQUAL(f(e,f(h,e)),h). >>>> Starting back demodulation with: 1098 (1097) EQUAL(f(f(e,d),g(b)),h). ** KEPT: 1099 (1063,92) EQUAL(f(d,f(d,g(b))),f(d,h)). ** KEPT: 1100 (1063,5) EQUAL(f(f(x,e),f(d,g(b))),f(x,h)). ** KEPT: 1101 (1063,5) EQUAL(f(e,f(f(d,g(b)),x)),f(h,x)). new given clause: 1095 (748,1063) EQUAL(f(e,f(h,e)),h). ** KEPT: 1102 (4,1095) EQUAL(f(f(x,g(x)),f(h,e)),h). ---> New Demodulator: 1103 (1102) EQUAL(f(f(x,g(x)),f(h,e)),h). ** KEPT: 1104 (3,1095) EQUAL(f(f(g(x),x),f(h,e)),h). ---> New Demodulator: 1105 (1104) EQUAL(f(f(g(x),x),f(h,e)),h). ** KEPT: 1106 (9,1095) EQUAL(f(e,f(f(d,g(b)),e)),h). ---> New Demodulator: 1107 (1106) EQUAL(f(e,f(f(d,g(b)),e)),h). ** KEPT: 1108 (4,1095) EQUAL(f(e,f(h,f(x,g(x)))),h). ---> New Demodulator: 1109 (1108) EQUAL(f(e,f(h,f(x,g(x)))),h). ** KEPT: 1110 (3,1095) EQUAL(f(e,f(h,f(g(x),x))),h). ---> New Demodulator: 1111 (1110) EQUAL(f(e,f(h,f(g(x),x))),h). ** KEPT: 1112 (5,1095) EQUAL(f(f(e,h),e),h). ---> New Demodulator: 1113 (1112) EQUAL(f(f(e,h),e),h). >>>> Starting back demodulation with: 1103 (1102) EQUAL(f(f(x,g(x)),f(h,e)),h). >>>> Starting back demodulation with: 1105 (1104) EQUAL(f(f(g(x),x),f(h,e)),h). >>>> Starting back demodulation with: 1107 (1106) EQUAL(f(e,f(f(d,g(b)),e)),h). >>>> Starting back demodulation with: 1109 (1108) EQUAL(f(e,f(h,f(x,g(x)))),h). >>>> Starting back demodulation with: 1111 (1110) EQUAL(f(e,f(h,f(g(x),x))),h). >>>> Starting back demodulation with: 1113 (1112) EQUAL(f(f(e,h),e),h). ** KEPT: 1114 (1095,92) EQUAL(f(d,f(h,e)),f(d,h)). ** KEPT: 1115 (1095,5) EQUAL(f(f(x,e),f(h,e)),f(x,h)). ** KEPT: 1116 (1095,5) EQUAL(f(e,f(f(h,e),x)),f(h,x)). new given clause: 1112 (5,1095) EQUAL(f(f(e,h),e),h). ** KEPT: 1117 (4,1112) EQUAL(f(f(e,h),f(x,g(x))),h). ---> New Demodulator: 1118 (1117) EQUAL(f(f(e,h),f(x,g(x))),h). ** KEPT: 1119 (3,1112) EQUAL(f(f(e,h),f(g(x),x)),h). ---> New Demodulator: 1120 (1119) EQUAL(f(f(e,h),f(g(x),x)),h). >>>> Starting back demodulation with: 1118 (1117) EQUAL(f(f(e,h),f(x,g(x))),h). >>>> Starting back demodulation with: 1120 (1119) EQUAL(f(f(e,h),f(g(x),x)),h). ** KEPT: 1121 (1112,5) EQUAL(f(f(x,f(e,h)),e),f(x,h)). ** KEPT: 1122 (1112,5) EQUAL(f(f(e,h),f(e,x)),f(h,x)). new given clause: 1065 (1059,1062) EQUAL(f(f(g(x),x),h),h). ** KEPT: 1123 (5,1065) EQUAL(f(f(f(g(f(x,y)),x),y),h),h). ---> New Demodulator: 1124 (1123) EQUAL(f(f(f(g(f(x,y)),x),y),h),h). ** KEPT: 1125 (5,1065) EQUAL(f(g(x),f(x,h)),h). ---> New Demodulator: 1126 (1125) EQUAL(f(g(x),f(x,h)),h). >>>> Starting back demodulation with: 1124 (1123) EQUAL(f(f(f(g(f(x,y)),x),y),h),h). >>>> Starting back demodulation with: 1126 (1125) EQUAL(f(g(x),f(x,h)),h). ** KEPT: 1127 (1065,72,69) EQUAL(f(f(g(x),x),d),d). ---> New Demodulator: 1128 (1127) EQUAL(f(f(g(x),x),d),d). ** KEPT: 1129 (1065,5) EQUAL(f(f(x,f(g(y),y)),h),f(x,h)). ** KEPT: 1130 (1065,5) EQUAL(f(f(g(y),y),f(h,x)),f(h,x)). >>>> Starting back demodulation with: 1128 (1127) EQUAL(f(f(g(x),x),d),d). new given clause: 1067 (1058,1062) EQUAL(f(f(x,g(x)),h),h). ** KEPT: 1131 (5,1067) EQUAL(f(f(x,f(y,g(f(x,y)))),h),h). ---> New Demodulator: 1132 (1131) EQUAL(f(f(x,f(y,g(f(x,y)))),h),h). ** KEPT: 1133 (5,1067) EQUAL(f(x,f(g(x),h)),h). ---> New Demodulator: 1134 (1133) EQUAL(f(x,f(g(x),h)),h). >>>> Starting back demodulation with: 1132 (1131) EQUAL(f(f(x,f(y,g(f(x,y)))),h),h). >>>> Starting back demodulation with: 1134 (1133) EQUAL(f(x,f(g(x),h)),h). ** KEPT: 1135 (1067,72,69) EQUAL(f(f(x,g(x)),d),d). ---> New Demodulator: 1136 (1135) EQUAL(f(f(x,g(x)),d),d). ** KEPT: 1137 (1067,5) EQUAL(f(f(x,f(y,g(y))),h),f(x,h)). ** KEPT: 1138 (1067,5) EQUAL(f(f(y,g(y)),f(h,x)),f(h,x)). >>>> Starting back demodulation with: 1136 (1135) EQUAL(f(f(x,g(x)),d),d). new given clause: 1074 (72,1061) EQUAL(f(f(g(k),h),b),h). ** KEPT: 1139 (9,1074) EQUAL(f(f(g(k),f(d,g(b))),b),h). ---> New Demodulator: 1140 (1139) EQUAL(f(f(g(k),f(d,g(b))),b),h). >>>> Starting back demodulation with: 1140 (1139) EQUAL(f(f(g(k),f(d,g(b))),b),h). ** KEPT: 1141 (1074,260) EQUAL(f(g(f(g(k),h)),h),b). ---> New Demodulator: 1142 (1141) EQUAL(f(g(f(g(k),h)),h),b). ** KEPT: 1143 (1074,5) EQUAL(f(f(x,f(g(k),h)),b),f(x,h)). ** KEPT: 1144 (1074,5) EQUAL(f(f(g(k),h),f(b,x)),f(h,x)). >>>> Starting back demodulation with: 1142 (1141) EQUAL(f(g(f(g(k),h)),h),b). new given clause: 1097 (5,1063) EQUAL(f(f(e,d),g(b)),h). ** KEPT: 1145 (1097,5) EQUAL(f(f(x,f(e,d)),g(b)),f(x,h)). ** KEPT: 1146 (1097,5) EQUAL(f(f(e,d),f(g(b),x)),f(h,x)). new given clause: 1125 (5,1065) EQUAL(f(g(x),f(x,h)),h). ** KEPT: 1147 (9,1125) EQUAL(f(g(x),f(x,f(d,g(b)))),h). ---> New Demodulator: 1148 (1147) EQUAL(f(g(x),f(x,f(d,g(b)))),h). ** KEPT: 1149 (1067,1125) EQUAL(f(g(f(x,g(x))),h),h). ---> New Demodulator: 1150 (1149) EQUAL(f(g(f(x,g(x))),h),h). ** KEPT: 1151 (1065,1125) EQUAL(f(g(f(g(x),x)),h),h). ---> New Demodulator: 1152 (1151) EQUAL(f(g(f(g(x),x)),h),h). ** KEPT: 1153 (1027,1125) EQUAL(f(g(f(g(d),k)),e),h). ---> New Demodulator: 1154 (1153) EQUAL(f(g(f(g(d),k)),e),h). ** KEPT: 1155 (1022,1125) EQUAL(f(g(f(g(h),k)),b),h). ---> New Demodulator: 1156 (1155) EQUAL(f(g(f(g(h),k)),b),h). ** KEPT: 1157 (1029,1125) EQUAL(f(g(f(e,k)),d),h). ---> New Demodulator: 1158 (1157) EQUAL(f(g(f(e,k)),d),h). ** KEPT: 1159 (131,1125) EQUAL(f(g(f(x,k)),f(x,d)),h). ---> New Demodulator: 1160 (1159) EQUAL(f(g(f(x,k)),f(x,d)),h). ** KEPT: 1161 (92,1125) EQUAL(f(g(d),f(d,f(e,h))),h). ---> New Demodulator: 1162 (1161) EQUAL(f(g(d),f(d,f(e,h))),h). ** KEPT: 1163 (73,1125) EQUAL(f(g(d),f(h,f(b,h))),h). ---> New Demodulator: 1164 (1163) EQUAL(f(g(d),f(h,f(b,h))),h). ** KEPT: 1165 (520,1125) EQUAL(f(g(f(a,g(h))),a),h). ---> New Demodulator: 1166 (1165) EQUAL(f(g(f(a,g(h))),a),h). ** KEPT: 1167 (16,1125) EQUAL(f(g(c),f(a,f(b,h))),h). ---> New Demodulator: 1168 (1167) EQUAL(f(g(c),f(a,f(b,h))),h). ** KEPT: 1169 (5,1125) EQUAL(f(g(f(x,y)),f(x,f(y,h))),h). ---> New Demodulator: 1170 (1169) EQUAL(f(g(f(x,y)),f(x,f(y,h))),h). >>>> Starting back demodulation with: 1148 (1147) EQUAL(f(g(x),f(x,f(d,g(b)))),h). >>>> Starting back demodulation with: 1150 (1149) EQUAL(f(g(f(x,g(x))),h),h). >>>> Starting back demodulation with: 1152 (1151) EQUAL(f(g(f(g(x),x)),h),h). >>>> Starting back demodulation with: 1154 (1153) EQUAL(f(g(f(g(d),k)),e),h). >>>> Starting back demodulation with: 1156 (1155) EQUAL(f(g(f(g(h),k)),b),h). >>>> Starting back demodulation with: 1158 (1157) EQUAL(f(g(f(e,k)),d),h). >>>> Starting back demodulation with: 1160 (1159) EQUAL(f(g(f(x,k)),f(x,d)),h). >>>> Starting back demodulation with: 1162 (1161) EQUAL(f(g(d),f(d,f(e,h))),h). >>>> Starting back demodulation with: 1164 (1163) EQUAL(f(g(d),f(h,f(b,h))),h). >>>> Starting back demodulation with: 1166 (1165) EQUAL(f(g(f(a,g(h))),a),h). >>>> Starting back demodulation with: 1168 (1167) EQUAL(f(g(c),f(a,f(b,h))),h). >>>> Starting back demodulation with: 1170 (1169) EQUAL(f(g(f(x,y)),f(x,f(y,h))),h). ** KEPT: 1171 (1125,5) EQUAL(f(f(x,g(y)),f(y,h)),f(x,h)). ** KEPT: 1172 (1125,5) EQUAL(f(g(y),f(f(y,h),x)),f(h,x)). new given clause: 1127 (1065,72,69) EQUAL(f(f(g(x),x),d),d). ** KEPT: 1173 (5,1127) EQUAL(f(f(f(g(f(x,y)),x),y),d),d). ---> New Demodulator: 1174 (1173) EQUAL(f(f(f(g(f(x,y)),x),y),d),d). ** KEPT: 1175 (5,1127) EQUAL(f(g(x),f(x,d)),d). ---> New Demodulator: 1176 (1175) EQUAL(f(g(x),f(x,d)),d). >>>> Starting back demodulation with: 1174 (1173) EQUAL(f(f(f(g(f(x,y)),x),y),d),d). >>>> Starting back demodulation with: 1176 (1175) EQUAL(f(g(x),f(x,d)),d). ** KEPT: 1177 (1127,5) EQUAL(f(f(x,f(g(y),y)),d),f(x,d)). ** KEPT: 1178 (1127,5) EQUAL(f(f(g(y),y),f(d,x)),f(d,x)). new given clause: 1133 (5,1067) EQUAL(f(x,f(g(x),h)),h). ** KEPT: 1179 (9,1133) EQUAL(f(x,f(g(x),f(d,g(b)))),h). ---> New Demodulator: 1180 (1179) EQUAL(f(x,f(g(x),f(d,g(b)))),h). ** KEPT: 1181 (92,1133) EQUAL(f(d,f(e,f(g(d),h))),h). ---> New Demodulator: 1182 (1181) EQUAL(f(d,f(e,f(g(d),h))),h). ** KEPT: 1183 (73,1133) EQUAL(f(h,f(b,f(g(d),h))),h). ---> New Demodulator: 1184 (1183) EQUAL(f(h,f(b,f(g(d),h))),h). ** KEPT: 1185 (16,1133) EQUAL(f(a,f(b,f(g(c),h))),h). ---> New Demodulator: 1186 (1185) EQUAL(f(a,f(b,f(g(c),h))),h). ** KEPT: 1187 (5,1133) EQUAL(f(x,f(y,f(g(f(x,y)),h))),h). ---> New Demodulator: 1188 (1187) EQUAL(f(x,f(y,f(g(f(x,y)),h))),h). >>>> Starting back demodulation with: 1180 (1179) EQUAL(f(x,f(g(x),f(d,g(b)))),h). >>>> Starting back demodulation with: 1182 (1181) EQUAL(f(d,f(e,f(g(d),h))),h). >>>> Starting back demodulation with: 1184 (1183) EQUAL(f(h,f(b,f(g(d),h))),h). >>>> Starting back demodulation with: 1186 (1185) EQUAL(f(a,f(b,f(g(c),h))),h). >>>> Starting back demodulation with: 1188 (1187) EQUAL(f(x,f(y,f(g(f(x,y)),h))),h). ** KEPT: 1189 (1133,526) EQUAL(f(h,g(f(g(a),h))),a). ---> New Demodulator: 1190 (1189) EQUAL(f(h,g(f(g(a),h))),a). ** KEPT: 1191 (1133,113) EQUAL(f(h,g(f(g(d),h))),d). ---> New Demodulator: 1192 (1191) EQUAL(f(h,g(f(g(d),h))),d). ** KEPT: 1193 (1133,5) EQUAL(f(f(x,y),f(g(y),h)),f(x,h)). ** KEPT: 1194 (1133,5) EQUAL(f(y,f(f(g(y),h),x)),f(h,x)). >>>> Starting back demodulation with: 1190 (1189) EQUAL(f(h,g(f(g(a),h))),a). >>>> Starting back demodulation with: 1192 (1191) EQUAL(f(h,g(f(g(d),h))),d). new given clause: 1135 (1067,72,69) EQUAL(f(f(x,g(x)),d),d). ** KEPT: 1195 (5,1135) EQUAL(f(f(x,f(y,g(f(x,y)))),d),d). ---> New Demodulator: 1196 (1195) EQUAL(f(f(x,f(y,g(f(x,y)))),d),d). ** KEPT: 1197 (5,1135) EQUAL(f(x,f(g(x),d)),d). ---> New Demodulator: 1198 (1197) EQUAL(f(x,f(g(x),d)),d). >>>> Starting back demodulation with: 1196 (1195) EQUAL(f(f(x,f(y,g(f(x,y)))),d),d). >>>> Starting back demodulation with: 1198 (1197) EQUAL(f(x,f(g(x),d)),d). ** KEPT: 1199 (1135,5) EQUAL(f(f(x,f(y,g(y))),d),f(x,d)). ** KEPT: 1200 (1135,5) EQUAL(f(f(y,g(y)),f(d,x)),f(d,x)). new given clause: 1157 (1029,1125) EQUAL(f(g(f(e,k)),d),h). ** KEPT: 1201 (4,1157) EQUAL(f(g(f(f(x,g(x)),k)),d),h). ---> New Demodulator: 1202 (1201) EQUAL(f(g(f(f(x,g(x)),k)),d),h). ** KEPT: 1203 (3,1157) EQUAL(f(g(f(f(g(x),x),k)),d),h). ---> New Demodulator: 1204 (1203) EQUAL(f(g(f(f(g(x),x),k)),d),h). ** KEPT: 1205 (8,1157) EQUAL(f(g(f(e,k)),f(c,g(a))),h). ---> New Demodulator: 1206 (1205) EQUAL(f(g(f(e,k)),f(c,g(a))),h). ** KEPT: 1207 (131,1157) EQUAL(f(f(g(f(e,k)),k),h),h). ---> New Demodulator: 1208 (1207) EQUAL(f(f(g(f(e,k)),k),h),h). ** KEPT: 1209 (72,1157) EQUAL(f(f(g(f(e,k)),h),b),h). ---> New Demodulator: 1210 (1209) EQUAL(f(f(g(f(e,k)),h),b),h). >>>> Starting back demodulation with: 1202 (1201) EQUAL(f(g(f(f(x,g(x)),k)),d),h). >>>> Starting back demodulation with: 1204 (1203) EQUAL(f(g(f(f(g(x),x),k)),d),h). >>>> Starting back demodulation with: 1206 (1205) EQUAL(f(g(f(e,k)),f(c,g(a))),h). >>>> Starting back demodulation with: 1208 (1207) EQUAL(f(f(g(f(e,k)),k),h),h). >>>> Starting back demodulation with: 1210 (1209) EQUAL(f(f(g(f(e,k)),h),b),h). ** KEPT: 1211 (1157,5) EQUAL(f(f(x,g(f(e,k))),d),f(x,h)). ** KEPT: 1212 (1157,5) EQUAL(f(g(f(e,k)),f(d,x)),f(h,x)). new given clause: 1175 (5,1127) EQUAL(f(g(x),f(x,d)),d). ** KEPT: 1213 (8,1175) EQUAL(f(g(x),f(x,f(c,g(a)))),d). ---> New Demodulator: 1214 (1213) EQUAL(f(g(x),f(x,f(c,g(a)))),d). ** KEPT: 1215 (1135,1175) EQUAL(f(g(f(x,g(x))),d),d). ---> New Demodulator: 1216 (1215) EQUAL(f(g(f(x,g(x))),d),d). ** KEPT: 1217 (1127,1175) EQUAL(f(g(f(g(x),x)),d),d). ---> New Demodulator: 1218 (1217) EQUAL(f(g(f(g(x),x)),d),d). ** KEPT: 1219 (131,1175) EQUAL(f(g(x),f(f(x,k),h)),d). ---> New Demodulator: 1220 (1219) EQUAL(f(g(x),f(f(x,k),h)),d). ** KEPT: 1221 (92,1175) EQUAL(f(g(d),f(d,f(e,d))),d). ---> New Demodulator: 1222 (1221) EQUAL(f(g(d),f(d,f(e,d))),d). ** KEPT: 1223 (73,1175) EQUAL(f(g(d),f(h,f(b,d))),d). ---> New Demodulator: 1224 (1223) EQUAL(f(g(d),f(h,f(b,d))),d). ** KEPT: 1225 (721,1175) EQUAL(f(g(f(g(d),k)),b),d). ---> New Demodulator: 1226 (1225) EQUAL(f(g(f(g(d),k)),b),d). ** KEPT: 1227 (667,1175) EQUAL(f(g(k),f(d,b)),d). ---> New Demodulator: 1228 (1227) EQUAL(f(g(k),f(d,b)),d). ** KEPT: 1229 (72,1175) EQUAL(f(g(x),f(f(x,h),b)),d). ---> New Demodulator: 1230 (1229) EQUAL(f(g(x),f(f(x,h),b)),d). ** KEPT: 1231 (520,1175) EQUAL(f(g(f(a,g(d))),a),d). ---> New Demodulator: 1232 (1231) EQUAL(f(g(f(a,g(d))),a),d). ** KEPT: 1233 (16,1175) EQUAL(f(g(c),f(a,f(b,d))),d). ---> New Demodulator: 1234 (1233) EQUAL(f(g(c),f(a,f(b,d))),d). ** KEPT: 1235 (5,1175) EQUAL(f(g(f(x,y)),f(x,f(y,d))),d). ---> New Demodulator: 1236 (1235) EQUAL(f(g(f(x,y)),f(x,f(y,d))),d). >>>> Starting back demodulation with: 1214 (1213) EQUAL(f(g(x),f(x,f(c,g(a)))),d). >>>> Starting back demodulation with: 1216 (1215) EQUAL(f(g(f(x,g(x))),d),d). >>>> Starting back demodulation with: 1218 (1217) EQUAL(f(g(f(g(x),x)),d),d). >>>> Starting back demodulation with: 1220 (1219) EQUAL(f(g(x),f(f(x,k),h)),d). >>>> Starting back demodulation with: 1222 (1221) EQUAL(f(g(d),f(d,f(e,d))),d). >>>> Starting back demodulation with: 1224 (1223) EQUAL(f(g(d),f(h,f(b,d))),d). >>>> Starting back demodulation with: 1226 (1225) EQUAL(f(g(f(g(d),k)),b),d). >>>> Starting back demodulation with: 1228 (1227) EQUAL(f(g(k),f(d,b)),d). >>>> Starting back demodulation with: 1230 (1229) EQUAL(f(g(x),f(f(x,h),b)),d). >>>> Starting back demodulation with: 1232 (1231) EQUAL(f(g(f(a,g(d))),a),d). >>>> Starting back demodulation with: 1234 (1233) EQUAL(f(g(c),f(a,f(b,d))),d). >>>> Starting back demodulation with: 1236 (1235) EQUAL(f(g(f(x,y)),f(x,f(y,d))),d). ** KEPT: 1237 (1175,5) EQUAL(f(f(x,g(y)),f(y,d)),f(x,d)). ** KEPT: 1238 (1175,5) EQUAL(f(g(y),f(f(y,d),x)),f(d,x)). new given clause: 1197 (5,1135) EQUAL(f(x,f(g(x),d)),d). ** KEPT: 1239 (8,1197) EQUAL(f(x,f(g(x),f(c,g(a)))),d). ---> New Demodulator: 1240 (1239) EQUAL(f(x,f(g(x),f(c,g(a)))),d). ** KEPT: 1241 (131,1197) EQUAL(f(x,f(f(g(x),k),h)),d). ---> New Demodulator: 1242 (1241) EQUAL(f(x,f(f(g(x),k),h)),d). ** KEPT: 1243 (72,1197) EQUAL(f(x,f(f(g(x),h),b)),d). ---> New Demodulator: 1244 (1243) EQUAL(f(x,f(f(g(x),h),b)),d). ** KEPT: 1245 (16,1197) EQUAL(f(a,f(b,f(g(c),d))),d). ---> New Demodulator: 1246 (1245) EQUAL(f(a,f(b,f(g(c),d))),d). ** KEPT: 1247 (5,1197) EQUAL(f(x,f(y,f(g(f(x,y)),d))),d). ---> New Demodulator: 1248 (1247) EQUAL(f(x,f(y,f(g(f(x,y)),d))),d). >>>> Starting back demodulation with: 1240 (1239) EQUAL(f(x,f(g(x),f(c,g(a)))),d). >>>> Starting back demodulation with: 1242 (1241) EQUAL(f(x,f(f(g(x),k),h)),d). >>>> Starting back demodulation with: 1244 (1243) EQUAL(f(x,f(f(g(x),h),b)),d). >>>> Starting back demodulation with: 1246 (1245) EQUAL(f(a,f(b,f(g(c),d))),d). >>>> Starting back demodulation with: 1248 (1247) EQUAL(f(x,f(y,f(g(f(x,y)),d))),d). ** KEPT: 1249 (1197,526) EQUAL(f(d,g(f(g(a),d))),a). ---> New Demodulator: 1250 (1249) EQUAL(f(d,g(f(g(a),d))),a). ** KEPT: 1251 (1197,5) EQUAL(f(f(x,y),f(g(y),d)),f(x,d)). ** KEPT: 1252 (1197,5) EQUAL(f(y,f(f(g(y),d),x)),f(d,x)). >>>> Starting back demodulation with: 1250 (1249) EQUAL(f(d,g(f(g(a),d))),a). new given clause: 1227 (667,1175) EQUAL(f(g(k),f(d,b)),d). ** KEPT: 1253 (8,1227) EQUAL(f(g(k),f(f(c,g(a)),b)),d). ---> New Demodulator: 1254 (1253) EQUAL(f(g(k),f(f(c,g(a)),b)),d). ** KEPT: 1255 (92,1227) EQUAL(f(g(k),f(d,f(e,b))),d). ---> New Demodulator: 1256 (1255) EQUAL(f(g(k),f(d,f(e,b))),d). ** KEPT: 1257 (73,1227) EQUAL(f(g(k),f(h,f(b,b))),d). ---> New Demodulator: 1258 (1257) EQUAL(f(g(k),f(h,f(b,b))),d). >>>> Starting back demodulation with: 1254 (1253) EQUAL(f(g(k),f(f(c,g(a)),b)),d). >>>> Starting back demodulation with: 1256 (1255) EQUAL(f(g(k),f(d,f(e,b))),d). >>>> Starting back demodulation with: 1258 (1257) EQUAL(f(g(k),f(h,f(b,b))),d). ** KEPT: 1259 (1227,5) EQUAL(f(f(x,g(k)),f(d,b)),f(x,d)). ** KEPT: 1260 (1227,5) EQUAL(f(g(k),f(f(d,b),x)),f(d,x)). new given clause: 132 (123,5) EQUAL(f(k,f(h,x)),f(d,x)). ** KEPT: 1261 (131,132) EQUAL(f(k,f(f(h,k),h)),f(d,d)). ** KEPT: 1262 (762,132) EQUAL(f(d,f(b,g(d))),f(k,e)). ** KEPT: 1263 (764,132) EQUAL(f(d,f(b,e)),f(k,d)). ** KEPT: 1264 (73,132) EQUAL(f(k,f(d,x)),f(d,f(b,x))). ** KEPT: 1265 (72,132) EQUAL(f(k,f(f(h,h),b)),f(d,d)). ** KEPT: 1266 (15,132) EQUAL(f(k,f(f(h,a),b)),f(d,c)). ** KEPT: 1267 (48,132) EQUAL(f(d,f(b,g(h))),f(k,k)). ** KEPT: 1268 (5,132) EQUAL(f(k,f(f(h,x),y)),f(d,f(x,y))). ** KEPT: 1269 (8,132) EQUAL(f(f(c,g(a)),x),f(k,f(h,x))). ** KEPT: 1270 (1133,132) EQUAL(f(k,f(h,f(g(d),h))),h). ---> New Demodulator: 1271 (1270) EQUAL(f(k,f(h,f(g(d),h))),h). ** KEPT: 1272 (131,132) EQUAL(f(k,f(h,d)),f(f(d,k),h)). ** KEPT: 1273 (911,132) EQUAL(f(k,f(h,g(f(e,e)))),d). ---> New Demodulator: 1274 (1273) EQUAL(f(k,f(h,g(f(e,e)))),d). ** KEPT: 1275 (883,132) EQUAL(f(k,f(h,f(e,g(d)))),e). ---> New Demodulator: 1276 (1275) EQUAL(f(k,f(h,f(e,g(d)))),e). ** KEPT: 1277 (880,132) EQUAL(f(k,f(h,f(e,g(b)))),h). ---> New Demodulator: 1278 (1277) EQUAL(f(k,f(h,f(e,g(b)))),h). ** KEPT: 1279 (878,132) EQUAL(f(k,f(h,f(e,g(h)))),k). ---> New Demodulator: 1280 (1279) EQUAL(f(k,f(h,f(e,g(h)))),k). ** KEPT: 1281 (885,132) EQUAL(f(k,f(h,f(e,e))),d). ---> New Demodulator: 1282 (1281) EQUAL(f(k,f(h,f(e,e))),d). ** KEPT: 1283 (92,132) EQUAL(f(k,f(h,x)),f(d,f(e,x))). ** KEPT: 1284 (92,132) EQUAL(f(k,f(h,f(e,x))),f(d,x)). ** KEPT: 1285 (840,132) EQUAL(f(k,f(h,g(f(h,e)))),k). ---> New Demodulator: 1286 (1285) EQUAL(f(k,f(h,g(f(h,e)))),k). ** KEPT: 1287 (74,132) EQUAL(f(k,f(h,g(f(d,g(b))))),k). ---> New Demodulator: 1288 (1287) EQUAL(f(k,f(h,g(f(d,g(b))))),k). ** KEPT: 1289 (748,132) EQUAL(f(k,f(h,g(b))),f(h,e)). ** KEPT: 1290 (73,132) EQUAL(f(k,f(h,x)),f(h,f(b,x))). ** KEPT: 1291 (72,132) EQUAL(f(k,f(h,d)),f(f(d,h),b)). ** KEPT: 1292 (266,132) EQUAL(f(k,f(h,f(g(d),b))),b). ---> New Demodulator: 1293 (1292) EQUAL(f(k,f(h,f(g(d),b))),b). ** KEPT: 1294 (15,132) EQUAL(f(k,f(h,c)),f(f(d,a),b)). ** KEPT: 1295 (70,132) EQUAL(f(k,f(h,g(h))),k). ---> New Demodulator: 1296 (1295) EQUAL(f(k,f(h,g(h))),k). ** KEPT: 1297 (9,132) EQUAL(f(k,f(h,g(b))),h). ---> New Demodulator: 1298 (1297) EQUAL(f(k,f(h,g(b))),h). ** KEPT: 1299 (5,132) EQUAL(f(k,f(h,f(x,y))),f(f(d,x),y)). ** KEPT: 1300 (4,132) EQUAL(f(k,f(h,g(d))),e). ---> New Demodulator: 1301 (1300) EQUAL(f(k,f(h,g(d))),e). >>>> Starting back demodulation with: 1271 (1270) EQUAL(f(k,f(h,f(g(d),h))),h). >>>> Starting back demodulation with: 1274 (1273) EQUAL(f(k,f(h,g(f(e,e)))),d). >>>> Starting back demodulation with: 1276 (1275) EQUAL(f(k,f(h,f(e,g(d)))),e). >>>> Starting back demodulation with: 1278 (1277) EQUAL(f(k,f(h,f(e,g(b)))),h). >>>> Starting back demodulation with: 1280 (1279) EQUAL(f(k,f(h,f(e,g(h)))),k). >>>> Starting back demodulation with: 1282 (1281) EQUAL(f(k,f(h,f(e,e))),d). >>>> Starting back demodulation with: 1286 (1285) EQUAL(f(k,f(h,g(f(h,e)))),k). >>>> Starting back demodulation with: 1288 (1287) EQUAL(f(k,f(h,g(f(d,g(b))))),k). >>>> Starting back demodulation with: 1293 (1292) EQUAL(f(k,f(h,f(g(d),b))),b). >>>> Starting back demodulation with: 1296 (1295) EQUAL(f(k,f(h,g(h))),k). >>>> Starting back demodulation with: 1298 (1297) EQUAL(f(k,f(h,g(b))),h). >> back demodulating: 1289 (748,132) EQUAL(f(k,f(h,g(b))),f(h,e)). >>>> Starting back demodulation with: 1301 (1300) EQUAL(f(k,f(h,g(d))),e). ** KEPT: 1302 (132,5) EQUAL(f(f(x,k),f(h,y)),f(x,f(d,y))). ** KEPT: 1303 (132,5) EQUAL(f(k,f(f(h,x),y)),f(f(d,x),y)). ** KEPT: 1304 (132,1175) EQUAL(f(g(d),f(k,f(h,d))),d). ---> New Demodulator: 1305 (1304) EQUAL(f(g(d),f(k,f(h,d))),d). ** KEPT: 1306 (132,131) EQUAL(f(f(k,f(h,k)),h),f(d,d)). ** KEPT: 1307 (132,1125) EQUAL(f(g(d),f(k,f(h,h))),h). ---> New Demodulator: 1308 (1307) EQUAL(f(g(d),f(k,f(h,h))),h). ** KEPT: 1309 (132,72) EQUAL(f(f(k,f(h,h)),b),f(d,d)). ** KEPT: 1310 (132,15) EQUAL(f(f(k,f(h,a)),b),f(d,c)). ** KEPT: 1311 (132,113) EQUAL(f(f(k,f(h,x)),g(x)),d). ---> New Demodulator: 1312 (1311) EQUAL(f(f(k,f(h,x)),g(x)),d). ** KEPT: 1313 (132,105) EQUAL(f(f(k,f(h,g(x))),x),d). ---> New Demodulator: 1314 (1313) EQUAL(f(f(k,f(h,g(x))),x),d). ** KEPT: 1315 (132,5) EQUAL(f(x,f(k,f(h,y))),f(f(x,d),y)). ** KEPT: 1316 (132,5) EQUAL(f(f(k,f(h,x)),y),f(d,f(x,y))). >>>> Starting back demodulation with: 1305 (1304) EQUAL(f(g(d),f(k,f(h,d))),d). >>>> Starting back demodulation with: 1308 (1307) EQUAL(f(g(d),f(k,f(h,h))),h). >>>> Starting back demodulation with: 1312 (1311) EQUAL(f(f(k,f(h,x)),g(x)),d). >>>> Starting back demodulation with: 1314 (1313) EQUAL(f(f(k,f(h,g(x))),x),d). new given clause: 1295 (70,132) EQUAL(f(k,f(h,g(h))),k). ** KEPT: 1317 (9,1295) EQUAL(f(k,f(f(d,g(b)),g(h))),k). ---> New Demodulator: 1318 (1317) EQUAL(f(k,f(f(d,g(b)),g(h))),k). >>>> Starting back demodulation with: 1318 (1317) EQUAL(f(k,f(f(d,g(b)),g(h))),k). ** KEPT: 1319 (1295,5) EQUAL(f(f(x,k),f(h,g(h))),f(x,k)). ** KEPT: 1320 (1295,5) EQUAL(f(k,f(f(h,g(h)),x)),f(k,x)). new given clause: 1297 (9,132) EQUAL(f(k,f(h,g(b))),h). ** KEPT: 1321 (9,1297) EQUAL(f(k,f(f(d,g(b)),g(b))),h). ---> New Demodulator: 1322 (1321) EQUAL(f(k,f(f(d,g(b)),g(b))),h). >>>> Starting back demodulation with: 1322 (1321) EQUAL(f(k,f(f(d,g(b)),g(b))),h). ** KEPT: 1323 (1297,5) EQUAL(f(f(x,k),f(h,g(b))),f(x,h)). ** KEPT: 1324 (1297,5) EQUAL(f(k,f(f(h,g(b)),x)),f(h,x)). new given clause: 1300 (4,132) EQUAL(f(k,f(h,g(d))),e). ** KEPT: 1325 (9,1300) EQUAL(f(k,f(f(d,g(b)),g(d))),e). ---> New Demodulator: 1326 (1325) EQUAL(f(k,f(f(d,g(b)),g(d))),e). ** KEPT: 1327 (8,1300) EQUAL(f(k,f(h,g(f(c,g(a))))),e). ---> New Demodulator: 1328 (1327) EQUAL(f(k,f(h,g(f(c,g(a))))),e). >>>> Starting back demodulation with: 1326 (1325) EQUAL(f(k,f(f(d,g(b)),g(d))),e). >>>> Starting back demodulation with: 1328 (1327) EQUAL(f(k,f(h,g(f(c,g(a))))),e). ** KEPT: 1329 (1300,5) EQUAL(f(f(x,k),f(h,g(d))),f(x,e)). ** KEPT: 1330 (1300,5) EQUAL(f(k,f(f(h,g(d)),x)),f(e,x)). new given clause: 135 (84,113) EQUAL(f(d,g(f(x,g(x)))),d). ** KEPT: 1331 (8,135) EQUAL(f(f(c,g(a)),g(f(x,g(x)))),d). ---> New Demodulator: 1332 (1331) EQUAL(f(f(c,g(a)),g(f(x,g(x)))),d). ** KEPT: 1333 (5,135) EQUAL(f(d,g(f(x,f(y,g(f(x,y)))))),d). ---> New Demodulator: 1334 (1333) EQUAL(f(d,g(f(x,f(y,g(f(x,y)))))),d). ** KEPT: 1335 (132,135) EQUAL(f(k,f(h,g(f(x,g(x))))),d). ---> New Demodulator: 1336 (1335) EQUAL(f(k,f(h,g(f(x,g(x))))),d). ** KEPT: 1337 (92,135) EQUAL(f(d,f(e,g(f(x,g(x))))),d). ---> New Demodulator: 1338 (1337) EQUAL(f(d,f(e,g(f(x,g(x))))),d). ** KEPT: 1339 (73,135) EQUAL(f(h,f(b,g(f(x,g(x))))),d). ---> New Demodulator: 1340 (1339) EQUAL(f(h,f(b,g(f(x,g(x))))),d). >>>> Starting back demodulation with: 1332 (1331) EQUAL(f(f(c,g(a)),g(f(x,g(x)))),d). >>>> Starting back demodulation with: 1334 (1333) EQUAL(f(d,g(f(x,f(y,g(f(x,y)))))),d). >>>> Starting back demodulation with: 1336 (1335) EQUAL(f(k,f(h,g(f(x,g(x))))),d). >>>> Starting back demodulation with: 1338 (1337) EQUAL(f(d,f(e,g(f(x,g(x))))),d). >>>> Starting back demodulation with: 1340 (1339) EQUAL(f(h,f(b,g(f(x,g(x))))),d). ** KEPT: 1341 (135,5) EQUAL(f(f(x,d),g(f(y,g(y)))),f(x,d)). ** KEPT: 1342 (135,5) EQUAL(f(d,f(g(f(y,g(y))),x)),f(d,x)). new given clause: 137 (82,113) EQUAL(f(d,g(f(g(x),x))),d). ** KEPT: 1343 (8,137) EQUAL(f(f(c,g(a)),g(f(g(x),x))),d). ---> New Demodulator: 1344 (1343) EQUAL(f(f(c,g(a)),g(f(g(x),x))),d). ** KEPT: 1345 (5,137) EQUAL(f(d,g(f(f(g(f(x,y)),x),y))),d). ---> New Demodulator: 1346 (1345) EQUAL(f(d,g(f(f(g(f(x,y)),x),y))),d). ** KEPT: 1347 (132,137) EQUAL(f(k,f(h,g(f(g(x),x)))),d). ---> New Demodulator: 1348 (1347) EQUAL(f(k,f(h,g(f(g(x),x)))),d). ** KEPT: 1349 (92,137) EQUAL(f(d,f(e,g(f(g(x),x)))),d). ---> New Demodulator: 1350 (1349) EQUAL(f(d,f(e,g(f(g(x),x)))),d). ** KEPT: 1351 (73,137) EQUAL(f(h,f(b,g(f(g(x),x)))),d). ---> New Demodulator: 1352 (1351) EQUAL(f(h,f(b,g(f(g(x),x)))),d). >>>> Starting back demodulation with: 1344 (1343) EQUAL(f(f(c,g(a)),g(f(g(x),x))),d). >>>> Starting back demodulation with: 1346 (1345) EQUAL(f(d,g(f(f(g(f(x,y)),x),y))),d). >>>> Starting back demodulation with: 1348 (1347) EQUAL(f(k,f(h,g(f(g(x),x)))),d). >>>> Starting back demodulation with: 1350 (1349) EQUAL(f(d,f(e,g(f(g(x),x)))),d). >>>> Starting back demodulation with: 1352 (1351) EQUAL(f(h,f(b,g(f(g(x),x)))),d). ** KEPT: 1353 (137,5) EQUAL(f(f(x,d),g(f(g(y),y))),f(x,d)). ** KEPT: 1354 (137,5) EQUAL(f(d,f(g(f(g(y),y)),x)),f(d,x)). new given clause: 163 (5,15) EQUAL(f(x,f(a,b)),f(x,c)). ** KEPT: 1355 (364,163) EQUAL(f(x,f(c,e)),f(x,c)). ** KEPT: 1356 (162,163) EQUAL(f(x,f(e,c)),f(x,c)). ** KEPT: 1357 (132,163) EQUAL(f(k,f(h,f(a,b))),f(d,c)). ** KEPT: 1358 (73,163) EQUAL(f(h,f(b,f(a,b))),f(d,c)). ** KEPT: 1359 (520,163) EQUAL(f(f(a,g(f(a,b))),c),a). ---> New Demodulator: 1360 (1359) EQUAL(f(f(a,g(f(a,b))),c),a). ** KEPT: 1361 (16,163) EQUAL(f(a,f(b,f(a,b))),f(c,c)). ** KEPT: 1362 (105,163) EQUAL(f(f(d,g(f(a,b))),c),d). ---> New Demodulator: 1363 (1362) EQUAL(f(f(d,g(f(a,b))),c),d). ** KEPT: 1364 (5,163) EQUAL(f(x,f(y,f(a,b))),f(f(x,y),c)). ** KEPT: 1365 (3,163) EQUAL(f(g(f(a,b)),c),e). ---> New Demodulator: 1366 (1365) EQUAL(f(g(f(a,b)),c),e). ** KEPT: 1367 (132,163) EQUAL(f(k,f(h,c)),f(d,f(a,b))). ** KEPT: 1368 (92,163) EQUAL(f(d,f(a,b)),f(d,f(e,c))). ** KEPT: 1369 (73,163) EQUAL(f(h,f(b,c)),f(d,f(a,b))). ** KEPT: 1370 (520,163) EQUAL(f(f(a,g(c)),f(a,b)),a). ---> New Demodulator: 1371 (1370) EQUAL(f(f(a,g(c)),f(a,b)),a). ** KEPT: 1372 (16,163) EQUAL(f(c,f(a,b)),f(a,f(b,c))). ** KEPT: 1373 (105,163) EQUAL(f(f(d,g(c)),f(a,b)),d). ---> New Demodulator: 1374 (1373) EQUAL(f(f(d,g(c)),f(a,b)),d). ** KEPT: 1375 (5,163) EQUAL(f(f(x,y),f(a,b)),f(x,f(y,c))). 1355 back subsumes: 856 (393,92) EQUAL(f(d,f(c,e)),f(d,c)). >>>> Starting back demodulation with: 1360 (1359) EQUAL(f(f(a,g(f(a,b))),c),a). >>>> Starting back demodulation with: 1363 (1362) EQUAL(f(f(d,g(f(a,b))),c),d). >>>> Starting back demodulation with: 1366 (1365) EQUAL(f(g(f(a,b)),c),e). >> back demodulating: 536 (7,506) EQUAL(f(f(g(f(a,b)),c),e),e). >> back demodulating: 537 (536) EQUAL(f(f(g(f(a,b)),c),e),e). >>>> Starting back demodulation with: 1371 (1370) EQUAL(f(f(a,g(c)),f(a,b)),a). >>>> Starting back demodulation with: 1374 (1373) EQUAL(f(f(d,g(c)),f(a,b)),d). ** KEPT: 1376 (163,526) EQUAL(f(f(a,c),g(f(a,b))),a). ---> New Demodulator: 1377 (1376) EQUAL(f(f(a,c),g(f(a,b))),a). ** KEPT: 1378 (163,113) EQUAL(f(f(d,c),g(f(a,b))),d). ---> New Demodulator: 1379 (1378) EQUAL(f(f(d,c),g(f(a,b))),d). ** KEPT: 1380 (163,5) EQUAL(f(x,f(f(a,b),y)),f(f(x,c),y)). ** KEPT: 1381 (163,526) EQUAL(f(f(a,f(a,b)),g(c)),a). ---> New Demodulator: 1382 (1381) EQUAL(f(f(a,f(a,b)),g(c)),a). ** KEPT: 1383 (163,113) EQUAL(f(f(d,f(a,b)),g(c)),d). ---> New Demodulator: 1384 (1383) EQUAL(f(f(d,f(a,b)),g(c)),d). ** KEPT: 1385 (163,5) EQUAL(f(f(x,f(a,b)),y),f(x,f(c,y))). >>>> Starting back demodulation with: 1377 (1376) EQUAL(f(f(a,c),g(f(a,b))),a). >>>> Starting back demodulation with: 1379 (1378) EQUAL(f(f(d,c),g(f(a,b))),d). >>>> Starting back demodulation with: 1382 (1381) EQUAL(f(f(a,f(a,b)),g(c)),a). >>>> Starting back demodulation with: 1384 (1383) EQUAL(f(f(d,f(a,b)),g(c)),d). new given clause: 1365 (3,163) EQUAL(f(g(f(a,b)),c),e). ** KEPT: 1386 (364,1365) EQUAL(f(g(f(c,e)),c),e). ---> New Demodulator: 1387 (1386) EQUAL(f(g(f(c,e)),c),e). ** KEPT: 1388 (162,1365) EQUAL(f(g(f(e,c)),c),e). ---> New Demodulator: 1389 (1388) EQUAL(f(g(f(e,c)),c),e). >>>> Starting back demodulation with: 1387 (1386) EQUAL(f(g(f(c,e)),c),e). >>>> Starting back demodulation with: 1389 (1388) EQUAL(f(g(f(e,c)),c),e). ** KEPT: 1390 (1365,5) EQUAL(f(f(x,g(f(a,b))),c),f(x,e)). ** KEPT: 1391 (1365,5) EQUAL(f(g(f(a,b)),f(c,x)),f(e,x)). new given clause: 1386 (364,1365) EQUAL(f(g(f(c,e)),c),e). ** KEPT: 1392 (4,1386) EQUAL(f(g(f(c,f(x,g(x)))),c),e). ---> New Demodulator: 1393 (1392) EQUAL(f(g(f(c,f(x,g(x)))),c),e). ** KEPT: 1394 (3,1386) EQUAL(f(g(f(c,f(g(x),x))),c),e). ---> New Demodulator: 1395 (1394) EQUAL(f(g(f(c,f(g(x),x))),c),e). ** KEPT: 1396 (7,1386) EQUAL(f(g(f(c,e)),f(a,b)),e). ---> New Demodulator: 1397 (1396) EQUAL(f(g(f(c,e)),f(a,b)),e). ** KEPT: 1398 (15,1386) EQUAL(f(f(g(f(c,e)),a),b),e). ---> New Demodulator: 1399 (1398) EQUAL(f(f(g(f(c,e)),a),b),e). >>>> Starting back demodulation with: 1393 (1392) EQUAL(f(g(f(c,f(x,g(x)))),c),e). >>>> Starting back demodulation with: 1395 (1394) EQUAL(f(g(f(c,f(g(x),x))),c),e). >>>> Starting back demodulation with: 1397 (1396) EQUAL(f(g(f(c,e)),f(a,b)),e). >>>> Starting back demodulation with: 1399 (1398) EQUAL(f(f(g(f(c,e)),a),b),e). ** KEPT: 1400 (1386,5) EQUAL(f(f(x,g(f(c,e))),c),f(x,e)). ** KEPT: 1401 (1386,5) EQUAL(f(g(f(c,e)),f(c,x)),f(e,x)). new given clause: 1388 (162,1365) EQUAL(f(g(f(e,c)),c),e). ** KEPT: 1402 (4,1388) EQUAL(f(g(f(f(x,g(x)),c)),c),e). ---> New Demodulator: 1403 (1402) EQUAL(f(g(f(f(x,g(x)),c)),c),e). ** KEPT: 1404 (3,1388) EQUAL(f(g(f(f(g(x),x),c)),c),e). ---> New Demodulator: 1405 (1404) EQUAL(f(g(f(f(g(x),x),c)),c),e). ** KEPT: 1406 (7,1388) EQUAL(f(g(f(e,c)),f(a,b)),e). ---> New Demodulator: 1407 (1406) EQUAL(f(g(f(e,c)),f(a,b)),e). ** KEPT: 1408 (15,1388) EQUAL(f(f(g(f(e,c)),a),b),e). ---> New Demodulator: 1409 (1408) EQUAL(f(f(g(f(e,c)),a),b),e). >>>> Starting back demodulation with: 1403 (1402) EQUAL(f(g(f(f(x,g(x)),c)),c),e). >>>> Starting back demodulation with: 1405 (1404) EQUAL(f(g(f(f(g(x),x),c)),c),e). >>>> Starting back demodulation with: 1407 (1406) EQUAL(f(g(f(e,c)),f(a,b)),e). >>>> Starting back demodulation with: 1409 (1408) EQUAL(f(f(g(f(e,c)),a),b),e). ** KEPT: 1410 (1388,5) EQUAL(f(f(x,g(f(e,c))),c),f(x,e)). ** KEPT: 1411 (1388,5) EQUAL(f(g(f(e,c)),f(c,x)),f(e,x)). new given clause: 221 (7,209) EQUAL(f(f(e,e),f(a,b)),c). ** KEPT: 1412 (4,221) EQUAL(f(f(f(x,g(x)),e),f(a,b)),c). ---> New Demodulator: 1413 (1412) EQUAL(f(f(f(x,g(x)),e),f(a,b)),c). ** KEPT: 1414 (3,221) EQUAL(f(f(f(g(x),x),e),f(a,b)),c). ---> New Demodulator: 1415 (1414) EQUAL(f(f(f(g(x),x),e),f(a,b)),c). ** KEPT: 1416 (4,221) EQUAL(f(f(e,f(x,g(x))),f(a,b)),c). ---> New Demodulator: 1417 (1416) EQUAL(f(f(e,f(x,g(x))),f(a,b)),c). ** KEPT: 1418 (3,221) EQUAL(f(f(e,f(g(x),x)),f(a,b)),c). ---> New Demodulator: 1419 (1418) EQUAL(f(f(e,f(g(x),x)),f(a,b)),c). ** KEPT: 1420 (364,221) EQUAL(f(f(e,e),f(c,e)),c). ---> New Demodulator: 1421 (1420) EQUAL(f(f(e,e),f(c,e)),c). ** KEPT: 1422 (162,221) EQUAL(f(f(e,e),f(e,c)),c). ---> New Demodulator: 1423 (1422) EQUAL(f(f(e,e),f(e,c)),c). >>>> Starting back demodulation with: 1413 (1412) EQUAL(f(f(f(x,g(x)),e),f(a,b)),c). >>>> Starting back demodulation with: 1415 (1414) EQUAL(f(f(f(g(x),x),e),f(a,b)),c). >>>> Starting back demodulation with: 1417 (1416) EQUAL(f(f(e,f(x,g(x))),f(a,b)),c). >>>> Starting back demodulation with: 1419 (1418) EQUAL(f(f(e,f(g(x),x)),f(a,b)),c). >>>> Starting back demodulation with: 1421 (1420) EQUAL(f(f(e,e),f(c,e)),c). >>>> Starting back demodulation with: 1423 (1422) EQUAL(f(f(e,e),f(e,c)),c). ** KEPT: 1424 (221,5) EQUAL(f(f(x,f(e,e)),f(a,b)),f(x,c)). ** KEPT: 1425 (221,5) EQUAL(f(f(e,e),f(f(a,b),x)),f(c,x)). new given clause: 223 (15,209) EQUAL(f(f(f(e,e),a),b),c). ** KEPT: 1426 (4,223) EQUAL(f(f(f(f(x,g(x)),e),a),b),c). ---> New Demodulator: 1427 (1426) EQUAL(f(f(f(f(x,g(x)),e),a),b),c). ** KEPT: 1428 (3,223) EQUAL(f(f(f(f(g(x),x),e),a),b),c). ---> New Demodulator: 1429 (1428) EQUAL(f(f(f(f(g(x),x),e),a),b),c). ** KEPT: 1430 (4,223) EQUAL(f(f(f(e,f(x,g(x))),a),b),c). ---> New Demodulator: 1431 (1430) EQUAL(f(f(f(e,f(x,g(x))),a),b),c). ** KEPT: 1432 (3,223) EQUAL(f(f(f(e,f(g(x),x)),a),b),c). ---> New Demodulator: 1433 (1432) EQUAL(f(f(f(e,f(g(x),x)),a),b),c). ** KEPT: 1434 (5,223) EQUAL(f(f(e,f(e,a)),b),c). ---> New Demodulator: 1435 (1434) EQUAL(f(f(e,f(e,a)),b),c). >>>> Starting back demodulation with: 1427 (1426) EQUAL(f(f(f(f(x,g(x)),e),a),b),c). >>>> Starting back demodulation with: 1429 (1428) EQUAL(f(f(f(f(g(x),x),e),a),b),c). >>>> Starting back demodulation with: 1431 (1430) EQUAL(f(f(f(e,f(x,g(x))),a),b),c). >>>> Starting back demodulation with: 1433 (1432) EQUAL(f(f(f(e,f(g(x),x)),a),b),c). >>>> Starting back demodulation with: 1435 (1434) EQUAL(f(f(e,f(e,a)),b),c). ** KEPT: 1436 (223,260) EQUAL(f(g(f(f(e,e),a)),c),b). ---> New Demodulator: 1437 (1436) EQUAL(f(g(f(f(e,e),a)),c),b). ** KEPT: 1438 (223,5) EQUAL(f(f(x,f(f(e,e),a)),b),f(x,c)). ** KEPT: 1439 (223,5) EQUAL(f(f(f(e,e),a),f(b,x)),f(c,x)). >>>> Starting back demodulation with: 1437 (1436) EQUAL(f(g(f(f(e,e),a)),c),b). new given clause: 239 (161,5,232) EQUAL(f(f(x,e),b),f(x,b)). ** KEPT: 1440 (423,239) EQUAL(f(f(e,c),b),f(c,b)). ** KEPT: 1441 (86,239) EQUAL(f(f(c,g(a)),b),f(d,b)). ** KEPT: 1442 (5,239) EQUAL(f(f(x,f(y,e)),b),f(f(x,y),b)). ** KEPT: 1443 (239,239) EQUAL(f(f(f(x,e),e),b),f(x,b)). ** KEPT: 1444 (5,239) EQUAL(f(x,f(e,b)),f(x,b)). ** KEPT: 1445 (223,239) EQUAL(f(f(f(f(e,e),a),e),b),c). ---> New Demodulator: 1446 (1445) EQUAL(f(f(f(f(e,e),a),e),b),c). ** KEPT: 1447 (132,239,69) EQUAL(f(f(d,e),b),f(k,d)). ** KEPT: 1448 (1074,239) EQUAL(f(f(f(g(k),h),e),b),h). ---> New Demodulator: 1449 (1448) EQUAL(f(f(f(g(k),h),e),b),h). ** KEPT: 1450 (92,239) EQUAL(f(d,f(e,b)),f(f(d,e),b)). ** KEPT: 1451 (784,239) EQUAL(f(f(f(h,e),e),b),d). ---> New Demodulator: 1452 (1451) EQUAL(f(f(f(h,e),e),b),d). ** KEPT: 1453 (73,239) EQUAL(f(h,f(b,b)),f(f(d,e),b)). ** KEPT: 1454 (676,239) EQUAL(f(f(f(g(d),h),e),b),e). ---> New Demodulator: 1455 (1454) EQUAL(f(f(f(g(d),h),e),b),e). ** KEPT: 1456 (72,239) EQUAL(f(f(f(x,h),e),b),f(x,d)). ** KEPT: 1457 (520,239) EQUAL(f(f(f(a,g(b)),e),b),a). ---> New Demodulator: 1458 (1457) EQUAL(f(f(f(a,g(b)),e),b),a). ** KEPT: 1459 (364,239) EQUAL(f(f(a,e),b),f(c,e)). ** KEPT: 1460 (235,239) EQUAL(f(f(f(x,g(x)),e),b),b). ---> New Demodulator: 1461 (1460) EQUAL(f(f(f(x,g(x)),e),b),b). ** KEPT: 1462 (233,239) EQUAL(f(f(f(g(x),x),e),b),b). ---> New Demodulator: 1463 (1462) EQUAL(f(f(f(g(x),x),e),b),b). ** KEPT: 1464 (167,239) EQUAL(f(f(f(g(c),a),e),b),e). ---> New Demodulator: 1465 (1464) EQUAL(f(f(f(g(c),a),e),b),e). ** KEPT: 1466 (169,239) EQUAL(f(f(f(e,a),e),b),c). ---> New Demodulator: 1467 (1466) EQUAL(f(f(f(e,a),e),b),c). ** KEPT: 1468 (162,239) EQUAL(f(f(a,e),b),f(e,c)). ** KEPT: 1469 (15,239) EQUAL(f(f(f(x,a),e),b),f(x,c)). ** KEPT: 1470 (7,239) EQUAL(f(f(a,e),b),c). ---> New Demodulator: 1471 (1470) EQUAL(f(f(a,e),b),c). ** KEPT: 1472 (5,239) EQUAL(f(f(f(x,y),e),b),f(x,f(y,b))). ** KEPT: 1473 (3,239) EQUAL(f(f(g(b),e),b),e). ---> New Demodulator: 1474 (1473) EQUAL(f(f(g(b),e),b),e). ** KEPT: 1475 (1,239) EQUAL(f(f(e,e),b),b). ---> New Demodulator: 1476 (1475) EQUAL(f(f(e,e),b),b). >>>> Starting back demodulation with: 1446 (1445) EQUAL(f(f(f(f(e,e),a),e),b),c). >>>> Starting back demodulation with: 1449 (1448) EQUAL(f(f(f(g(k),h),e),b),h). >>>> Starting back demodulation with: 1452 (1451) EQUAL(f(f(f(h,e),e),b),d). >>>> Starting back demodulation with: 1455 (1454) EQUAL(f(f(f(g(d),h),e),b),e). >>>> Starting back demodulation with: 1458 (1457) EQUAL(f(f(f(a,g(b)),e),b),a). >>>> Starting back demodulation with: 1461 (1460) EQUAL(f(f(f(x,g(x)),e),b),b). >>>> Starting back demodulation with: 1463 (1462) EQUAL(f(f(f(g(x),x),e),b),b). >>>> Starting back demodulation with: 1465 (1464) EQUAL(f(f(f(g(c),a),e),b),e). >>>> Starting back demodulation with: 1467 (1466) EQUAL(f(f(f(e,a),e),b),c). >>>> Starting back demodulation with: 1471 (1470) EQUAL(f(f(a,e),b),c). >> back demodulating: 1468 (162,239) EQUAL(f(f(a,e),b),f(e,c)). >> back demodulating: 1459 (364,239) EQUAL(f(f(a,e),b),f(c,e)). >>>> Starting back demodulation with: 1474 (1473) EQUAL(f(f(g(b),e),b),e). >>>> Starting back demodulation with: 1476 (1475) EQUAL(f(f(e,e),b),b). ** KEPT: 1477 (239,260) EQUAL(f(g(f(x,e)),f(x,b)),b). ---> New Demodulator: 1478 (1477) EQUAL(f(g(f(x,e)),f(x,b)),b). ** KEPT: 1479 (239,5) EQUAL(f(f(x,f(y,e)),b),f(x,f(y,b))). ** KEPT: 1480 (239,5) EQUAL(f(f(x,e),f(b,y)),f(f(x,b),y)). ** KEPT: 1481 (239,1227) EQUAL(f(g(k),f(f(d,e),b)),d). ---> New Demodulator: 1482 (1481) EQUAL(f(g(k),f(f(d,e),b)),d). ** KEPT: 1483 (239,266) EQUAL(f(x,f(f(g(x),e),b)),b). ---> New Demodulator: 1484 (1483) EQUAL(f(x,f(f(g(x),e),b)),b). ** KEPT: 1485 (239,260) EQUAL(f(g(x),f(f(x,e),b)),b). ---> New Demodulator: 1486 (1485) EQUAL(f(g(x),f(f(x,e),b)),b). ** KEPT: 1487 (239,113) EQUAL(f(f(f(d,e),b),g(b)),d). ---> New Demodulator: 1488 (1487) EQUAL(f(f(f(d,e),b),g(b)),d). ** KEPT: 1489 (239,5) EQUAL(f(x,f(f(y,e),b)),f(f(x,y),b)). ** KEPT: 1490 (239,5) EQUAL(f(f(f(x,e),b),y),f(x,f(b,y))). >>>> Starting back demodulation with: 1478 (1477) EQUAL(f(g(f(x,e)),f(x,b)),b). >>>> Starting back demodulation with: 1482 (1481) EQUAL(f(g(k),f(f(d,e),b)),d). >>>> Starting back demodulation with: 1484 (1483) EQUAL(f(x,f(f(g(x),e),b)),b). >>>> Starting back demodulation with: 1486 (1485) EQUAL(f(g(x),f(f(x,e),b)),b). >>>> Starting back demodulation with: 1488 (1487) EQUAL(f(f(f(d,e),b),g(b)),d). new given clause: 1470 (7,239) EQUAL(f(f(a,e),b),c). ** KEPT: 1491 (239,1470) EQUAL(f(f(f(a,e),e),b),c). ---> New Demodulator: 1492 (1491) EQUAL(f(f(f(a,e),e),b),c). ** KEPT: 1493 (5,1470) EQUAL(f(a,f(e,b)),c). ---> New Demodulator: 1494 (1493) EQUAL(f(a,f(e,b)),c). >>>> Starting back demodulation with: 1492 (1491) EQUAL(f(f(f(a,e),e),b),c). >>>> Starting back demodulation with: 1494 (1493) EQUAL(f(a,f(e,b)),c). ** KEPT: 1495 (1470,260) EQUAL(f(g(f(a,e)),c),b). ---> New Demodulator: 1496 (1495) EQUAL(f(g(f(a,e)),c),b). ** KEPT: 1497 (1470,5) EQUAL(f(f(x,f(a,e)),b),f(x,c)). ** KEPT: 1498 (1470,5) EQUAL(f(f(a,e),f(b,x)),f(c,x)). >>>> Starting back demodulation with: 1496 (1495) EQUAL(f(g(f(a,e)),c),b). new given clause: 1475 (1,239) EQUAL(f(f(e,e),b),b). ** KEPT: 1499 (4,1475) EQUAL(f(f(e,f(x,g(x))),b),b). ---> New Demodulator: 1500 (1499) EQUAL(f(f(e,f(x,g(x))),b),b). ** KEPT: 1501 (3,1475) EQUAL(f(f(e,f(g(x),x)),b),b). ---> New Demodulator: 1502 (1501) EQUAL(f(f(e,f(g(x),x)),b),b). ** KEPT: 1503 (239,1475) EQUAL(f(f(f(e,e),e),b),b). ---> New Demodulator: 1504 (1503) EQUAL(f(f(f(e,e),e),b),b). ** KEPT: 1505 (5,1475) EQUAL(f(e,f(e,b)),b). ---> New Demodulator: 1506 (1505) EQUAL(f(e,f(e,b)),b). >>>> Starting back demodulation with: 1500 (1499) EQUAL(f(f(e,f(x,g(x))),b),b). >>>> Starting back demodulation with: 1502 (1501) EQUAL(f(f(e,f(g(x),x)),b),b). >>>> Starting back demodulation with: 1504 (1503) EQUAL(f(f(f(e,e),e),b),b). >>>> Starting back demodulation with: 1506 (1505) EQUAL(f(e,f(e,b)),b). ** KEPT: 1507 (1475,260) EQUAL(f(g(f(e,e)),b),b). ---> New Demodulator: 1508 (1507) EQUAL(f(g(f(e,e)),b),b). ** KEPT: 1509 (1475,5) EQUAL(f(f(x,f(e,e)),b),f(x,b)). ** KEPT: 1510 (1475,5) EQUAL(f(f(e,e),f(b,x)),f(b,x)). >>>> Starting back demodulation with: 1508 (1507) EQUAL(f(g(f(e,e)),b),b). new given clause: 1493 (5,1470) EQUAL(f(a,f(e,b)),c). ** KEPT: 1511 (1493,526) EQUAL(f(c,g(f(e,b))),a). ---> New Demodulator: 1512 (1511) EQUAL(f(c,g(f(e,b))),a). ** KEPT: 1513 (1493,5) EQUAL(f(f(x,a),f(e,b)),f(x,c)). ** KEPT: 1514 (1493,5) EQUAL(f(a,f(f(e,b),x)),f(c,x)). >>>> Starting back demodulation with: 1512 (1511) EQUAL(f(c,g(f(e,b))),a). new given clause: 1505 (5,1475) EQUAL(f(e,f(e,b)),b). ** KEPT: 1515 (4,1505) EQUAL(f(f(x,g(x)),f(e,b)),b). ---> New Demodulator: 1516 (1515) EQUAL(f(f(x,g(x)),f(e,b)),b). ** KEPT: 1517 (3,1505) EQUAL(f(f(g(x),x),f(e,b)),b). ---> New Demodulator: 1518 (1517) EQUAL(f(f(g(x),x),f(e,b)),b). >>>> Starting back demodulation with: 1516 (1515) EQUAL(f(f(x,g(x)),f(e,b)),b). >>>> Starting back demodulation with: 1518 (1517) EQUAL(f(f(g(x),x),f(e,b)),b). ** KEPT: 1519 (1505,5) EQUAL(f(f(x,e),f(e,b)),f(x,b)). ** KEPT: 1520 (1505,5) EQUAL(f(e,f(f(e,b),x)),f(b,x)). new given clause: 1473 (3,239) EQUAL(f(f(g(b),e),b),e). ** KEPT: 1521 (4,1473) EQUAL(f(f(g(b),f(x,g(x))),b),e). ---> New Demodulator: 1522 (1521) EQUAL(f(f(g(b),f(x,g(x))),b),e). ** KEPT: 1523 (3,1473) EQUAL(f(f(g(b),f(g(x),x)),b),e). ---> New Demodulator: 1524 (1523) EQUAL(f(f(g(b),f(g(x),x)),b),e). ** KEPT: 1525 (239,1473) EQUAL(f(f(f(g(b),e),e),b),e). ---> New Demodulator: 1526 (1525) EQUAL(f(f(f(g(b),e),e),b),e). ** KEPT: 1527 (5,1473) EQUAL(f(g(b),f(e,b)),e). ---> New Demodulator: 1528 (1527) EQUAL(f(g(b),f(e,b)),e). >>>> Starting back demodulation with: 1522 (1521) EQUAL(f(f(g(b),f(x,g(x))),b),e). >>>> Starting back demodulation with: 1524 (1523) EQUAL(f(f(g(b),f(g(x),x)),b),e). >>>> Starting back demodulation with: 1526 (1525) EQUAL(f(f(f(g(b),e),e),b),e). >>>> Starting back demodulation with: 1528 (1527) EQUAL(f(g(b),f(e,b)),e). ** KEPT: 1529 (1473,260) EQUAL(f(g(f(g(b),e)),e),b). ---> New Demodulator: 1530 (1529) EQUAL(f(g(f(g(b),e)),e),b). ** KEPT: 1531 (1473,5) EQUAL(f(f(x,f(g(b),e)),b),f(x,e)). ** KEPT: 1532 (1473,5) EQUAL(f(f(g(b),e),f(b,x)),f(e,x)). >>>> Starting back demodulation with: 1530 (1529) EQUAL(f(g(f(g(b),e)),e),b). new given clause: 1495 (1470,260) EQUAL(f(g(f(a,e)),c),b). ** KEPT: 1533 (15,1495) EQUAL(f(f(g(f(a,e)),a),b),b). ---> New Demodulator: 1534 (1533) EQUAL(f(f(g(f(a,e)),a),b),b). >>>> Starting back demodulation with: 1534 (1533) EQUAL(f(f(g(f(a,e)),a),b),b). ** KEPT: 1535 (1495,5) EQUAL(f(f(x,g(f(a,e))),c),f(x,b)). ** KEPT: 1536 (1495,5) EQUAL(f(g(f(a,e)),f(c,x)),f(b,x)). new given clause: 1507 (1475,260) EQUAL(f(g(f(e,e)),b),b). ** KEPT: 1537 (4,1507) EQUAL(f(g(f(f(x,g(x)),e)),b),b). ---> New Demodulator: 1538 (1537) EQUAL(f(g(f(f(x,g(x)),e)),b),b). ** KEPT: 1539 (3,1507) EQUAL(f(g(f(f(g(x),x),e)),b),b). ---> New Demodulator: 1540 (1539) EQUAL(f(g(f(f(g(x),x),e)),b),b). ** KEPT: 1541 (4,1507) EQUAL(f(g(f(e,f(x,g(x)))),b),b). ---> New Demodulator: 1542 (1541) EQUAL(f(g(f(e,f(x,g(x)))),b),b). ** KEPT: 1543 (3,1507) EQUAL(f(g(f(e,f(g(x),x))),b),b). ---> New Demodulator: 1544 (1543) EQUAL(f(g(f(e,f(g(x),x))),b),b). ** KEPT: 1545 (239,1507) EQUAL(f(f(g(f(e,e)),e),b),b). ---> New Demodulator: 1546 (1545) EQUAL(f(f(g(f(e,e)),e),b),b). >>>> Starting back demodulation with: 1538 (1537) EQUAL(f(g(f(f(x,g(x)),e)),b),b). >>>> Starting back demodulation with: 1540 (1539) EQUAL(f(g(f(f(g(x),x),e)),b),b). >>>> Starting back demodulation with: 1542 (1541) EQUAL(f(g(f(e,f(x,g(x)))),b),b). >>>> Starting back demodulation with: 1544 (1543) EQUAL(f(g(f(e,f(g(x),x))),b),b). >>>> Starting back demodulation with: 1546 (1545) EQUAL(f(f(g(f(e,e)),e),b),b). ** KEPT: 1547 (1507,5) EQUAL(f(f(x,g(f(e,e))),b),f(x,b)). ** KEPT: 1548 (1507,5) EQUAL(f(g(f(e,e)),f(b,x)),f(b,x)). new given clause: 1511 (1493,526) EQUAL(f(c,g(f(e,b))),a). ** KEPT: 1549 (7,1511) EQUAL(f(f(a,b),g(f(e,b))),a). ---> New Demodulator: 1550 (1549) EQUAL(f(f(a,b),g(f(e,b))),a). ** KEPT: 1551 (16,1511) EQUAL(f(a,f(b,g(f(e,b)))),a). ---> New Demodulator: 1552 (1551) EQUAL(f(a,f(b,g(f(e,b)))),a). >>>> Starting back demodulation with: 1550 (1549) EQUAL(f(f(a,b),g(f(e,b))),a). >>>> Starting back demodulation with: 1552 (1551) EQUAL(f(a,f(b,g(f(e,b)))),a). ** KEPT: 1553 (1511,5) EQUAL(f(f(x,c),g(f(e,b))),f(x,a)). ** KEPT: 1554 (1511,5) EQUAL(f(c,f(g(f(e,b)),x)),f(a,x)). new given clause: 1527 (5,1473) EQUAL(f(g(b),f(e,b)),e). ** KEPT: 1555 (1527,5) EQUAL(f(f(x,g(b)),f(e,b)),f(x,e)). ** KEPT: 1556 (1527,5) EQUAL(f(g(b),f(f(e,b),x)),f(e,x)). new given clause: 280 (235,260) EQUAL(f(g(f(x,g(x))),b),b). ** KEPT: 1557 (5,280) EQUAL(f(g(f(x,f(y,g(f(x,y))))),b),b). ---> New Demodulator: 1558 (1557) EQUAL(f(g(f(x,f(y,g(f(x,y))))),b),b). ** KEPT: 1559 (239,280) EQUAL(f(f(g(f(x,g(x))),e),b),b). ---> New Demodulator: 1560 (1559) EQUAL(f(f(g(f(x,g(x))),e),b),b). >>>> Starting back demodulation with: 1558 (1557) EQUAL(f(g(f(x,f(y,g(f(x,y))))),b),b). >>>> Starting back demodulation with: 1560 (1559) EQUAL(f(f(g(f(x,g(x))),e),b),b). ** KEPT: 1561 (280,5) EQUAL(f(f(x,g(f(y,g(y)))),b),f(x,b)). ** KEPT: 1562 (280,5) EQUAL(f(g(f(y,g(y))),f(b,x)),f(b,x)). new given clause: 282 (233,260) EQUAL(f(g(f(g(x),x)),b),b). ** KEPT: 1563 (5,282) EQUAL(f(g(f(f(g(f(x,y)),x),y)),b),b). ---> New Demodulator: 1564 (1563) EQUAL(f(g(f(f(g(f(x,y)),x),y)),b),b). ** KEPT: 1565 (239,282) EQUAL(f(f(g(f(g(x),x)),e),b),b). ---> New Demodulator: 1566 (1565) EQUAL(f(f(g(f(g(x),x)),e),b),b). >>>> Starting back demodulation with: 1564 (1563) EQUAL(f(g(f(f(g(f(x,y)),x),y)),b),b). >>>> Starting back demodulation with: 1566 (1565) EQUAL(f(f(g(f(g(x),x)),e),b),b). ** KEPT: 1567 (282,5) EQUAL(f(f(x,g(f(g(y),y))),b),f(x,b)). ** KEPT: 1568 (282,5) EQUAL(f(g(f(g(y),y)),f(b,x)),f(b,x)). new given clause: 284 (167,260) EQUAL(f(g(f(g(c),a)),e),b). ** KEPT: 1569 (7,284) EQUAL(f(g(f(g(f(a,b)),a)),e),b). ---> New Demodulator: 1570 (1569) EQUAL(f(g(f(g(f(a,b)),a)),e),b). ** KEPT: 1571 (4,284) EQUAL(f(g(f(g(c),a)),f(x,g(x))),b). ---> New Demodulator: 1572 (1571) EQUAL(f(g(f(g(c),a)),f(x,g(x))),b). ** KEPT: 1573 (3,284) EQUAL(f(g(f(g(c),a)),f(g(x),x)),b). ---> New Demodulator: 1574 (1573) EQUAL(f(g(f(g(c),a)),f(g(x),x)),b). ** KEPT: 1575 (2,284) EQUAL(g(f(g(c),a)),b). ---> New Demodulator: 1576 (1575) EQUAL(g(f(g(c),a)),b). >>>> Starting back demodulation with: 1570 (1569) EQUAL(f(g(f(g(f(a,b)),a)),e),b). >>>> Starting back demodulation with: 1572 (1571) EQUAL(f(g(f(g(c),a)),f(x,g(x))),b). >>>> Starting back demodulation with: 1574 (1573) EQUAL(f(g(f(g(c),a)),f(g(x),x)),b). >>>> Starting back demodulation with: 1576 (1575) EQUAL(g(f(g(c),a)),b). >> back demodulating: 284 (167,260) EQUAL(f(g(f(g(c),a)),e),b). >> back demodulating: 285 (284) EQUAL(f(g(f(g(c),a)),e),b). >> back demodulating: 1571 (4,284) EQUAL(f(g(f(g(c),a)),f(x,g(x))),b). ** KEPT: 1577 (1571,1576) EQUAL(f(b,f(x,g(x))),b). ---> New Demodulator: 1578 (1577) EQUAL(f(b,f(x,g(x))),b). >> back demodulating: 1572 (1571) EQUAL(f(g(f(g(c),a)),f(x,g(x))),b). >> back demodulating: 1573 (3,284) EQUAL(f(g(f(g(c),a)),f(g(x),x)),b). ** KEPT: 1579 (1573,1576) EQUAL(f(b,f(g(x),x)),b). ---> New Demodulator: 1580 (1579) EQUAL(f(b,f(g(x),x)),b). >> back demodulating: 1574 (1573) EQUAL(f(g(f(g(c),a)),f(g(x),x)),b). >>>> Starting back demodulation with: 1578 (1577) EQUAL(f(b,f(x,g(x))),b). >> back demodulating: 399 (4,375) EQUAL(f(a,f(b,f(x,g(x)))),c). >> back demodulating: 400 (399) EQUAL(f(a,f(b,f(x,g(x)))),c). >> back demodulating: 608 (4,568) EQUAL(f(c,g(f(b,f(x,g(x))))),a). >> back demodulating: 609 (608) EQUAL(f(c,g(f(b,f(x,g(x))))),a). >> back demodulating: 755 (84,73) EQUAL(f(h,f(b,f(x,g(x)))),d). >> back demodulating: 756 (755) EQUAL(f(h,f(b,f(x,g(x)))),d). >>>> Starting back demodulation with: 1580 (1579) EQUAL(f(b,f(g(x),x)),b). >> back demodulating: 401 (3,375) EQUAL(f(a,f(b,f(g(x),x))),c). >> back demodulating: 402 (401) EQUAL(f(a,f(b,f(g(x),x))),c). >> back demodulating: 610 (3,568) EQUAL(f(c,g(f(b,f(g(x),x)))),a). >> back demodulating: 611 (610) EQUAL(f(c,g(f(b,f(g(x),x)))),a). >> back demodulating: 757 (82,73) EQUAL(f(h,f(b,f(g(x),x))),d). >> back demodulating: 758 (757) EQUAL(f(h,f(b,f(g(x),x))),d). ** KEPT: 1581 (284,5,1576) EQUAL(f(b,f(e,x)),f(b,x)). ** KEPT: 1582 (284,1507,1576) EQUAL(f(g(f(e,e)),f(b,e)),b). ---> New Demodulator: 1583 (1582) EQUAL(f(g(f(e,e)),f(b,e)),b). ** KEPT: 1584 (284,1475,1576) EQUAL(f(f(e,e),f(b,e)),b). ---> New Demodulator: 1585 (1584) EQUAL(f(f(e,e),f(b,e)),b). ** KEPT: 1586 (284,1473,1576) EQUAL(f(f(g(b),e),f(b,e)),e). ---> New Demodulator: 1587 (1586) EQUAL(f(f(g(b),e),f(b,e)),e). ** KEPT: 1588 (284,1470,1576) EQUAL(f(f(a,e),f(b,e)),c). ---> New Demodulator: 1589 (1588) EQUAL(f(f(a,e),f(b,e)),c). ** KEPT: 1590 (284,1074,1576) EQUAL(f(f(g(k),h),f(b,e)),h). ---> New Demodulator: 1591 (1590) EQUAL(f(f(g(k),h),f(b,e)),h). ** KEPT: 1592 (284,784,1576) EQUAL(f(f(h,e),f(b,e)),d). ---> New Demodulator: 1593 (1592) EQUAL(f(f(h,e),f(b,e)),d). ** KEPT: 1594 (284,762,1576) EQUAL(f(h,f(f(b,e),g(d))),e). ---> New Demodulator: 1595 (1594) EQUAL(f(h,f(f(b,e),g(d))),e). ** KEPT: 1596 (284,1227,1576) EQUAL(f(g(k),f(d,f(b,e))),d). ---> New Demodulator: 1597 (1596) EQUAL(f(g(k),f(d,f(b,e))),d). ** KEPT: 1598 (284,678,1576) EQUAL(f(f(e,h),f(b,e)),d). ---> New Demodulator: 1599 (1598) EQUAL(f(f(e,h),f(b,e)),d). ** KEPT: 1600 (284,676,1576) EQUAL(f(f(g(d),h),f(b,e)),e). ---> New Demodulator: 1601 (1600) EQUAL(f(f(g(d),h),f(b,e)),e). ** KEPT: 1602 (284,759,1576) EQUAL(f(h,f(f(b,e),g(b))),h). ---> New Demodulator: 1603 (1602) EQUAL(f(h,f(f(b,e),g(b))),h). ** KEPT: 1604 (284,764,1576) EQUAL(f(h,f(f(b,e),e)),d). ---> New Demodulator: 1605 (1604) EQUAL(f(h,f(f(b,e),e)),d). ** KEPT: 1606 (284,568,1576) EQUAL(f(c,g(f(f(b,e),e))),a). ---> New Demodulator: 1607 (1606) EQUAL(f(c,g(f(f(b,e),e))),a). ** KEPT: 1608 (284,375,1576) EQUAL(f(a,f(f(b,e),e)),c). ---> New Demodulator: 1609 (1608) EQUAL(f(a,f(f(b,e),e)),c). ** KEPT: 1610 (284,373,1576) EQUAL(f(a,f(f(b,e),g(c))),e). ---> New Demodulator: 1611 (1610) EQUAL(f(a,f(f(b,e),g(c))),e). ** KEPT: 1612 (284,282,1576) EQUAL(f(g(f(g(x),x)),f(b,e)),b). ---> New Demodulator: 1613 (1612) EQUAL(f(g(f(g(x),x)),f(b,e)),b). ** KEPT: 1614 (284,280,1576) EQUAL(f(g(f(x,g(x))),f(b,e)),b). ---> New Demodulator: 1615 (1614) EQUAL(f(g(f(x,g(x))),f(b,e)),b). ** KEPT: 1616 (284,266,1576) EQUAL(f(x,f(g(x),f(b,e))),b). ---> New Demodulator: 1617 (1616) EQUAL(f(x,f(g(x),f(b,e))),b). ** KEPT: 1618 (284,260,1576) EQUAL(f(g(x),f(x,f(b,e))),b). ---> New Demodulator: 1619 (1618) EQUAL(f(g(x),f(x,f(b,e))),b). ** KEPT: 1620 (284,239,1576) EQUAL(f(f(x,e),b),f(x,f(b,e))). ** KEPT: 1621 (284,239,1576) EQUAL(f(f(x,e),f(b,e)),f(x,b)). ** KEPT: 1622 (284,1527,1576) EQUAL(f(g(b),f(e,f(b,e))),e). ---> New Demodulator: 1623 (1622) EQUAL(f(g(b),f(e,f(b,e))),e). ** KEPT: 1624 (284,1511,1576) EQUAL(f(c,g(f(e,f(b,e)))),a). ---> New Demodulator: 1625 (1624) EQUAL(f(c,g(f(e,f(b,e)))),a). ** KEPT: 1626 (284,1505,1576) EQUAL(f(e,f(e,f(b,e))),b). ---> New Demodulator: 1627 (1626) EQUAL(f(e,f(e,f(b,e))),b). ** KEPT: 1628 (284,1493,1576) EQUAL(f(a,f(e,f(b,e))),c). ---> New Demodulator: 1629 (1628) EQUAL(f(a,f(e,f(b,e))),c). ** KEPT: 1630 (284,798,1576) EQUAL(f(h,f(e,f(b,e))),d). ---> New Demodulator: 1631 (1630) EQUAL(f(h,f(e,f(b,e))),d). ** KEPT: 1632 (284,235,1576) EQUAL(f(f(x,g(x)),f(b,e)),b). ---> New Demodulator: 1633 (1632) EQUAL(f(f(x,g(x)),f(b,e)),b). ** KEPT: 1634 (284,233,1576) EQUAL(f(f(g(x),x),f(b,e)),b). ---> New Demodulator: 1635 (1634) EQUAL(f(f(g(x),x),f(b,e)),b). ** KEPT: 1636 (284,223,1576) EQUAL(f(f(f(e,e),a),f(b,e)),c). ---> New Demodulator: 1637 (1636) EQUAL(f(f(f(e,e),a),f(b,e)),c). ** KEPT: 1638 (284,169,1576) EQUAL(f(f(e,a),f(b,e)),c). ---> New Demodulator: 1639 (1638) EQUAL(f(f(e,a),f(b,e)),c). ** KEPT: 1640 (284,167,1576) EQUAL(f(f(g(c),a),f(b,e)),e). ---> New Demodulator: 1641 (1640) EQUAL(f(f(g(c),a),f(b,e)),e). ** KEPT: 1642 (284,48,1576) EQUAL(f(h,f(f(b,e),g(h))),k). ---> New Demodulator: 1643 (1642) EQUAL(f(h,f(f(b,e),g(h))),k). ** KEPT: 1644 (284,38,1576) EQUAL(f(a,f(f(b,e),g(a))),d). ---> New Demodulator: 1645 (1644) EQUAL(f(a,f(f(b,e),g(a))),d). ** KEPT: 1646 (284,1527,1576) EQUAL(f(g(f(b,e)),f(e,b)),e). ---> New Demodulator: 1647 (1646) EQUAL(f(g(f(b,e)),f(e,b)),e). ** KEPT: 1648 (284,1473,1576) EQUAL(f(f(g(f(b,e)),e),b),e). ---> New Demodulator: 1649 (1648) EQUAL(f(f(g(f(b,e)),e),b),e). ** KEPT: 1650 (284,1297,1576) EQUAL(f(k,f(h,g(f(b,e)))),h). ---> New Demodulator: 1651 (1650) EQUAL(f(k,f(h,g(f(b,e)))),h). ** KEPT: 1652 (284,1097,1576) EQUAL(f(f(e,d),g(f(b,e))),h). ---> New Demodulator: 1653 (1652) EQUAL(f(f(e,d),g(f(b,e))),h). ** KEPT: 1654 (284,947,1576) EQUAL(f(f(d,e),g(f(b,e))),h). ---> New Demodulator: 1655 (1654) EQUAL(f(f(d,e),g(f(b,e))),h). ** KEPT: 1656 (284,748,1576) EQUAL(f(d,g(f(b,e))),f(h,e)). ** KEPT: 1657 (284,880,1576) EQUAL(f(d,f(e,g(f(b,e)))),h). ---> New Demodulator: 1658 (1657) EQUAL(f(d,f(e,g(f(b,e)))),h). ** KEPT: 1659 (284,620,1576) EQUAL(f(c,f(e,g(f(b,e)))),a). ---> New Demodulator: 1660 (1659) EQUAL(f(c,f(e,g(f(b,e)))),a). ** KEPT: 1661 (284,576,1576) EQUAL(f(f(e,c),g(f(b,e))),a). ---> New Demodulator: 1662 (1661) EQUAL(f(f(e,c),g(f(b,e))),a). ** KEPT: 1663 (284,759,1576) EQUAL(f(h,f(b,g(f(b,e)))),h). ---> New Demodulator: 1664 (1663) EQUAL(f(h,f(b,g(f(b,e)))),h). ** KEPT: 1665 (284,151,1576) EQUAL(f(f(k,d),g(f(b,e))),d). ---> New Demodulator: 1666 (1665) EQUAL(f(f(k,d),g(f(b,e))),d). ** KEPT: 1667 (284,1063,1576) EQUAL(f(e,f(d,g(f(b,e)))),h). ---> New Demodulator: 1668 (1667) EQUAL(f(e,f(d,g(f(b,e)))),h). ** KEPT: 1669 (284,129,1576) EQUAL(f(k,f(d,g(f(b,e)))),d). ---> New Demodulator: 1670 (1669) EQUAL(f(k,f(d,g(f(b,e)))),d). ** KEPT: 1671 (284,74,1576) EQUAL(f(d,g(f(d,g(f(b,e))))),k). ---> New Demodulator: 1672 (1671) EQUAL(f(d,g(f(d,g(f(b,e))))),k). ** KEPT: 1673 (284,23,1576) EQUAL(f(f(c,g(a)),g(f(b,e))),h). ---> New Demodulator: 1674 (1673) EQUAL(f(f(c,g(a)),g(f(b,e))),h). ** KEPT: 1675 (284,37,1576) -EQUAL(f(k,g(f(b,e))),f(g(x),x)). ** KEPT: 1676 (284,36,1576) -EQUAL(f(k,g(f(b,e))),f(x,g(x))). ** KEPT: 1677 (284,12,1576) -EQUAL(f(k,g(f(b,e))),e). ** KEPT: 1678 (284,9,1576) EQUAL(f(d,g(f(b,e))),h). ---> New Demodulator: 1679 (1678) EQUAL(f(d,g(f(b,e))),h). >>>> Starting back demodulation with: 1583 (1582) EQUAL(f(g(f(e,e)),f(b,e)),b). >>>> Starting back demodulation with: 1585 (1584) EQUAL(f(f(e,e),f(b,e)),b). >>>> Starting back demodulation with: 1587 (1586) EQUAL(f(f(g(b),e),f(b,e)),e). >>>> Starting back demodulation with: 1589 (1588) EQUAL(f(f(a,e),f(b,e)),c). >>>> Starting back demodulation with: 1591 (1590) EQUAL(f(f(g(k),h),f(b,e)),h). >>>> Starting back demodulation with: 1593 (1592) EQUAL(f(f(h,e),f(b,e)),d). >>>> Starting back demodulation with: 1595 (1594) EQUAL(f(h,f(f(b,e),g(d))),e). >>>> Starting back demodulation with: 1597 (1596) EQUAL(f(g(k),f(d,f(b,e))),d). >>>> Starting back demodulation with: 1599 (1598) EQUAL(f(f(e,h),f(b,e)),d). >>>> Starting back demodulation with: 1601 (1600) EQUAL(f(f(g(d),h),f(b,e)),e). >>>> Starting back demodulation with: 1603 (1602) EQUAL(f(h,f(f(b,e),g(b))),h). >>>> Starting back demodulation with: 1605 (1604) EQUAL(f(h,f(f(b,e),e)),d). >>>> Starting back demodulation with: 1607 (1606) EQUAL(f(c,g(f(f(b,e),e))),a). >>>> Starting back demodulation with: 1609 (1608) EQUAL(f(a,f(f(b,e),e)),c). >>>> Starting back demodulation with: 1611 (1610) EQUAL(f(a,f(f(b,e),g(c))),e). >>>> Starting back demodulation with: 1613 (1612) EQUAL(f(g(f(g(x),x)),f(b,e)),b). >>>> Starting back demodulation with: 1615 (1614) EQUAL(f(g(f(x,g(x))),f(b,e)),b). >>>> Starting back demodulation with: 1617 (1616) EQUAL(f(x,f(g(x),f(b,e))),b). >>>> Starting back demodulation with: 1619 (1618) EQUAL(f(g(x),f(x,f(b,e))),b). >>>> Starting back demodulation with: 1623 (1622) EQUAL(f(g(b),f(e,f(b,e))),e). >>>> Starting back demodulation with: 1625 (1624) EQUAL(f(c,g(f(e,f(b,e)))),a). >>>> Starting back demodulation with: 1627 (1626) EQUAL(f(e,f(e,f(b,e))),b). >>>> Starting back demodulation with: 1629 (1628) EQUAL(f(a,f(e,f(b,e))),c). >>>> Starting back demodulation with: 1631 (1630) EQUAL(f(h,f(e,f(b,e))),d). >>>> Starting back demodulation with: 1633 (1632) EQUAL(f(f(x,g(x)),f(b,e)),b). >>>> Starting back demodulation with: 1635 (1634) EQUAL(f(f(g(x),x),f(b,e)),b). >>>> Starting back demodulation with: 1637 (1636) EQUAL(f(f(f(e,e),a),f(b,e)),c). >>>> Starting back demodulation with: 1639 (1638) EQUAL(f(f(e,a),f(b,e)),c). >>>> Starting back demodulation with: 1641 (1640) EQUAL(f(f(g(c),a),f(b,e)),e). >>>> Starting back demodulation with: 1643 (1642) EQUAL(f(h,f(f(b,e),g(h))),k). >>>> Starting back demodulation with: 1645 (1644) EQUAL(f(a,f(f(b,e),g(a))),d). >>>> Starting back demodulation with: 1647 (1646) EQUAL(f(g(f(b,e)),f(e,b)),e). >>>> Starting back demodulation with: 1649 (1648) EQUAL(f(f(g(f(b,e)),e),b),e). >>>> Starting back demodulation with: 1651 (1650) EQUAL(f(k,f(h,g(f(b,e)))),h). >>>> Starting back demodulation with: 1653 (1652) EQUAL(f(f(e,d),g(f(b,e))),h). >>>> Starting back demodulation with: 1655 (1654) EQUAL(f(f(d,e),g(f(b,e))),h). >>>> Starting back demodulation with: 1658 (1657) EQUAL(f(d,f(e,g(f(b,e)))),h). >>>> Starting back demodulation with: 1660 (1659) EQUAL(f(c,f(e,g(f(b,e)))),a). >>>> Starting back demodulation with: 1662 (1661) EQUAL(f(f(e,c),g(f(b,e))),a). >>>> Starting back demodulation with: 1664 (1663) EQUAL(f(h,f(b,g(f(b,e)))),h). >>>> Starting back demodulation with: 1666 (1665) EQUAL(f(f(k,d),g(f(b,e))),d). >>>> Starting back demodulation with: 1668 (1667) EQUAL(f(e,f(d,g(f(b,e)))),h). >>>> Starting back demodulation with: 1670 (1669) EQUAL(f(k,f(d,g(f(b,e)))),d). >>>> Starting back demodulation with: 1672 (1671) EQUAL(f(d,g(f(d,g(f(b,e))))),k). >>>> Starting back demodulation with: 1674 (1673) EQUAL(f(f(c,g(a)),g(f(b,e))),h). >>>> Starting back demodulation with: 1679 (1678) EQUAL(f(d,g(f(b,e))),h). >> back demodulating: 1667 (284,1063,1576) EQUAL(f(e,f(d,g(f(b,e)))),h). >> back demodulating: 1668 (1667) EQUAL(f(e,f(d,g(f(b,e)))),h). >> back demodulating: 1669 (284,129,1576) EQUAL(f(k,f(d,g(f(b,e)))),d). >> back demodulating: 1670 (1669) EQUAL(f(k,f(d,g(f(b,e)))),d). >> back demodulating: 1671 (284,74,1576) EQUAL(f(d,g(f(d,g(f(b,e))))),k). >> back demodulating: 1672 (1671) EQUAL(f(d,g(f(d,g(f(b,e))))),k). >> back demodulating: 1656 (284,748,1576) EQUAL(f(d,g(f(b,e))),f(h,e)). new given clause: 1575 (2,284) EQUAL(g(f(g(c),a)),b). ** KEPT: 1680 (7,1575) EQUAL(g(f(g(f(a,b)),a)),b). ---> New Demodulator: 1681 (1680) EQUAL(g(f(g(f(a,b)),a)),b). >>>> Starting back demodulation with: 1681 (1680) EQUAL(g(f(g(f(a,b)),a)),b). >> back demodulating: 1569 (7,284) EQUAL(f(g(f(g(f(a,b)),a)),e),b). >> back demodulating: 1570 (1569) EQUAL(f(g(f(g(f(a,b)),a)),e),b). ** KEPT: 1682 (1575,1197) EQUAL(f(f(g(c),a),f(b,d)),d). ---> New Demodulator: 1683 (1682) EQUAL(f(f(g(c),a),f(b,d)),d). ** KEPT: 1684 (1575,1175) EQUAL(f(b,f(f(g(c),a),d)),d). ---> New Demodulator: 1685 (1684) EQUAL(f(b,f(f(g(c),a),d)),d). ** KEPT: 1686 (1575,1133) EQUAL(f(f(g(c),a),f(b,h)),h). ---> New Demodulator: 1687 (1686) EQUAL(f(f(g(c),a),f(b,h)),h). ** KEPT: 1688 (1575,1125) EQUAL(f(b,f(f(g(c),a),h)),h). ---> New Demodulator: 1689 (1688) EQUAL(f(b,f(f(g(c),a),h)),h). ** KEPT: 1690 (1575,526) EQUAL(f(f(a,f(g(c),a)),b),a). ---> New Demodulator: 1691 (1690) EQUAL(f(f(a,f(g(c),a)),b),a). ** KEPT: 1692 (1575,520) EQUAL(f(f(a,b),f(g(c),a)),a). ---> New Demodulator: 1693 (1692) EQUAL(f(f(a,b),f(g(c),a)),a). ** KEPT: 1694 (1575,266) EQUAL(f(f(g(c),a),f(b,b)),b). ---> New Demodulator: 1695 (1694) EQUAL(f(f(g(c),a),f(b,b)),b). ** KEPT: 1696 (1575,113) EQUAL(f(f(d,f(g(c),a)),b),d). ---> New Demodulator: 1697 (1696) EQUAL(f(f(d,f(g(c),a)),b),d). ** KEPT: 1698 (1575,105) EQUAL(f(f(d,b),f(g(c),a)),d). ---> New Demodulator: 1699 (1698) EQUAL(f(f(d,b),f(g(c),a)),d). ** KEPT: 1700 (1575,1127) EQUAL(f(f(b,f(g(c),a)),d),d). ---> New Demodulator: 1701 (1700) EQUAL(f(f(b,f(g(c),a)),d),d). ** KEPT: 1702 (1575,1065) EQUAL(f(f(b,f(g(c),a)),h),h). ---> New Demodulator: 1703 (1702) EQUAL(f(f(b,f(g(c),a)),h),h). ** KEPT: 1704 (1575,477) EQUAL(f(a,f(b,f(g(c),a))),a). ---> New Demodulator: 1705 (1704) EQUAL(f(a,f(b,f(g(c),a))),a). ** KEPT: 1706 (1575,233) EQUAL(f(f(b,f(g(c),a)),b),b). ---> New Demodulator: 1707 (1706) EQUAL(f(f(b,f(g(c),a)),b),b). ** KEPT: 1708 (1575,282) EQUAL(f(g(f(b,f(g(c),a))),b),b). ---> New Demodulator: 1709 (1708) EQUAL(f(g(f(b,f(g(c),a))),b),b). ** KEPT: 1710 (1575,137) EQUAL(f(d,g(f(b,f(g(c),a)))),d). ---> New Demodulator: 1711 (1710) EQUAL(f(d,g(f(b,f(g(c),a)))),d). ** KEPT: 1712 (1575,82) EQUAL(f(d,f(b,f(g(c),a))),d). ---> New Demodulator: 1713 (1712) EQUAL(f(d,f(b,f(g(c),a))),d). ** KEPT: 1714 (1575,37) -EQUAL(f(b,f(g(c),a)),f(k,g(b))). ** KEPT: 1715 (1575,3) EQUAL(f(b,f(g(c),a)),e). ---> New Demodulator: 1716 (1715) EQUAL(f(b,f(g(c),a)),e). >>>> Starting back demodulation with: 1683 (1682) EQUAL(f(f(g(c),a),f(b,d)),d). >>>> Starting back demodulation with: 1685 (1684) EQUAL(f(b,f(f(g(c),a),d)),d). >>>> Starting back demodulation with: 1687 (1686) EQUAL(f(f(g(c),a),f(b,h)),h). >>>> Starting back demodulation with: 1689 (1688) EQUAL(f(b,f(f(g(c),a),h)),h). >>>> Starting back demodulation with: 1691 (1690) EQUAL(f(f(a,f(g(c),a)),b),a). >>>> Starting back demodulation with: 1693 (1692) EQUAL(f(f(a,b),f(g(c),a)),a). >>>> Starting back demodulation with: 1695 (1694) EQUAL(f(f(g(c),a),f(b,b)),b). >>>> Starting back demodulation with: 1697 (1696) EQUAL(f(f(d,f(g(c),a)),b),d). >>>> Starting back demodulation with: 1699 (1698) EQUAL(f(f(d,b),f(g(c),a)),d). >>>> Starting back demodulation with: 1701 (1700) EQUAL(f(f(b,f(g(c),a)),d),d). >>>> Starting back demodulation with: 1703 (1702) EQUAL(f(f(b,f(g(c),a)),h),h). >>>> Starting back demodulation with: 1705 (1704) EQUAL(f(a,f(b,f(g(c),a))),a). >>>> Starting back demodulation with: 1707 (1706) EQUAL(f(f(b,f(g(c),a)),b),b). >>>> Starting back demodulation with: 1709 (1708) EQUAL(f(g(f(b,f(g(c),a))),b),b). >>>> Starting back demodulation with: 1711 (1710) EQUAL(f(d,g(f(b,f(g(c),a)))),d). >>>> Starting back demodulation with: 1713 (1712) EQUAL(f(d,f(b,f(g(c),a))),d). >>>> Starting back demodulation with: 1716 (1715) EQUAL(f(b,f(g(c),a)),e). >> back demodulating: 1700 (1575,1127) EQUAL(f(f(b,f(g(c),a)),d),d). >> back demodulating: 1701 (1700) EQUAL(f(f(b,f(g(c),a)),d),d). >> back demodulating: 1702 (1575,1065) EQUAL(f(f(b,f(g(c),a)),h),h). >> back demodulating: 1703 (1702) EQUAL(f(f(b,f(g(c),a)),h),h). >> back demodulating: 1704 (1575,477) EQUAL(f(a,f(b,f(g(c),a))),a). >> back demodulating: 1705 (1704) EQUAL(f(a,f(b,f(g(c),a))),a). >> back demodulating: 1706 (1575,233) EQUAL(f(f(b,f(g(c),a)),b),b). >> back demodulating: 1707 (1706) EQUAL(f(f(b,f(g(c),a)),b),b). >> back demodulating: 1708 (1575,282) EQUAL(f(g(f(b,f(g(c),a))),b),b). >> back demodulating: 1709 (1708) EQUAL(f(g(f(b,f(g(c),a))),b),b). >> back demodulating: 1710 (1575,137) EQUAL(f(d,g(f(b,f(g(c),a)))),d). >> back demodulating: 1711 (1710) EQUAL(f(d,g(f(b,f(g(c),a)))),d). >> back demodulating: 1712 (1575,82) EQUAL(f(d,f(b,f(g(c),a))),d). >> back demodulating: 1713 (1712) EQUAL(f(d,f(b,f(g(c),a))),d). >> back demodulating: 1714 (1575,37) -EQUAL(f(b,f(g(c),a)),f(k,g(b))). new given clause: 1577 (1571,1576) EQUAL(f(b,f(x,g(x))),b). ** KEPT: 1717 (5,1577) EQUAL(f(b,f(x,f(y,g(f(x,y))))),b). ---> New Demodulator: 1718 (1717) EQUAL(f(b,f(x,f(y,g(f(x,y))))),b). ** KEPT: 1719 (5,1577) EQUAL(f(f(b,x),g(x)),b). ---> New Demodulator: 1720 (1719) EQUAL(f(f(b,x),g(x)),b). >>>> Starting back demodulation with: 1718 (1717) EQUAL(f(b,f(x,f(y,g(f(x,y))))),b). >>>> Starting back demodulation with: 1720 (1719) EQUAL(f(f(b,x),g(x)),b). ** KEPT: 1721 (1577,5) EQUAL(f(f(x,b),f(y,g(y))),f(x,b)). ** KEPT: 1722 (1577,5) EQUAL(f(b,f(f(y,g(y)),x)),f(b,x)). new given clause: 1579 (1573,1576) EQUAL(f(b,f(g(x),x)),b). ** KEPT: 1723 (5,1579) EQUAL(f(b,f(f(g(f(x,y)),x),y)),b). ---> New Demodulator: 1724 (1723) EQUAL(f(b,f(f(g(f(x,y)),x),y)),b). ** KEPT: 1725 (5,1579) EQUAL(f(f(b,g(x)),x),b). ---> New Demodulator: 1726 (1725) EQUAL(f(f(b,g(x)),x),b). >>>> Starting back demodulation with: 1724 (1723) EQUAL(f(b,f(f(g(f(x,y)),x),y)),b). >>>> Starting back demodulation with: 1726 (1725) EQUAL(f(f(b,g(x)),x),b). ** KEPT: 1727 (1579,5) EQUAL(f(f(x,b),f(g(y),y)),f(x,b)). ** KEPT: 1728 (1579,5) EQUAL(f(b,f(f(g(y),y),x)),f(b,x)). new given clause: 1677 (284,12,1576) -EQUAL(f(k,g(f(b,e))),e). new given clause: 1678 (284,9,1576) EQUAL(f(d,g(f(b,e))),h). ** KEPT: 1729 (1678,5) EQUAL(f(f(x,d),g(f(b,e))),f(x,h)). ** KEPT: 1730 (1678,5) EQUAL(f(d,f(g(f(b,e)),x)),f(h,x)). new given clause: 1715 (1575,3) EQUAL(f(b,f(g(c),a)),e). ** KEPT: 1731 (7,1715) EQUAL(f(b,f(g(f(a,b)),a)),e). ---> New Demodulator: 1732 (1731) EQUAL(f(b,f(g(f(a,b)),a)),e). ** KEPT: 1733 (5,1715) EQUAL(f(f(b,g(c)),a),e). ---> New Demodulator: 1734 (1733) EQUAL(f(f(b,g(c)),a),e). >>>> Starting back demodulation with: 1732 (1731) EQUAL(f(b,f(g(f(a,b)),a)),e). >>>> Starting back demodulation with: 1734 (1733) EQUAL(f(f(b,g(c)),a),e). ** KEPT: 1735 (1715,73) EQUAL(f(d,f(g(c),a)),f(h,e)). ** KEPT: 1736 (1715,16) EQUAL(f(c,f(g(c),a)),f(a,e)). ** KEPT: 1737 (1715,5) EQUAL(f(f(x,b),f(g(c),a)),f(x,e)). ** KEPT: 1738 (1715,5) EQUAL(f(b,f(f(g(c),a),x)),f(e,x)). new given clause: 1719 (5,1577) EQUAL(f(f(b,x),g(x)),b). ** KEPT: 1739 (1579,1719) EQUAL(f(b,g(f(g(x),x))),b). ---> New Demodulator: 1740 (1739) EQUAL(f(b,g(f(g(x),x))),b). ** KEPT: 1741 (1577,1719) EQUAL(f(b,g(f(x,g(x)))),b). ---> New Demodulator: 1742 (1741) EQUAL(f(b,g(f(x,g(x)))),b). ** KEPT: 1743 (239,1719) EQUAL(f(f(f(b,e),b),g(b)),b). ---> New Demodulator: 1744 (1743) EQUAL(f(f(f(b,e),b),g(b)),b). ** KEPT: 1745 (163,1719) EQUAL(f(f(b,f(a,b)),g(c)),b). ---> New Demodulator: 1746 (1745) EQUAL(f(f(b,f(a,b)),g(c)),b). ** KEPT: 1747 (163,1719) EQUAL(f(f(b,c),g(f(a,b))),b). ---> New Demodulator: 1748 (1747) EQUAL(f(f(b,c),g(f(a,b))),b). ** KEPT: 1749 (1197,1719) EQUAL(f(d,g(f(g(b),d))),b). ---> New Demodulator: 1750 (1749) EQUAL(f(d,g(f(g(b),d))),b). ** KEPT: 1751 (1133,1719) EQUAL(f(h,g(f(g(b),h))),b). ---> New Demodulator: 1752 (1751) EQUAL(f(h,g(f(g(b),h))),b). ** KEPT: 1753 (131,1719) EQUAL(f(f(f(b,k),h),g(d)),b). ---> New Demodulator: 1754 (1753) EQUAL(f(f(f(b,k),h),g(d)),b). ** KEPT: 1755 (72,1719) EQUAL(f(f(f(b,h),b),g(d)),b). ---> New Demodulator: 1756 (1755) EQUAL(f(f(f(b,h),b),g(d)),b). ** KEPT: 1757 (15,1719) EQUAL(f(f(f(b,a),b),g(c)),b). ---> New Demodulator: 1758 (1757) EQUAL(f(f(f(b,a),b),g(c)),b). ** KEPT: 1759 (5,1719) EQUAL(f(f(f(b,x),y),g(f(x,y))),b). ---> New Demodulator: 1760 (1759) EQUAL(f(f(f(b,x),y),g(f(x,y))),b). >>>> Starting back demodulation with: 1740 (1739) EQUAL(f(b,g(f(g(x),x))),b). >> back demodulating: 1351 (73,137) EQUAL(f(h,f(b,g(f(g(x),x)))),d). >> back demodulating: 1352 (1351) EQUAL(f(h,f(b,g(f(g(x),x)))),d). >>>> Starting back demodulation with: 1742 (1741) EQUAL(f(b,g(f(x,g(x)))),b). >> back demodulating: 1339 (73,135) EQUAL(f(h,f(b,g(f(x,g(x))))),d). >> back demodulating: 1340 (1339) EQUAL(f(h,f(b,g(f(x,g(x))))),d). >>>> Starting back demodulation with: 1744 (1743) EQUAL(f(f(f(b,e),b),g(b)),b). >>>> Starting back demodulation with: 1746 (1745) EQUAL(f(f(b,f(a,b)),g(c)),b). >>>> Starting back demodulation with: 1748 (1747) EQUAL(f(f(b,c),g(f(a,b))),b). >>>> Starting back demodulation with: 1750 (1749) EQUAL(f(d,g(f(g(b),d))),b). >>>> Starting back demodulation with: 1752 (1751) EQUAL(f(h,g(f(g(b),h))),b). >>>> Starting back demodulation with: 1754 (1753) EQUAL(f(f(f(b,k),h),g(d)),b). >>>> Starting back demodulation with: 1756 (1755) EQUAL(f(f(f(b,h),b),g(d)),b). >>>> Starting back demodulation with: 1758 (1757) EQUAL(f(f(f(b,a),b),g(c)),b). >>>> Starting back demodulation with: 1760 (1759) EQUAL(f(f(f(b,x),y),g(f(x,y))),b). ** KEPT: 1761 (1719,5) EQUAL(f(f(x,f(b,y)),g(y)),f(x,b)). ** KEPT: 1762 (1719,5) EQUAL(f(f(b,y),f(g(y),x)),f(b,x)). new given clause: 1725 (5,1579) EQUAL(f(f(b,g(x)),x),b). ** KEPT: 1763 (1575,1725) EQUAL(f(f(b,b),f(g(c),a)),b). ---> New Demodulator: 1764 (1763) EQUAL(f(f(b,b),f(g(c),a)),b). ** KEPT: 1765 (163,1725) EQUAL(f(f(b,g(c)),f(a,b)),b). ---> New Demodulator: 1766 (1765) EQUAL(f(f(b,g(c)),f(a,b)),b). ** KEPT: 1767 (163,1725) EQUAL(f(f(b,g(f(a,b))),c),b). ---> New Demodulator: 1768 (1767) EQUAL(f(f(b,g(f(a,b))),c),b). ** KEPT: 1769 (131,1725) EQUAL(f(f(f(b,g(d)),k),h),b). ---> New Demodulator: 1770 (1769) EQUAL(f(f(f(b,g(d)),k),h),b). ** KEPT: 1771 (72,1725) EQUAL(f(f(f(b,g(d)),h),b),b). ---> New Demodulator: 1772 (1771) EQUAL(f(f(f(b,g(d)),h),b),b). ** KEPT: 1773 (5,1725) EQUAL(f(f(f(b,g(f(x,y))),x),y),b). ---> New Demodulator: 1774 (1773) EQUAL(f(f(f(b,g(f(x,y))),x),y),b). >>>> Starting back demodulation with: 1764 (1763) EQUAL(f(f(b,b),f(g(c),a)),b). >>>> Starting back demodulation with: 1766 (1765) EQUAL(f(f(b,g(c)),f(a,b)),b). >>>> Starting back demodulation with: 1768 (1767) EQUAL(f(f(b,g(f(a,b))),c),b). >>>> Starting back demodulation with: 1770 (1769) EQUAL(f(f(f(b,g(d)),k),h),b). >>>> Starting back demodulation with: 1772 (1771) EQUAL(f(f(f(b,g(d)),h),b),b). >>>> Starting back demodulation with: 1774 (1773) EQUAL(f(f(f(b,g(f(x,y))),x),y),b). ** KEPT: 1775 (1725,1175) EQUAL(f(g(f(b,g(d))),b),d). ---> New Demodulator: 1776 (1775) EQUAL(f(g(f(b,g(d))),b),d). ** KEPT: 1777 (1725,1125) EQUAL(f(g(f(b,g(h))),b),h). ---> New Demodulator: 1778 (1777) EQUAL(f(g(f(b,g(h))),b),h). ** KEPT: 1779 (1725,5) EQUAL(f(f(x,f(b,g(y))),y),f(x,b)). ** KEPT: 1780 (1725,5) EQUAL(f(f(b,g(y)),f(y,x)),f(b,x)). >>>> Starting back demodulation with: 1776 (1775) EQUAL(f(g(f(b,g(d))),b),d). >>>> Starting back demodulation with: 1778 (1777) EQUAL(f(g(f(b,g(h))),b),h). new given clause: 1733 (5,1715) EQUAL(f(f(b,g(c)),a),e). ** KEPT: 1781 (7,1733) EQUAL(f(f(b,g(f(a,b))),a),e). ---> New Demodulator: 1782 (1781) EQUAL(f(f(b,g(f(a,b))),a),e). >>>> Starting back demodulation with: 1782 (1781) EQUAL(f(f(b,g(f(a,b))),a),e). ** KEPT: 1783 (1733,5) EQUAL(f(f(x,f(b,g(c))),a),f(x,e)). ** KEPT: 1784 (1733,5) EQUAL(f(f(b,g(c)),f(a,x)),f(e,x)). new given clause: 292 (105,260) EQUAL(f(g(f(d,g(b))),d),b). ** KEPT: 1785 (8,292) EQUAL(f(g(f(d,g(b))),f(c,g(a))),b). ---> New Demodulator: 1786 (1785) EQUAL(f(g(f(d,g(b))),f(c,g(a))),b). ** KEPT: 1787 (72,292) EQUAL(f(f(g(f(d,g(b))),h),b),b). ---> New Demodulator: 1788 (1787) EQUAL(f(f(g(f(d,g(b))),h),b),b). >>>> Starting back demodulation with: 1786 (1785) EQUAL(f(g(f(d,g(b))),f(c,g(a))),b). >>>> Starting back demodulation with: 1788 (1787) EQUAL(f(f(g(f(d,g(b))),h),b),b). ** KEPT: 1789 (292,5) EQUAL(f(f(x,g(f(d,g(b)))),d),f(x,b)). ** KEPT: 1790 (292,5) EQUAL(f(g(f(d,g(b))),f(d,x)),f(b,x)). new given clause: 300 (8,294) EQUAL(f(g(h),f(c,g(a))),b). ** KEPT: 1791 (5,300) EQUAL(f(f(g(h),c),g(a)),b). ---> New Demodulator: 1792 (1791) EQUAL(f(f(g(h),c),g(a)),b). >>>> Starting back demodulation with: 1792 (1791) EQUAL(f(f(g(h),c),g(a)),b). ** KEPT: 1793 (300,5) EQUAL(f(f(x,g(h)),f(c,g(a))),f(x,b)). ** KEPT: 1794 (300,5) EQUAL(f(g(h),f(f(c,g(a)),x)),f(b,x)). new given clause: 306 (266,113) EQUAL(f(b,g(f(g(d),b))),d). ** KEPT: 1795 (8,306) EQUAL(f(b,g(f(g(f(c,g(a))),b))),d). ---> New Demodulator: 1796 (1795) EQUAL(f(b,g(f(g(f(c,g(a))),b))),d). ** KEPT: 1797 (239,306) EQUAL(f(b,g(f(f(g(d),e),b))),d). ---> New Demodulator: 1798 (1797) EQUAL(f(b,g(f(f(g(d),e),b))),d). >>>> Starting back demodulation with: 1796 (1795) EQUAL(f(b,g(f(g(f(c,g(a))),b))),d). >>>> Starting back demodulation with: 1798 (1797) EQUAL(f(b,g(f(f(g(d),e),b))),d). ** KEPT: 1799 (306,73) EQUAL(f(d,g(f(g(d),b))),f(h,d)). ** KEPT: 1800 (306,16) EQUAL(f(c,g(f(g(d),b))),f(a,d)). ** KEPT: 1801 (306,5) EQUAL(f(f(x,b),g(f(g(d),b))),f(x,d)). ** KEPT: 1802 (306,5) EQUAL(f(b,f(g(f(g(d),b)),x)),f(d,x)). new given clause: 365 (5,16) EQUAL(f(f(a,b),x),f(c,x)). ** KEPT: 1803 (364,365) EQUAL(f(f(c,e),x),f(c,x)). ** KEPT: 1804 (162,365) EQUAL(f(f(e,c),x),f(c,x)). ** KEPT: 1805 (163,365) EQUAL(f(f(a,b),f(a,b)),f(c,c)). ** KEPT: 1806 (163,365) EQUAL(f(c,f(a,b)),f(f(a,b),c)). ** KEPT: 1807 (1197,365) EQUAL(f(c,f(g(f(a,b)),d)),d). ---> New Demodulator: 1808 (1807) EQUAL(f(c,f(g(f(a,b)),d)),d). ** KEPT: 1809 (1133,365) EQUAL(f(c,f(g(f(a,b)),h)),h). ---> New Demodulator: 1810 (1809) EQUAL(f(c,f(g(f(a,b)),h)),h). ** KEPT: 1811 (131,365) EQUAL(f(f(f(a,b),k),h),f(c,d)). ** KEPT: 1812 (72,365) EQUAL(f(f(f(a,b),h),b),f(c,d)). ** KEPT: 1813 (266,365) EQUAL(f(c,f(g(f(a,b)),b)),b). ---> New Demodulator: 1814 (1813) EQUAL(f(c,f(g(f(a,b)),b)),b). ** KEPT: 1815 (15,365) EQUAL(f(f(f(a,b),a),b),f(c,c)). ** KEPT: 1816 (5,365) EQUAL(f(f(f(a,b),x),y),f(c,f(x,y))). ** KEPT: 1817 (4,365) EQUAL(f(c,g(f(a,b))),e). ---> New Demodulator: 1818 (1817) EQUAL(f(c,g(f(a,b))),e). ** KEPT: 1819 (239,365) EQUAL(f(f(c,e),b),f(f(a,b),b)). ** KEPT: 1820 (1197,365) EQUAL(f(f(a,b),f(g(c),d)),d). ---> New Demodulator: 1821 (1820) EQUAL(f(f(a,b),f(g(c),d)),d). ** KEPT: 1822 (1133,365) EQUAL(f(f(a,b),f(g(c),h)),h). ---> New Demodulator: 1823 (1822) EQUAL(f(f(a,b),f(g(c),h)),h). ** KEPT: 1824 (131,365) EQUAL(f(f(c,k),h),f(f(a,b),d)). ** KEPT: 1825 (72,365) EQUAL(f(f(c,h),b),f(f(a,b),d)). ** KEPT: 1826 (266,365) EQUAL(f(f(a,b),f(g(c),b)),b). ---> New Demodulator: 1827 (1826) EQUAL(f(f(a,b),f(g(c),b)),b). ** KEPT: 1828 (15,365) EQUAL(f(f(c,a),b),f(f(a,b),c)). ** KEPT: 1829 (5,365) EQUAL(f(f(a,b),f(x,y)),f(f(c,x),y)). 1804 back subsumes: 1440 (423,239) EQUAL(f(f(e,c),b),f(c,b)). >>>> Starting back demodulation with: 1808 (1807) EQUAL(f(c,f(g(f(a,b)),d)),d). >>>> Starting back demodulation with: 1810 (1809) EQUAL(f(c,f(g(f(a,b)),h)),h). >>>> Starting back demodulation with: 1814 (1813) EQUAL(f(c,f(g(f(a,b)),b)),b). >>>> Starting back demodulation with: 1818 (1817) EQUAL(f(c,g(f(a,b))),e). >> back demodulating: 646 (7,602) EQUAL(f(e,f(c,g(f(a,b)))),e). >> back demodulating: 647 (646) EQUAL(f(e,f(c,g(f(a,b)))),e). >>>> Starting back demodulation with: 1821 (1820) EQUAL(f(f(a,b),f(g(c),d)),d). >>>> Starting back demodulation with: 1823 (1822) EQUAL(f(f(a,b),f(g(c),h)),h). >>>> Starting back demodulation with: 1827 (1826) EQUAL(f(f(a,b),f(g(c),b)),b). ** KEPT: 1830 (365,1175) EQUAL(f(g(f(a,b)),f(c,d)),d). ---> New Demodulator: 1831 (1830) EQUAL(f(g(f(a,b)),f(c,d)),d). ** KEPT: 1832 (365,1125) EQUAL(f(g(f(a,b)),f(c,h)),h). ---> New Demodulator: 1833 (1832) EQUAL(f(g(f(a,b)),f(c,h)),h). ** KEPT: 1834 (365,260) EQUAL(f(g(f(a,b)),f(c,b)),b). ---> New Demodulator: 1835 (1834) EQUAL(f(g(f(a,b)),f(c,b)),b). ** KEPT: 1836 (365,1175) EQUAL(f(g(c),f(f(a,b),d)),d). ---> New Demodulator: 1837 (1836) EQUAL(f(g(c),f(f(a,b),d)),d). ** KEPT: 1838 (365,1125) EQUAL(f(g(c),f(f(a,b),h)),h). ---> New Demodulator: 1839 (1838) EQUAL(f(g(c),f(f(a,b),h)),h). ** KEPT: 1840 (365,260) EQUAL(f(g(c),f(f(a,b),b)),b). ---> New Demodulator: 1841 (1840) EQUAL(f(g(c),f(f(a,b),b)),b). >>>> Starting back demodulation with: 1831 (1830) EQUAL(f(g(f(a,b)),f(c,d)),d). >>>> Starting back demodulation with: 1833 (1832) EQUAL(f(g(f(a,b)),f(c,h)),h). >>>> Starting back demodulation with: 1835 (1834) EQUAL(f(g(f(a,b)),f(c,b)),b). >>>> Starting back demodulation with: 1837 (1836) EQUAL(f(g(c),f(f(a,b),d)),d). >>>> Starting back demodulation with: 1839 (1838) EQUAL(f(g(c),f(f(a,b),h)),h). >>>> Starting back demodulation with: 1841 (1840) EQUAL(f(g(c),f(f(a,b),b)),b). new given clause: 1817 (4,365) EQUAL(f(c,g(f(a,b))),e). ** KEPT: 1842 (364,1817) EQUAL(f(c,g(f(c,e))),e). ---> New Demodulator: 1843 (1842) EQUAL(f(c,g(f(c,e))),e). ** KEPT: 1844 (162,1817) EQUAL(f(c,g(f(e,c))),e). ---> New Demodulator: 1845 (1844) EQUAL(f(c,g(f(e,c))),e). >>>> Starting back demodulation with: 1843 (1842) EQUAL(f(c,g(f(c,e))),e). >>>> Starting back demodulation with: 1845 (1844) EQUAL(f(c,g(f(e,c))),e). ** KEPT: 1846 (1817,5) EQUAL(f(f(x,c),g(f(a,b))),f(x,e)). ** KEPT: 1847 (1817,5) EQUAL(f(c,f(g(f(a,b)),x)),f(e,x)). new given clause: 1842 (364,1817) EQUAL(f(c,g(f(c,e))),e). ** KEPT: 1848 (7,1842) EQUAL(f(f(a,b),g(f(c,e))),e). ---> New Demodulator: 1849 (1848) EQUAL(f(f(a,b),g(f(c,e))),e). ** KEPT: 1850 (4,1842) EQUAL(f(c,g(f(c,f(x,g(x))))),e). ---> New Demodulator: 1851 (1850) EQUAL(f(c,g(f(c,f(x,g(x))))),e). ** KEPT: 1852 (3,1842) EQUAL(f(c,g(f(c,f(g(x),x)))),e). ---> New Demodulator: 1853 (1852) EQUAL(f(c,g(f(c,f(g(x),x)))),e). ** KEPT: 1854 (16,1842) EQUAL(f(a,f(b,g(f(c,e)))),e). ---> New Demodulator: 1855 (1854) EQUAL(f(a,f(b,g(f(c,e)))),e). >>>> Starting back demodulation with: 1849 (1848) EQUAL(f(f(a,b),g(f(c,e))),e). >>>> Starting back demodulation with: 1851 (1850) EQUAL(f(c,g(f(c,f(x,g(x))))),e). >>>> Starting back demodulation with: 1853 (1852) EQUAL(f(c,g(f(c,f(g(x),x)))),e). >>>> Starting back demodulation with: 1855 (1854) EQUAL(f(a,f(b,g(f(c,e)))),e). ** KEPT: 1856 (1842,5) EQUAL(f(f(x,c),g(f(c,e))),f(x,e)). ** KEPT: 1857 (1842,5) EQUAL(f(c,f(g(f(c,e)),x)),f(e,x)). new given clause: 1844 (162,1817) EQUAL(f(c,g(f(e,c))),e). ** KEPT: 1858 (7,1844) EQUAL(f(f(a,b),g(f(e,c))),e). ---> New Demodulator: 1859 (1858) EQUAL(f(f(a,b),g(f(e,c))),e). ** KEPT: 1860 (4,1844) EQUAL(f(c,g(f(f(x,g(x)),c))),e). ---> New Demodulator: 1861 (1860) EQUAL(f(c,g(f(f(x,g(x)),c))),e). ** KEPT: 1862 (3,1844) EQUAL(f(c,g(f(f(g(x),x),c))),e). ---> New Demodulator: 1863 (1862) EQUAL(f(c,g(f(f(g(x),x),c))),e). ** KEPT: 1864 (16,1844) EQUAL(f(a,f(b,g(f(e,c)))),e). ---> New Demodulator: 1865 (1864) EQUAL(f(a,f(b,g(f(e,c)))),e). >>>> Starting back demodulation with: 1859 (1858) EQUAL(f(f(a,b),g(f(e,c))),e). >>>> Starting back demodulation with: 1861 (1860) EQUAL(f(c,g(f(f(x,g(x)),c))),e). >>>> Starting back demodulation with: 1863 (1862) EQUAL(f(c,g(f(f(g(x),x),c))),e). >>>> Starting back demodulation with: 1865 (1864) EQUAL(f(a,f(b,g(f(e,c)))),e). ** KEPT: 1866 (1844,5) EQUAL(f(f(x,c),g(f(e,c))),f(x,e)). ** KEPT: 1867 (1844,5) EQUAL(f(c,f(g(f(e,c)),x)),f(e,x)). new given clause: 457 (7,453) EQUAL(f(f(a,b),f(e,e)),c). ** KEPT: 1868 (364,457) EQUAL(f(f(c,e),f(e,e)),c). ---> New Demodulator: 1869 (1868) EQUAL(f(f(c,e),f(e,e)),c). ** KEPT: 1870 (162,457) EQUAL(f(f(e,c),f(e,e)),c). ---> New Demodulator: 1871 (1870) EQUAL(f(f(e,c),f(e,e)),c). ** KEPT: 1872 (4,457) EQUAL(f(f(a,b),f(f(x,g(x)),e)),c). ---> New Demodulator: 1873 (1872) EQUAL(f(f(a,b),f(f(x,g(x)),e)),c). ** KEPT: 1874 (3,457) EQUAL(f(f(a,b),f(f(g(x),x),e)),c). ---> New Demodulator: 1875 (1874) EQUAL(f(f(a,b),f(f(g(x),x),e)),c). ** KEPT: 1876 (4,457) EQUAL(f(f(a,b),f(e,f(x,g(x)))),c). ---> New Demodulator: 1877 (1876) EQUAL(f(f(a,b),f(e,f(x,g(x)))),c). ** KEPT: 1878 (3,457) EQUAL(f(f(a,b),f(e,f(g(x),x))),c). ---> New Demodulator: 1879 (1878) EQUAL(f(f(a,b),f(e,f(g(x),x))),c). >>>> Starting back demodulation with: 1869 (1868) EQUAL(f(f(c,e),f(e,e)),c). >>>> Starting back demodulation with: 1871 (1870) EQUAL(f(f(e,c),f(e,e)),c). >>>> Starting back demodulation with: 1873 (1872) EQUAL(f(f(a,b),f(f(x,g(x)),e)),c). >>>> Starting back demodulation with: 1875 (1874) EQUAL(f(f(a,b),f(f(g(x),x),e)),c). >>>> Starting back demodulation with: 1877 (1876) EQUAL(f(f(a,b),f(e,f(x,g(x)))),c). >>>> Starting back demodulation with: 1879 (1878) EQUAL(f(f(a,b),f(e,f(g(x),x))),c). ** KEPT: 1880 (457,5) EQUAL(f(f(x,f(a,b)),f(e,e)),f(x,c)). ** KEPT: 1881 (457,5) EQUAL(f(f(a,b),f(f(e,e),x)),f(c,x)). new given clause: 467 (16,453) EQUAL(f(a,f(b,f(e,e))),c). ** KEPT: 1882 (4,467) EQUAL(f(a,f(b,f(f(x,g(x)),e))),c). ---> New Demodulator: 1883 (1882) EQUAL(f(a,f(b,f(f(x,g(x)),e))),c). ** KEPT: 1884 (3,467) EQUAL(f(a,f(b,f(f(g(x),x),e))),c). ---> New Demodulator: 1885 (1884) EQUAL(f(a,f(b,f(f(g(x),x),e))),c). ** KEPT: 1886 (4,467) EQUAL(f(a,f(b,f(e,f(x,g(x))))),c). ---> New Demodulator: 1887 (1886) EQUAL(f(a,f(b,f(e,f(x,g(x))))),c). ** KEPT: 1888 (3,467) EQUAL(f(a,f(b,f(e,f(g(x),x)))),c). ---> New Demodulator: 1889 (1888) EQUAL(f(a,f(b,f(e,f(g(x),x)))),c). >>>> Starting back demodulation with: 1883 (1882) EQUAL(f(a,f(b,f(f(x,g(x)),e))),c). >>>> Starting back demodulation with: 1885 (1884) EQUAL(f(a,f(b,f(f(g(x),x),e))),c). >>>> Starting back demodulation with: 1887 (1886) EQUAL(f(a,f(b,f(e,f(x,g(x))))),c). >>>> Starting back demodulation with: 1889 (1888) EQUAL(f(a,f(b,f(e,f(g(x),x)))),c). ** KEPT: 1890 (467,526) EQUAL(f(c,g(f(b,f(e,e)))),a). ---> New Demodulator: 1891 (1890) EQUAL(f(c,g(f(b,f(e,e)))),a). ** KEPT: 1892 (467,5) EQUAL(f(f(x,a),f(b,f(e,e))),f(x,c)). ** KEPT: 1893 (467,5) EQUAL(f(a,f(f(b,f(e,e)),x)),f(c,x)). >>>> Starting back demodulation with: 1891 (1890) EQUAL(f(c,g(f(b,f(e,e)))),a). new given clause: 483 (363,5,476) EQUAL(f(a,f(e,x)),f(a,x)). ** KEPT: 1894 (163,483) EQUAL(f(a,f(a,b)),f(a,f(e,c))). ** KEPT: 1895 (1095,483) EQUAL(f(a,f(h,e)),f(a,h)). ** KEPT: 1896 (1063,483) EQUAL(f(a,f(d,g(b))),f(a,h)). ** KEPT: 1897 (254,483) EQUAL(f(a,f(c,g(a))),f(a,d)). ** KEPT: 1898 (5,483) EQUAL(f(a,f(f(e,x),y)),f(a,f(x,y))). ** KEPT: 1899 (483,483) EQUAL(f(a,f(e,f(e,x))),f(a,x)). ** KEPT: 1900 (5,483) EQUAL(f(f(a,e),x),f(a,x)). ** KEPT: 1901 (467,483) EQUAL(f(a,f(e,f(b,f(e,e)))),c). ---> New Demodulator: 1902 (1901) EQUAL(f(a,f(e,f(b,f(e,e)))),c). ** KEPT: 1903 (1197,483) EQUAL(f(a,f(e,f(g(a),d))),d). ---> New Demodulator: 1904 (1903) EQUAL(f(a,f(e,f(g(a),d))),d). ** KEPT: 1905 (1133,483) EQUAL(f(a,f(e,f(g(a),h))),h). ---> New Demodulator: 1906 (1905) EQUAL(f(a,f(e,f(g(a),h))),h). ** KEPT: 1907 (131,483) EQUAL(f(a,f(e,d)),f(f(a,k),h)). ** KEPT: 1908 (72,483) EQUAL(f(a,f(e,d)),f(f(a,h),b)). ** KEPT: 1909 (479,483) EQUAL(f(a,f(e,f(x,g(x)))),a). ---> New Demodulator: 1910 (1909) EQUAL(f(a,f(e,f(x,g(x)))),a). ** KEPT: 1911 (477,483) EQUAL(f(a,f(e,f(g(x),x))),a). ---> New Demodulator: 1912 (1911) EQUAL(f(a,f(e,f(g(x),x))),a). ** KEPT: 1913 (373,483) EQUAL(f(a,f(e,f(b,g(c)))),e). ---> New Demodulator: 1914 (1913) EQUAL(f(a,f(e,f(b,g(c)))),e). ** KEPT: 1915 (16,483) EQUAL(f(a,f(e,f(b,x))),f(c,x)). ** KEPT: 1916 (266,483) EQUAL(f(a,f(e,f(g(a),b))),b). ---> New Demodulator: 1917 (1916) EQUAL(f(a,f(e,f(g(a),b))),b). ** KEPT: 1918 (15,483) EQUAL(f(a,f(e,c)),f(f(a,a),b)). ** KEPT: 1919 (38,483) EQUAL(f(a,f(e,f(b,g(a)))),d). ---> New Demodulator: 1920 (1919) EQUAL(f(a,f(e,f(b,g(a)))),d). ** KEPT: 1921 (5,483) EQUAL(f(a,f(e,f(x,y))),f(f(a,x),y)). ** KEPT: 1922 (4,483) EQUAL(f(a,f(e,g(a))),e). ---> New Demodulator: 1923 (1922) EQUAL(f(a,f(e,g(a))),e). ** KEPT: 1924 (2,483) EQUAL(f(a,f(e,e)),a). ---> New Demodulator: 1925 (1924) EQUAL(f(a,f(e,e)),a). >>>> Starting back demodulation with: 1902 (1901) EQUAL(f(a,f(e,f(b,f(e,e)))),c). >>>> Starting back demodulation with: 1904 (1903) EQUAL(f(a,f(e,f(g(a),d))),d). >>>> Starting back demodulation with: 1906 (1905) EQUAL(f(a,f(e,f(g(a),h))),h). >>>> Starting back demodulation with: 1910 (1909) EQUAL(f(a,f(e,f(x,g(x)))),a). >>>> Starting back demodulation with: 1912 (1911) EQUAL(f(a,f(e,f(g(x),x))),a). >>>> Starting back demodulation with: 1914 (1913) EQUAL(f(a,f(e,f(b,g(c)))),e). >>>> Starting back demodulation with: 1917 (1916) EQUAL(f(a,f(e,f(g(a),b))),b). >>>> Starting back demodulation with: 1920 (1919) EQUAL(f(a,f(e,f(b,g(a)))),d). >>>> Starting back demodulation with: 1923 (1922) EQUAL(f(a,f(e,g(a))),e). >>>> Starting back demodulation with: 1925 (1924) EQUAL(f(a,f(e,e)),a). ** KEPT: 1926 (483,526) EQUAL(f(f(a,x),g(f(e,x))),a). ---> New Demodulator: 1927 (1926) EQUAL(f(f(a,x),g(f(e,x))),a). ** KEPT: 1928 (483,5) EQUAL(f(f(x,a),f(e,y)),f(x,f(a,y))). ** KEPT: 1929 (483,5) EQUAL(f(a,f(f(e,x),y)),f(f(a,x),y)). ** KEPT: 1930 (483,1175) EQUAL(f(g(a),f(a,f(e,d))),d). ---> New Demodulator: 1931 (1930) EQUAL(f(g(a),f(a,f(e,d))),d). ** KEPT: 1932 (483,1125) EQUAL(f(g(a),f(a,f(e,h))),h). ---> New Demodulator: 1933 (1932) EQUAL(f(g(a),f(a,f(e,h))),h). ** KEPT: 1934 (483,526) EQUAL(f(f(a,f(e,x)),g(x)),a). ---> New Demodulator: 1935 (1934) EQUAL(f(f(a,f(e,x)),g(x)),a). ** KEPT: 1936 (483,520) EQUAL(f(f(a,f(e,g(x))),x),a). ---> New Demodulator: 1937 (1936) EQUAL(f(f(a,f(e,g(x))),x),a). ** KEPT: 1938 (483,5) EQUAL(f(x,f(a,f(e,y))),f(f(x,a),y)). ** KEPT: 1939 (483,5) EQUAL(f(f(a,f(e,x)),y),f(a,f(x,y))). >>>> Starting back demodulation with: 1927 (1926) EQUAL(f(f(a,x),g(f(e,x))),a). >> back demodulating: 1550 (1549) EQUAL(f(f(a,b),g(f(e,b))),a). >> back demodulating: 1549 (7,1511) EQUAL(f(f(a,b),g(f(e,b))),a). >>>> Starting back demodulation with: 1931 (1930) EQUAL(f(g(a),f(a,f(e,d))),d). >>>> Starting back demodulation with: 1933 (1932) EQUAL(f(g(a),f(a,f(e,h))),h). >>>> Starting back demodulation with: 1935 (1934) EQUAL(f(f(a,f(e,x)),g(x)),a). >>>> Starting back demodulation with: 1937 (1936) EQUAL(f(f(a,f(e,g(x))),x),a). new given clause: 1924 (2,483) EQUAL(f(a,f(e,e)),a). ** KEPT: 1940 (4,1924) EQUAL(f(a,f(f(x,g(x)),e)),a). ---> New Demodulator: 1941 (1940) EQUAL(f(a,f(f(x,g(x)),e)),a). ** KEPT: 1942 (3,1924) EQUAL(f(a,f(f(g(x),x),e)),a). ---> New Demodulator: 1943 (1942) EQUAL(f(a,f(f(g(x),x),e)),a). ** KEPT: 1944 (483,1924) EQUAL(f(a,f(e,f(e,e))),a). ---> New Demodulator: 1945 (1944) EQUAL(f(a,f(e,f(e,e))),a). ** KEPT: 1946 (5,1924) EQUAL(f(f(a,e),e),a). ---> New Demodulator: 1947 (1946) EQUAL(f(f(a,e),e),a). >>>> Starting back demodulation with: 1941 (1940) EQUAL(f(a,f(f(x,g(x)),e)),a). >>>> Starting back demodulation with: 1943 (1942) EQUAL(f(a,f(f(g(x),x),e)),a). >>>> Starting back demodulation with: 1945 (1944) EQUAL(f(a,f(e,f(e,e))),a). >>>> Starting back demodulation with: 1947 (1946) EQUAL(f(f(a,e),e),a). >> back demodulating: 1491 (239,1470) EQUAL(f(f(f(a,e),e),b),c). >> back demodulating: 1492 (1491) EQUAL(f(f(f(a,e),e),b),c). ** KEPT: 1948 (1924,526) EQUAL(f(a,g(f(e,e))),a). ---> New Demodulator: 1949 (1948) EQUAL(f(a,g(f(e,e))),a). ** KEPT: 1950 (1924,5) EQUAL(f(f(x,a),f(e,e)),f(x,a)). ** KEPT: 1951 (1924,5) EQUAL(f(a,f(f(e,e),x)),f(a,x)). >>>> Starting back demodulation with: 1949 (1948) EQUAL(f(a,g(f(e,e))),a). new given clause: 1946 (5,1924) EQUAL(f(f(a,e),e),a). ** KEPT: 1952 (4,1946) EQUAL(f(f(a,e),f(x,g(x))),a). ---> New Demodulator: 1953 (1952) EQUAL(f(f(a,e),f(x,g(x))),a). ** KEPT: 1954 (3,1946) EQUAL(f(f(a,e),f(g(x),x)),a). ---> New Demodulator: 1955 (1954) EQUAL(f(f(a,e),f(g(x),x)),a). >>>> Starting back demodulation with: 1953 (1952) EQUAL(f(f(a,e),f(x,g(x))),a). >>>> Starting back demodulation with: 1955 (1954) EQUAL(f(f(a,e),f(g(x),x)),a). ** KEPT: 1956 (1946,5) EQUAL(f(f(x,f(a,e)),e),f(x,a)). ** KEPT: 1957 (1946,5) EQUAL(f(f(a,e),f(e,x)),f(a,x)). new given clause: 1922 (4,483) EQUAL(f(a,f(e,g(a))),e). ** KEPT: 1958 (4,1922) EQUAL(f(a,f(f(x,g(x)),g(a))),e). ---> New Demodulator: 1959 (1958) EQUAL(f(a,f(f(x,g(x)),g(a))),e). ** KEPT: 1960 (3,1922) EQUAL(f(a,f(f(g(x),x),g(a))),e). ---> New Demodulator: 1961 (1960) EQUAL(f(a,f(f(g(x),x),g(a))),e). ** KEPT: 1962 (483,1922) EQUAL(f(a,f(e,f(e,g(a)))),e). ---> New Demodulator: 1963 (1962) EQUAL(f(a,f(e,f(e,g(a)))),e). ** KEPT: 1964 (5,1922) EQUAL(f(f(a,e),g(a)),e). ---> New Demodulator: 1965 (1964) EQUAL(f(f(a,e),g(a)),e). >>>> Starting back demodulation with: 1959 (1958) EQUAL(f(a,f(f(x,g(x)),g(a))),e). >>>> Starting back demodulation with: 1961 (1960) EQUAL(f(a,f(f(g(x),x),g(a))),e). >>>> Starting back demodulation with: 1963 (1962) EQUAL(f(a,f(e,f(e,g(a)))),e). >>>> Starting back demodulation with: 1965 (1964) EQUAL(f(f(a,e),g(a)),e). ** KEPT: 1966 (1922,526) EQUAL(f(e,g(f(e,g(a)))),a). ---> New Demodulator: 1967 (1966) EQUAL(f(e,g(f(e,g(a)))),a). ** KEPT: 1968 (1922,5) EQUAL(f(f(x,a),f(e,g(a))),f(x,e)). ** KEPT: 1969 (1922,5) EQUAL(f(a,f(f(e,g(a)),x)),f(e,x)). >>>> Starting back demodulation with: 1967 (1966) EQUAL(f(e,g(f(e,g(a)))),a). new given clause: 1948 (1924,526) EQUAL(f(a,g(f(e,e))),a). ** KEPT: 1970 (4,1948) EQUAL(f(a,g(f(f(x,g(x)),e))),a). ---> New Demodulator: 1971 (1970) EQUAL(f(a,g(f(f(x,g(x)),e))),a). ** KEPT: 1972 (3,1948) EQUAL(f(a,g(f(f(g(x),x),e))),a). ---> New Demodulator: 1973 (1972) EQUAL(f(a,g(f(f(g(x),x),e))),a). ** KEPT: 1974 (4,1948) EQUAL(f(a,g(f(e,f(x,g(x))))),a). ---> New Demodulator: 1975 (1974) EQUAL(f(a,g(f(e,f(x,g(x))))),a). ** KEPT: 1976 (3,1948) EQUAL(f(a,g(f(e,f(g(x),x)))),a). ---> New Demodulator: 1977 (1976) EQUAL(f(a,g(f(e,f(g(x),x)))),a). ** KEPT: 1978 (483,1948) EQUAL(f(a,f(e,g(f(e,e)))),a). ---> New Demodulator: 1979 (1978) EQUAL(f(a,f(e,g(f(e,e)))),a). >>>> Starting back demodulation with: 1971 (1970) EQUAL(f(a,g(f(f(x,g(x)),e))),a). >>>> Starting back demodulation with: 1973 (1972) EQUAL(f(a,g(f(f(g(x),x),e))),a). >>>> Starting back demodulation with: 1975 (1974) EQUAL(f(a,g(f(e,f(x,g(x))))),a). >>>> Starting back demodulation with: 1977 (1976) EQUAL(f(a,g(f(e,f(g(x),x)))),a). >>>> Starting back demodulation with: 1979 (1978) EQUAL(f(a,f(e,g(f(e,e)))),a). ** KEPT: 1980 (1948,5) EQUAL(f(f(x,a),g(f(e,e))),f(x,a)). ** KEPT: 1981 (1948,5) EQUAL(f(a,f(g(f(e,e)),x)),f(a,x)). new given clause: 1964 (5,1922) EQUAL(f(f(a,e),g(a)),e). ** KEPT: 1982 (1964,5) EQUAL(f(f(x,f(a,e)),g(a)),f(x,e)). ** KEPT: 1983 (1964,5) EQUAL(f(f(a,e),f(g(a),x)),f(e,x)). new given clause: 558 (520,260) EQUAL(f(g(f(a,g(b))),a),b). ** KEPT: 1984 (483,558) EQUAL(f(g(f(a,f(e,g(b)))),a),b). ---> New Demodulator: 1985 (1984) EQUAL(f(g(f(a,f(e,g(b)))),a),b). >>>> Starting back demodulation with: 1985 (1984) EQUAL(f(g(f(a,f(e,g(b)))),a),b). ** KEPT: 1986 (558,15) EQUAL(f(g(f(a,g(b))),c),f(b,b)). ** KEPT: 1987 (558,5) EQUAL(f(f(x,g(f(a,g(b)))),a),f(x,b)). ** KEPT: 1988 (558,5) EQUAL(f(g(f(a,g(b))),f(a,x)),f(b,x)). new given clause: 562 (479,526) EQUAL(f(a,g(f(x,g(x)))),a). ** KEPT: 1989 (5,562) EQUAL(f(a,g(f(x,f(y,g(f(x,y)))))),a). ---> New Demodulator: 1990 (1989) EQUAL(f(a,g(f(x,f(y,g(f(x,y)))))),a). ** KEPT: 1991 (483,562) EQUAL(f(a,f(e,g(f(x,g(x))))),a). ---> New Demodulator: 1992 (1991) EQUAL(f(a,f(e,g(f(x,g(x))))),a). >>>> Starting back demodulation with: 1990 (1989) EQUAL(f(a,g(f(x,f(y,g(f(x,y)))))),a). >>>> Starting back demodulation with: 1992 (1991) EQUAL(f(a,f(e,g(f(x,g(x))))),a). ** KEPT: 1993 (562,5) EQUAL(f(f(x,a),g(f(y,g(y)))),f(x,a)). ** KEPT: 1994 (562,5) EQUAL(f(a,f(g(f(y,g(y))),x)),f(a,x)). new given clause: 564 (477,526) EQUAL(f(a,g(f(g(x),x))),a). ** KEPT: 1995 (5,564) EQUAL(f(a,g(f(f(g(f(x,y)),x),y))),a). ---> New Demodulator: 1996 (1995) EQUAL(f(a,g(f(f(g(f(x,y)),x),y))),a). ** KEPT: 1997 (483,564) EQUAL(f(a,f(e,g(f(g(x),x)))),a). ---> New Demodulator: 1998 (1997) EQUAL(f(a,f(e,g(f(g(x),x)))),a). >>>> Starting back demodulation with: 1996 (1995) EQUAL(f(a,g(f(f(g(f(x,y)),x),y))),a). >>>> Starting back demodulation with: 1998 (1997) EQUAL(f(a,f(e,g(f(g(x),x)))),a). ** KEPT: 1999 (564,5) EQUAL(f(f(x,a),g(f(g(y),y))),f(x,a)). ** KEPT: 2000 (564,5) EQUAL(f(a,f(g(f(g(y),y)),x)),f(a,x)). new given clause: 566 (373,526) EQUAL(f(e,g(f(b,g(c)))),a). ** KEPT: 2001 (4,566) EQUAL(f(f(x,g(x)),g(f(b,g(c)))),a). ---> New Demodulator: 2002 (2001) EQUAL(f(f(x,g(x)),g(f(b,g(c)))),a). ** KEPT: 2003 (3,566) EQUAL(f(f(g(x),x),g(f(b,g(c)))),a). ---> New Demodulator: 2004 (2003) EQUAL(f(f(g(x),x),g(f(b,g(c)))),a). ** KEPT: 2005 (7,566) EQUAL(f(e,g(f(b,g(f(a,b))))),a). ---> New Demodulator: 2006 (2005) EQUAL(f(e,g(f(b,g(f(a,b))))),a). ** KEPT: 2007 (1,566) EQUAL(g(f(b,g(c))),a). ---> New Demodulator: 2008 (2007) EQUAL(g(f(b,g(c))),a). >>>> Starting back demodulation with: 2002 (2001) EQUAL(f(f(x,g(x)),g(f(b,g(c)))),a). >>>> Starting back demodulation with: 2004 (2003) EQUAL(f(f(g(x),x),g(f(b,g(c)))),a). >>>> Starting back demodulation with: 2006 (2005) EQUAL(f(e,g(f(b,g(f(a,b))))),a). >>>> Starting back demodulation with: 2008 (2007) EQUAL(g(f(b,g(c))),a). >> back demodulating: 566 (373,526) EQUAL(f(e,g(f(b,g(c)))),a). >> back demodulating: 567 (566) EQUAL(f(e,g(f(b,g(c)))),a). >> back demodulating: 2001 (4,566) EQUAL(f(f(x,g(x)),g(f(b,g(c)))),a). ** KEPT: 2009 (2001,2008) EQUAL(f(f(x,g(x)),a),a). ---> New Demodulator: 2010 (2009) EQUAL(f(f(x,g(x)),a),a). >> back demodulating: 2002 (2001) EQUAL(f(f(x,g(x)),g(f(b,g(c)))),a). >> back demodulating: 2003 (3,566) EQUAL(f(f(g(x),x),g(f(b,g(c)))),a). ** KEPT: 2011 (2003,2008) EQUAL(f(f(g(x),x),a),a). ---> New Demodulator: 2012 (2011) EQUAL(f(f(g(x),x),a),a). >> back demodulating: 2004 (2003) EQUAL(f(f(g(x),x),g(f(b,g(c)))),a). >>>> Starting back demodulation with: 2010 (2009) EQUAL(f(f(x,g(x)),a),a). >> back demodulating: 185 (4,169) EQUAL(f(f(f(x,g(x)),a),b),c). >> back demodulating: 186 (185) EQUAL(f(f(f(x,g(x)),a),b),c). >> back demodulating: 320 (4,286) EQUAL(f(g(f(f(x,g(x)),a)),c),b). >> back demodulating: 321 (320) EQUAL(f(g(f(f(x,g(x)),a)),c),b). >>>> Starting back demodulation with: 2012 (2011) EQUAL(f(f(g(x),x),a),a). >> back demodulating: 187 (3,169) EQUAL(f(f(f(g(x),x),a),b),c). >> back demodulating: 188 (187) EQUAL(f(f(f(g(x),x),a),b),c). >> back demodulating: 322 (3,286) EQUAL(f(g(f(f(g(x),x),a)),c),b). >> back demodulating: 323 (322) EQUAL(f(g(f(f(g(x),x),a)),c),b). ** KEPT: 2013 (566,5,2008) EQUAL(f(f(x,e),a),f(x,a)). ** KEPT: 2014 (566,1948,2008) EQUAL(f(f(e,a),g(f(e,e))),a). ---> New Demodulator: 2015 (2014) EQUAL(f(f(e,a),g(f(e,e))),a). ** KEPT: 2016 (566,1924,2008) EQUAL(f(f(e,a),f(e,e)),a). ---> New Demodulator: 2017 (2016) EQUAL(f(f(e,a),f(e,e)),a). ** KEPT: 2018 (566,1922,2008) EQUAL(f(f(e,a),f(e,g(a))),e). ---> New Demodulator: 2019 (2018) EQUAL(f(f(e,a),f(e,g(a))),e). ** KEPT: 2020 (566,1733,2008) EQUAL(f(f(b,g(c)),f(e,a)),e). ---> New Demodulator: 2021 (2020) EQUAL(f(f(b,g(c)),f(e,a)),e). ** KEPT: 2022 (566,1493,2008) EQUAL(f(f(e,a),f(e,b)),c). ---> New Demodulator: 2023 (2022) EQUAL(f(f(e,a),f(e,b)),c). ** KEPT: 2024 (566,564,2008) EQUAL(f(f(e,a),g(f(g(x),x))),a). ---> New Demodulator: 2025 (2024) EQUAL(f(f(e,a),g(f(g(x),x))),a). ** KEPT: 2026 (566,562,2008) EQUAL(f(f(e,a),g(f(x,g(x)))),a). ---> New Demodulator: 2027 (2026) EQUAL(f(f(e,a),g(f(x,g(x)))),a). ** KEPT: 2028 (566,558,2008) EQUAL(f(g(f(a,g(b))),f(e,a)),b). ---> New Demodulator: 2029 (2028) EQUAL(f(g(f(a,g(b))),f(e,a)),b). ** KEPT: 2030 (566,558,2008) EQUAL(f(g(f(f(e,a),g(b))),a),b). ---> New Demodulator: 2031 (2030) EQUAL(f(g(f(f(e,a),g(b))),a),b). ** KEPT: 2032 (566,526,2008) EQUAL(f(f(f(e,a),x),g(x)),a). ---> New Demodulator: 2033 (2032) EQUAL(f(f(f(e,a),x),g(x)),a). ** KEPT: 2034 (566,520,2008) EQUAL(f(f(f(e,a),g(x)),x),a). ---> New Demodulator: 2035 (2034) EQUAL(f(f(f(e,a),g(x)),x),a). ** KEPT: 2036 (566,483,2008) EQUAL(f(a,f(e,x)),f(f(e,a),x)). ** KEPT: 2037 (566,483,2008) EQUAL(f(f(e,a),f(e,x)),f(a,x)). ** KEPT: 2038 (566,1964,2008) EQUAL(f(f(f(e,a),e),g(a)),e). ---> New Demodulator: 2039 (2038) EQUAL(f(f(f(e,a),e),g(a)),e). ** KEPT: 2040 (566,1946,2008) EQUAL(f(f(f(e,a),e),e),a). ---> New Demodulator: 2041 (2040) EQUAL(f(f(f(e,a),e),e),a). ** KEPT: 2042 (566,1495,2008) EQUAL(f(g(f(f(e,a),e)),c),b). ---> New Demodulator: 2043 (2042) EQUAL(f(g(f(f(e,a),e)),c),b). ** KEPT: 2044 (566,479,2008) EQUAL(f(f(e,a),f(x,g(x))),a). ---> New Demodulator: 2045 (2044) EQUAL(f(f(e,a),f(x,g(x))),a). ** KEPT: 2046 (566,477,2008) EQUAL(f(f(e,a),f(g(x),x)),a). ---> New Demodulator: 2047 (2046) EQUAL(f(f(e,a),f(g(x),x)),a). ** KEPT: 2048 (566,467,2008) EQUAL(f(f(e,a),f(b,f(e,e))),c). ---> New Demodulator: 2049 (2048) EQUAL(f(f(e,a),f(b,f(e,e))),c). ** KEPT: 2050 (566,373,2008) EQUAL(f(f(e,a),f(b,g(c))),e). ---> New Demodulator: 2051 (2050) EQUAL(f(f(e,a),f(b,g(c))),e). ** KEPT: 2052 (566,223,2008) EQUAL(f(f(f(e,e),f(e,a)),b),c). ---> New Demodulator: 2053 (2052) EQUAL(f(f(f(e,e),f(e,a)),b),c). ** KEPT: 2054 (566,286,2008) EQUAL(f(g(f(e,f(e,a))),c),b). ---> New Demodulator: 2055 (2054) EQUAL(f(g(f(e,f(e,a))),c),b). ** KEPT: 2056 (566,1715,2008) EQUAL(f(b,f(g(c),f(e,a))),e). ---> New Demodulator: 2057 (2056) EQUAL(f(b,f(g(c),f(e,a))),e). ** KEPT: 2058 (566,1575,2008) EQUAL(g(f(g(c),f(e,a))),b). ---> New Demodulator: 2059 (2058) EQUAL(g(f(g(c),f(e,a))),b). ** KEPT: 2060 (566,167,2008) EQUAL(f(f(g(c),f(e,a)),b),e). ---> New Demodulator: 2061 (2060) EQUAL(f(f(g(c),f(e,a)),b),e). ** KEPT: 2062 (566,38,2008) EQUAL(f(f(e,a),f(b,g(a))),d). ---> New Demodulator: 2063 (2062) EQUAL(f(f(e,a),f(b,g(a))),d). ** KEPT: 2064 (566,1964,2008) EQUAL(f(f(a,e),g(f(e,a))),e). ---> New Demodulator: 2065 (2064) EQUAL(f(f(a,e),g(f(e,a))),e). ** KEPT: 2066 (566,1922,2008) EQUAL(f(a,f(e,g(f(e,a)))),e). ---> New Demodulator: 2067 (2066) EQUAL(f(a,f(e,g(f(e,a)))),e). ** KEPT: 2068 (566,514,2008) EQUAL(f(c,f(e,g(f(e,a)))),d). ---> New Demodulator: 2069 (2068) EQUAL(f(c,f(e,g(f(e,a)))),d). ** KEPT: 2070 (566,395,2008) EQUAL(f(f(c,e),g(f(e,a))),d). ---> New Demodulator: 2071 (2070) EQUAL(f(f(c,e),g(f(e,a))),d). ** KEPT: 2072 (566,389,2008) EQUAL(f(g(f(e,a)),f(c,e)),b). ---> New Demodulator: 2073 (2072) EQUAL(f(g(f(e,a)),f(c,e)),b). ** KEPT: 2074 (566,179,2008) EQUAL(f(f(e,c),g(f(e,a))),d). ---> New Demodulator: 2075 (2074) EQUAL(f(f(e,c),g(f(e,a))),d). ** KEPT: 2076 (566,334,2008) EQUAL(f(f(g(f(e,a)),e),c),b). ---> New Demodulator: 2077 (2076) EQUAL(f(f(g(f(e,a)),e),c),b). ** KEPT: 2078 (566,117,2008) EQUAL(f(c,f(g(f(e,a)),e)),d). ---> New Demodulator: 2079 (2078) EQUAL(f(c,f(g(f(e,a)),e)),d). ** KEPT: 2080 (566,38,2008) EQUAL(f(a,f(b,g(f(e,a)))),d). ---> New Demodulator: 2081 (2080) EQUAL(f(a,f(b,g(f(e,a)))),d). ** KEPT: 2082 (566,300,2008) EQUAL(f(g(h),f(c,g(f(e,a)))),b). ---> New Demodulator: 2083 (2082) EQUAL(f(g(h),f(c,g(f(e,a)))),b). ** KEPT: 2084 (566,254,2008) EQUAL(f(e,f(c,g(f(e,a)))),d). ---> New Demodulator: 2085 (2084) EQUAL(f(e,f(c,g(f(e,a)))),d). ** KEPT: 2086 (566,93,2008) EQUAL(f(f(c,g(f(e,a))),g(h)),k). ---> New Demodulator: 2087 (2086) EQUAL(f(f(c,g(f(e,a))),g(h)),k). ** KEPT: 2088 (566,86,2008) EQUAL(f(f(c,g(f(e,a))),e),d). ---> New Demodulator: 2089 (2088) EQUAL(f(f(c,g(f(e,a))),e),d). ** KEPT: 2090 (566,23,2008) EQUAL(f(f(c,g(f(e,a))),g(b)),h). ---> New Demodulator: 2091 (2090) EQUAL(f(f(c,g(f(e,a))),g(b)),h). ** KEPT: 2092 (566,19,2008) EQUAL(f(f(a,b),g(f(e,a))),d). ---> New Demodulator: 2093 (2092) EQUAL(f(f(a,b),g(f(e,a))),d). ** KEPT: 2094 (566,8,2008) EQUAL(f(c,g(f(e,a))),d). ---> New Demodulator: 2095 (2094) EQUAL(f(c,g(f(e,a))),d). >>>> Starting back demodulation with: 2015 (2014) EQUAL(f(f(e,a),g(f(e,e))),a). >>>> Starting back demodulation with: 2017 (2016) EQUAL(f(f(e,a),f(e,e)),a). >>>> Starting back demodulation with: 2019 (2018) EQUAL(f(f(e,a),f(e,g(a))),e). >>>> Starting back demodulation with: 2021 (2020) EQUAL(f(f(b,g(c)),f(e,a)),e). >>>> Starting back demodulation with: 2023 (2022) EQUAL(f(f(e,a),f(e,b)),c). >>>> Starting back demodulation with: 2025 (2024) EQUAL(f(f(e,a),g(f(g(x),x))),a). >>>> Starting back demodulation with: 2027 (2026) EQUAL(f(f(e,a),g(f(x,g(x)))),a). >>>> Starting back demodulation with: 2029 (2028) EQUAL(f(g(f(a,g(b))),f(e,a)),b). >>>> Starting back demodulation with: 2031 (2030) EQUAL(f(g(f(f(e,a),g(b))),a),b). >>>> Starting back demodulation with: 2033 (2032) EQUAL(f(f(f(e,a),x),g(x)),a). >>>> Starting back demodulation with: 2035 (2034) EQUAL(f(f(f(e,a),g(x)),x),a). >>>> Starting back demodulation with: 2039 (2038) EQUAL(f(f(f(e,a),e),g(a)),e). >>>> Starting back demodulation with: 2041 (2040) EQUAL(f(f(f(e,a),e),e),a). >>>> Starting back demodulation with: 2043 (2042) EQUAL(f(g(f(f(e,a),e)),c),b). >>>> Starting back demodulation with: 2045 (2044) EQUAL(f(f(e,a),f(x,g(x))),a). >>>> Starting back demodulation with: 2047 (2046) EQUAL(f(f(e,a),f(g(x),x)),a). >>>> Starting back demodulation with: 2049 (2048) EQUAL(f(f(e,a),f(b,f(e,e))),c). >>>> Starting back demodulation with: 2051 (2050) EQUAL(f(f(e,a),f(b,g(c))),e). >>>> Starting back demodulation with: 2053 (2052) EQUAL(f(f(f(e,e),f(e,a)),b),c). >>>> Starting back demodulation with: 2055 (2054) EQUAL(f(g(f(e,f(e,a))),c),b). >>>> Starting back demodulation with: 2057 (2056) EQUAL(f(b,f(g(c),f(e,a))),e). >>>> Starting back demodulation with: 2059 (2058) EQUAL(g(f(g(c),f(e,a))),b). >>>> Starting back demodulation with: 2061 (2060) EQUAL(f(f(g(c),f(e,a)),b),e). >>>> Starting back demodulation with: 2063 (2062) EQUAL(f(f(e,a),f(b,g(a))),d). >>>> Starting back demodulation with: 2065 (2064) EQUAL(f(f(a,e),g(f(e,a))),e). >>>> Starting back demodulation with: 2067 (2066) EQUAL(f(a,f(e,g(f(e,a)))),e). >>>> Starting back demodulation with: 2069 (2068) EQUAL(f(c,f(e,g(f(e,a)))),d). >>>> Starting back demodulation with: 2071 (2070) EQUAL(f(f(c,e),g(f(e,a))),d). >>>> Starting back demodulation with: 2073 (2072) EQUAL(f(g(f(e,a)),f(c,e)),b). >>>> Starting back demodulation with: 2075 (2074) EQUAL(f(f(e,c),g(f(e,a))),d). >>>> Starting back demodulation with: 2077 (2076) EQUAL(f(f(g(f(e,a)),e),c),b). >>>> Starting back demodulation with: 2079 (2078) EQUAL(f(c,f(g(f(e,a)),e)),d). >>>> Starting back demodulation with: 2081 (2080) EQUAL(f(a,f(b,g(f(e,a)))),d). >>>> Starting back demodulation with: 2083 (2082) EQUAL(f(g(h),f(c,g(f(e,a)))),b). >>>> Starting back demodulation with: 2085 (2084) EQUAL(f(e,f(c,g(f(e,a)))),d). >>>> Starting back demodulation with: 2087 (2086) EQUAL(f(f(c,g(f(e,a))),g(h)),k). >>>> Starting back demodulation with: 2089 (2088) EQUAL(f(f(c,g(f(e,a))),e),d). >>>> Starting back demodulation with: 2091 (2090) EQUAL(f(f(c,g(f(e,a))),g(b)),h). >>>> Starting back demodulation with: 2093 (2092) EQUAL(f(f(a,b),g(f(e,a))),d). >>>> Starting back demodulation with: 2095 (2094) EQUAL(f(c,g(f(e,a))),d). >> back demodulating: 2082 (566,300,2008) EQUAL(f(g(h),f(c,g(f(e,a)))),b). >> back demodulating: 2083 (2082) EQUAL(f(g(h),f(c,g(f(e,a)))),b). >> back demodulating: 2084 (566,254,2008) EQUAL(f(e,f(c,g(f(e,a)))),d). >> back demodulating: 2085 (2084) EQUAL(f(e,f(c,g(f(e,a)))),d). >> back demodulating: 2086 (566,93,2008) EQUAL(f(f(c,g(f(e,a))),g(h)),k). >> back demodulating: 2087 (2086) EQUAL(f(f(c,g(f(e,a))),g(h)),k). >> back demodulating: 2088 (566,86,2008) EQUAL(f(f(c,g(f(e,a))),e),d). >> back demodulating: 2089 (2088) EQUAL(f(f(c,g(f(e,a))),e),d). >> back demodulating: 2090 (566,23,2008) EQUAL(f(f(c,g(f(e,a))),g(b)),h). >> back demodulating: 2091 (2090) EQUAL(f(f(c,g(f(e,a))),g(b)),h). new given clause: 2007 (1,566) EQUAL(g(f(b,g(c))),a). ** KEPT: 2096 (7,2007) EQUAL(g(f(b,g(f(a,b)))),a). ---> New Demodulator: 2097 (2096) EQUAL(g(f(b,g(f(a,b)))),a). >>>> Starting back demodulation with: 2097 (2096) EQUAL(g(f(b,g(f(a,b)))),a). >> back demodulating: 2005 (7,566) EQUAL(f(e,g(f(b,g(f(a,b))))),a). >> back demodulating: 2006 (2005) EQUAL(f(e,g(f(b,g(f(a,b))))),a). ** KEPT: 2098 (2007,1719) EQUAL(f(f(b,f(b,g(c))),a),b). ---> New Demodulator: 2099 (2098) EQUAL(f(f(b,f(b,g(c))),a),b). ** KEPT: 2100 (2007,1197) EQUAL(f(f(b,g(c)),f(a,d)),d). ---> New Demodulator: 2101 (2100) EQUAL(f(f(b,g(c)),f(a,d)),d). ** KEPT: 2102 (2007,1175) EQUAL(f(a,f(f(b,g(c)),d)),d). ---> New Demodulator: 2103 (2102) EQUAL(f(a,f(f(b,g(c)),d)),d). ** KEPT: 2104 (2007,1133) EQUAL(f(f(b,g(c)),f(a,h)),h). ---> New Demodulator: 2105 (2104) EQUAL(f(f(b,g(c)),f(a,h)),h). ** KEPT: 2106 (2007,1125) EQUAL(f(a,f(f(b,g(c)),h)),h). ---> New Demodulator: 2107 (2106) EQUAL(f(a,f(f(b,g(c)),h)),h). ** KEPT: 2108 (2007,1725) EQUAL(f(f(b,a),f(b,g(c))),b). ---> New Demodulator: 2109 (2108) EQUAL(f(f(b,a),f(b,g(c))),b). ** KEPT: 2110 (2007,520) EQUAL(f(f(a,a),f(b,g(c))),a). ---> New Demodulator: 2111 (2110) EQUAL(f(f(a,a),f(b,g(c))),a). ** KEPT: 2112 (2007,260) EQUAL(f(a,f(f(b,g(c)),b)),b). ---> New Demodulator: 2113 (2112) EQUAL(f(a,f(f(b,g(c)),b)),b). ** KEPT: 2114 (2007,113) EQUAL(f(f(d,f(b,g(c))),a),d). ---> New Demodulator: 2115 (2114) EQUAL(f(f(d,f(b,g(c))),a),d). ** KEPT: 2116 (2007,105) EQUAL(f(f(d,a),f(b,g(c))),d). ---> New Demodulator: 2117 (2116) EQUAL(f(f(d,a),f(b,g(c))),d). >>>> Starting back demodulation with: 2099 (2098) EQUAL(f(f(b,f(b,g(c))),a),b). >>>> Starting back demodulation with: 2101 (2100) EQUAL(f(f(b,g(c)),f(a,d)),d). >>>> Starting back demodulation with: 2103 (2102) EQUAL(f(a,f(f(b,g(c)),d)),d). >>>> Starting back demodulation with: 2105 (2104) EQUAL(f(f(b,g(c)),f(a,h)),h). >>>> Starting back demodulation with: 2107 (2106) EQUAL(f(a,f(f(b,g(c)),h)),h). >>>> Starting back demodulation with: 2109 (2108) EQUAL(f(f(b,a),f(b,g(c))),b). >>>> Starting back demodulation with: 2111 (2110) EQUAL(f(f(a,a),f(b,g(c))),a). >>>> Starting back demodulation with: 2113 (2112) EQUAL(f(a,f(f(b,g(c)),b)),b). >>>> Starting back demodulation with: 2115 (2114) EQUAL(f(f(d,f(b,g(c))),a),d). >>>> Starting back demodulation with: 2117 (2116) EQUAL(f(f(d,a),f(b,g(c))),d). new given clause: 2009 (2001,2008) EQUAL(f(f(x,g(x)),a),a). ** KEPT: 2118 (5,2009) EQUAL(f(f(x,f(y,g(f(x,y)))),a),a). ---> New Demodulator: 2119 (2118) EQUAL(f(f(x,f(y,g(f(x,y)))),a),a). ** KEPT: 2120 (5,2009) EQUAL(f(x,f(g(x),a)),a). ---> New Demodulator: 2121 (2120) EQUAL(f(x,f(g(x),a)),a). >>>> Starting back demodulation with: 2119 (2118) EQUAL(f(f(x,f(y,g(f(x,y)))),a),a). >>>> Starting back demodulation with: 2121 (2120) EQUAL(f(x,f(g(x),a)),a). >> back demodulating: 1736 (1715,16) EQUAL(f(c,f(g(c),a)),f(a,e)). ** KEPT: 2122 (2009,5) EQUAL(f(f(x,f(y,g(y))),a),f(x,a)). ** KEPT: 2123 (2009,5) EQUAL(f(f(y,g(y)),f(a,x)),f(a,x)). new given clause: 2011 (2003,2008) EQUAL(f(f(g(x),x),a),a). ** KEPT: 2124 (5,2011) EQUAL(f(f(f(g(f(x,y)),x),y),a),a). ---> New Demodulator: 2125 (2124) EQUAL(f(f(f(g(f(x,y)),x),y),a),a). ** KEPT: 2126 (5,2011) EQUAL(f(g(x),f(x,a)),a). ---> New Demodulator: 2127 (2126) EQUAL(f(g(x),f(x,a)),a). >>>> Starting back demodulation with: 2125 (2124) EQUAL(f(f(f(g(f(x,y)),x),y),a),a). >>>> Starting back demodulation with: 2127 (2126) EQUAL(f(g(x),f(x,a)),a). ** KEPT: 2128 (2011,5) EQUAL(f(f(x,f(g(y),y)),a),f(x,a)). ** KEPT: 2129 (2011,5) EQUAL(f(f(g(y),y),f(a,x)),f(a,x)). new given clause: 2094 (566,8,2008) EQUAL(f(c,g(f(e,a))),d). ** KEPT: 2130 (2094,5) EQUAL(f(f(x,c),g(f(e,a))),f(x,d)). ** KEPT: 2131 (2094,5) EQUAL(f(c,f(g(f(e,a)),x)),f(d,x)). new given clause: 2120 (5,2009) EQUAL(f(x,f(g(x),a)),a). ** KEPT: 2132 (2007,2120) EQUAL(f(f(b,g(c)),f(a,a)),a). ---> New Demodulator: 2133 (2132) EQUAL(f(f(b,g(c)),f(a,a)),a). ** KEPT: 2134 (1575,2120) EQUAL(f(f(g(c),a),f(b,a)),a). ---> New Demodulator: 2135 (2134) EQUAL(f(f(g(c),a),f(b,a)),a). ** KEPT: 2136 (365,2120) EQUAL(f(c,f(g(f(a,b)),a)),a). ---> New Demodulator: 2137 (2136) EQUAL(f(c,f(g(f(a,b)),a)),a). ** KEPT: 2138 (132,2120) EQUAL(f(k,f(h,f(g(d),a))),a). ---> New Demodulator: 2139 (2138) EQUAL(f(k,f(h,f(g(d),a))),a). ** KEPT: 2140 (92,2120) EQUAL(f(d,f(e,f(g(d),a))),a). ---> New Demodulator: 2141 (2140) EQUAL(f(d,f(e,f(g(d),a))),a). ** KEPT: 2142 (73,2120) EQUAL(f(h,f(b,f(g(d),a))),a). ---> New Demodulator: 2143 (2142) EQUAL(f(h,f(b,f(g(d),a))),a). ** KEPT: 2144 (5,2120) EQUAL(f(x,f(y,f(g(f(x,y)),a))),a). ---> New Demodulator: 2145 (2144) EQUAL(f(x,f(y,f(g(f(x,y)),a))),a). >>>> Starting back demodulation with: 2133 (2132) EQUAL(f(f(b,g(c)),f(a,a)),a). >>>> Starting back demodulation with: 2135 (2134) EQUAL(f(f(g(c),a),f(b,a)),a). >>>> Starting back demodulation with: 2137 (2136) EQUAL(f(c,f(g(f(a,b)),a)),a). >>>> Starting back demodulation with: 2139 (2138) EQUAL(f(k,f(h,f(g(d),a))),a). >>>> Starting back demodulation with: 2141 (2140) EQUAL(f(d,f(e,f(g(d),a))),a). >>>> Starting back demodulation with: 2143 (2142) EQUAL(f(h,f(b,f(g(d),a))),a). >>>> Starting back demodulation with: 2145 (2144) EQUAL(f(x,f(y,f(g(f(x,y)),a))),a). ** KEPT: 2146 (2120,1719) EQUAL(f(a,g(f(g(b),a))),b). ---> New Demodulator: 2147 (2146) EQUAL(f(a,g(f(g(b),a))),b). ** KEPT: 2148 (2120,113) EQUAL(f(a,g(f(g(d),a))),d). ---> New Demodulator: 2149 (2148) EQUAL(f(a,g(f(g(d),a))),d). ** KEPT: 2150 (2120,5) EQUAL(f(f(x,y),f(g(y),a)),f(x,a)). ** KEPT: 2151 (2120,5) EQUAL(f(y,f(f(g(y),a),x)),f(a,x)). >>>> Starting back demodulation with: 2147 (2146) EQUAL(f(a,g(f(g(b),a))),b). >>>> Starting back demodulation with: 2149 (2148) EQUAL(f(a,g(f(g(d),a))),d). new given clause: 2126 (5,2011) EQUAL(f(g(x),f(x,a)),a). ** KEPT: 2152 (1575,2126) EQUAL(f(b,f(f(g(c),a),a)),a). ---> New Demodulator: 2153 (2152) EQUAL(f(b,f(f(g(c),a),a)),a). ** KEPT: 2154 (2011,2126) EQUAL(f(g(f(g(x),x)),a),a). ---> New Demodulator: 2155 (2154) EQUAL(f(g(f(g(x),x)),a),a). ** KEPT: 2156 (2009,2126) EQUAL(f(g(f(x,g(x))),a),a). ---> New Demodulator: 2157 (2156) EQUAL(f(g(f(x,g(x))),a),a). ** KEPT: 2158 (483,2126) EQUAL(f(g(a),f(a,f(e,a))),a). ---> New Demodulator: 2159 (2158) EQUAL(f(g(a),f(a,f(e,a))),a). ** KEPT: 2160 (365,2126) EQUAL(f(g(c),f(f(a,b),a)),a). ---> New Demodulator: 2161 (2160) EQUAL(f(g(c),f(f(a,b),a)),a). ** KEPT: 2162 (365,2126) EQUAL(f(g(f(a,b)),f(c,a)),a). ---> New Demodulator: 2163 (2162) EQUAL(f(g(f(a,b)),f(c,a)),a). ** KEPT: 2164 (1725,2126) EQUAL(f(g(f(b,g(a))),b),a). ---> New Demodulator: 2165 (2164) EQUAL(f(g(f(b,g(a))),b),a). ** KEPT: 2166 (132,2126) EQUAL(f(g(d),f(k,f(h,a))),a). ---> New Demodulator: 2167 (2166) EQUAL(f(g(d),f(k,f(h,a))),a). ** KEPT: 2168 (92,2126) EQUAL(f(g(d),f(d,f(e,a))),a). ---> New Demodulator: 2169 (2168) EQUAL(f(g(d),f(d,f(e,a))),a). ** KEPT: 2170 (73,2126) EQUAL(f(g(d),f(h,f(b,a))),a). ---> New Demodulator: 2171 (2170) EQUAL(f(g(d),f(h,f(b,a))),a). ** KEPT: 2172 (16,2126) EQUAL(f(g(c),f(a,f(b,a))),a). ---> New Demodulator: 2173 (2172) EQUAL(f(g(c),f(a,f(b,a))),a). ** KEPT: 2174 (105,2126) EQUAL(f(g(f(d,g(a))),d),a). ---> New Demodulator: 2175 (2174) EQUAL(f(g(f(d,g(a))),d),a). ** KEPT: 2176 (5,2126) EQUAL(f(g(f(x,y)),f(x,f(y,a))),a). ---> New Demodulator: 2177 (2176) EQUAL(f(g(f(x,y)),f(x,f(y,a))),a). >>>> Starting back demodulation with: 2153 (2152) EQUAL(f(b,f(f(g(c),a),a)),a). >>>> Starting back demodulation with: 2155 (2154) EQUAL(f(g(f(g(x),x)),a),a). >>>> Starting back demodulation with: 2157 (2156) EQUAL(f(g(f(x,g(x))),a),a). >>>> Starting back demodulation with: 2159 (2158) EQUAL(f(g(a),f(a,f(e,a))),a). >>>> Starting back demodulation with: 2161 (2160) EQUAL(f(g(c),f(f(a,b),a)),a). >>>> Starting back demodulation with: 2163 (2162) EQUAL(f(g(f(a,b)),f(c,a)),a). >>>> Starting back demodulation with: 2165 (2164) EQUAL(f(g(f(b,g(a))),b),a). >>>> Starting back demodulation with: 2167 (2166) EQUAL(f(g(d),f(k,f(h,a))),a). >>>> Starting back demodulation with: 2169 (2168) EQUAL(f(g(d),f(d,f(e,a))),a). >>>> Starting back demodulation with: 2171 (2170) EQUAL(f(g(d),f(h,f(b,a))),a). >>>> Starting back demodulation with: 2173 (2172) EQUAL(f(g(c),f(a,f(b,a))),a). >>>> Starting back demodulation with: 2175 (2174) EQUAL(f(g(f(d,g(a))),d),a). >>>> Starting back demodulation with: 2177 (2176) EQUAL(f(g(f(x,y)),f(x,f(y,a))),a). ** KEPT: 2178 (2126,5) EQUAL(f(f(x,g(y)),f(y,a)),f(x,a)). ** KEPT: 2179 (2126,5) EQUAL(f(g(y),f(f(y,a),x)),f(a,x)). new given clause: 574 (266,526) EQUAL(f(b,g(f(g(a),b))),a). ** KEPT: 2180 (239,574) EQUAL(f(b,g(f(f(g(a),e),b))),a). ---> New Demodulator: 2181 (2180) EQUAL(f(b,g(f(f(g(a),e),b))),a). >>>> Starting back demodulation with: 2181 (2180) EQUAL(f(b,g(f(f(g(a),e),b))),a). ** KEPT: 2182 (574,73) EQUAL(f(d,g(f(g(a),b))),f(h,a)). ** KEPT: 2183 (574,16) EQUAL(f(c,g(f(g(a),b))),f(a,a)). ** KEPT: 2184 (574,5) EQUAL(f(f(x,b),g(f(g(a),b))),f(x,a)). ** KEPT: 2185 (574,5) EQUAL(f(b,f(g(f(g(a),b)),x)),f(a,x)). new given clause: 580 (38,526) EQUAL(f(d,g(f(b,g(a)))),a). ** KEPT: 2186 (132,580) EQUAL(f(k,f(h,g(f(b,g(a))))),a). ---> New Demodulator: 2187 (2186) EQUAL(f(k,f(h,g(f(b,g(a))))),a). ** KEPT: 2188 (92,580) EQUAL(f(d,f(e,g(f(b,g(a))))),a). ---> New Demodulator: 2189 (2188) EQUAL(f(d,f(e,g(f(b,g(a))))),a). ** KEPT: 2190 (73,580) EQUAL(f(h,f(b,g(f(b,g(a))))),a). ---> New Demodulator: 2191 (2190) EQUAL(f(h,f(b,g(f(b,g(a))))),a). >>>> Starting back demodulation with: 2187 (2186) EQUAL(f(k,f(h,g(f(b,g(a))))),a). >>>> Starting back demodulation with: 2189 (2188) EQUAL(f(d,f(e,g(f(b,g(a))))),a). >>>> Starting back demodulation with: 2191 (2190) EQUAL(f(h,f(b,g(f(b,g(a))))),a). ** KEPT: 2192 (580,5) EQUAL(f(f(x,d),g(f(b,g(a)))),f(x,a)). ** KEPT: 2193 (580,5) EQUAL(f(d,f(g(f(b,g(a))),x)),f(a,x)). new given clause: 660 (5,23) EQUAL(f(c,f(g(a),g(b))),h). ** KEPT: 2194 (7,660) EQUAL(f(f(a,b),f(g(a),g(b))),h). ---> New Demodulator: 2195 (2194) EQUAL(f(f(a,b),f(g(a),g(b))),h). ** KEPT: 2196 (16,660) EQUAL(f(a,f(b,f(g(a),g(b)))),h). ---> New Demodulator: 2197 (2196) EQUAL(f(a,f(b,f(g(a),g(b)))),h). >>>> Starting back demodulation with: 2195 (2194) EQUAL(f(f(a,b),f(g(a),g(b))),h). >>>> Starting back demodulation with: 2197 (2196) EQUAL(f(a,f(b,f(g(a),g(b)))),h). ** KEPT: 2198 (660,5) EQUAL(f(f(x,c),f(g(a),g(b))),f(x,h)). ** KEPT: 2199 (660,5) EQUAL(f(c,f(f(g(a),g(b)),x)),f(h,x)). new given clause: 713 (676,260) EQUAL(f(g(f(g(d),h)),e),b). ** KEPT: 2200 (8,713) EQUAL(f(g(f(g(f(c,g(a))),h)),e),b). ---> New Demodulator: 2201 (2200) EQUAL(f(g(f(g(f(c,g(a))),h)),e),b). ** KEPT: 2202 (9,713) EQUAL(f(g(f(g(d),f(d,g(b)))),e),b). ---> New Demodulator: 2203 (2202) EQUAL(f(g(f(g(d),f(d,g(b)))),e),b). ** KEPT: 2204 (4,713) EQUAL(f(g(f(g(d),h)),f(x,g(x))),b). ---> New Demodulator: 2205 (2204) EQUAL(f(g(f(g(d),h)),f(x,g(x))),b). ** KEPT: 2206 (3,713) EQUAL(f(g(f(g(d),h)),f(g(x),x)),b). ---> New Demodulator: 2207 (2206) EQUAL(f(g(f(g(d),h)),f(g(x),x)),b). ** KEPT: 2208 (2,713) EQUAL(g(f(g(d),h)),b). ---> New Demodulator: 2209 (2208) EQUAL(g(f(g(d),h)),b). >>>> Starting back demodulation with: 2201 (2200) EQUAL(f(g(f(g(f(c,g(a))),h)),e),b). >>>> Starting back demodulation with: 2203 (2202) EQUAL(f(g(f(g(d),f(d,g(b)))),e),b). >>>> Starting back demodulation with: 2205 (2204) EQUAL(f(g(f(g(d),h)),f(x,g(x))),b). >>>> Starting back demodulation with: 2207 (2206) EQUAL(f(g(f(g(d),h)),f(g(x),x)),b). >>>> Starting back demodulation with: 2209 (2208) EQUAL(g(f(g(d),h)),b). >> back demodulating: 713 (676,260) EQUAL(f(g(f(g(d),h)),e),b). >> back demodulating: 714 (713) EQUAL(f(g(f(g(d),h)),e),b). >> back demodulating: 1191 (1133,113) EQUAL(f(h,g(f(g(d),h))),d). >> back demodulating: 1192 (1191) EQUAL(f(h,g(f(g(d),h))),d). >> back demodulating: 2204 (4,713) EQUAL(f(g(f(g(d),h)),f(x,g(x))),b). >> back demodulating: 2205 (2204) EQUAL(f(g(f(g(d),h)),f(x,g(x))),b). >> back demodulating: 2206 (3,713) EQUAL(f(g(f(g(d),h)),f(g(x),x)),b). >> back demodulating: 2207 (2206) EQUAL(f(g(f(g(d),h)),f(g(x),x)),b). ** KEPT: 2210 (713,1715,2209) EQUAL(f(f(b,e),f(g(c),a)),e). ---> New Demodulator: 2211 (2210) EQUAL(f(f(b,e),f(g(c),a)),e). ** KEPT: 2212 (713,1579,2209) EQUAL(f(f(b,e),f(g(x),x)),b). ---> New Demodulator: 2213 (2212) EQUAL(f(f(b,e),f(g(x),x)),b). ** KEPT: 2214 (713,1577,2209) EQUAL(f(f(b,e),f(x,g(x))),b). ---> New Demodulator: 2215 (2214) EQUAL(f(f(b,e),f(x,g(x))),b). ** KEPT: 2216 (713,1725,2209) EQUAL(f(f(f(b,e),g(x)),x),b). ---> New Demodulator: 2217 (2216) EQUAL(f(f(f(b,e),g(x)),x),b). ** KEPT: 2218 (713,574,2209) EQUAL(f(b,g(f(g(a),f(b,e)))),a). ---> New Demodulator: 2219 (2218) EQUAL(f(b,g(f(g(a),f(b,e)))),a). ** KEPT: 2220 (713,574,2209) EQUAL(f(f(b,e),g(f(g(a),b))),a). ---> New Demodulator: 2221 (2220) EQUAL(f(f(b,e),g(f(g(a),b))),a). ** KEPT: 2222 (713,467,2209) EQUAL(f(a,f(f(b,e),f(e,e))),c). ---> New Demodulator: 2223 (2222) EQUAL(f(a,f(f(b,e),f(e,e))),c). ** KEPT: 2224 (713,1678,2209) EQUAL(f(d,g(f(f(b,e),e))),h). ---> New Demodulator: 2225 (2224) EQUAL(f(d,g(f(f(b,e),e))),h). ** KEPT: 2226 (713,1677,2209) -EQUAL(f(k,g(f(f(b,e),e))),e). ** KEPT: 2227 (713,2007,2209) EQUAL(g(f(f(b,e),g(c))),a). ---> New Demodulator: 2228 (2227) EQUAL(g(f(f(b,e),g(c))),a). ** KEPT: 2229 (713,1733,2209) EQUAL(f(f(f(b,e),g(c)),a),e). ---> New Demodulator: 2230 (2229) EQUAL(f(f(f(b,e),g(c)),a),e). ** KEPT: 2231 (713,306,2209) EQUAL(f(b,g(f(g(d),f(b,e)))),d). ---> New Demodulator: 2232 (2231) EQUAL(f(b,g(f(g(d),f(b,e)))),d). ** KEPT: 2233 (713,306,2209) EQUAL(f(f(b,e),g(f(g(d),b))),d). ---> New Demodulator: 2234 (2233) EQUAL(f(f(b,e),g(f(g(d),b))),d). ** KEPT: 2235 (713,580,2209) EQUAL(f(d,g(f(f(b,e),g(a)))),a). ---> New Demodulator: 2236 (2235) EQUAL(f(d,g(f(f(b,e),g(a)))),a). ** KEPT: 2237 (713,1719,2209) EQUAL(f(f(f(b,e),x),g(x)),b). ---> New Demodulator: 2238 (2237) EQUAL(f(f(f(b,e),x),g(x)),b). ** KEPT: 2239 (713,660,2209) EQUAL(f(c,f(g(a),g(f(b,e)))),h). ---> New Demodulator: 2240 (2239) EQUAL(f(c,f(g(a),g(f(b,e)))),h). ** KEPT: 2241 (713,558,2209) EQUAL(f(g(f(a,g(f(b,e)))),a),b). ---> New Demodulator: 2242 (2241) EQUAL(f(g(f(a,g(f(b,e)))),a),b). >>>> Starting back demodulation with: 2211 (2210) EQUAL(f(f(b,e),f(g(c),a)),e). >>>> Starting back demodulation with: 2213 (2212) EQUAL(f(f(b,e),f(g(x),x)),b). >>>> Starting back demodulation with: 2215 (2214) EQUAL(f(f(b,e),f(x,g(x))),b). >>>> Starting back demodulation with: 2217 (2216) EQUAL(f(f(f(b,e),g(x)),x),b). >>>> Starting back demodulation with: 2219 (2218) EQUAL(f(b,g(f(g(a),f(b,e)))),a). >>>> Starting back demodulation with: 2221 (2220) EQUAL(f(f(b,e),g(f(g(a),b))),a). >>>> Starting back demodulation with: 2223 (2222) EQUAL(f(a,f(f(b,e),f(e,e))),c). >>>> Starting back demodulation with: 2225 (2224) EQUAL(f(d,g(f(f(b,e),e))),h). >>>> Starting back demodulation with: 2228 (2227) EQUAL(g(f(f(b,e),g(c))),a). >>>> Starting back demodulation with: 2230 (2229) EQUAL(f(f(f(b,e),g(c)),a),e). >>>> Starting back demodulation with: 2232 (2231) EQUAL(f(b,g(f(g(d),f(b,e)))),d). >>>> Starting back demodulation with: 2234 (2233) EQUAL(f(f(b,e),g(f(g(d),b))),d). >>>> Starting back demodulation with: 2236 (2235) EQUAL(f(d,g(f(f(b,e),g(a)))),a). >>>> Starting back demodulation with: 2238 (2237) EQUAL(f(f(f(b,e),x),g(x)),b). >> back demodulating: 1744 (1743) EQUAL(f(f(f(b,e),b),g(b)),b). >> back demodulating: 1743 (239,1719) EQUAL(f(f(f(b,e),b),g(b)),b). >>>> Starting back demodulation with: 2240 (2239) EQUAL(f(c,f(g(a),g(f(b,e)))),h). >>>> Starting back demodulation with: 2242 (2241) EQUAL(f(g(f(a,g(f(b,e)))),a),b). new given clause: 2208 (2,713) EQUAL(g(f(g(d),h)),b). ** KEPT: 2243 (8,2208) EQUAL(g(f(g(f(c,g(a))),h)),b). ---> New Demodulator: 2244 (2243) EQUAL(g(f(g(f(c,g(a))),h)),b). ** KEPT: 2245 (9,2208) EQUAL(g(f(g(d),f(d,g(b)))),b). ---> New Demodulator: 2246 (2245) EQUAL(g(f(g(d),f(d,g(b)))),b). >>>> Starting back demodulation with: 2244 (2243) EQUAL(g(f(g(f(c,g(a))),h)),b). >> back demodulating: 2200 (8,713) EQUAL(f(g(f(g(f(c,g(a))),h)),e),b). >> back demodulating: 2201 (2200) EQUAL(f(g(f(g(f(c,g(a))),h)),e),b). >>>> Starting back demodulation with: 2246 (2245) EQUAL(g(f(g(d),f(d,g(b)))),b). >> back demodulating: 2202 (9,713) EQUAL(f(g(f(g(d),f(d,g(b)))),e),b). >> back demodulating: 2203 (2202) EQUAL(f(g(f(g(d),f(d,g(b)))),e),b). ** KEPT: 2247 (2208,2126) EQUAL(f(b,f(f(g(d),h),a)),a). ---> New Demodulator: 2248 (2247) EQUAL(f(b,f(f(g(d),h),a)),a). ** KEPT: 2249 (2208,2120) EQUAL(f(f(g(d),h),f(b,a)),a). ---> New Demodulator: 2250 (2249) EQUAL(f(f(g(d),h),f(b,a)),a). ** KEPT: 2251 (2208,1719) EQUAL(f(f(b,f(g(d),h)),b),b). ---> New Demodulator: 2252 (2251) EQUAL(f(f(b,f(g(d),h)),b),b). ** KEPT: 2253 (2208,1197) EQUAL(f(f(g(d),h),f(b,d)),d). ---> New Demodulator: 2254 (2253) EQUAL(f(f(g(d),h),f(b,d)),d). ** KEPT: 2255 (2208,1175) EQUAL(f(b,f(f(g(d),h),d)),d). ---> New Demodulator: 2256 (2255) EQUAL(f(b,f(f(g(d),h),d)),d). ** KEPT: 2257 (2208,1133) EQUAL(f(f(g(d),h),f(b,h)),h). ---> New Demodulator: 2258 (2257) EQUAL(f(f(g(d),h),f(b,h)),h). ** KEPT: 2259 (2208,1125) EQUAL(f(b,f(f(g(d),h),h)),h). ---> New Demodulator: 2260 (2259) EQUAL(f(b,f(f(g(d),h),h)),h). ** KEPT: 2261 (2208,1725) EQUAL(f(f(b,b),f(g(d),h)),b). ---> New Demodulator: 2262 (2261) EQUAL(f(f(b,b),f(g(d),h)),b). ** KEPT: 2263 (2208,526) EQUAL(f(f(a,f(g(d),h)),b),a). ---> New Demodulator: 2264 (2263) EQUAL(f(f(a,f(g(d),h)),b),a). ** KEPT: 2265 (2208,520) EQUAL(f(f(a,b),f(g(d),h)),a). ---> New Demodulator: 2266 (2265) EQUAL(f(f(a,b),f(g(d),h)),a). ** KEPT: 2267 (2208,266) EQUAL(f(f(g(d),h),f(b,b)),b). ---> New Demodulator: 2268 (2267) EQUAL(f(f(g(d),h),f(b,b)),b). ** KEPT: 2269 (2208,105) EQUAL(f(f(d,b),f(g(d),h)),d). ---> New Demodulator: 2270 (2269) EQUAL(f(f(d,b),f(g(d),h)),d). ** KEPT: 2271 (2208,2011) EQUAL(f(f(b,f(g(d),h)),a),a). ---> New Demodulator: 2272 (2271) EQUAL(f(f(b,f(g(d),h)),a),a). ** KEPT: 2273 (2208,1579) EQUAL(f(b,f(b,f(g(d),h))),b). ---> New Demodulator: 2274 (2273) EQUAL(f(b,f(b,f(g(d),h))),b). ** KEPT: 2275 (2208,1127) EQUAL(f(f(b,f(g(d),h)),d),d). ---> New Demodulator: 2276 (2275) EQUAL(f(f(b,f(g(d),h)),d),d). ** KEPT: 2277 (2208,1065) EQUAL(f(f(b,f(g(d),h)),h),h). ---> New Demodulator: 2278 (2277) EQUAL(f(f(b,f(g(d),h)),h),h). ** KEPT: 2279 (2208,477) EQUAL(f(a,f(b,f(g(d),h))),a). ---> New Demodulator: 2280 (2279) EQUAL(f(a,f(b,f(g(d),h))),a). ** KEPT: 2281 (2208,564) EQUAL(f(a,g(f(b,f(g(d),h)))),a). ---> New Demodulator: 2282 (2281) EQUAL(f(a,g(f(b,f(g(d),h)))),a). ** KEPT: 2283 (2208,282) EQUAL(f(g(f(b,f(g(d),h))),b),b). ---> New Demodulator: 2284 (2283) EQUAL(f(g(f(b,f(g(d),h))),b),b). ** KEPT: 2285 (2208,137) EQUAL(f(d,g(f(b,f(g(d),h)))),d). ---> New Demodulator: 2286 (2285) EQUAL(f(d,g(f(b,f(g(d),h)))),d). ** KEPT: 2287 (2208,82) EQUAL(f(d,f(b,f(g(d),h))),d). ---> New Demodulator: 2288 (2287) EQUAL(f(d,f(b,f(g(d),h))),d). ** KEPT: 2289 (2208,37) -EQUAL(f(b,f(g(d),h)),f(k,g(b))). ** KEPT: 2290 (2208,3) EQUAL(f(b,f(g(d),h)),e). ---> New Demodulator: 2291 (2290) EQUAL(f(b,f(g(d),h)),e). >>>> Starting back demodulation with: 2248 (2247) EQUAL(f(b,f(f(g(d),h),a)),a). >>>> Starting back demodulation with: 2250 (2249) EQUAL(f(f(g(d),h),f(b,a)),a). >>>> Starting back demodulation with: 2252 (2251) EQUAL(f(f(b,f(g(d),h)),b),b). >>>> Starting back demodulation with: 2254 (2253) EQUAL(f(f(g(d),h),f(b,d)),d). >>>> Starting back demodulation with: 2256 (2255) EQUAL(f(b,f(f(g(d),h),d)),d). >>>> Starting back demodulation with: 2258 (2257) EQUAL(f(f(g(d),h),f(b,h)),h). >>>> Starting back demodulation with: 2260 (2259) EQUAL(f(b,f(f(g(d),h),h)),h). >>>> Starting back demodulation with: 2262 (2261) EQUAL(f(f(b,b),f(g(d),h)),b). >>>> Starting back demodulation with: 2264 (2263) EQUAL(f(f(a,f(g(d),h)),b),a). >>>> Starting back demodulation with: 2266 (2265) EQUAL(f(f(a,b),f(g(d),h)),a). >>>> Starting back demodulation with: 2268 (2267) EQUAL(f(f(g(d),h),f(b,b)),b). >>>> Starting back demodulation with: 2270 (2269) EQUAL(f(f(d,b),f(g(d),h)),d). >>>> Starting back demodulation with: 2272 (2271) EQUAL(f(f(b,f(g(d),h)),a),a). >>>> Starting back demodulation with: 2274 (2273) EQUAL(f(b,f(b,f(g(d),h))),b). >>>> Starting back demodulation with: 2276 (2275) EQUAL(f(f(b,f(g(d),h)),d),d). >>>> Starting back demodulation with: 2278 (2277) EQUAL(f(f(b,f(g(d),h)),h),h). >>>> Starting back demodulation with: 2280 (2279) EQUAL(f(a,f(b,f(g(d),h))),a). >>>> Starting back demodulation with: 2282 (2281) EQUAL(f(a,g(f(b,f(g(d),h)))),a). >>>> Starting back demodulation with: 2284 (2283) EQUAL(f(g(f(b,f(g(d),h))),b),b). >>>> Starting back demodulation with: 2286 (2285) EQUAL(f(d,g(f(b,f(g(d),h)))),d). >>>> Starting back demodulation with: 2288 (2287) EQUAL(f(d,f(b,f(g(d),h))),d). >>>> Starting back demodulation with: 2291 (2290) EQUAL(f(b,f(g(d),h)),e). >> back demodulating: 1183 (73,1133) EQUAL(f(h,f(b,f(g(d),h))),h). >> back demodulating: 1184 (1183) EQUAL(f(h,f(b,f(g(d),h))),h). >> back demodulating: 2251 (2208,1719) EQUAL(f(f(b,f(g(d),h)),b),b). >> back demodulating: 2252 (2251) EQUAL(f(f(b,f(g(d),h)),b),b). >> back demodulating: 2271 (2208,2011) EQUAL(f(f(b,f(g(d),h)),a),a). >> back demodulating: 2272 (2271) EQUAL(f(f(b,f(g(d),h)),a),a). >> back demodulating: 2273 (2208,1579) EQUAL(f(b,f(b,f(g(d),h))),b). >> back demodulating: 2274 (2273) EQUAL(f(b,f(b,f(g(d),h))),b). >> back demodulating: 2275 (2208,1127) EQUAL(f(f(b,f(g(d),h)),d),d). >> back demodulating: 2276 (2275) EQUAL(f(f(b,f(g(d),h)),d),d). >> back demodulating: 2277 (2208,1065) EQUAL(f(f(b,f(g(d),h)),h),h). >> back demodulating: 2278 (2277) EQUAL(f(f(b,f(g(d),h)),h),h). >> back demodulating: 2279 (2208,477) EQUAL(f(a,f(b,f(g(d),h))),a). >> back demodulating: 2280 (2279) EQUAL(f(a,f(b,f(g(d),h))),a). >> back demodulating: 2281 (2208,564) EQUAL(f(a,g(f(b,f(g(d),h)))),a). >> back demodulating: 2282 (2281) EQUAL(f(a,g(f(b,f(g(d),h)))),a). >> back demodulating: 2283 (2208,282) EQUAL(f(g(f(b,f(g(d),h))),b),b). >> back demodulating: 2284 (2283) EQUAL(f(g(f(b,f(g(d),h))),b),b). >> back demodulating: 2285 (2208,137) EQUAL(f(d,g(f(b,f(g(d),h)))),d). >> back demodulating: 2286 (2285) EQUAL(f(d,g(f(b,f(g(d),h)))),d). >> back demodulating: 2287 (2208,82) EQUAL(f(d,f(b,f(g(d),h))),d). >> back demodulating: 2288 (2287) EQUAL(f(d,f(b,f(g(d),h))),d). >> back demodulating: 2289 (2208,37) -EQUAL(f(b,f(g(d),h)),f(k,g(b))). new given clause: 2290 (2208,3) EQUAL(f(b,f(g(d),h)),e). ** KEPT: 2292 (8,2290) EQUAL(f(b,f(g(f(c,g(a))),h)),e). ---> New Demodulator: 2293 (2292) EQUAL(f(b,f(g(f(c,g(a))),h)),e). ** KEPT: 2294 (9,2290) EQUAL(f(b,f(g(d),f(d,g(b)))),e). ---> New Demodulator: 2295 (2294) EQUAL(f(b,f(g(d),f(d,g(b)))),e). ** KEPT: 2296 (5,2290) EQUAL(f(f(b,g(d)),h),e). ---> New Demodulator: 2297 (2296) EQUAL(f(f(b,g(d)),h),e). >>>> Starting back demodulation with: 2293 (2292) EQUAL(f(b,f(g(f(c,g(a))),h)),e). >>>> Starting back demodulation with: 2295 (2294) EQUAL(f(b,f(g(d),f(d,g(b)))),e). >>>> Starting back demodulation with: 2297 (2296) EQUAL(f(f(b,g(d)),h),e). >> back demodulating: 1771 (72,1725) EQUAL(f(f(f(b,g(d)),h),b),b). >> back demodulating: 1772 (1771) EQUAL(f(f(f(b,g(d)),h),b),b). ** KEPT: 2298 (2290,16) EQUAL(f(c,f(g(d),h)),f(a,e)). ** KEPT: 2299 (2290,5) EQUAL(f(f(x,b),f(g(d),h)),f(x,e)). ** KEPT: 2300 (2290,5) EQUAL(f(b,f(f(g(d),h),x)),f(e,x)). new given clause: 2296 (5,2290) EQUAL(f(f(b,g(d)),h),e). ** KEPT: 2301 (8,2296) EQUAL(f(f(b,g(f(c,g(a)))),h),e). ---> New Demodulator: 2302 (2301) EQUAL(f(f(b,g(f(c,g(a)))),h),e). ** KEPT: 2303 (9,2296) EQUAL(f(f(b,g(d)),f(d,g(b))),e). ---> New Demodulator: 2304 (2303) EQUAL(f(f(b,g(d)),f(d,g(b))),e). >>>> Starting back demodulation with: 2302 (2301) EQUAL(f(f(b,g(f(c,g(a)))),h),e). >>>> Starting back demodulation with: 2304 (2303) EQUAL(f(f(b,g(d)),f(d,g(b))),e). ** KEPT: 2305 (2296,1125) EQUAL(f(g(f(b,g(d))),e),h). ---> New Demodulator: 2306 (2305) EQUAL(f(g(f(b,g(d))),e),h). ** KEPT: 2307 (2296,5) EQUAL(f(f(x,f(b,g(d))),h),f(x,e)). ** KEPT: 2308 (2296,5) EQUAL(f(f(b,g(d)),f(h,x)),f(e,x)). >>>> Starting back demodulation with: 2306 (2305) EQUAL(f(g(f(b,g(d))),e),h). new given clause: 750 (667,73) EQUAL(f(h,f(b,b)),f(k,d)). ** KEPT: 2309 (9,750) EQUAL(f(f(d,g(b)),f(b,b)),f(k,d)). ** KEPT: 2310 (239,750) EQUAL(f(h,f(f(b,e),b)),f(k,d)). ** KEPT: 2311 (8,750) EQUAL(f(k,f(c,g(a))),f(h,f(b,b))). ** KEPT: 2312 (131,750) EQUAL(f(h,f(b,b)),f(f(k,k),h)). ** KEPT: 2313 (750,132) EQUAL(f(k,f(k,d)),f(d,f(b,b))). ** KEPT: 2314 (750,5) EQUAL(f(f(x,h),f(b,b)),f(x,f(k,d))). ** KEPT: 2315 (750,5) EQUAL(f(h,f(f(b,b),x)),f(f(k,d),x)). ** KEPT: 2316 (750,5) EQUAL(f(x,f(h,f(b,b))),f(f(x,k),d)). ** KEPT: 2317 (750,5) EQUAL(f(f(h,f(b,b)),x),f(k,f(d,x))). new given clause: 861 (5,92) EQUAL(f(f(d,e),x),f(d,x)). ** KEPT: 2318 (2120,861) EQUAL(f(d,f(g(f(d,e)),a)),a). ---> New Demodulator: 2319 (2318) EQUAL(f(d,f(g(f(d,e)),a)),a). ** KEPT: 2320 (163,861) EQUAL(f(d,f(a,b)),f(f(d,e),c)). ** KEPT: 2321 (1197,861) EQUAL(f(d,f(g(f(d,e)),d)),d). ---> New Demodulator: 2322 (2321) EQUAL(f(d,f(g(f(d,e)),d)),d). ** KEPT: 2323 (1133,861) EQUAL(f(d,f(g(f(d,e)),h)),h). ---> New Demodulator: 2324 (2323) EQUAL(f(d,f(g(f(d,e)),h)),h). ** KEPT: 2325 (131,861) EQUAL(f(f(f(d,e),k),h),f(d,d)). ** KEPT: 2326 (72,861) EQUAL(f(f(f(d,e),h),b),f(d,d)). ** KEPT: 2327 (266,861) EQUAL(f(d,f(g(f(d,e)),b)),b). ---> New Demodulator: 2328 (2327) EQUAL(f(d,f(g(f(d,e)),b)),b). ** KEPT: 2329 (15,861) EQUAL(f(f(f(d,e),a),b),f(d,c)). ** KEPT: 2330 (5,861) EQUAL(f(f(f(d,e),x),y),f(d,f(x,y))). ** KEPT: 2331 (4,861) EQUAL(f(d,g(f(d,e))),e). ---> New Demodulator: 2332 (2331) EQUAL(f(d,g(f(d,e))),e). ** KEPT: 2333 (8,861) EQUAL(f(f(c,g(a)),x),f(f(d,e),x)). ** KEPT: 2334 (580,861) EQUAL(f(f(d,e),g(f(b,g(a)))),a). ---> New Demodulator: 2335 (2334) EQUAL(f(f(d,e),g(f(b,g(a)))),a). ** KEPT: 2336 (2120,861) EQUAL(f(f(d,e),f(g(d),a)),a). ---> New Demodulator: 2337 (2336) EQUAL(f(f(d,e),f(g(d),a)),a). ** KEPT: 2338 (137,861) EQUAL(f(f(d,e),g(f(g(x),x))),d). ---> New Demodulator: 2339 (2338) EQUAL(f(f(d,e),g(f(g(x),x))),d). ** KEPT: 2340 (135,861) EQUAL(f(f(d,e),g(f(x,g(x)))),d). ---> New Demodulator: 2341 (2340) EQUAL(f(f(d,e),g(f(x,g(x)))),d). ** KEPT: 2342 (132,861) EQUAL(f(k,f(h,x)),f(f(d,e),x)). ** KEPT: 2343 (1133,861) EQUAL(f(f(d,e),f(g(d),h)),h). ---> New Demodulator: 2344 (2343) EQUAL(f(f(d,e),f(g(d),h)),h). ** KEPT: 2345 (131,861) EQUAL(f(f(d,k),h),f(f(d,e),d)). ** KEPT: 2346 (883,861) EQUAL(f(f(d,e),f(e,g(d))),e). ---> New Demodulator: 2347 (2346) EQUAL(f(f(d,e),f(e,g(d))),e). ** KEPT: 2348 (880,861) EQUAL(f(f(d,e),f(e,g(b))),h). ---> New Demodulator: 2349 (2348) EQUAL(f(f(d,e),f(e,g(b))),h). ** KEPT: 2350 (878,861) EQUAL(f(f(d,e),f(e,g(h))),k). ---> New Demodulator: 2351 (2350) EQUAL(f(f(d,e),f(e,g(h))),k). ** KEPT: 2352 (885,861) EQUAL(f(f(d,e),f(e,e)),d). ---> New Demodulator: 2353 (2352) EQUAL(f(f(d,e),f(e,e)),d). ** KEPT: 2354 (92,861) EQUAL(f(d,f(e,x)),f(f(d,e),x)). ** KEPT: 2355 (840,861) EQUAL(f(f(d,e),g(f(h,e))),k). ---> New Demodulator: 2356 (2355) EQUAL(f(f(d,e),g(f(h,e))),k). ** KEPT: 2357 (73,861) EQUAL(f(h,f(b,x)),f(f(d,e),x)). ** KEPT: 2358 (72,861) EQUAL(f(f(d,h),b),f(f(d,e),d)). ** KEPT: 2359 (266,861) EQUAL(f(f(d,e),f(g(d),b)),b). ---> New Demodulator: 2360 (2359) EQUAL(f(f(d,e),f(g(d),b)),b). ** KEPT: 2361 (15,861) EQUAL(f(f(d,a),b),f(f(d,e),c)). ** KEPT: 2362 (5,861) EQUAL(f(f(d,e),f(x,y)),f(f(d,x),y)). >>>> Starting back demodulation with: 2319 (2318) EQUAL(f(d,f(g(f(d,e)),a)),a). >>>> Starting back demodulation with: 2322 (2321) EQUAL(f(d,f(g(f(d,e)),d)),d). >>>> Starting back demodulation with: 2324 (2323) EQUAL(f(d,f(g(f(d,e)),h)),h). >>>> Starting back demodulation with: 2328 (2327) EQUAL(f(d,f(g(f(d,e)),b)),b). >>>> Starting back demodulation with: 2332 (2331) EQUAL(f(d,g(f(d,e))),e). >>>> Starting back demodulation with: 2335 (2334) EQUAL(f(f(d,e),g(f(b,g(a)))),a). >>>> Starting back demodulation with: 2337 (2336) EQUAL(f(f(d,e),f(g(d),a)),a). >>>> Starting back demodulation with: 2339 (2338) EQUAL(f(f(d,e),g(f(g(x),x))),d). >>>> Starting back demodulation with: 2341 (2340) EQUAL(f(f(d,e),g(f(x,g(x)))),d). >>>> Starting back demodulation with: 2344 (2343) EQUAL(f(f(d,e),f(g(d),h)),h). >>>> Starting back demodulation with: 2347 (2346) EQUAL(f(f(d,e),f(e,g(d))),e). >>>> Starting back demodulation with: 2349 (2348) EQUAL(f(f(d,e),f(e,g(b))),h). >>>> Starting back demodulation with: 2351 (2350) EQUAL(f(f(d,e),f(e,g(h))),k). >>>> Starting back demodulation with: 2353 (2352) EQUAL(f(f(d,e),f(e,e)),d). 2354 back subsumes: 1450 (92,239) EQUAL(f(d,f(e,b)),f(f(d,e),b)). >>>> Starting back demodulation with: 2356 (2355) EQUAL(f(f(d,e),g(f(h,e))),k). 2357 back subsumes: 1453 (73,239) EQUAL(f(h,f(b,b)),f(f(d,e),b)). >>>> Starting back demodulation with: 2360 (2359) EQUAL(f(f(d,e),f(g(d),b)),b). ** KEPT: 2363 (861,1175) EQUAL(f(g(f(d,e)),f(d,d)),d). ---> New Demodulator: 2364 (2363) EQUAL(f(g(f(d,e)),f(d,d)),d). ** KEPT: 2365 (861,1125) EQUAL(f(g(f(d,e)),f(d,h)),h). ---> New Demodulator: 2366 (2365) EQUAL(f(g(f(d,e)),f(d,h)),h). ** KEPT: 2367 (861,2126) EQUAL(f(g(f(d,e)),f(d,a)),a). ---> New Demodulator: 2368 (2367) EQUAL(f(g(f(d,e)),f(d,a)),a). ** KEPT: 2369 (861,5) EQUAL(f(f(x,f(d,e)),y),f(x,f(d,y))). ** KEPT: 2370 (861,1175) EQUAL(f(g(d),f(f(d,e),d)),d). ---> New Demodulator: 2371 (2370) EQUAL(f(g(d),f(f(d,e),d)),d). ** KEPT: 2372 (861,1125) EQUAL(f(g(d),f(f(d,e),h)),h). ---> New Demodulator: 2373 (2372) EQUAL(f(g(d),f(f(d,e),h)),h). ** KEPT: 2374 (861,2126) EQUAL(f(g(d),f(f(d,e),a)),a). ---> New Demodulator: 2375 (2374) EQUAL(f(g(d),f(f(d,e),a)),a). ** KEPT: 2376 (861,113) EQUAL(f(f(f(d,e),x),g(x)),d). ---> New Demodulator: 2377 (2376) EQUAL(f(f(f(d,e),x),g(x)),d). ** KEPT: 2378 (861,105) EQUAL(f(f(f(d,e),g(x)),x),d). ---> New Demodulator: 2379 (2378) EQUAL(f(f(f(d,e),g(x)),x),d). ** KEPT: 2380 (861,5) EQUAL(f(x,f(f(d,e),y)),f(f(x,d),y)). >>>> Starting back demodulation with: 2364 (2363) EQUAL(f(g(f(d,e)),f(d,d)),d). >>>> Starting back demodulation with: 2366 (2365) EQUAL(f(g(f(d,e)),f(d,h)),h). >>>> Starting back demodulation with: 2368 (2367) EQUAL(f(g(f(d,e)),f(d,a)),a). >>>> Starting back demodulation with: 2371 (2370) EQUAL(f(g(d),f(f(d,e),d)),d). >>>> Starting back demodulation with: 2373 (2372) EQUAL(f(g(d),f(f(d,e),h)),h). >>>> Starting back demodulation with: 2375 (2374) EQUAL(f(g(d),f(f(d,e),a)),a). >>>> Starting back demodulation with: 2377 (2376) EQUAL(f(f(f(d,e),x),g(x)),d). >> back demodulating: 1488 (1487) EQUAL(f(f(f(d,e),b),g(b)),d). >> back demodulating: 1487 (239,113) EQUAL(f(f(f(d,e),b),g(b)),d). >>>> Starting back demodulation with: 2379 (2378) EQUAL(f(f(f(d,e),g(x)),x),d). new given clause: 2331 (4,861) EQUAL(f(d,g(f(d,e))),e). ** KEPT: 2381 (8,2331) EQUAL(f(f(c,g(a)),g(f(d,e))),e). ---> New Demodulator: 2382 (2381) EQUAL(f(f(c,g(a)),g(f(d,e))),e). ** KEPT: 2383 (132,2331) EQUAL(f(k,f(h,g(f(d,e)))),e). ---> New Demodulator: 2384 (2383) EQUAL(f(k,f(h,g(f(d,e)))),e). ** KEPT: 2385 (92,2331) EQUAL(f(d,f(e,g(f(d,e)))),e). ---> New Demodulator: 2386 (2385) EQUAL(f(d,f(e,g(f(d,e)))),e). ** KEPT: 2387 (73,2331) EQUAL(f(h,f(b,g(f(d,e)))),e). ---> New Demodulator: 2388 (2387) EQUAL(f(h,f(b,g(f(d,e)))),e). >>>> Starting back demodulation with: 2382 (2381) EQUAL(f(f(c,g(a)),g(f(d,e))),e). >>>> Starting back demodulation with: 2384 (2383) EQUAL(f(k,f(h,g(f(d,e)))),e). >>>> Starting back demodulation with: 2386 (2385) EQUAL(f(d,f(e,g(f(d,e)))),e). >>>> Starting back demodulation with: 2388 (2387) EQUAL(f(h,f(b,g(f(d,e)))),e). ** KEPT: 2389 (2331,113,14) EQUAL(f(e,f(d,e)),d). ---> New Demodulator: 2390 (2389) EQUAL(f(e,f(d,e)),d). ** KEPT: 2391 (2331,5) EQUAL(f(f(x,d),g(f(d,e))),f(x,e)). ** KEPT: 2392 (2331,5) EQUAL(f(d,f(g(f(d,e)),x)),f(e,x)). >>>> Starting back demodulation with: 2390 (2389) EQUAL(f(e,f(d,e)),d). new given clause: 2389 (2331,113,14) EQUAL(f(e,f(d,e)),d). ** KEPT: 2393 (4,2389) EQUAL(f(f(x,g(x)),f(d,e)),d). ---> New Demodulator: 2394 (2393) EQUAL(f(f(x,g(x)),f(d,e)),d). ** KEPT: 2395 (3,2389) EQUAL(f(f(g(x),x),f(d,e)),d). ---> New Demodulator: 2396 (2395) EQUAL(f(f(g(x),x),f(d,e)),d). ** KEPT: 2397 (5,2389) EQUAL(f(f(e,d),e),d). ---> New Demodulator: 2398 (2397) EQUAL(f(f(e,d),e),d). >>>> Starting back demodulation with: 2394 (2393) EQUAL(f(f(x,g(x)),f(d,e)),d). >>>> Starting back demodulation with: 2396 (2395) EQUAL(f(f(g(x),x),f(d,e)),d). >>>> Starting back demodulation with: 2398 (2397) EQUAL(f(f(e,d),e),d). ** KEPT: 2399 (2389,483) EQUAL(f(a,f(d,e)),f(a,d)). ** KEPT: 2400 (2389,92) EQUAL(f(d,f(d,e)),f(d,d)). ** KEPT: 2401 (2389,5) EQUAL(f(f(x,e),f(d,e)),f(x,d)). ** KEPT: 2402 (2389,5) EQUAL(f(e,f(f(d,e),x)),f(d,x)). new given clause: 2397 (5,2389) EQUAL(f(f(e,d),e),d). ** KEPT: 2403 (4,2397) EQUAL(f(f(e,d),f(x,g(x))),d). ---> New Demodulator: 2404 (2403) EQUAL(f(f(e,d),f(x,g(x))),d). ** KEPT: 2405 (3,2397) EQUAL(f(f(e,d),f(g(x),x)),d). ---> New Demodulator: 2406 (2405) EQUAL(f(f(e,d),f(g(x),x)),d). >>>> Starting back demodulation with: 2404 (2403) EQUAL(f(f(e,d),f(x,g(x))),d). >>>> Starting back demodulation with: 2406 (2405) EQUAL(f(f(e,d),f(g(x),x)),d). ** KEPT: 2407 (2397,239) EQUAL(f(f(e,d),b),f(d,b)). ** KEPT: 2408 (2397,5) EQUAL(f(f(x,f(e,d)),e),f(x,d)). ** KEPT: 2409 (2397,5) EQUAL(f(f(e,d),f(e,x)),f(d,x)). new given clause: 869 (667,92) EQUAL(f(d,f(e,b)),f(k,d)). ** KEPT: 2410 (8,869) EQUAL(f(f(c,g(a)),f(e,b)),f(k,d)). ** KEPT: 2411 (861,869) EQUAL(f(f(d,e),f(e,b)),f(k,d)). ** KEPT: 2412 (73,869) EQUAL(f(h,f(b,f(e,b))),f(k,d)). ** KEPT: 2413 (8,869) EQUAL(f(k,f(c,g(a))),f(d,f(e,b))). ** KEPT: 2414 (131,869) EQUAL(f(d,f(e,b)),f(f(k,k),h)). ** KEPT: 2415 (869,113) EQUAL(f(f(k,d),g(f(e,b))),d). ---> New Demodulator: 2416 (2415) EQUAL(f(f(k,d),g(f(e,b))),d). ** KEPT: 2417 (869,5) EQUAL(f(f(x,d),f(e,b)),f(x,f(k,d))). ** KEPT: 2418 (869,5) EQUAL(f(d,f(f(e,b),x)),f(f(k,d),x)). ** KEPT: 2419 (869,5) EQUAL(f(x,f(d,f(e,b))),f(f(x,k),d)). ** KEPT: 2420 (869,5) EQUAL(f(f(d,f(e,b)),x),f(k,f(d,x))). >>>> Starting back demodulation with: 2416 (2415) EQUAL(f(f(k,d),g(f(e,b))),d). new given clause: 905 (92,885) EQUAL(f(d,f(e,f(e,e))),d). ** KEPT: 2421 (8,905) EQUAL(f(f(c,g(a)),f(e,f(e,e))),d). ---> New Demodulator: 2422 (2421) EQUAL(f(f(c,g(a)),f(e,f(e,e))),d). ** KEPT: 2423 (4,905) EQUAL(f(d,f(f(x,g(x)),f(e,e))),d). ---> New Demodulator: 2424 (2423) EQUAL(f(d,f(f(x,g(x)),f(e,e))),d). ** KEPT: 2425 (3,905) EQUAL(f(d,f(f(g(x),x),f(e,e))),d). ---> New Demodulator: 2426 (2425) EQUAL(f(d,f(f(g(x),x),f(e,e))),d). ** KEPT: 2427 (4,905) EQUAL(f(d,f(e,f(f(x,g(x)),e))),d). ---> New Demodulator: 2428 (2427) EQUAL(f(d,f(e,f(f(x,g(x)),e))),d). ** KEPT: 2429 (3,905) EQUAL(f(d,f(e,f(f(g(x),x),e))),d). ---> New Demodulator: 2430 (2429) EQUAL(f(d,f(e,f(f(g(x),x),e))),d). ** KEPT: 2431 (4,905) EQUAL(f(d,f(e,f(e,f(x,g(x))))),d). ---> New Demodulator: 2432 (2431) EQUAL(f(d,f(e,f(e,f(x,g(x))))),d). ** KEPT: 2433 (3,905) EQUAL(f(d,f(e,f(e,f(g(x),x)))),d). ---> New Demodulator: 2434 (2433) EQUAL(f(d,f(e,f(e,f(g(x),x)))),d). ** KEPT: 2435 (5,905) EQUAL(f(d,f(f(e,e),e)),d). ---> New Demodulator: 2436 (2435) EQUAL(f(d,f(f(e,e),e)),d). ** KEPT: 2437 (861,905) EQUAL(f(f(d,e),f(e,f(e,e))),d). ---> New Demodulator: 2438 (2437) EQUAL(f(f(d,e),f(e,f(e,e))),d). ** KEPT: 2439 (132,905) EQUAL(f(k,f(h,f(e,f(e,e)))),d). ---> New Demodulator: 2440 (2439) EQUAL(f(k,f(h,f(e,f(e,e)))),d). ** KEPT: 2441 (92,905) EQUAL(f(d,f(e,f(e,f(e,e)))),d). ---> New Demodulator: 2442 (2441) EQUAL(f(d,f(e,f(e,f(e,e)))),d). ** KEPT: 2443 (73,905) EQUAL(f(h,f(b,f(e,f(e,e)))),d). ---> New Demodulator: 2444 (2443) EQUAL(f(h,f(b,f(e,f(e,e)))),d). >>>> Starting back demodulation with: 2422 (2421) EQUAL(f(f(c,g(a)),f(e,f(e,e))),d). >>>> Starting back demodulation with: 2424 (2423) EQUAL(f(d,f(f(x,g(x)),f(e,e))),d). >>>> Starting back demodulation with: 2426 (2425) EQUAL(f(d,f(f(g(x),x),f(e,e))),d). >>>> Starting back demodulation with: 2428 (2427) EQUAL(f(d,f(e,f(f(x,g(x)),e))),d). >>>> Starting back demodulation with: 2430 (2429) EQUAL(f(d,f(e,f(f(g(x),x),e))),d). >>>> Starting back demodulation with: 2432 (2431) EQUAL(f(d,f(e,f(e,f(x,g(x))))),d). >>>> Starting back demodulation with: 2434 (2433) EQUAL(f(d,f(e,f(e,f(g(x),x)))),d). >>>> Starting back demodulation with: 2436 (2435) EQUAL(f(d,f(f(e,e),e)),d). >>>> Starting back demodulation with: 2438 (2437) EQUAL(f(f(d,e),f(e,f(e,e))),d). >>>> Starting back demodulation with: 2440 (2439) EQUAL(f(k,f(h,f(e,f(e,e)))),d). >>>> Starting back demodulation with: 2442 (2441) EQUAL(f(d,f(e,f(e,f(e,e)))),d). >>>> Starting back demodulation with: 2444 (2443) EQUAL(f(h,f(b,f(e,f(e,e)))),d). ** KEPT: 2445 (905,113) EQUAL(f(d,g(f(e,f(e,e)))),d). ---> New Demodulator: 2446 (2445) EQUAL(f(d,g(f(e,f(e,e)))),d). ** KEPT: 2447 (905,5) EQUAL(f(f(x,d),f(e,f(e,e))),f(x,d)). ** KEPT: 2448 (905,5) EQUAL(f(d,f(f(e,f(e,e)),x)),f(d,x)). >>>> Starting back demodulation with: 2446 (2445) EQUAL(f(d,g(f(e,f(e,e)))),d). new given clause: 907 (73,885) EQUAL(f(h,f(b,f(e,e))),d). ** KEPT: 2449 (9,907) EQUAL(f(f(d,g(b)),f(b,f(e,e))),d). ---> New Demodulator: 2450 (2449) EQUAL(f(f(d,g(b)),f(b,f(e,e))),d). ** KEPT: 2451 (4,907) EQUAL(f(h,f(b,f(f(x,g(x)),e))),d). ---> New Demodulator: 2452 (2451) EQUAL(f(h,f(b,f(f(x,g(x)),e))),d). ** KEPT: 2453 (3,907) EQUAL(f(h,f(b,f(f(g(x),x),e))),d). ---> New Demodulator: 2454 (2453) EQUAL(f(h,f(b,f(f(g(x),x),e))),d). ** KEPT: 2455 (4,907) EQUAL(f(h,f(b,f(e,f(x,g(x))))),d). ---> New Demodulator: 2456 (2455) EQUAL(f(h,f(b,f(e,f(x,g(x))))),d). ** KEPT: 2457 (3,907) EQUAL(f(h,f(b,f(e,f(g(x),x)))),d). ---> New Demodulator: 2458 (2457) EQUAL(f(h,f(b,f(e,f(g(x),x)))),d). >>>> Starting back demodulation with: 2450 (2449) EQUAL(f(f(d,g(b)),f(b,f(e,e))),d). >>>> Starting back demodulation with: 2452 (2451) EQUAL(f(h,f(b,f(f(x,g(x)),e))),d). >>>> Starting back demodulation with: 2454 (2453) EQUAL(f(h,f(b,f(f(g(x),x),e))),d). >>>> Starting back demodulation with: 2456 (2455) EQUAL(f(h,f(b,f(e,f(x,g(x))))),d). >>>> Starting back demodulation with: 2458 (2457) EQUAL(f(h,f(b,f(e,f(g(x),x)))),d). ** KEPT: 2459 (907,132) EQUAL(f(d,f(b,f(e,e))),f(k,d)). ** KEPT: 2460 (907,5) EQUAL(f(f(x,h),f(b,f(e,e))),f(x,d)). ** KEPT: 2461 (907,5) EQUAL(f(h,f(f(b,f(e,e)),x)),f(d,x)). new given clause: 933 (878,113) EQUAL(f(k,g(f(e,g(h)))),d). ** KEPT: 2462 (4,933) EQUAL(f(k,g(f(f(x,g(x)),g(h)))),d). ---> New Demodulator: 2463 (2462) EQUAL(f(k,g(f(f(x,g(x)),g(h)))),d). ** KEPT: 2464 (3,933) EQUAL(f(k,g(f(f(g(x),x),g(h)))),d). ---> New Demodulator: 2465 (2464) EQUAL(f(k,g(f(f(g(x),x),g(h)))),d). ** KEPT: 2466 (9,933) EQUAL(f(k,g(f(e,g(f(d,g(b)))))),d). ---> New Demodulator: 2467 (2466) EQUAL(f(k,g(f(e,g(f(d,g(b)))))),d). >>>> Starting back demodulation with: 2463 (2462) EQUAL(f(k,g(f(f(x,g(x)),g(h)))),d). >>>> Starting back demodulation with: 2465 (2464) EQUAL(f(k,g(f(f(g(x),x),g(h)))),d). >>>> Starting back demodulation with: 2467 (2466) EQUAL(f(k,g(f(e,g(f(d,g(b)))))),d). ** KEPT: 2468 (933,5) EQUAL(f(f(x,k),g(f(e,g(h)))),f(x,d)). ** KEPT: 2469 (933,5) EQUAL(f(k,f(g(f(e,g(h))),x)),f(d,x)). new given clause: 949 (880,113) EQUAL(f(h,g(f(e,g(b)))),d). ** KEPT: 2470 (4,949) EQUAL(f(h,g(f(f(x,g(x)),g(b)))),d). ---> New Demodulator: 2471 (2470) EQUAL(f(h,g(f(f(x,g(x)),g(b)))),d). ** KEPT: 2472 (3,949) EQUAL(f(h,g(f(f(g(x),x),g(b)))),d). ---> New Demodulator: 2473 (2472) EQUAL(f(h,g(f(f(g(x),x),g(b)))),d). >>>> Starting back demodulation with: 2471 (2470) EQUAL(f(h,g(f(f(x,g(x)),g(b)))),d). >>>> Starting back demodulation with: 2473 (2472) EQUAL(f(h,g(f(f(g(x),x),g(b)))),d). ** KEPT: 2474 (949,132) EQUAL(f(d,g(f(e,g(b)))),f(k,d)). ** KEPT: 2475 (949,5) EQUAL(f(f(x,h),g(f(e,g(b)))),f(x,d)). ** KEPT: 2476 (949,5) EQUAL(f(h,f(g(f(e,g(b))),x)),f(d,x)). new given clause: 967 (883,113) EQUAL(f(e,g(f(e,g(d)))),d). ** KEPT: 2477 (4,967) EQUAL(f(f(x,g(x)),g(f(e,g(d)))),d). ---> New Demodulator: 2478 (2477) EQUAL(f(f(x,g(x)),g(f(e,g(d)))),d). ** KEPT: 2479 (3,967) EQUAL(f(f(g(x),x),g(f(e,g(d)))),d). ---> New Demodulator: 2480 (2479) EQUAL(f(f(g(x),x),g(f(e,g(d)))),d). ** KEPT: 2481 (4,967) EQUAL(f(e,g(f(f(x,g(x)),g(d)))),d). ---> New Demodulator: 2482 (2481) EQUAL(f(e,g(f(f(x,g(x)),g(d)))),d). ** KEPT: 2483 (3,967) EQUAL(f(e,g(f(f(g(x),x),g(d)))),d). ---> New Demodulator: 2484 (2483) EQUAL(f(e,g(f(f(g(x),x),g(d)))),d). ** KEPT: 2485 (8,967) EQUAL(f(e,g(f(e,g(f(c,g(a)))))),d). ---> New Demodulator: 2486 (2485) EQUAL(f(e,g(f(e,g(f(c,g(a)))))),d). ** KEPT: 2487 (1,967) EQUAL(g(f(e,g(d))),d). ---> New Demodulator: 2488 (2487) EQUAL(g(f(e,g(d))),d). ** KEPT: 2489 (8,967,2488) EQUAL(f(c,g(a)),f(e,d)). >>>> Starting back demodulation with: 2478 (2477) EQUAL(f(f(x,g(x)),g(f(e,g(d)))),d). >>>> Starting back demodulation with: 2480 (2479) EQUAL(f(f(g(x),x),g(f(e,g(d)))),d). >>>> Starting back demodulation with: 2482 (2481) EQUAL(f(e,g(f(f(x,g(x)),g(d)))),d). >>>> Starting back demodulation with: 2484 (2483) EQUAL(f(e,g(f(f(g(x),x),g(d)))),d). >>>> Starting back demodulation with: 2486 (2485) EQUAL(f(e,g(f(e,g(f(c,g(a)))))),d). >>>> Starting back demodulation with: 2488 (2487) EQUAL(g(f(e,g(d))),d). >> back demodulating: 967 (883,113) EQUAL(f(e,g(f(e,g(d)))),d). >> back demodulating: 968 (967) EQUAL(f(e,g(f(e,g(d)))),d). >> back demodulating: 2477 (4,967) EQUAL(f(f(x,g(x)),g(f(e,g(d)))),d). >> back demodulating: 2478 (2477) EQUAL(f(f(x,g(x)),g(f(e,g(d)))),d). >> back demodulating: 2479 (3,967) EQUAL(f(f(g(x),x),g(f(e,g(d)))),d). >> back demodulating: 2480 (2479) EQUAL(f(f(g(x),x),g(f(e,g(d)))),d). ** KEPT: 2490 (967,5,2488) EQUAL(f(f(x,e),d),f(x,d)). ** KEPT: 2491 (967,2331,2488) EQUAL(f(f(e,d),g(f(d,e))),e). ---> New Demodulator: 2492 (2491) EQUAL(f(f(e,d),g(f(d,e))),e). ** KEPT: 2493 (967,1197,2488) EQUAL(f(x,f(g(x),f(e,d))),d). ---> New Demodulator: 2494 (2493) EQUAL(f(x,f(g(x),f(e,d))),d). ** KEPT: 2495 (967,1135,2488) EQUAL(f(f(x,g(x)),f(e,d)),d). ---> New Demodulator: 2496 (2495) EQUAL(f(f(x,g(x)),f(e,d)),d). ** KEPT: 2497 (967,1127,2488) EQUAL(f(f(g(x),x),f(e,d)),d). ---> New Demodulator: 2498 (2497) EQUAL(f(f(g(x),x),f(e,d)),d). ** KEPT: 2499 (967,1061,2488) EQUAL(f(g(k),f(e,d)),h). ---> New Demodulator: 2500 (2499) EQUAL(f(g(k),f(e,d)),h). ** KEPT: 2501 (967,911,2488) EQUAL(f(f(e,d),g(f(e,e))),d). ---> New Demodulator: 2502 (2501) EQUAL(f(f(e,d),g(f(e,e))),d). ** KEPT: 2503 (967,905,2488) EQUAL(f(f(e,d),f(e,f(e,e))),d). ---> New Demodulator: 2504 (2503) EQUAL(f(f(e,d),f(e,f(e,e))),d). ** KEPT: 2505 (967,885,2488) EQUAL(f(f(e,d),f(e,e)),d). ---> New Demodulator: 2506 (2505) EQUAL(f(f(e,d),f(e,e)),d). ** KEPT: 2507 (967,883,2488) EQUAL(f(f(e,d),f(e,g(d))),e). ---> New Demodulator: 2508 (2507) EQUAL(f(f(e,d),f(e,g(d))),e). ** KEPT: 2509 (967,880,2488) EQUAL(f(f(e,d),f(e,g(b))),h). ---> New Demodulator: 2510 (2509) EQUAL(f(f(e,d),f(e,g(b))),h). ** KEPT: 2511 (967,878,2488) EQUAL(f(f(e,d),f(e,g(h))),k). ---> New Demodulator: 2512 (2511) EQUAL(f(f(e,d),f(e,g(h))),k). ** KEPT: 2513 (967,2397,2488) EQUAL(f(f(e,f(e,d)),e),d). ---> New Demodulator: 2514 (2513) EQUAL(f(f(e,f(e,d)),e),d). ** KEPT: 2515 (967,1097,2488) EQUAL(f(f(e,f(e,d)),g(b)),h). ---> New Demodulator: 2516 (2515) EQUAL(f(f(e,f(e,d)),g(b)),h). ** KEPT: 2517 (967,869,2488) EQUAL(f(k,f(e,d)),f(d,f(e,b))). ** KEPT: 2518 (967,869,2488) EQUAL(f(f(e,d),f(e,b)),f(k,d)). ** KEPT: 2519 (967,861,2488) EQUAL(f(f(d,e),x),f(f(e,d),x)). ** KEPT: 2520 (967,840,2488) EQUAL(f(f(e,d),g(f(h,e))),k). ---> New Demodulator: 2521 (2520) EQUAL(f(f(e,d),g(f(h,e))),k). ** KEPT: 2522 (967,800,2488) EQUAL(f(g(f(h,e)),f(e,d)),b). ---> New Demodulator: 2523 (2522) EQUAL(f(g(f(h,e)),f(e,d)),b). ** KEPT: 2524 (967,750,2488) EQUAL(f(k,f(e,d)),f(h,f(b,b))). ** KEPT: 2525 (967,721,2488) EQUAL(f(f(g(d),k),f(e,d)),b). ---> New Demodulator: 2526 (2525) EQUAL(f(f(g(d),k),f(e,d)),b). ** KEPT: 2527 (967,1227,2488) EQUAL(f(g(k),f(f(e,d),b)),d). ---> New Demodulator: 2528 (2527) EQUAL(f(g(k),f(f(e,d),b)),d). ** KEPT: 2529 (967,667,2488) EQUAL(f(f(e,d),b),f(k,d)). ** KEPT: 2530 (967,667,2488) EQUAL(f(k,f(e,d)),f(d,b)). ** KEPT: 2531 (967,580,2488) EQUAL(f(f(e,d),g(f(b,g(a)))),a). ---> New Demodulator: 2532 (2531) EQUAL(f(f(e,d),g(f(b,g(a)))),a). ** KEPT: 2533 (967,1300,2488) EQUAL(f(k,f(h,g(f(e,d)))),e). ---> New Demodulator: 2534 (2533) EQUAL(f(k,f(h,g(f(e,d)))),e). ** KEPT: 2535 (967,965,2488) EQUAL(f(f(d,e),g(f(e,d))),e). ---> New Demodulator: 2536 (2535) EQUAL(f(f(d,e),g(f(e,d))),e). ** KEPT: 2537 (967,883,2488) EQUAL(f(d,f(e,g(f(e,d)))),e). ---> New Demodulator: 2538 (2537) EQUAL(f(d,f(e,g(f(e,d)))),e). ** KEPT: 2539 (967,2296,2488) EQUAL(f(f(b,g(f(e,d))),h),e). ---> New Demodulator: 2540 (2539) EQUAL(f(f(b,g(f(e,d))),h),e). ** KEPT: 2541 (967,762,2488) EQUAL(f(h,f(b,g(f(e,d)))),e). ---> New Demodulator: 2542 (2541) EQUAL(f(h,f(b,g(f(e,d)))),e). ** KEPT: 2543 (967,1027,2488) EQUAL(f(f(g(f(e,d)),k),h),e). ---> New Demodulator: 2544 (2543) EQUAL(f(f(g(f(e,d)),k),h),e). ** KEPT: 2545 (967,721,2488) EQUAL(f(f(g(f(e,d)),k),d),b). ---> New Demodulator: 2546 (2545) EQUAL(f(f(g(f(e,d)),k),d),b). ** KEPT: 2547 (967,695,2488) EQUAL(f(g(f(e,d)),f(k,d)),b). ---> New Demodulator: 2548 (2547) EQUAL(f(g(f(e,d)),f(k,d)),b). ** KEPT: 2549 (967,2290,2488) EQUAL(f(b,f(g(f(e,d)),h)),e). ---> New Demodulator: 2550 (2549) EQUAL(f(b,f(g(f(e,d)),h)),e). ** KEPT: 2551 (967,2208,2488) EQUAL(g(f(g(f(e,d)),h)),b). ---> New Demodulator: 2552 (2551) EQUAL(g(f(g(f(e,d)),h)),b). ** KEPT: 2553 (967,676,2488) EQUAL(f(f(g(f(e,d)),h),b),e). ---> New Demodulator: 2554 (2553) EQUAL(f(f(g(f(e,d)),h),b),e). ** KEPT: 2555 (967,306,2488) EQUAL(f(b,g(f(g(f(e,d)),b))),d). ---> New Demodulator: 2556 (2555) EQUAL(f(b,g(f(g(f(e,d)),b))),d). ** KEPT: 2557 (967,294,2488) EQUAL(f(g(h),f(e,d)),b). ---> New Demodulator: 2558 (2557) EQUAL(f(g(h),f(e,d)),b). ** KEPT: 2559 (967,292,2488) EQUAL(f(g(f(d,g(b))),f(e,d)),b). ---> New Demodulator: 2560 (2559) EQUAL(f(g(f(d,g(b))),f(e,d)),b). ** KEPT: 2561 (967,695,2488) EQUAL(f(g(d),f(k,f(e,d))),b). ---> New Demodulator: 2562 (2561) EQUAL(f(g(d),f(k,f(e,d))),b). ** KEPT: 2563 (967,151,2488) EQUAL(f(f(k,f(e,d)),g(b)),d). ---> New Demodulator: 2564 (2563) EQUAL(f(f(k,f(e,d)),g(b)),d). ** KEPT: 2565 (967,137,2488) EQUAL(f(f(e,d),g(f(g(x),x))),d). ---> New Demodulator: 2566 (2565) EQUAL(f(f(e,d),g(f(g(x),x))),d). ** KEPT: 2567 (967,135,2488) EQUAL(f(f(e,d),g(f(x,g(x)))),d). ---> New Demodulator: 2568 (2567) EQUAL(f(f(e,d),g(f(x,g(x)))),d). ** KEPT: 2569 (967,132,2488) EQUAL(f(k,f(h,x)),f(f(e,d),x)). ** KEPT: 2570 (967,131,2488) EQUAL(f(f(x,k),h),f(x,f(e,d))). ** KEPT: 2571 (967,113,2488) EQUAL(f(f(f(e,d),x),g(x)),d). ---> New Demodulator: 2572 (2571) EQUAL(f(f(f(e,d),x),g(x)),d). ** KEPT: 2573 (967,105,2488) EQUAL(f(f(f(e,d),g(x)),x),d). ---> New Demodulator: 2574 (2573) EQUAL(f(f(f(e,d),g(x)),x),d). ** KEPT: 2575 (967,92,2488) EQUAL(f(d,f(e,x)),f(f(e,d),x)). ** KEPT: 2576 (967,74,2488) EQUAL(f(f(e,d),g(f(d,g(b)))),k). ---> New Demodulator: 2577 (2576) EQUAL(f(f(e,d),g(f(d,g(b)))),k). ** KEPT: 2578 (967,73,2488) EQUAL(f(h,f(b,x)),f(f(e,d),x)). ** KEPT: 2579 (967,72,2488) EQUAL(f(f(x,h),b),f(x,f(e,d))). ** KEPT: 2580 (967,70,2488) EQUAL(f(f(e,d),g(h)),k). ---> New Demodulator: 2581 (2580) EQUAL(f(f(e,d),g(h)),k). ** KEPT: 2582 (967,1175,2488) EQUAL(f(g(x),f(x,f(e,d))),d). ---> New Demodulator: 2583 (2582) EQUAL(f(g(x),f(x,f(e,d))),d). >>>> Starting back demodulation with: 2492 (2491) EQUAL(f(f(e,d),g(f(d,e))),e). >>>> Starting back demodulation with: 2494 (2493) EQUAL(f(x,f(g(x),f(e,d))),d). >>>> Starting back demodulation with: 2496 (2495) EQUAL(f(f(x,g(x)),f(e,d)),d). >>>> Starting back demodulation with: 2498 (2497) EQUAL(f(f(g(x),x),f(e,d)),d). >>>> Starting back demodulation with: 2500 (2499) EQUAL(f(g(k),f(e,d)),h). >>>> Starting back demodulation with: 2502 (2501) EQUAL(f(f(e,d),g(f(e,e))),d). >>>> Starting back demodulation with: 2504 (2503) EQUAL(f(f(e,d),f(e,f(e,e))),d). >>>> Starting back demodulation with: 2506 (2505) EQUAL(f(f(e,d),f(e,e)),d). >>>> Starting back demodulation with: 2508 (2507) EQUAL(f(f(e,d),f(e,g(d))),e). >>>> Starting back demodulation with: 2510 (2509) EQUAL(f(f(e,d),f(e,g(b))),h). >>>> Starting back demodulation with: 2512 (2511) EQUAL(f(f(e,d),f(e,g(h))),k). >>>> Starting back demodulation with: 2514 (2513) EQUAL(f(f(e,f(e,d)),e),d). >>>> Starting back demodulation with: 2516 (2515) EQUAL(f(f(e,f(e,d)),g(b)),h). >>>> Starting back demodulation with: 2521 (2520) EQUAL(f(f(e,d),g(f(h,e))),k). >>>> Starting back demodulation with: 2523 (2522) EQUAL(f(g(f(h,e)),f(e,d)),b). >>>> Starting back demodulation with: 2526 (2525) EQUAL(f(f(g(d),k),f(e,d)),b). >>>> Starting back demodulation with: 2528 (2527) EQUAL(f(g(k),f(f(e,d),b)),d). >>>> Starting back demodulation with: 2532 (2531) EQUAL(f(f(e,d),g(f(b,g(a)))),a). >>>> Starting back demodulation with: 2534 (2533) EQUAL(f(k,f(h,g(f(e,d)))),e). >>>> Starting back demodulation with: 2536 (2535) EQUAL(f(f(d,e),g(f(e,d))),e). >>>> Starting back demodulation with: 2538 (2537) EQUAL(f(d,f(e,g(f(e,d)))),e). >>>> Starting back demodulation with: 2540 (2539) EQUAL(f(f(b,g(f(e,d))),h),e). >>>> Starting back demodulation with: 2542 (2541) EQUAL(f(h,f(b,g(f(e,d)))),e). >>>> Starting back demodulation with: 2544 (2543) EQUAL(f(f(g(f(e,d)),k),h),e). >>>> Starting back demodulation with: 2546 (2545) EQUAL(f(f(g(f(e,d)),k),d),b). >>>> Starting back demodulation with: 2548 (2547) EQUAL(f(g(f(e,d)),f(k,d)),b). >>>> Starting back demodulation with: 2550 (2549) EQUAL(f(b,f(g(f(e,d)),h)),e). >>>> Starting back demodulation with: 2552 (2551) EQUAL(g(f(g(f(e,d)),h)),b). >>>> Starting back demodulation with: 2554 (2553) EQUAL(f(f(g(f(e,d)),h),b),e). >>>> Starting back demodulation with: 2556 (2555) EQUAL(f(b,g(f(g(f(e,d)),b))),d). >>>> Starting back demodulation with: 2558 (2557) EQUAL(f(g(h),f(e,d)),b). >>>> Starting back demodulation with: 2560 (2559) EQUAL(f(g(f(d,g(b))),f(e,d)),b). >>>> Starting back demodulation with: 2562 (2561) EQUAL(f(g(d),f(k,f(e,d))),b). >>>> Starting back demodulation with: 2564 (2563) EQUAL(f(f(k,f(e,d)),g(b)),d). >>>> Starting back demodulation with: 2566 (2565) EQUAL(f(f(e,d),g(f(g(x),x))),d). >>>> Starting back demodulation with: 2568 (2567) EQUAL(f(f(e,d),g(f(x,g(x)))),d). >>>> Starting back demodulation with: 2572 (2571) EQUAL(f(f(f(e,d),x),g(x)),d). >>>> Starting back demodulation with: 2574 (2573) EQUAL(f(f(f(e,d),g(x)),x),d). >>>> Starting back demodulation with: 2577 (2576) EQUAL(f(f(e,d),g(f(d,g(b)))),k). >>>> Starting back demodulation with: 2581 (2580) EQUAL(f(f(e,d),g(h)),k). >>>> Starting back demodulation with: 2583 (2582) EQUAL(f(g(x),f(x,f(e,d))),d). >> back demodulating: 1931 (1930) EQUAL(f(g(a),f(a,f(e,d))),d). >> back demodulating: 1930 (483,1175) EQUAL(f(g(a),f(a,f(e,d))),d). >> back demodulating: 1222 (1221) EQUAL(f(g(d),f(d,f(e,d))),d). >> back demodulating: 1221 (92,1175) EQUAL(f(g(d),f(d,f(e,d))),d). new given clause: 2487 (1,967) EQUAL(g(f(e,g(d))),d). ** KEPT: 2584 (4,2487) EQUAL(g(f(f(x,g(x)),g(d))),d). ---> New Demodulator: 2585 (2584) EQUAL(g(f(f(x,g(x)),g(d))),d). ** KEPT: 2586 (3,2487) EQUAL(g(f(f(g(x),x),g(d))),d). ---> New Demodulator: 2587 (2586) EQUAL(g(f(f(g(x),x),g(d))),d). ** KEPT: 2588 (8,2487) EQUAL(g(f(e,g(f(c,g(a))))),d). ---> New Demodulator: 2589 (2588) EQUAL(g(f(e,g(f(c,g(a))))),d). >>>> Starting back demodulation with: 2585 (2584) EQUAL(g(f(f(x,g(x)),g(d))),d). >> back demodulating: 2481 (4,967) EQUAL(f(e,g(f(f(x,g(x)),g(d)))),d). >> back demodulating: 2482 (2481) EQUAL(f(e,g(f(f(x,g(x)),g(d)))),d). >>>> Starting back demodulation with: 2587 (2586) EQUAL(g(f(f(g(x),x),g(d))),d). >> back demodulating: 2483 (3,967) EQUAL(f(e,g(f(f(g(x),x),g(d)))),d). >> back demodulating: 2484 (2483) EQUAL(f(e,g(f(f(g(x),x),g(d)))),d). >>>> Starting back demodulation with: 2589 (2588) EQUAL(g(f(e,g(f(c,g(a))))),d). >> back demodulating: 2485 (8,967) EQUAL(f(e,g(f(e,g(f(c,g(a)))))),d). >> back demodulating: 2486 (2485) EQUAL(f(e,g(f(e,g(f(c,g(a)))))),d). ** KEPT: 2590 (2487,2126) EQUAL(f(d,f(f(e,g(d)),a)),a). ---> New Demodulator: 2591 (2590) EQUAL(f(d,f(f(e,g(d)),a)),a). ** KEPT: 2592 (2487,2120) EQUAL(f(f(e,g(d)),f(d,a)),a). ---> New Demodulator: 2593 (2592) EQUAL(f(f(e,g(d)),f(d,a)),a). ** KEPT: 2594 (2487,1719) EQUAL(f(f(b,f(e,g(d))),d),b). ---> New Demodulator: 2595 (2594) EQUAL(f(f(b,f(e,g(d))),d),b). ** KEPT: 2596 (2487,1197) EQUAL(f(f(e,g(d)),f(d,d)),d). ---> New Demodulator: 2597 (2596) EQUAL(f(f(e,g(d)),f(d,d)),d). ** KEPT: 2598 (2487,1175) EQUAL(f(d,f(f(e,g(d)),d)),d). ---> New Demodulator: 2599 (2598) EQUAL(f(d,f(f(e,g(d)),d)),d). ** KEPT: 2600 (2487,1133) EQUAL(f(f(e,g(d)),f(d,h)),h). ---> New Demodulator: 2601 (2600) EQUAL(f(f(e,g(d)),f(d,h)),h). ** KEPT: 2602 (2487,1125) EQUAL(f(d,f(f(e,g(d)),h)),h). ---> New Demodulator: 2603 (2602) EQUAL(f(d,f(f(e,g(d)),h)),h). ** KEPT: 2604 (2487,1725) EQUAL(f(f(b,d),f(e,g(d))),b). ---> New Demodulator: 2605 (2604) EQUAL(f(f(b,d),f(e,g(d))),b). ** KEPT: 2606 (2487,520) EQUAL(f(f(a,d),f(e,g(d))),a). ---> New Demodulator: 2607 (2606) EQUAL(f(f(a,d),f(e,g(d))),a). ** KEPT: 2608 (2487,266) EQUAL(f(f(e,g(d)),f(d,b)),b). ---> New Demodulator: 2609 (2608) EQUAL(f(f(e,g(d)),f(d,b)),b). ** KEPT: 2610 (2487,260) EQUAL(f(d,f(f(e,g(d)),b)),b). ---> New Demodulator: 2611 (2610) EQUAL(f(d,f(f(e,g(d)),b)),b). ** KEPT: 2612 (2487,105) EQUAL(f(f(d,d),f(e,g(d))),d). ---> New Demodulator: 2613 (2612) EQUAL(f(f(d,d),f(e,g(d))),d). ** KEPT: 2614 (2487,2009) EQUAL(f(f(f(e,g(d)),d),a),a). ---> New Demodulator: 2615 (2614) EQUAL(f(f(f(e,g(d)),d),a),a). ** KEPT: 2616 (2487,1577) EQUAL(f(b,f(f(e,g(d)),d)),b). ---> New Demodulator: 2617 (2616) EQUAL(f(b,f(f(e,g(d)),d)),b). ** KEPT: 2618 (2487,1135) EQUAL(f(f(f(e,g(d)),d),d),d). ---> New Demodulator: 2619 (2618) EQUAL(f(f(f(e,g(d)),d),d),d). ** KEPT: 2620 (2487,1067) EQUAL(f(f(f(e,g(d)),d),h),h). ---> New Demodulator: 2621 (2620) EQUAL(f(f(f(e,g(d)),d),h),h). ** KEPT: 2622 (2487,479) EQUAL(f(a,f(f(e,g(d)),d)),a). ---> New Demodulator: 2623 (2622) EQUAL(f(a,f(f(e,g(d)),d)),a). ** KEPT: 2624 (2487,235) EQUAL(f(f(f(e,g(d)),d),b),b). ---> New Demodulator: 2625 (2624) EQUAL(f(f(f(e,g(d)),d),b),b). ** KEPT: 2626 (2487,562) EQUAL(f(a,g(f(f(e,g(d)),d))),a). ---> New Demodulator: 2627 (2626) EQUAL(f(a,g(f(f(e,g(d)),d))),a). ** KEPT: 2628 (2487,280) EQUAL(f(g(f(f(e,g(d)),d)),b),b). ---> New Demodulator: 2629 (2628) EQUAL(f(g(f(f(e,g(d)),d)),b),b). ** KEPT: 2630 (2487,135) EQUAL(f(d,g(f(f(e,g(d)),d))),d). ---> New Demodulator: 2631 (2630) EQUAL(f(d,g(f(f(e,g(d)),d))),d). ** KEPT: 2632 (2487,36) -EQUAL(f(f(e,g(d)),d),f(k,g(b))). ** KEPT: 2633 (2487,4) EQUAL(f(f(e,g(d)),d),e). ---> New Demodulator: 2634 (2633) EQUAL(f(f(e,g(d)),d),e). >>>> Starting back demodulation with: 2591 (2590) EQUAL(f(d,f(f(e,g(d)),a)),a). >>>> Starting back demodulation with: 2593 (2592) EQUAL(f(f(e,g(d)),f(d,a)),a). >>>> Starting back demodulation with: 2595 (2594) EQUAL(f(f(b,f(e,g(d))),d),b). >>>> Starting back demodulation with: 2597 (2596) EQUAL(f(f(e,g(d)),f(d,d)),d). >>>> Starting back demodulation with: 2599 (2598) EQUAL(f(d,f(f(e,g(d)),d)),d). >>>> Starting back demodulation with: 2601 (2600) EQUAL(f(f(e,g(d)),f(d,h)),h). >>>> Starting back demodulation with: 2603 (2602) EQUAL(f(d,f(f(e,g(d)),h)),h). >>>> Starting back demodulation with: 2605 (2604) EQUAL(f(f(b,d),f(e,g(d))),b). >>>> Starting back demodulation with: 2607 (2606) EQUAL(f(f(a,d),f(e,g(d))),a). >>>> Starting back demodulation with: 2609 (2608) EQUAL(f(f(e,g(d)),f(d,b)),b). >>>> Starting back demodulation with: 2611 (2610) EQUAL(f(d,f(f(e,g(d)),b)),b). >>>> Starting back demodulation with: 2613 (2612) EQUAL(f(f(d,d),f(e,g(d))),d). >>>> Starting back demodulation with: 2615 (2614) EQUAL(f(f(f(e,g(d)),d),a),a). >>>> Starting back demodulation with: 2617 (2616) EQUAL(f(b,f(f(e,g(d)),d)),b). >>>> Starting back demodulation with: 2619 (2618) EQUAL(f(f(f(e,g(d)),d),d),d). >>>> Starting back demodulation with: 2621 (2620) EQUAL(f(f(f(e,g(d)),d),h),h). >>>> Starting back demodulation with: 2623 (2622) EQUAL(f(a,f(f(e,g(d)),d)),a). >>>> Starting back demodulation with: 2625 (2624) EQUAL(f(f(f(e,g(d)),d),b),b). >>>> Starting back demodulation with: 2627 (2626) EQUAL(f(a,g(f(f(e,g(d)),d))),a). >>>> Starting back demodulation with: 2629 (2628) EQUAL(f(g(f(f(e,g(d)),d)),b),b). >>>> Starting back demodulation with: 2631 (2630) EQUAL(f(d,g(f(f(e,g(d)),d))),d). >>>> Starting back demodulation with: 2634 (2633) EQUAL(f(f(e,g(d)),d),e). >> back demodulating: 2598 (2487,1175) EQUAL(f(d,f(f(e,g(d)),d)),d). >> back demodulating: 2599 (2598) EQUAL(f(d,f(f(e,g(d)),d)),d). >> back demodulating: 2614 (2487,2009) EQUAL(f(f(f(e,g(d)),d),a),a). >> back demodulating: 2615 (2614) EQUAL(f(f(f(e,g(d)),d),a),a). >> back demodulating: 2616 (2487,1577) EQUAL(f(b,f(f(e,g(d)),d)),b). >> back demodulating: 2617 (2616) EQUAL(f(b,f(f(e,g(d)),d)),b). >> back demodulating: 2618 (2487,1135) EQUAL(f(f(f(e,g(d)),d),d),d). >> back demodulating: 2619 (2618) EQUAL(f(f(f(e,g(d)),d),d),d). >> back demodulating: 2620 (2487,1067) EQUAL(f(f(f(e,g(d)),d),h),h). >> back demodulating: 2621 (2620) EQUAL(f(f(f(e,g(d)),d),h),h). >> back demodulating: 2622 (2487,479) EQUAL(f(a,f(f(e,g(d)),d)),a). >> back demodulating: 2623 (2622) EQUAL(f(a,f(f(e,g(d)),d)),a). >> back demodulating: 2624 (2487,235) EQUAL(f(f(f(e,g(d)),d),b),b). >> back demodulating: 2625 (2624) EQUAL(f(f(f(e,g(d)),d),b),b). >> back demodulating: 2626 (2487,562) EQUAL(f(a,g(f(f(e,g(d)),d))),a). >> back demodulating: 2627 (2626) EQUAL(f(a,g(f(f(e,g(d)),d))),a). >> back demodulating: 2628 (2487,280) EQUAL(f(g(f(f(e,g(d)),d)),b),b). >> back demodulating: 2629 (2628) EQUAL(f(g(f(f(e,g(d)),d)),b),b). >> back demodulating: 2630 (2487,135) EQUAL(f(d,g(f(f(e,g(d)),d))),d). >> back demodulating: 2631 (2630) EQUAL(f(d,g(f(f(e,g(d)),d))),d). >> back demodulating: 2632 (2487,36) -EQUAL(f(f(e,g(d)),d),f(k,g(b))). new given clause: 2489 (8,967,2488) EQUAL(f(c,g(a)),f(e,d)). ** KEPT: 2635 (2489,254) EQUAL(f(e,f(e,d)),d). ---> New Demodulator: 2636 (2635) EQUAL(f(e,f(e,d)),d). ** KEPT: 2637 (2489,5) EQUAL(f(f(x,c),g(a)),f(x,f(e,d))). ** KEPT: 2638 (2489,5) EQUAL(f(c,f(g(a),x)),f(f(e,d),x)). ** KEPT: 2639 (2489,5) EQUAL(f(x,f(c,g(a))),f(f(x,e),d)). ** KEPT: 2640 (2489,5) EQUAL(f(f(c,g(a)),x),f(e,f(d,x))). >>>> Starting back demodulation with: 2636 (2635) EQUAL(f(e,f(e,d)),d). >> back demodulating: 2513 (967,2397,2488) EQUAL(f(f(e,f(e,d)),e),d). >> back demodulating: 2514 (2513) EQUAL(f(f(e,f(e,d)),e),d). >> back demodulating: 2515 (967,1097,2488) EQUAL(f(f(e,f(e,d)),g(b)),h). >> back demodulating: 2516 (2515) EQUAL(f(f(e,f(e,d)),g(b)),h). new given clause: 2635 (2489,254) EQUAL(f(e,f(e,d)),d). ** KEPT: 2641 (5,2635) EQUAL(f(f(e,e),d),d). ---> New Demodulator: 2642 (2641) EQUAL(f(f(e,e),d),d). >>>> Starting back demodulation with: 2642 (2641) EQUAL(f(f(e,e),d),d). ** KEPT: 2643 (2635,5) EQUAL(f(f(x,e),f(e,d)),f(x,d)). ** KEPT: 2644 (2635,5) EQUAL(f(e,f(f(e,d),x)),f(d,x)). new given clause: 2641 (5,2635) EQUAL(f(f(e,e),d),d). ** KEPT: 2645 (4,2641) EQUAL(f(f(f(x,g(x)),e),d),d). ---> New Demodulator: 2646 (2645) EQUAL(f(f(f(x,g(x)),e),d),d). ** KEPT: 2647 (3,2641) EQUAL(f(f(f(g(x),x),e),d),d). ---> New Demodulator: 2648 (2647) EQUAL(f(f(f(g(x),x),e),d),d). ** KEPT: 2649 (4,2641) EQUAL(f(f(e,f(x,g(x))),d),d). ---> New Demodulator: 2650 (2649) EQUAL(f(f(e,f(x,g(x))),d),d). ** KEPT: 2651 (3,2641) EQUAL(f(f(e,f(g(x),x)),d),d). ---> New Demodulator: 2652 (2651) EQUAL(f(f(e,f(g(x),x)),d),d). ** KEPT: 2653 (8,2641) EQUAL(f(f(e,e),f(c,g(a))),d). ---> New Demodulator: 2654 (2653) EQUAL(f(f(e,e),f(c,g(a))),d). ** KEPT: 2655 (131,2641) EQUAL(f(f(f(e,e),k),h),d). ---> New Demodulator: 2656 (2655) EQUAL(f(f(f(e,e),k),h),d). ** KEPT: 2657 (72,2641) EQUAL(f(f(f(e,e),h),b),d). ---> New Demodulator: 2658 (2657) EQUAL(f(f(f(e,e),h),b),d). >>>> Starting back demodulation with: 2646 (2645) EQUAL(f(f(f(x,g(x)),e),d),d). >>>> Starting back demodulation with: 2648 (2647) EQUAL(f(f(f(g(x),x),e),d),d). >>>> Starting back demodulation with: 2650 (2649) EQUAL(f(f(e,f(x,g(x))),d),d). >>>> Starting back demodulation with: 2652 (2651) EQUAL(f(f(e,f(g(x),x)),d),d). >>>> Starting back demodulation with: 2654 (2653) EQUAL(f(f(e,e),f(c,g(a))),d). >>>> Starting back demodulation with: 2656 (2655) EQUAL(f(f(f(e,e),k),h),d). >>>> Starting back demodulation with: 2658 (2657) EQUAL(f(f(f(e,e),h),b),d). ** KEPT: 2659 (2641,1175) EQUAL(f(g(f(e,e)),d),d). ---> New Demodulator: 2660 (2659) EQUAL(f(g(f(e,e)),d),d). ** KEPT: 2661 (2641,5) EQUAL(f(f(x,f(e,e)),d),f(x,d)). ** KEPT: 2662 (2641,5) EQUAL(f(f(e,e),f(d,x)),f(d,x)). >>>> Starting back demodulation with: 2660 (2659) EQUAL(f(g(f(e,e)),d),d). new given clause: 2499 (967,1061,2488) EQUAL(f(g(k),f(e,d)),h). ** KEPT: 2663 (5,2499) EQUAL(f(f(g(k),e),d),h). ---> New Demodulator: 2664 (2663) EQUAL(f(f(g(k),e),d),h). >>>> Starting back demodulation with: 2664 (2663) EQUAL(f(f(g(k),e),d),h). ** KEPT: 2665 (2499,5) EQUAL(f(f(x,g(k)),f(e,d)),f(x,h)). ** KEPT: 2666 (2499,5) EQUAL(f(g(k),f(f(e,d),x)),f(h,x)). new given clause: 2557 (967,294,2488) EQUAL(f(g(h),f(e,d)),b). ** KEPT: 2667 (5,2557) EQUAL(f(f(g(h),e),d),b). ---> New Demodulator: 2668 (2667) EQUAL(f(f(g(h),e),d),b). >>>> Starting back demodulation with: 2668 (2667) EQUAL(f(f(g(h),e),d),b). ** KEPT: 2669 (2557,5) EQUAL(f(f(x,g(h)),f(e,d)),f(x,b)). ** KEPT: 2670 (2557,5) EQUAL(f(g(h),f(f(e,d),x)),f(b,x)). new given clause: 2580 (967,70,2488) EQUAL(f(f(e,d),g(h)),k). ** KEPT: 2671 (2580,5) EQUAL(f(f(x,f(e,d)),g(h)),f(x,k)). ** KEPT: 2672 (2580,5) EQUAL(f(f(e,d),f(g(h),x)),f(k,x)). new given clause: 2633 (2487,4) EQUAL(f(f(e,g(d)),d),e). ** KEPT: 2673 (4,2633) EQUAL(f(f(f(x,g(x)),g(d)),d),e). ---> New Demodulator: 2674 (2673) EQUAL(f(f(f(x,g(x)),g(d)),d),e). ** KEPT: 2675 (3,2633) EQUAL(f(f(f(g(x),x),g(d)),d),e). ---> New Demodulator: 2676 (2675) EQUAL(f(f(f(g(x),x),g(d)),d),e). ** KEPT: 2677 (8,2633) EQUAL(f(f(e,g(f(c,g(a)))),d),e). ---> New Demodulator: 2678 (2677) EQUAL(f(f(e,g(f(c,g(a)))),d),e). ** KEPT: 2679 (8,2633) EQUAL(f(f(e,g(d)),f(c,g(a))),e). ---> New Demodulator: 2680 (2679) EQUAL(f(f(e,g(d)),f(c,g(a))),e). ** KEPT: 2681 (131,2633) EQUAL(f(f(f(e,g(d)),k),h),e). ---> New Demodulator: 2682 (2681) EQUAL(f(f(f(e,g(d)),k),h),e). ** KEPT: 2683 (72,2633) EQUAL(f(f(f(e,g(d)),h),b),e). ---> New Demodulator: 2684 (2683) EQUAL(f(f(f(e,g(d)),h),b),e). ** KEPT: 2685 (5,2633) EQUAL(f(e,f(g(d),d)),e). ---> New Demodulator: 2686 (2685) EQUAL(f(e,f(g(d),d)),e). >>>> Starting back demodulation with: 2674 (2673) EQUAL(f(f(f(x,g(x)),g(d)),d),e). >>>> Starting back demodulation with: 2676 (2675) EQUAL(f(f(f(g(x),x),g(d)),d),e). >>>> Starting back demodulation with: 2678 (2677) EQUAL(f(f(e,g(f(c,g(a)))),d),e). >>>> Starting back demodulation with: 2680 (2679) EQUAL(f(f(e,g(d)),f(c,g(a))),e). >>>> Starting back demodulation with: 2682 (2681) EQUAL(f(f(f(e,g(d)),k),h),e). >>>> Starting back demodulation with: 2684 (2683) EQUAL(f(f(f(e,g(d)),h),b),e). >>>> Starting back demodulation with: 2686 (2685) EQUAL(f(e,f(g(d),d)),e). ** KEPT: 2687 (2633,5) EQUAL(f(f(x,f(e,g(d))),d),f(x,e)). ** KEPT: 2688 (2633,5) EQUAL(f(f(e,g(d)),f(d,x)),f(e,x)). new given clause: 2659 (2641,1175) EQUAL(f(g(f(e,e)),d),d). ** KEPT: 2689 (4,2659) EQUAL(f(g(f(f(x,g(x)),e)),d),d). ---> New Demodulator: 2690 (2689) EQUAL(f(g(f(f(x,g(x)),e)),d),d). ** KEPT: 2691 (3,2659) EQUAL(f(g(f(f(g(x),x),e)),d),d). ---> New Demodulator: 2692 (2691) EQUAL(f(g(f(f(g(x),x),e)),d),d). ** KEPT: 2693 (4,2659) EQUAL(f(g(f(e,f(x,g(x)))),d),d). ---> New Demodulator: 2694 (2693) EQUAL(f(g(f(e,f(x,g(x)))),d),d). ** KEPT: 2695 (3,2659) EQUAL(f(g(f(e,f(g(x),x))),d),d). ---> New Demodulator: 2696 (2695) EQUAL(f(g(f(e,f(g(x),x))),d),d). ** KEPT: 2697 (8,2659) EQUAL(f(g(f(e,e)),f(c,g(a))),d). ---> New Demodulator: 2698 (2697) EQUAL(f(g(f(e,e)),f(c,g(a))),d). ** KEPT: 2699 (131,2659) EQUAL(f(f(g(f(e,e)),k),h),d). ---> New Demodulator: 2700 (2699) EQUAL(f(f(g(f(e,e)),k),h),d). ** KEPT: 2701 (72,2659) EQUAL(f(f(g(f(e,e)),h),b),d). ---> New Demodulator: 2702 (2701) EQUAL(f(f(g(f(e,e)),h),b),d). >>>> Starting back demodulation with: 2690 (2689) EQUAL(f(g(f(f(x,g(x)),e)),d),d). >>>> Starting back demodulation with: 2692 (2691) EQUAL(f(g(f(f(g(x),x),e)),d),d). >>>> Starting back demodulation with: 2694 (2693) EQUAL(f(g(f(e,f(x,g(x)))),d),d). >>>> Starting back demodulation with: 2696 (2695) EQUAL(f(g(f(e,f(g(x),x))),d),d). >>>> Starting back demodulation with: 2698 (2697) EQUAL(f(g(f(e,e)),f(c,g(a))),d). >>>> Starting back demodulation with: 2700 (2699) EQUAL(f(f(g(f(e,e)),k),h),d). >>>> Starting back demodulation with: 2702 (2701) EQUAL(f(f(g(f(e,e)),h),b),d). ** KEPT: 2703 (2659,5) EQUAL(f(f(x,g(f(e,e))),d),f(x,d)). ** KEPT: 2704 (2659,5) EQUAL(f(g(f(e,e)),f(d,x)),f(d,x)). new given clause: 2663 (5,2499) EQUAL(f(f(g(k),e),d),h). ** KEPT: 2705 (4,2663) EQUAL(f(f(g(k),f(x,g(x))),d),h). ---> New Demodulator: 2706 (2705) EQUAL(f(f(g(k),f(x,g(x))),d),h). ** KEPT: 2707 (3,2663) EQUAL(f(f(g(k),f(g(x),x)),d),h). ---> New Demodulator: 2708 (2707) EQUAL(f(f(g(k),f(g(x),x)),d),h). ** KEPT: 2709 (8,2663) EQUAL(f(f(g(k),e),f(c,g(a))),h). ---> New Demodulator: 2710 (2709) EQUAL(f(f(g(k),e),f(c,g(a))),h). ** KEPT: 2711 (131,2663) EQUAL(f(f(f(g(k),e),k),h),h). ---> New Demodulator: 2712 (2711) EQUAL(f(f(f(g(k),e),k),h),h). ** KEPT: 2713 (72,2663) EQUAL(f(f(f(g(k),e),h),b),h). ---> New Demodulator: 2714 (2713) EQUAL(f(f(f(g(k),e),h),b),h). >>>> Starting back demodulation with: 2706 (2705) EQUAL(f(f(g(k),f(x,g(x))),d),h). >>>> Starting back demodulation with: 2708 (2707) EQUAL(f(f(g(k),f(g(x),x)),d),h). >>>> Starting back demodulation with: 2710 (2709) EQUAL(f(f(g(k),e),f(c,g(a))),h). >>>> Starting back demodulation with: 2712 (2711) EQUAL(f(f(f(g(k),e),k),h),h). >>>> Starting back demodulation with: 2714 (2713) EQUAL(f(f(f(g(k),e),h),b),h). ** KEPT: 2715 (2663,1175) EQUAL(f(g(f(g(k),e)),h),d). ---> New Demodulator: 2716 (2715) EQUAL(f(g(f(g(k),e)),h),d). ** KEPT: 2717 (2663,5) EQUAL(f(f(x,f(g(k),e)),d),f(x,h)). ** KEPT: 2718 (2663,5) EQUAL(f(f(g(k),e),f(d,x)),f(h,x)). >>>> Starting back demodulation with: 2716 (2715) EQUAL(f(g(f(g(k),e)),h),d). new given clause: 2667 (5,2557) EQUAL(f(f(g(h),e),d),b). ** KEPT: 2719 (9,2667) EQUAL(f(f(g(f(d,g(b))),e),d),b). ---> New Demodulator: 2720 (2719) EQUAL(f(f(g(f(d,g(b))),e),d),b). ** KEPT: 2721 (4,2667) EQUAL(f(f(g(h),f(x,g(x))),d),b). ---> New Demodulator: 2722 (2721) EQUAL(f(f(g(h),f(x,g(x))),d),b). ** KEPT: 2723 (3,2667) EQUAL(f(f(g(h),f(g(x),x)),d),b). ---> New Demodulator: 2724 (2723) EQUAL(f(f(g(h),f(g(x),x)),d),b). ** KEPT: 2725 (8,2667) EQUAL(f(f(g(h),e),f(c,g(a))),b). ---> New Demodulator: 2726 (2725) EQUAL(f(f(g(h),e),f(c,g(a))),b). ** KEPT: 2727 (131,2667) EQUAL(f(f(f(g(h),e),k),h),b). ---> New Demodulator: 2728 (2727) EQUAL(f(f(f(g(h),e),k),h),b). ** KEPT: 2729 (72,2667) EQUAL(f(f(f(g(h),e),h),b),b). ---> New Demodulator: 2730 (2729) EQUAL(f(f(f(g(h),e),h),b),b). >>>> Starting back demodulation with: 2720 (2719) EQUAL(f(f(g(f(d,g(b))),e),d),b). >>>> Starting back demodulation with: 2722 (2721) EQUAL(f(f(g(h),f(x,g(x))),d),b). >>>> Starting back demodulation with: 2724 (2723) EQUAL(f(f(g(h),f(g(x),x)),d),b). >>>> Starting back demodulation with: 2726 (2725) EQUAL(f(f(g(h),e),f(c,g(a))),b). >>>> Starting back demodulation with: 2728 (2727) EQUAL(f(f(f(g(h),e),k),h),b). >>>> Starting back demodulation with: 2730 (2729) EQUAL(f(f(f(g(h),e),h),b),b). ** KEPT: 2731 (2667,1175) EQUAL(f(g(f(g(h),e)),b),d). ---> New Demodulator: 2732 (2731) EQUAL(f(g(f(g(h),e)),b),d). ** KEPT: 2733 (2667,5) EQUAL(f(f(x,f(g(h),e)),d),f(x,b)). ** KEPT: 2734 (2667,5) EQUAL(f(f(g(h),e),f(d,x)),f(b,x)). >>>> Starting back demodulation with: 2732 (2731) EQUAL(f(g(f(g(h),e)),b),d). new given clause: 2685 (5,2633) EQUAL(f(e,f(g(d),d)),e). ** KEPT: 2735 (4,2685) EQUAL(f(f(x,g(x)),f(g(d),d)),e). ---> New Demodulator: 2736 (2735) EQUAL(f(f(x,g(x)),f(g(d),d)),e). ** KEPT: 2737 (3,2685) EQUAL(f(f(g(x),x),f(g(d),d)),e). ---> New Demodulator: 2738 (2737) EQUAL(f(f(g(x),x),f(g(d),d)),e). ** KEPT: 2739 (8,2685) EQUAL(f(e,f(g(f(c,g(a))),d)),e). ---> New Demodulator: 2740 (2739) EQUAL(f(e,f(g(f(c,g(a))),d)),e). ** KEPT: 2741 (8,2685) EQUAL(f(e,f(g(d),f(c,g(a)))),e). ---> New Demodulator: 2742 (2741) EQUAL(f(e,f(g(d),f(c,g(a)))),e). >>>> Starting back demodulation with: 2736 (2735) EQUAL(f(f(x,g(x)),f(g(d),d)),e). >>>> Starting back demodulation with: 2738 (2737) EQUAL(f(f(g(x),x),f(g(d),d)),e). >>>> Starting back demodulation with: 2740 (2739) EQUAL(f(e,f(g(f(c,g(a))),d)),e). >>>> Starting back demodulation with: 2742 (2741) EQUAL(f(e,f(g(d),f(c,g(a)))),e). ** KEPT: 2743 (2685,5) EQUAL(f(f(x,e),f(g(d),d)),f(x,e)). ** KEPT: 2744 (2685,5) EQUAL(f(e,f(f(g(d),d),x)),f(e,x)). new given clause: 997 (5,93) EQUAL(f(c,f(g(a),g(h))),k). ** KEPT: 2745 (7,997) EQUAL(f(f(a,b),f(g(a),g(h))),k). ---> New Demodulator: 2746 (2745) EQUAL(f(f(a,b),f(g(a),g(h))),k). ** KEPT: 2747 (9,997) EQUAL(f(c,f(g(a),g(f(d,g(b))))),k). ---> New Demodulator: 2748 (2747) EQUAL(f(c,f(g(a),g(f(d,g(b))))),k). ** KEPT: 2749 (16,997) EQUAL(f(a,f(b,f(g(a),g(h)))),k). ---> New Demodulator: 2750 (2749) EQUAL(f(a,f(b,f(g(a),g(h)))),k). >>>> Starting back demodulation with: 2746 (2745) EQUAL(f(f(a,b),f(g(a),g(h))),k). >>>> Starting back demodulation with: 2748 (2747) EQUAL(f(c,f(g(a),g(f(d,g(b))))),k). >>>> Starting back demodulation with: 2750 (2749) EQUAL(f(a,f(b,f(g(a),g(h)))),k). ** KEPT: 2751 (997,5) EQUAL(f(f(x,c),f(g(a),g(h))),f(x,k)). ** KEPT: 2752 (997,5) EQUAL(f(c,f(f(g(a),g(h)),x)),f(k,x)). new given clause: 1017 (667,131) EQUAL(f(f(k,k),h),f(d,b)). ** KEPT: 2753 (9,1017) EQUAL(f(f(k,k),f(d,g(b))),f(d,b)). ** KEPT: 2754 (8,1017) EQUAL(f(f(c,g(a)),b),f(f(k,k),h)). ** KEPT: 2755 (861,1017) EQUAL(f(f(k,k),h),f(f(d,e),b)). ** KEPT: 2756 (1017,1125) EQUAL(f(g(f(k,k)),f(d,b)),h). ---> New Demodulator: 2757 (2756) EQUAL(f(g(f(k,k)),f(d,b)),h). ** KEPT: 2758 (1017,72) EQUAL(f(f(k,k),d),f(f(d,b),b)). ** KEPT: 2759 (1017,5) EQUAL(f(f(x,f(k,k)),h),f(x,f(d,b))). ** KEPT: 2760 (1017,5) EQUAL(f(f(k,k),f(h,x)),f(f(d,b),x)). ** KEPT: 2761 (1017,5) EQUAL(f(x,f(f(k,k),h)),f(f(x,d),b)). ** KEPT: 2762 (1017,5) EQUAL(f(f(f(k,k),h),x),f(d,f(b,x))). >>>> Starting back demodulation with: 2757 (2756) EQUAL(f(g(f(k,k)),f(d,b)),h). new given clause: 1052 (1029,72) EQUAL(f(f(e,k),d),f(d,b)). ** KEPT: 2763 (4,1052) EQUAL(f(f(f(x,g(x)),k),d),f(d,b)). ** KEPT: 2764 (3,1052) EQUAL(f(f(f(g(x),x),k),d),f(d,b)). ** KEPT: 2765 (8,1052) EQUAL(f(f(e,k),f(c,g(a))),f(d,b)). ** KEPT: 2766 (131,1052) EQUAL(f(f(f(e,k),k),h),f(d,b)). ** KEPT: 2767 (5,1052) EQUAL(f(e,f(k,d)),f(d,b)). ** KEPT: 2768 (8,1052) EQUAL(f(f(c,g(a)),b),f(f(e,k),d)). ** KEPT: 2769 (1017,1052) EQUAL(f(f(k,k),h),f(f(e,k),d)). ** KEPT: 2770 (861,1052) EQUAL(f(f(d,e),b),f(f(e,k),d)). ** KEPT: 2771 (132,1052,69) EQUAL(f(f(e,k),d),f(k,d)). ** KEPT: 2772 (92,1052) EQUAL(f(d,f(e,b)),f(f(e,k),d)). ** KEPT: 2773 (73,1052) EQUAL(f(h,f(b,b)),f(f(e,k),d)). ** KEPT: 2774 (1052,1175) EQUAL(f(g(f(e,k)),f(d,b)),d). ---> New Demodulator: 2775 (2774) EQUAL(f(g(f(e,k)),f(d,b)),d). ** KEPT: 2776 (1052,5) EQUAL(f(f(x,f(e,k)),d),f(x,f(d,b))). ** KEPT: 2777 (1052,5) EQUAL(f(f(e,k),f(d,x)),f(f(d,b),x)). ** KEPT: 2778 (1052,1227) EQUAL(f(g(k),f(f(e,k),d)),d). ---> New Demodulator: 2779 (2778) EQUAL(f(g(k),f(f(e,k),d)),d). ** KEPT: 2780 (1052,260) EQUAL(f(g(d),f(f(e,k),d)),b). ---> New Demodulator: 2781 (2780) EQUAL(f(g(d),f(f(e,k),d)),b). ** KEPT: 2782 (1052,113) EQUAL(f(f(f(e,k),d),g(b)),d). ---> New Demodulator: 2783 (2782) EQUAL(f(f(f(e,k),d),g(b)),d). ** KEPT: 2784 (1052,5) EQUAL(f(x,f(f(e,k),d)),f(f(x,d),b)). ** KEPT: 2785 (1052,5) EQUAL(f(f(f(e,k),d),x),f(d,f(b,x))). >>>> Starting back demodulation with: 2775 (2774) EQUAL(f(g(f(e,k)),f(d,b)),d). >>>> Starting back demodulation with: 2779 (2778) EQUAL(f(g(k),f(f(e,k),d)),d). >>>> Starting back demodulation with: 2781 (2780) EQUAL(f(g(d),f(f(e,k),d)),b). >>>> Starting back demodulation with: 2783 (2782) EQUAL(f(f(f(e,k),d),g(b)),d). new given clause: 1071 (1007,5,1062) EQUAL(f(f(x,e),h),f(x,h)). ** KEPT: 2786 (2397,1071) EQUAL(f(f(e,d),h),f(d,h)). ** KEPT: 2787 (365,1071) EQUAL(f(f(c,e),h),f(f(a,b),h)). ** KEPT: 2788 (1112,1071) EQUAL(f(f(e,h),h),f(h,h)). ** KEPT: 2789 (748,1071) EQUAL(f(f(d,g(b)),h),f(h,h)). ** KEPT: 2790 (86,1071) EQUAL(f(f(c,g(a)),h),f(d,h)). ** KEPT: 2791 (5,1071) EQUAL(f(f(x,f(y,e)),h),f(f(x,y),h)). ** KEPT: 2792 (1071,1071) EQUAL(f(f(f(x,e),e),h),f(x,h)). ** KEPT: 2793 (5,1071) EQUAL(f(x,f(e,h)),f(x,h)). ** KEPT: 2794 (9,1071) EQUAL(f(x,f(d,g(b))),f(f(x,e),h)). ** KEPT: 2795 (1017,1071) EQUAL(f(f(f(k,k),e),h),f(d,b)). ** KEPT: 2796 (2296,1071) EQUAL(f(f(f(b,g(d)),e),h),e). ---> New Demodulator: 2797 (2796) EQUAL(f(f(f(b,g(d)),e),h),e). ** KEPT: 2798 (483,1071) EQUAL(f(a,f(e,h)),f(f(a,e),h)). ** KEPT: 2799 (1725,1071) EQUAL(f(f(f(b,g(h)),e),h),b). ---> New Demodulator: 2800 (2799) EQUAL(f(f(f(b,g(h)),e),h),b). ** KEPT: 2801 (1067,1071) EQUAL(f(f(f(x,g(x)),e),h),h). ---> New Demodulator: 2802 (2801) EQUAL(f(f(f(x,g(x)),e),h),h). ** KEPT: 2803 (1065,1071) EQUAL(f(f(f(g(x),x),e),h),h). ---> New Demodulator: 2804 (2803) EQUAL(f(f(f(g(x),x),e),h),h). ** KEPT: 2805 (1027,1071) EQUAL(f(f(f(g(d),k),e),h),e). ---> New Demodulator: 2806 (2805) EQUAL(f(f(f(g(d),k),e),h),e). ** KEPT: 2807 (1022,1071) EQUAL(f(f(f(g(h),k),e),h),b). ---> New Demodulator: 2808 (2807) EQUAL(f(f(f(g(h),k),e),h),b). ** KEPT: 2809 (1029,1071) EQUAL(f(f(f(e,k),e),h),d). ---> New Demodulator: 2810 (2809) EQUAL(f(f(f(e,k),e),h),d). ** KEPT: 2811 (131,1071) EQUAL(f(f(f(x,k),e),h),f(x,d)). ** KEPT: 2812 (520,1071) EQUAL(f(f(f(a,g(h)),e),h),a). ---> New Demodulator: 2813 (2812) EQUAL(f(f(f(a,g(h)),e),h),a). ** KEPT: 2814 (123,1071) EQUAL(f(f(k,e),h),d). ---> New Demodulator: 2815 (2814) EQUAL(f(f(k,e),h),d). ** KEPT: 2816 (5,1071) EQUAL(f(f(f(x,y),e),h),f(x,f(y,h))). ** KEPT: 2817 (3,1071) EQUAL(f(f(g(h),e),h),e). ---> New Demodulator: 2818 (2817) EQUAL(f(f(g(h),e),h),e). ** KEPT: 2819 (1,1071) EQUAL(f(f(e,e),h),h). ---> New Demodulator: 2820 (2819) EQUAL(f(f(e,e),h),h). >>>> Starting back demodulation with: 2797 (2796) EQUAL(f(f(f(b,g(d)),e),h),e). >>>> Starting back demodulation with: 2800 (2799) EQUAL(f(f(f(b,g(h)),e),h),b). >>>> Starting back demodulation with: 2802 (2801) EQUAL(f(f(f(x,g(x)),e),h),h). >>>> Starting back demodulation with: 2804 (2803) EQUAL(f(f(f(g(x),x),e),h),h). >>>> Starting back demodulation with: 2806 (2805) EQUAL(f(f(f(g(d),k),e),h),e). >>>> Starting back demodulation with: 2808 (2807) EQUAL(f(f(f(g(h),k),e),h),b). >>>> Starting back demodulation with: 2810 (2809) EQUAL(f(f(f(e,k),e),h),d). >>>> Starting back demodulation with: 2813 (2812) EQUAL(f(f(f(a,g(h)),e),h),a). >>>> Starting back demodulation with: 2815 (2814) EQUAL(f(f(k,e),h),d). >>>> Starting back demodulation with: 2818 (2817) EQUAL(f(f(g(h),e),h),e). >> back demodulating: 2729 (72,2667) EQUAL(f(f(f(g(h),e),h),b),b). >> back demodulating: 2730 (2729) EQUAL(f(f(f(g(h),e),h),b),b). >>>> Starting back demodulation with: 2820 (2819) EQUAL(f(f(e,e),h),h). >> back demodulating: 2657 (72,2641) EQUAL(f(f(f(e,e),h),b),d). >> back demodulating: 2658 (2657) EQUAL(f(f(f(e,e),h),b),d). ** KEPT: 2821 (1071,1125) EQUAL(f(g(f(x,e)),f(x,h)),h). ---> New Demodulator: 2822 (2821) EQUAL(f(g(f(x,e)),f(x,h)),h). ** KEPT: 2823 (1071,72) EQUAL(f(f(x,h),b),f(f(x,e),d)). ** KEPT: 2824 (1071,5) EQUAL(f(f(x,f(y,e)),h),f(x,f(y,h))). ** KEPT: 2825 (1071,5) EQUAL(f(f(x,e),f(h,y)),f(f(x,h),y)). ** KEPT: 2826 (1071,1133) EQUAL(f(x,f(f(g(x),e),h)),h). ---> New Demodulator: 2827 (2826) EQUAL(f(x,f(f(g(x),e),h)),h). ** KEPT: 2828 (1071,2290) EQUAL(f(b,f(f(g(d),e),h)),e). ---> New Demodulator: 2829 (2828) EQUAL(f(b,f(f(g(d),e),h)),e). ** KEPT: 2830 (1071,2208) EQUAL(g(f(f(g(d),e),h)),b). ---> New Demodulator: 2831 (2830) EQUAL(g(f(f(g(d),e),h)),b). ** KEPT: 2832 (1071,676) EQUAL(f(f(f(g(d),e),h),b),e). ---> New Demodulator: 2833 (2832) EQUAL(f(f(f(g(d),e),h),b),e). ** KEPT: 2834 (1071,1125) EQUAL(f(g(x),f(f(x,e),h)),h). ---> New Demodulator: 2835 (2834) EQUAL(f(g(x),f(f(x,e),h)),h). ** KEPT: 2836 (1071,72) EQUAL(f(f(f(x,e),h),b),f(x,d)). ** KEPT: 2837 (1071,526) EQUAL(f(f(f(a,e),h),g(h)),a). ---> New Demodulator: 2838 (2837) EQUAL(f(f(f(a,e),h),g(h)),a). ** KEPT: 2839 (1071,5) EQUAL(f(x,f(f(y,e),h)),f(f(x,y),h)). ** KEPT: 2840 (1071,5) EQUAL(f(f(f(x,e),h),y),f(x,f(h,y))). >>>> Starting back demodulation with: 2822 (2821) EQUAL(f(g(f(x,e)),f(x,h)),h). >> back demodulating: 2366 (2365) EQUAL(f(g(f(d,e)),f(d,h)),h). >> back demodulating: 2365 (861,1125) EQUAL(f(g(f(d,e)),f(d,h)),h). 2823 back subsumes: 2358 (72,861) EQUAL(f(f(d,h),b),f(f(d,e),d)). >>>> Starting back demodulation with: 2827 (2826) EQUAL(f(x,f(f(g(x),e),h)),h). >>>> Starting back demodulation with: 2829 (2828) EQUAL(f(b,f(f(g(d),e),h)),e). >>>> Starting back demodulation with: 2831 (2830) EQUAL(g(f(f(g(d),e),h)),b). >>>> Starting back demodulation with: 2833 (2832) EQUAL(f(f(f(g(d),e),h),b),e). >>>> Starting back demodulation with: 2835 (2834) EQUAL(f(g(x),f(f(x,e),h)),h). >> back demodulating: 2373 (2372) EQUAL(f(g(d),f(f(d,e),h)),h). >> back demodulating: 2372 (861,1125) EQUAL(f(g(d),f(f(d,e),h)),h). 2836 back subsumes: 2326 (72,861) EQUAL(f(f(f(d,e),h),b),f(d,d)). >>>> Starting back demodulation with: 2838 (2837) EQUAL(f(f(f(a,e),h),g(h)),a). new given clause: 2814 (123,1071) EQUAL(f(f(k,e),h),d). ** KEPT: 2841 (4,2814) EQUAL(f(f(k,f(x,g(x))),h),d). ---> New Demodulator: 2842 (2841) EQUAL(f(f(k,f(x,g(x))),h),d). ** KEPT: 2843 (3,2814) EQUAL(f(f(k,f(g(x),x)),h),d). ---> New Demodulator: 2844 (2843) EQUAL(f(f(k,f(g(x),x)),h),d). ** KEPT: 2845 (9,2814) EQUAL(f(f(k,e),f(d,g(b))),d). ---> New Demodulator: 2846 (2845) EQUAL(f(f(k,e),f(d,g(b))),d). ** KEPT: 2847 (1071,2814) EQUAL(f(f(f(k,e),e),h),d). ---> New Demodulator: 2848 (2847) EQUAL(f(f(f(k,e),e),h),d). ** KEPT: 2849 (5,2814) EQUAL(f(k,f(e,h)),d). ---> New Demodulator: 2850 (2849) EQUAL(f(k,f(e,h)),d). >>>> Starting back demodulation with: 2842 (2841) EQUAL(f(f(k,f(x,g(x))),h),d). >>>> Starting back demodulation with: 2844 (2843) EQUAL(f(f(k,f(g(x),x)),h),d). >>>> Starting back demodulation with: 2846 (2845) EQUAL(f(f(k,e),f(d,g(b))),d). >>>> Starting back demodulation with: 2848 (2847) EQUAL(f(f(f(k,e),e),h),d). >>>> Starting back demodulation with: 2850 (2849) EQUAL(f(k,f(e,h)),d). ** KEPT: 2851 (2814,1125) EQUAL(f(g(f(k,e)),d),h). ---> New Demodulator: 2852 (2851) EQUAL(f(g(f(k,e)),d),h). ** KEPT: 2853 (2814,72) EQUAL(f(f(k,e),d),f(d,b)). ** KEPT: 2854 (2814,5) EQUAL(f(f(x,f(k,e)),h),f(x,d)). ** KEPT: 2855 (2814,5) EQUAL(f(f(k,e),f(h,x)),f(d,x)). >>>> Starting back demodulation with: 2852 (2851) EQUAL(f(g(f(k,e)),d),h). new given clause: 2819 (1,1071) EQUAL(f(f(e,e),h),h). ** KEPT: 2856 (4,2819) EQUAL(f(f(e,f(x,g(x))),h),h). ---> New Demodulator: 2857 (2856) EQUAL(f(f(e,f(x,g(x))),h),h). ** KEPT: 2858 (3,2819) EQUAL(f(f(e,f(g(x),x)),h),h). ---> New Demodulator: 2859 (2858) EQUAL(f(f(e,f(g(x),x)),h),h). ** KEPT: 2860 (9,2819) EQUAL(f(f(e,e),f(d,g(b))),h). ---> New Demodulator: 2861 (2860) EQUAL(f(f(e,e),f(d,g(b))),h). ** KEPT: 2862 (1071,2819) EQUAL(f(f(f(e,e),e),h),h). ---> New Demodulator: 2863 (2862) EQUAL(f(f(f(e,e),e),h),h). ** KEPT: 2864 (5,2819) EQUAL(f(e,f(e,h)),h). ---> New Demodulator: 2865 (2864) EQUAL(f(e,f(e,h)),h). >>>> Starting back demodulation with: 2857 (2856) EQUAL(f(f(e,f(x,g(x))),h),h). >>>> Starting back demodulation with: 2859 (2858) EQUAL(f(f(e,f(g(x),x)),h),h). >>>> Starting back demodulation with: 2861 (2860) EQUAL(f(f(e,e),f(d,g(b))),h). >>>> Starting back demodulation with: 2863 (2862) EQUAL(f(f(f(e,e),e),h),h). >>>> Starting back demodulation with: 2865 (2864) EQUAL(f(e,f(e,h)),h). ** KEPT: 2866 (2819,1125) EQUAL(f(g(f(e,e)),h),h). ---> New Demodulator: 2867 (2866) EQUAL(f(g(f(e,e)),h),h). ** KEPT: 2868 (2819,5) EQUAL(f(f(x,f(e,e)),h),f(x,h)). ** KEPT: 2869 (2819,5) EQUAL(f(f(e,e),f(h,x)),f(h,x)). >>>> Starting back demodulation with: 2867 (2866) EQUAL(f(g(f(e,e)),h),h). >> back demodulating: 2701 (72,2659) EQUAL(f(f(g(f(e,e)),h),b),d). >> back demodulating: 2702 (2701) EQUAL(f(f(g(f(e,e)),h),b),d). new given clause: 2849 (5,2814) EQUAL(f(k,f(e,h)),d). ** KEPT: 2870 (2849,5) EQUAL(f(f(x,k),f(e,h)),f(x,d)). ** KEPT: 2871 (2849,5) EQUAL(f(k,f(f(e,h),x)),f(d,x)). new given clause: 2864 (5,2819) EQUAL(f(e,f(e,h)),h). ** KEPT: 2872 (4,2864) EQUAL(f(f(x,g(x)),f(e,h)),h). ---> New Demodulator: 2873 (2872) EQUAL(f(f(x,g(x)),f(e,h)),h). ** KEPT: 2874 (3,2864) EQUAL(f(f(g(x),x),f(e,h)),h). ---> New Demodulator: 2875 (2874) EQUAL(f(f(g(x),x),f(e,h)),h). >>>> Starting back demodulation with: 2873 (2872) EQUAL(f(f(x,g(x)),f(e,h)),h). >>>> Starting back demodulation with: 2875 (2874) EQUAL(f(f(g(x),x),f(e,h)),h). ** KEPT: 2876 (2864,5) EQUAL(f(f(x,e),f(e,h)),f(x,h)). ** KEPT: 2877 (2864,5) EQUAL(f(e,f(f(e,h),x)),f(h,x)). new given clause: 2817 (3,1071) EQUAL(f(f(g(h),e),h),e). ** KEPT: 2878 (9,2817) EQUAL(f(f(g(f(d,g(b))),e),h),e). ---> New Demodulator: 2879 (2878) EQUAL(f(f(g(f(d,g(b))),e),h),e). ** KEPT: 2880 (4,2817) EQUAL(f(f(g(h),f(x,g(x))),h),e). ---> New Demodulator: 2881 (2880) EQUAL(f(f(g(h),f(x,g(x))),h),e). ** KEPT: 2882 (3,2817) EQUAL(f(f(g(h),f(g(x),x)),h),e). ---> New Demodulator: 2883 (2882) EQUAL(f(f(g(h),f(g(x),x)),h),e). ** KEPT: 2884 (9,2817) EQUAL(f(f(g(h),e),f(d,g(b))),e). ---> New Demodulator: 2885 (2884) EQUAL(f(f(g(h),e),f(d,g(b))),e). ** KEPT: 2886 (1071,2817) EQUAL(f(f(f(g(h),e),e),h),e). ---> New Demodulator: 2887 (2886) EQUAL(f(f(f(g(h),e),e),h),e). ** KEPT: 2888 (5,2817) EQUAL(f(g(h),f(e,h)),e). ---> New Demodulator: 2889 (2888) EQUAL(f(g(h),f(e,h)),e). >>>> Starting back demodulation with: 2879 (2878) EQUAL(f(f(g(f(d,g(b))),e),h),e). >>>> Starting back demodulation with: 2881 (2880) EQUAL(f(f(g(h),f(x,g(x))),h),e). >>>> Starting back demodulation with: 2883 (2882) EQUAL(f(f(g(h),f(g(x),x)),h),e). >>>> Starting back demodulation with: 2885 (2884) EQUAL(f(f(g(h),e),f(d,g(b))),e). >>>> Starting back demodulation with: 2887 (2886) EQUAL(f(f(f(g(h),e),e),h),e). >>>> Starting back demodulation with: 2889 (2888) EQUAL(f(g(h),f(e,h)),e). ** KEPT: 2890 (2817,1125) EQUAL(f(g(f(g(h),e)),e),h). ---> New Demodulator: 2891 (2890) EQUAL(f(g(f(g(h),e)),e),h). ** KEPT: 2892 (2817,5) EQUAL(f(f(x,f(g(h),e)),h),f(x,e)). ** KEPT: 2893 (2817,5) EQUAL(f(f(g(h),e),f(h,x)),f(e,x)). >>>> Starting back demodulation with: 2891 (2890) EQUAL(f(g(f(g(h),e)),e),h). new given clause: 2851 (2814,1125) EQUAL(f(g(f(k,e)),d),h). ** KEPT: 2894 (4,2851) EQUAL(f(g(f(k,f(x,g(x)))),d),h). ---> New Demodulator: 2895 (2894) EQUAL(f(g(f(k,f(x,g(x)))),d),h). ** KEPT: 2896 (3,2851) EQUAL(f(g(f(k,f(g(x),x))),d),h). ---> New Demodulator: 2897 (2896) EQUAL(f(g(f(k,f(g(x),x))),d),h). ** KEPT: 2898 (8,2851) EQUAL(f(g(f(k,e)),f(c,g(a))),h). ---> New Demodulator: 2899 (2898) EQUAL(f(g(f(k,e)),f(c,g(a))),h). ** KEPT: 2900 (131,2851) EQUAL(f(f(g(f(k,e)),k),h),h). ---> New Demodulator: 2901 (2900) EQUAL(f(f(g(f(k,e)),k),h),h). ** KEPT: 2902 (72,2851) EQUAL(f(f(g(f(k,e)),h),b),h). ---> New Demodulator: 2903 (2902) EQUAL(f(f(g(f(k,e)),h),b),h). >>>> Starting back demodulation with: 2895 (2894) EQUAL(f(g(f(k,f(x,g(x)))),d),h). >>>> Starting back demodulation with: 2897 (2896) EQUAL(f(g(f(k,f(g(x),x))),d),h). >>>> Starting back demodulation with: 2899 (2898) EQUAL(f(g(f(k,e)),f(c,g(a))),h). >>>> Starting back demodulation with: 2901 (2900) EQUAL(f(f(g(f(k,e)),k),h),h). >>>> Starting back demodulation with: 2903 (2902) EQUAL(f(f(g(f(k,e)),h),b),h). ** KEPT: 2904 (2851,5) EQUAL(f(f(x,g(f(k,e))),d),f(x,h)). ** KEPT: 2905 (2851,5) EQUAL(f(g(f(k,e)),f(d,x)),f(h,x)). new given clause: 2866 (2819,1125) EQUAL(f(g(f(e,e)),h),h). ** KEPT: 2906 (4,2866) EQUAL(f(g(f(f(x,g(x)),e)),h),h). ---> New Demodulator: 2907 (2906) EQUAL(f(g(f(f(x,g(x)),e)),h),h). ** KEPT: 2908 (3,2866) EQUAL(f(g(f(f(g(x),x),e)),h),h). ---> New Demodulator: 2909 (2908) EQUAL(f(g(f(f(g(x),x),e)),h),h). ** KEPT: 2910 (4,2866) EQUAL(f(g(f(e,f(x,g(x)))),h),h). ---> New Demodulator: 2911 (2910) EQUAL(f(g(f(e,f(x,g(x)))),h),h). ** KEPT: 2912 (3,2866) EQUAL(f(g(f(e,f(g(x),x))),h),h). ---> New Demodulator: 2913 (2912) EQUAL(f(g(f(e,f(g(x),x))),h),h). ** KEPT: 2914 (9,2866) EQUAL(f(g(f(e,e)),f(d,g(b))),h). ---> New Demodulator: 2915 (2914) EQUAL(f(g(f(e,e)),f(d,g(b))),h). ** KEPT: 2916 (1071,2866) EQUAL(f(f(g(f(e,e)),e),h),h). ---> New Demodulator: 2917 (2916) EQUAL(f(f(g(f(e,e)),e),h),h). >>>> Starting back demodulation with: 2907 (2906) EQUAL(f(g(f(f(x,g(x)),e)),h),h). >>>> Starting back demodulation with: 2909 (2908) EQUAL(f(g(f(f(g(x),x),e)),h),h). >>>> Starting back demodulation with: 2911 (2910) EQUAL(f(g(f(e,f(x,g(x)))),h),h). >>>> Starting back demodulation with: 2913 (2912) EQUAL(f(g(f(e,f(g(x),x))),h),h). >>>> Starting back demodulation with: 2915 (2914) EQUAL(f(g(f(e,e)),f(d,g(b))),h). >>>> Starting back demodulation with: 2917 (2916) EQUAL(f(f(g(f(e,e)),e),h),h). ** KEPT: 2918 (2866,5) EQUAL(f(f(x,g(f(e,e))),h),f(x,h)). ** KEPT: 2919 (2866,5) EQUAL(f(g(f(e,e)),f(h,x)),f(h,x)). new given clause: 2888 (5,2817) EQUAL(f(g(h),f(e,h)),e). ** KEPT: 2920 (9,2888) EQUAL(f(g(f(d,g(b))),f(e,h)),e). ---> New Demodulator: 2921 (2920) EQUAL(f(g(f(d,g(b))),f(e,h)),e). >>>> Starting back demodulation with: 2921 (2920) EQUAL(f(g(f(d,g(b))),f(e,h)),e). ** KEPT: 2922 (2888,5) EQUAL(f(f(x,g(h)),f(e,h)),f(x,e)). ** KEPT: 2923 (2888,5) EQUAL(f(g(h),f(f(e,h),x)),f(e,x)). new given clause: 1072 (8,1061) EQUAL(f(g(k),f(c,g(a))),h). ** KEPT: 2924 (5,1072) EQUAL(f(f(g(k),c),g(a)),h). ---> New Demodulator: 2925 (2924) EQUAL(f(f(g(k),c),g(a)),h). >>>> Starting back demodulation with: 2925 (2924) EQUAL(f(f(g(k),c),g(a)),h). ** KEPT: 2926 (1072,5) EQUAL(f(f(x,g(k)),f(c,g(a))),f(x,h)). ** KEPT: 2927 (1072,5) EQUAL(f(g(k),f(f(c,g(a)),x)),f(h,x)). new given clause: 1114 (1095,92) EQUAL(f(d,f(h,e)),f(d,h)). ** KEPT: 2928 (8,1114) EQUAL(f(f(c,g(a)),f(h,e)),f(d,h)). ** KEPT: 2929 (9,1114) EQUAL(f(d,f(f(d,g(b)),e)),f(d,h)). ** KEPT: 2930 (4,1114) EQUAL(f(d,f(h,f(x,g(x)))),f(d,h)). ** KEPT: 2931 (3,1114) EQUAL(f(d,f(h,f(g(x),x))),f(d,h)). ** KEPT: 2932 (132,1114) EQUAL(f(k,f(h,f(h,e))),f(d,h)). ** KEPT: 2933 (73,1114) EQUAL(f(h,f(b,f(h,e))),f(d,h)). ** KEPT: 2934 (8,1114) EQUAL(f(f(c,g(a)),h),f(d,f(h,e))). ** KEPT: 2935 (9,1114) EQUAL(f(d,f(d,g(b))),f(d,f(h,e))). ** KEPT: 2936 (1071,1114) EQUAL(f(d,f(h,e)),f(f(d,e),h)). ** KEPT: 2937 (132,1114) EQUAL(f(k,f(h,h)),f(d,f(h,e))). ** KEPT: 2938 (92,1114) EQUAL(f(d,f(h,e)),f(d,f(e,h))). ** KEPT: 2939 (73,1114) EQUAL(f(h,f(b,h)),f(d,f(h,e))). ** KEPT: 2940 (1114,113) EQUAL(f(f(d,h),g(f(h,e))),d). ---> New Demodulator: 2941 (2940) EQUAL(f(f(d,h),g(f(h,e))),d). ** KEPT: 2942 (1114,5) EQUAL(f(f(x,d),f(h,e)),f(x,f(d,h))). ** KEPT: 2943 (1114,5) EQUAL(f(d,f(f(h,e),x)),f(f(d,h),x)). ** KEPT: 2944 (1114,1125) EQUAL(f(g(d),f(d,f(h,e))),h). ---> New Demodulator: 2945 (2944) EQUAL(f(g(d),f(d,f(h,e))),h). ** KEPT: 2946 (1114,113) EQUAL(f(f(d,f(h,e)),g(h)),d). ---> New Demodulator: 2947 (2946) EQUAL(f(f(d,f(h,e)),g(h)),d). ** KEPT: 2948 (1114,5) EQUAL(f(x,f(d,f(h,e))),f(f(x,d),h)). ** KEPT: 2949 (1114,5) EQUAL(f(f(d,f(h,e)),x),f(d,f(h,x))). >>>> Starting back demodulation with: 2941 (2940) EQUAL(f(f(d,h),g(f(h,e))),d). >>>> Starting back demodulation with: 2945 (2944) EQUAL(f(g(d),f(d,f(h,e))),h). >>>> Starting back demodulation with: 2947 (2946) EQUAL(f(f(d,f(h,e)),g(h)),d). new given clause: 1141 (1074,260) EQUAL(f(g(f(g(k),h)),h),b). ** KEPT: 2950 (9,1141) EQUAL(f(g(f(g(k),f(d,g(b)))),h),b). ---> New Demodulator: 2951 (2950) EQUAL(f(g(f(g(k),f(d,g(b)))),h),b). ** KEPT: 2952 (1071,1141) EQUAL(f(g(f(f(g(k),e),h)),h),b). ---> New Demodulator: 2953 (2952) EQUAL(f(g(f(f(g(k),e),h)),h),b). ** KEPT: 2954 (9,1141) EQUAL(f(g(f(g(k),h)),f(d,g(b))),b). ---> New Demodulator: 2955 (2954) EQUAL(f(g(f(g(k),h)),f(d,g(b))),b). ** KEPT: 2956 (1071,1141) EQUAL(f(f(g(f(g(k),h)),e),h),b). ---> New Demodulator: 2957 (2956) EQUAL(f(f(g(f(g(k),h)),e),h),b). >>>> Starting back demodulation with: 2951 (2950) EQUAL(f(g(f(g(k),f(d,g(b)))),h),b). >>>> Starting back demodulation with: 2953 (2952) EQUAL(f(g(f(f(g(k),e),h)),h),b). >>>> Starting back demodulation with: 2955 (2954) EQUAL(f(g(f(g(k),h)),f(d,g(b))),b). >>>> Starting back demodulation with: 2957 (2956) EQUAL(f(f(g(f(g(k),h)),e),h),b). ** KEPT: 2958 (1141,72) EQUAL(f(g(f(g(k),h)),d),f(b,b)). ** KEPT: 2959 (1141,5) EQUAL(f(f(x,g(f(g(k),h))),h),f(x,b)). ** KEPT: 2960 (1141,5) EQUAL(f(g(f(g(k),h)),f(h,x)),f(b,x)). new given clause: 1149 (1067,1125) EQUAL(f(g(f(x,g(x))),h),h). ** KEPT: 2961 (5,1149) EQUAL(f(g(f(x,f(y,g(f(x,y))))),h),h). ---> New Demodulator: 2962 (2961) EQUAL(f(g(f(x,f(y,g(f(x,y))))),h),h). ** KEPT: 2963 (9,1149) EQUAL(f(g(f(x,g(x))),f(d,g(b))),h). ---> New Demodulator: 2964 (2963) EQUAL(f(g(f(x,g(x))),f(d,g(b))),h). ** KEPT: 2965 (1071,1149) EQUAL(f(f(g(f(x,g(x))),e),h),h). ---> New Demodulator: 2966 (2965) EQUAL(f(f(g(f(x,g(x))),e),h),h). >>>> Starting back demodulation with: 2962 (2961) EQUAL(f(g(f(x,f(y,g(f(x,y))))),h),h). >>>> Starting back demodulation with: 2964 (2963) EQUAL(f(g(f(x,g(x))),f(d,g(b))),h). >>>> Starting back demodulation with: 2966 (2965) EQUAL(f(f(g(f(x,g(x))),e),h),h). ** KEPT: 2967 (1149,5) EQUAL(f(f(x,g(f(y,g(y)))),h),f(x,h)). ** KEPT: 2968 (1149,5) EQUAL(f(g(f(y,g(y))),f(h,x)),f(h,x)). new given clause: 1151 (1065,1125) EQUAL(f(g(f(g(x),x)),h),h). ** KEPT: 2969 (5,1151) EQUAL(f(g(f(f(g(f(x,y)),x),y)),h),h). ---> New Demodulator: 2970 (2969) EQUAL(f(g(f(f(g(f(x,y)),x),y)),h),h). ** KEPT: 2971 (9,1151) EQUAL(f(g(f(g(x),x)),f(d,g(b))),h). ---> New Demodulator: 2972 (2971) EQUAL(f(g(f(g(x),x)),f(d,g(b))),h). ** KEPT: 2973 (1071,1151) EQUAL(f(f(g(f(g(x),x)),e),h),h). ---> New Demodulator: 2974 (2973) EQUAL(f(f(g(f(g(x),x)),e),h),h). >>>> Starting back demodulation with: 2970 (2969) EQUAL(f(g(f(f(g(f(x,y)),x),y)),h),h). >>>> Starting back demodulation with: 2972 (2971) EQUAL(f(g(f(g(x),x)),f(d,g(b))),h). >>>> Starting back demodulation with: 2974 (2973) EQUAL(f(f(g(f(g(x),x)),e),h),h). ** KEPT: 2975 (1151,5) EQUAL(f(f(x,g(f(g(y),y))),h),f(x,h)). ** KEPT: 2976 (1151,5) EQUAL(f(g(f(g(y),y)),f(h,x)),f(h,x)). new given clause: 1153 (1027,1125) EQUAL(f(g(f(g(d),k)),e),h). ** KEPT: 2977 (8,1153) EQUAL(f(g(f(g(f(c,g(a))),k)),e),h). ---> New Demodulator: 2978 (2977) EQUAL(f(g(f(g(f(c,g(a))),k)),e),h). ** KEPT: 2979 (4,1153) EQUAL(f(g(f(g(d),k)),f(x,g(x))),h). ---> New Demodulator: 2980 (2979) EQUAL(f(g(f(g(d),k)),f(x,g(x))),h). ** KEPT: 2981 (3,1153) EQUAL(f(g(f(g(d),k)),f(g(x),x)),h). ---> New Demodulator: 2982 (2981) EQUAL(f(g(f(g(d),k)),f(g(x),x)),h). ** KEPT: 2983 (2,1153) EQUAL(g(f(g(d),k)),h). ---> New Demodulator: 2984 (2983) EQUAL(g(f(g(d),k)),h). >>>> Starting back demodulation with: 2978 (2977) EQUAL(f(g(f(g(f(c,g(a))),k)),e),h). >>>> Starting back demodulation with: 2980 (2979) EQUAL(f(g(f(g(d),k)),f(x,g(x))),h). >>>> Starting back demodulation with: 2982 (2981) EQUAL(f(g(f(g(d),k)),f(g(x),x)),h). >>>> Starting back demodulation with: 2984 (2983) EQUAL(g(f(g(d),k)),h). >> back demodulating: 1153 (1027,1125) EQUAL(f(g(f(g(d),k)),e),h). >> back demodulating: 1154 (1153) EQUAL(f(g(f(g(d),k)),e),h). >> back demodulating: 1225 (721,1175) EQUAL(f(g(f(g(d),k)),b),d). >> back demodulating: 1226 (1225) EQUAL(f(g(f(g(d),k)),b),d). >> back demodulating: 2979 (4,1153) EQUAL(f(g(f(g(d),k)),f(x,g(x))),h). ** KEPT: 2985 (2979,2984) EQUAL(f(h,f(x,g(x))),h). ---> New Demodulator: 2986 (2985) EQUAL(f(h,f(x,g(x))),h). >> back demodulating: 2980 (2979) EQUAL(f(g(f(g(d),k)),f(x,g(x))),h). >> back demodulating: 2981 (3,1153) EQUAL(f(g(f(g(d),k)),f(g(x),x)),h). ** KEPT: 2987 (2981,2984) EQUAL(f(h,f(g(x),x)),h). ---> New Demodulator: 2988 (2987) EQUAL(f(h,f(g(x),x)),h). >> back demodulating: 2982 (2981) EQUAL(f(g(f(g(d),k)),f(g(x),x)),h). >>>> Starting back demodulation with: 2986 (2985) EQUAL(f(h,f(x,g(x))),h). >> back demodulating: 794 (4,784) EQUAL(f(f(h,f(x,g(x))),b),d). >> back demodulating: 795 (794) EQUAL(f(f(h,f(x,g(x))),b),d). >> back demodulating: 806 (4,786) EQUAL(f(k,f(h,f(x,g(x)))),d). >> back demodulating: 807 (806) EQUAL(f(k,f(h,f(x,g(x)))),d). >> back demodulating: 828 (4,800) EQUAL(f(g(f(h,f(x,g(x)))),d),b). >> back demodulating: 829 (828) EQUAL(f(g(f(h,f(x,g(x)))),d),b). >> back demodulating: 848 (4,840) EQUAL(f(d,g(f(h,f(x,g(x))))),k). >> back demodulating: 849 (848) EQUAL(f(d,g(f(h,f(x,g(x))))),k). >> back demodulating: 1108 (4,1095) EQUAL(f(e,f(h,f(x,g(x)))),h). >> back demodulating: 1109 (1108) EQUAL(f(e,f(h,f(x,g(x)))),h). >> back demodulating: 2930 (4,1114) EQUAL(f(d,f(h,f(x,g(x)))),f(d,h)). >> back demodulating: 782 (4,748) EQUAL(f(h,f(x,g(x))),f(d,g(b))). >> back demodulating: 760 (759) EQUAL(f(h,f(b,g(b))),h). >> back demodulating: 759 (9,73) EQUAL(f(h,f(b,g(b))),h). >>>> Starting back demodulation with: 2988 (2987) EQUAL(f(h,f(g(x),x)),h). >> back demodulating: 796 (3,784) EQUAL(f(f(h,f(g(x),x)),b),d). >> back demodulating: 797 (796) EQUAL(f(f(h,f(g(x),x)),b),d). >> back demodulating: 808 (3,786) EQUAL(f(k,f(h,f(g(x),x))),d). >> back demodulating: 809 (808) EQUAL(f(k,f(h,f(g(x),x))),d). >> back demodulating: 830 (3,800) EQUAL(f(g(f(h,f(g(x),x))),d),b). >> back demodulating: 831 (830) EQUAL(f(g(f(h,f(g(x),x))),d),b). >> back demodulating: 850 (3,840) EQUAL(f(d,g(f(h,f(g(x),x)))),k). >> back demodulating: 851 (850) EQUAL(f(d,g(f(h,f(g(x),x)))),k). >> back demodulating: 1110 (3,1095) EQUAL(f(e,f(h,f(g(x),x))),h). >> back demodulating: 1111 (1110) EQUAL(f(e,f(h,f(g(x),x))),h). >> back demodulating: 2931 (3,1114) EQUAL(f(d,f(h,f(g(x),x))),f(d,h)). >> back demodulating: 783 (3,748) EQUAL(f(h,f(g(x),x)),f(d,g(b))). ** KEPT: 2989 (1153,5,2984) EQUAL(f(h,f(e,x)),f(h,x)). ** KEPT: 2990 (1153,2866,2984) EQUAL(f(g(f(e,e)),f(h,e)),h). ---> New Demodulator: 2991 (2990) EQUAL(f(g(f(e,e)),f(h,e)),h). ** KEPT: 2992 (1153,2819,2984) EQUAL(f(f(e,e),f(h,e)),h). ---> New Demodulator: 2993 (2992) EQUAL(f(f(e,e),f(h,e)),h). ** KEPT: 2994 (1153,2817,2984) EQUAL(f(f(g(h),e),f(h,e)),e). ---> New Demodulator: 2995 (2994) EQUAL(f(f(g(h),e),f(h,e)),e). ** KEPT: 2996 (1153,2814,2984) EQUAL(f(f(k,e),f(h,e)),d). ---> New Demodulator: 2997 (2996) EQUAL(f(f(k,e),f(h,e)),d). ** KEPT: 2998 (1153,2296,2984) EQUAL(f(f(b,g(d)),f(h,e)),e). ---> New Demodulator: 2999 (2998) EQUAL(f(f(b,g(d)),f(h,e)),e). ** KEPT: 3000 (1153,1300,2984) EQUAL(f(k,f(f(h,e),g(d))),e). ---> New Demodulator: 3001 (3000) EQUAL(f(k,f(f(h,e),g(d))),e). ** KEPT: 3002 (1153,1295,2984) EQUAL(f(k,f(f(h,e),g(h))),k). ---> New Demodulator: 3003 (3002) EQUAL(f(k,f(f(h,e),g(h))),k). ** KEPT: 3004 (1153,1297,2984) EQUAL(f(k,f(f(h,e),g(b))),h). ---> New Demodulator: 3005 (3004) EQUAL(f(k,f(f(h,e),g(b))),h). ** KEPT: 3006 (1153,1151,2984) EQUAL(f(g(f(g(x),x)),f(h,e)),h). ---> New Demodulator: 3007 (3006) EQUAL(f(g(f(g(x),x)),f(h,e)),h). ** KEPT: 3008 (1153,1149,2984) EQUAL(f(g(f(x,g(x))),f(h,e)),h). ---> New Demodulator: 3009 (3008) EQUAL(f(g(f(x,g(x))),f(h,e)),h). ** KEPT: 3010 (1153,1141,2984) EQUAL(f(g(f(g(k),h)),f(h,e)),b). ---> New Demodulator: 3011 (3010) EQUAL(f(g(f(g(k),h)),f(h,e)),b). ** KEPT: 3012 (1153,1133,2984) EQUAL(f(x,f(g(x),f(h,e))),h). ---> New Demodulator: 3013 (3012) EQUAL(f(x,f(g(x),f(h,e))),h). ** KEPT: 3014 (1153,1071,2984) EQUAL(f(f(x,e),h),f(x,f(h,e))). ** KEPT: 3015 (1153,1141,2984) EQUAL(f(g(f(g(k),f(h,e))),h),b). ---> New Demodulator: 3016 (3015) EQUAL(f(g(f(g(k),f(h,e))),h),b). ** KEPT: 3017 (1153,1074,2984) EQUAL(f(f(g(k),f(h,e)),b),h). ---> New Demodulator: 3018 (3017) EQUAL(f(f(g(k),f(h,e)),b),h). ** KEPT: 3019 (1153,1029,2984) EQUAL(f(f(e,k),f(h,e)),d). ---> New Demodulator: 3020 (3019) EQUAL(f(f(e,k),f(h,e)),d). ** KEPT: 3021 (1153,1027,2984) EQUAL(f(f(g(d),k),f(h,e)),e). ---> New Demodulator: 3022 (3021) EQUAL(f(f(g(d),k),f(h,e)),e). ** KEPT: 3023 (1153,1022,2984) EQUAL(f(f(g(h),k),f(h,e)),b). ---> New Demodulator: 3024 (3023) EQUAL(f(f(g(h),k),f(h,e)),b). ** KEPT: 3025 (1153,1017,2984) EQUAL(f(f(k,k),f(h,e)),f(d,b)). ** KEPT: 3026 (1153,949,2984) EQUAL(f(f(h,e),g(f(e,g(b)))),d). ---> New Demodulator: 3027 (3026) EQUAL(f(f(h,e),g(f(e,g(b)))),d). ** KEPT: 3028 (1153,907,2984) EQUAL(f(f(h,e),f(b,f(e,e))),d). ---> New Demodulator: 3029 (3028) EQUAL(f(f(h,e),f(b,f(e,e))),d). ** KEPT: 3030 (1153,798,2984) EQUAL(f(f(h,e),f(e,b)),d). ---> New Demodulator: 3031 (3030) EQUAL(f(f(h,e),f(e,b)),d). ** KEPT: 3032 (1153,1114,2984) EQUAL(f(d,f(f(h,e),e)),f(d,h)). ** KEPT: 3033 (1153,1095,2984) EQUAL(f(e,f(f(h,e),e)),h). ---> New Demodulator: 3034 (3033) EQUAL(f(e,f(f(h,e),e)),h). ** KEPT: 3035 (1153,840,2984) EQUAL(f(d,g(f(f(h,e),e))),k). ---> New Demodulator: 3036 (3035) EQUAL(f(d,g(f(f(h,e),e))),k). ** KEPT: 3037 (1153,800,2984) EQUAL(f(g(f(f(h,e),e)),d),b). ---> New Demodulator: 3038 (3037) EQUAL(f(g(f(f(h,e),e)),d),b). ** KEPT: 3039 (1153,786,2984) EQUAL(f(k,f(f(h,e),e)),d). ---> New Demodulator: 3040 (3039) EQUAL(f(k,f(f(h,e),e)),d). ** KEPT: 3041 (1153,762,2984) EQUAL(f(f(h,e),f(b,g(d))),e). ---> New Demodulator: 3042 (3041) EQUAL(f(f(h,e),f(b,g(d))),e). ** KEPT: 3043 (1153,750,2984) EQUAL(f(f(h,e),f(b,b)),f(k,d)). ** KEPT: 3044 (1153,748,2984) EQUAL(f(f(h,e),e),f(d,g(b))). ** KEPT: 3045 (1153,2290,2984) EQUAL(f(b,f(g(d),f(h,e))),e). ---> New Demodulator: 3046 (3045) EQUAL(f(b,f(g(d),f(h,e))),e). ** KEPT: 3047 (1153,2208,2984) EQUAL(g(f(g(d),f(h,e))),b). ---> New Demodulator: 3048 (3047) EQUAL(g(f(g(d),f(h,e))),b). ** KEPT: 3049 (1153,676,2984) EQUAL(f(f(g(d),f(h,e)),b),e). ---> New Demodulator: 3050 (3049) EQUAL(f(f(g(d),f(h,e)),b),e). ** KEPT: 3051 (1153,48,2984) EQUAL(f(f(h,e),f(b,g(h))),k). ---> New Demodulator: 3052 (3051) EQUAL(f(f(h,e),f(b,g(h))),k). ** KEPT: 3053 (1153,1125,2984) EQUAL(f(g(x),f(x,f(h,e))),h). ---> New Demodulator: 3054 (3053) EQUAL(f(g(x),f(x,f(h,e))),h). ** KEPT: 3055 (1153,2888,2984) EQUAL(f(g(f(h,e)),f(e,h)),e). ---> New Demodulator: 3056 (3055) EQUAL(f(g(f(h,e)),f(e,h)),e). ** KEPT: 3057 (1153,2817,2984) EQUAL(f(f(g(f(h,e)),e),h),e). ---> New Demodulator: 3058 (3057) EQUAL(f(f(g(f(h,e)),e),h),e). ** KEPT: 3059 (1153,2667,2984) EQUAL(f(f(g(f(h,e)),e),d),b). ---> New Demodulator: 3060 (3059) EQUAL(f(f(g(f(h,e)),e),d),b). ** KEPT: 3061 (1153,997,2984) EQUAL(f(c,f(g(a),g(f(h,e)))),k). ---> New Demodulator: 3062 (3061) EQUAL(f(c,f(g(a),g(f(h,e)))),k). ** KEPT: 3063 (1153,933,2984) EQUAL(f(k,g(f(e,g(f(h,e))))),d). ---> New Demodulator: 3064 (3063) EQUAL(f(k,g(f(e,g(f(h,e))))),d). >>>> Starting back demodulation with: 2991 (2990) EQUAL(f(g(f(e,e)),f(h,e)),h). >>>> Starting back demodulation with: 2993 (2992) EQUAL(f(f(e,e),f(h,e)),h). >>>> Starting back demodulation with: 2995 (2994) EQUAL(f(f(g(h),e),f(h,e)),e). >>>> Starting back demodulation with: 2997 (2996) EQUAL(f(f(k,e),f(h,e)),d). >>>> Starting back demodulation with: 2999 (2998) EQUAL(f(f(b,g(d)),f(h,e)),e). >>>> Starting back demodulation with: 3001 (3000) EQUAL(f(k,f(f(h,e),g(d))),e). >>>> Starting back demodulation with: 3003 (3002) EQUAL(f(k,f(f(h,e),g(h))),k). >>>> Starting back demodulation with: 3005 (3004) EQUAL(f(k,f(f(h,e),g(b))),h). >>>> Starting back demodulation with: 3007 (3006) EQUAL(f(g(f(g(x),x)),f(h,e)),h). >>>> Starting back demodulation with: 3009 (3008) EQUAL(f(g(f(x,g(x))),f(h,e)),h). >>>> Starting back demodulation with: 3011 (3010) EQUAL(f(g(f(g(k),h)),f(h,e)),b). >>>> Starting back demodulation with: 3013 (3012) EQUAL(f(x,f(g(x),f(h,e))),h). >>>> Starting back demodulation with: 3016 (3015) EQUAL(f(g(f(g(k),f(h,e))),h),b). >>>> Starting back demodulation with: 3018 (3017) EQUAL(f(f(g(k),f(h,e)),b),h). >>>> Starting back demodulation with: 3020 (3019) EQUAL(f(f(e,k),f(h,e)),d). >>>> Starting back demodulation with: 3022 (3021) EQUAL(f(f(g(d),k),f(h,e)),e). >>>> Starting back demodulation with: 3024 (3023) EQUAL(f(f(g(h),k),f(h,e)),b). >>>> Starting back demodulation with: 3027 (3026) EQUAL(f(f(h,e),g(f(e,g(b)))),d). >>>> Starting back demodulation with: 3029 (3028) EQUAL(f(f(h,e),f(b,f(e,e))),d). >>>> Starting back demodulation with: 3031 (3030) EQUAL(f(f(h,e),f(e,b)),d). >>>> Starting back demodulation with: 3034 (3033) EQUAL(f(e,f(f(h,e),e)),h). >>>> Starting back demodulation with: 3036 (3035) EQUAL(f(d,g(f(f(h,e),e))),k). >>>> Starting back demodulation with: 3038 (3037) EQUAL(f(g(f(f(h,e),e)),d),b). >>>> Starting back demodulation with: 3040 (3039) EQUAL(f(k,f(f(h,e),e)),d). >>>> Starting back demodulation with: 3042 (3041) EQUAL(f(f(h,e),f(b,g(d))),e). >>>> Starting back demodulation with: 3046 (3045) EQUAL(f(b,f(g(d),f(h,e))),e). >>>> Starting back demodulation with: 3048 (3047) EQUAL(g(f(g(d),f(h,e))),b). >>>> Starting back demodulation with: 3050 (3049) EQUAL(f(f(g(d),f(h,e)),b),e). >>>> Starting back demodulation with: 3052 (3051) EQUAL(f(f(h,e),f(b,g(h))),k). >>>> Starting back demodulation with: 3054 (3053) EQUAL(f(g(x),f(x,f(h,e))),h). >> back demodulating: 2945 (2944) EQUAL(f(g(d),f(d,f(h,e))),h). >> back demodulating: 2944 (1114,1125) EQUAL(f(g(d),f(d,f(h,e))),h). >>>> Starting back demodulation with: 3056 (3055) EQUAL(f(g(f(h,e)),f(e,h)),e). >>>> Starting back demodulation with: 3058 (3057) EQUAL(f(f(g(f(h,e)),e),h),e). >>>> Starting back demodulation with: 3060 (3059) EQUAL(f(f(g(f(h,e)),e),d),b). >>>> Starting back demodulation with: 3062 (3061) EQUAL(f(c,f(g(a),g(f(h,e)))),k). >>>> Starting back demodulation with: 3064 (3063) EQUAL(f(k,g(f(e,g(f(h,e))))),d). new given clause: 2983 (2,1153) EQUAL(g(f(g(d),k)),h). ** KEPT: 3065 (8,2983) EQUAL(g(f(g(f(c,g(a))),k)),h). ---> New Demodulator: 3066 (3065) EQUAL(g(f(g(f(c,g(a))),k)),h). >>>> Starting back demodulation with: 3066 (3065) EQUAL(g(f(g(f(c,g(a))),k)),h). >> back demodulating: 2977 (8,1153) EQUAL(f(g(f(g(f(c,g(a))),k)),e),h). >> back demodulating: 2978 (2977) EQUAL(f(g(f(g(f(c,g(a))),k)),e),h). ** KEPT: 3067 (2983,2126) EQUAL(f(h,f(f(g(d),k),a)),a). ---> New Demodulator: 3068 (3067) EQUAL(f(h,f(f(g(d),k),a)),a). ** KEPT: 3069 (2983,2120) EQUAL(f(f(g(d),k),f(h,a)),a). ---> New Demodulator: 3070 (3069) EQUAL(f(f(g(d),k),f(h,a)),a). ** KEPT: 3071 (2983,1719) EQUAL(f(f(b,f(g(d),k)),h),b). ---> New Demodulator: 3072 (3071) EQUAL(f(f(b,f(g(d),k)),h),b). ** KEPT: 3073 (2983,1197) EQUAL(f(f(g(d),k),f(h,d)),d). ---> New Demodulator: 3074 (3073) EQUAL(f(f(g(d),k),f(h,d)),d). ** KEPT: 3075 (2983,1133) EQUAL(f(f(g(d),k),f(h,h)),h). ---> New Demodulator: 3076 (3075) EQUAL(f(f(g(d),k),f(h,h)),h). ** KEPT: 3077 (2983,1725) EQUAL(f(f(b,h),f(g(d),k)),b). ---> New Demodulator: 3078 (3077) EQUAL(f(f(b,h),f(g(d),k)),b). ** KEPT: 3079 (2983,526) EQUAL(f(f(a,f(g(d),k)),h),a). ---> New Demodulator: 3080 (3079) EQUAL(f(f(a,f(g(d),k)),h),a). ** KEPT: 3081 (2983,520) EQUAL(f(f(a,h),f(g(d),k)),a). ---> New Demodulator: 3082 (3081) EQUAL(f(f(a,h),f(g(d),k)),a). ** KEPT: 3083 (2983,260) EQUAL(f(h,f(f(g(d),k),b)),b). ---> New Demodulator: 3084 (3083) EQUAL(f(h,f(f(g(d),k),b)),b). ** KEPT: 3085 (2983,113) EQUAL(f(f(d,f(g(d),k)),h),d). ---> New Demodulator: 3086 (3085) EQUAL(f(f(d,f(g(d),k)),h),d). ** KEPT: 3087 (2983,105) EQUAL(f(f(d,h),f(g(d),k)),d). ---> New Demodulator: 3088 (3087) EQUAL(f(f(d,h),f(g(d),k)),d). ** KEPT: 3089 (2983,2011) EQUAL(f(f(h,f(g(d),k)),a),a). ---> New Demodulator: 3090 (3089) EQUAL(f(f(h,f(g(d),k)),a),a). ** KEPT: 3091 (2983,1579) EQUAL(f(b,f(h,f(g(d),k))),b). ---> New Demodulator: 3092 (3091) EQUAL(f(b,f(h,f(g(d),k))),b). ** KEPT: 3093 (2983,1127) EQUAL(f(f(h,f(g(d),k)),d),d). ---> New Demodulator: 3094 (3093) EQUAL(f(f(h,f(g(d),k)),d),d). ** KEPT: 3095 (2983,1065) EQUAL(f(f(h,f(g(d),k)),h),h). ---> New Demodulator: 3096 (3095) EQUAL(f(f(h,f(g(d),k)),h),h). ** KEPT: 3097 (2983,477) EQUAL(f(a,f(h,f(g(d),k))),a). ---> New Demodulator: 3098 (3097) EQUAL(f(a,f(h,f(g(d),k))),a). ** KEPT: 3099 (2983,233) EQUAL(f(f(h,f(g(d),k)),b),b). ---> New Demodulator: 3100 (3099) EQUAL(f(f(h,f(g(d),k)),b),b). ** KEPT: 3101 (2983,1151) EQUAL(f(g(f(h,f(g(d),k))),h),h). ---> New Demodulator: 3102 (3101) EQUAL(f(g(f(h,f(g(d),k))),h),h). ** KEPT: 3103 (2983,564) EQUAL(f(a,g(f(h,f(g(d),k)))),a). ---> New Demodulator: 3104 (3103) EQUAL(f(a,g(f(h,f(g(d),k)))),a). ** KEPT: 3105 (2983,282) EQUAL(f(g(f(h,f(g(d),k))),b),b). ---> New Demodulator: 3106 (3105) EQUAL(f(g(f(h,f(g(d),k))),b),b). ** KEPT: 3107 (2983,137) EQUAL(f(d,g(f(h,f(g(d),k)))),d). ---> New Demodulator: 3108 (3107) EQUAL(f(d,g(f(h,f(g(d),k)))),d). ** KEPT: 3109 (2983,82) EQUAL(f(d,f(h,f(g(d),k))),d). ---> New Demodulator: 3110 (3109) EQUAL(f(d,f(h,f(g(d),k))),d). ** KEPT: 3111 (2983,37) -EQUAL(f(h,f(g(d),k)),f(k,g(b))). ** KEPT: 3112 (2983,3) EQUAL(f(h,f(g(d),k)),e). ---> New Demodulator: 3113 (3112) EQUAL(f(h,f(g(d),k)),e). >>>> Starting back demodulation with: 3068 (3067) EQUAL(f(h,f(f(g(d),k),a)),a). >>>> Starting back demodulation with: 3070 (3069) EQUAL(f(f(g(d),k),f(h,a)),a). >>>> Starting back demodulation with: 3072 (3071) EQUAL(f(f(b,f(g(d),k)),h),b). >>>> Starting back demodulation with: 3074 (3073) EQUAL(f(f(g(d),k),f(h,d)),d). >>>> Starting back demodulation with: 3076 (3075) EQUAL(f(f(g(d),k),f(h,h)),h). >>>> Starting back demodulation with: 3078 (3077) EQUAL(f(f(b,h),f(g(d),k)),b). >>>> Starting back demodulation with: 3080 (3079) EQUAL(f(f(a,f(g(d),k)),h),a). >>>> Starting back demodulation with: 3082 (3081) EQUAL(f(f(a,h),f(g(d),k)),a). >>>> Starting back demodulation with: 3084 (3083) EQUAL(f(h,f(f(g(d),k),b)),b). >>>> Starting back demodulation with: 3086 (3085) EQUAL(f(f(d,f(g(d),k)),h),d). >>>> Starting back demodulation with: 3088 (3087) EQUAL(f(f(d,h),f(g(d),k)),d). >>>> Starting back demodulation with: 3090 (3089) EQUAL(f(f(h,f(g(d),k)),a),a). >>>> Starting back demodulation with: 3092 (3091) EQUAL(f(b,f(h,f(g(d),k))),b). >>>> Starting back demodulation with: 3094 (3093) EQUAL(f(f(h,f(g(d),k)),d),d). >>>> Starting back demodulation with: 3096 (3095) EQUAL(f(f(h,f(g(d),k)),h),h). >>>> Starting back demodulation with: 3098 (3097) EQUAL(f(a,f(h,f(g(d),k))),a). >>>> Starting back demodulation with: 3100 (3099) EQUAL(f(f(h,f(g(d),k)),b),b). >>>> Starting back demodulation with: 3102 (3101) EQUAL(f(g(f(h,f(g(d),k))),h),h). >>>> Starting back demodulation with: 3104 (3103) EQUAL(f(a,g(f(h,f(g(d),k)))),a). >>>> Starting back demodulation with: 3106 (3105) EQUAL(f(g(f(h,f(g(d),k))),b),b). >>>> Starting back demodulation with: 3108 (3107) EQUAL(f(d,g(f(h,f(g(d),k)))),d). >>>> Starting back demodulation with: 3110 (3109) EQUAL(f(d,f(h,f(g(d),k))),d). >>>> Starting back demodulation with: 3113 (3112) EQUAL(f(h,f(g(d),k)),e). >> back demodulating: 3089 (2983,2011) EQUAL(f(f(h,f(g(d),k)),a),a). >> back demodulating: 3090 (3089) EQUAL(f(f(h,f(g(d),k)),a),a). >> back demodulating: 3091 (2983,1579) EQUAL(f(b,f(h,f(g(d),k))),b). >> back demodulating: 3092 (3091) EQUAL(f(b,f(h,f(g(d),k))),b). >> back demodulating: 3093 (2983,1127) EQUAL(f(f(h,f(g(d),k)),d),d). >> back demodulating: 3094 (3093) EQUAL(f(f(h,f(g(d),k)),d),d). >> back demodulating: 3095 (2983,1065) EQUAL(f(f(h,f(g(d),k)),h),h). >> back demodulating: 3096 (3095) EQUAL(f(f(h,f(g(d),k)),h),h). >> back demodulating: 3097 (2983,477) EQUAL(f(a,f(h,f(g(d),k))),a). >> back demodulating: 3098 (3097) EQUAL(f(a,f(h,f(g(d),k))),a). >> back demodulating: 3099 (2983,233) EQUAL(f(f(h,f(g(d),k)),b),b). >> back demodulating: 3100 (3099) EQUAL(f(f(h,f(g(d),k)),b),b). >> back demodulating: 3101 (2983,1151) EQUAL(f(g(f(h,f(g(d),k))),h),h). >> back demodulating: 3102 (3101) EQUAL(f(g(f(h,f(g(d),k))),h),h). >> back demodulating: 3103 (2983,564) EQUAL(f(a,g(f(h,f(g(d),k)))),a). >> back demodulating: 3104 (3103) EQUAL(f(a,g(f(h,f(g(d),k)))),a). >> back demodulating: 3105 (2983,282) EQUAL(f(g(f(h,f(g(d),k))),b),b). >> back demodulating: 3106 (3105) EQUAL(f(g(f(h,f(g(d),k))),b),b). >> back demodulating: 3107 (2983,137) EQUAL(f(d,g(f(h,f(g(d),k)))),d). >> back demodulating: 3108 (3107) EQUAL(f(d,g(f(h,f(g(d),k)))),d). >> back demodulating: 3109 (2983,82) EQUAL(f(d,f(h,f(g(d),k))),d). >> back demodulating: 3110 (3109) EQUAL(f(d,f(h,f(g(d),k))),d). >> back demodulating: 3111 (2983,37) -EQUAL(f(h,f(g(d),k)),f(k,g(b))). new given clause: 2985 (2979,2984) EQUAL(f(h,f(x,g(x))),h). ** KEPT: 3114 (9,2985) EQUAL(f(f(d,g(b)),f(x,g(x))),h). ---> New Demodulator: 3115 (3114) EQUAL(f(f(d,g(b)),f(x,g(x))),h). ** KEPT: 3116 (5,2985) EQUAL(f(h,f(x,f(y,g(f(x,y))))),h). ---> New Demodulator: 3117 (3116) EQUAL(f(h,f(x,f(y,g(f(x,y))))),h). ** KEPT: 3118 (5,2985) EQUAL(f(f(h,x),g(x)),h). ---> New Demodulator: 3119 (3118) EQUAL(f(f(h,x),g(x)),h). >>>> Starting back demodulation with: 3115 (3114) EQUAL(f(f(d,g(b)),f(x,g(x))),h). >> back demodulating: 817 (816) EQUAL(f(f(d,g(b)),f(b,g(b))),h). >> back demodulating: 816 (9,759) EQUAL(f(f(d,g(b)),f(b,g(b))),h). >>>> Starting back demodulation with: 3117 (3116) EQUAL(f(h,f(x,f(y,g(f(x,y))))),h). >>>> Starting back demodulation with: 3119 (3118) EQUAL(f(f(h,x),g(x)),h). ** KEPT: 3120 (2985,5) EQUAL(f(f(x,h),f(y,g(y))),f(x,h)). ** KEPT: 3121 (2985,5) EQUAL(f(h,f(f(y,g(y)),x)),f(h,x)). 3120 back subsumes: 818 (759,5) EQUAL(f(f(x,h),f(b,g(b))),f(x,h)). 3121 back subsumes: 819 (759,5) EQUAL(f(h,f(f(b,g(b)),x)),f(h,x)). new given clause: 2987 (2981,2984) EQUAL(f(h,f(g(x),x)),h). ** KEPT: 3122 (9,2987) EQUAL(f(f(d,g(b)),f(g(x),x)),h). ---> New Demodulator: 3123 (3122) EQUAL(f(f(d,g(b)),f(g(x),x)),h). ** KEPT: 3124 (5,2987) EQUAL(f(h,f(f(g(f(x,y)),x),y)),h). ---> New Demodulator: 3125 (3124) EQUAL(f(h,f(f(g(f(x,y)),x),y)),h). ** KEPT: 3126 (5,2987) EQUAL(f(f(h,g(x)),x),h). ---> New Demodulator: 3127 (3126) EQUAL(f(f(h,g(x)),x),h). >>>> Starting back demodulation with: 3123 (3122) EQUAL(f(f(d,g(b)),f(g(x),x)),h). >>>> Starting back demodulation with: 3125 (3124) EQUAL(f(h,f(f(g(f(x,y)),x),y)),h). >>>> Starting back demodulation with: 3127 (3126) EQUAL(f(f(h,g(x)),x),h). ** KEPT: 3128 (2987,5) EQUAL(f(f(x,h),f(g(y),y)),f(x,h)). ** KEPT: 3129 (2987,5) EQUAL(f(h,f(f(g(y),y),x)),f(h,x)). new given clause: 3112 (2983,3) EQUAL(f(h,f(g(d),k)),e). ** KEPT: 3130 (9,3112) EQUAL(f(f(d,g(b)),f(g(d),k)),e). ---> New Demodulator: 3131 (3130) EQUAL(f(f(d,g(b)),f(g(d),k)),e). ** KEPT: 3132 (8,3112) EQUAL(f(h,f(g(f(c,g(a))),k)),e). ---> New Demodulator: 3133 (3132) EQUAL(f(h,f(g(f(c,g(a))),k)),e). ** KEPT: 3134 (5,3112) EQUAL(f(f(h,g(d)),k),e). ---> New Demodulator: 3135 (3134) EQUAL(f(f(h,g(d)),k),e). >>>> Starting back demodulation with: 3131 (3130) EQUAL(f(f(d,g(b)),f(g(d),k)),e). >>>> Starting back demodulation with: 3133 (3132) EQUAL(f(h,f(g(f(c,g(a))),k)),e). >>>> Starting back demodulation with: 3135 (3134) EQUAL(f(f(h,g(d)),k),e). ** KEPT: 3136 (3112,132) EQUAL(f(d,f(g(d),k)),f(k,e)). ** KEPT: 3137 (3112,5) EQUAL(f(f(x,h),f(g(d),k)),f(x,e)). ** KEPT: 3138 (3112,5) EQUAL(f(h,f(f(g(d),k),x)),f(e,x)). new given clause: 3118 (5,2985) EQUAL(f(f(h,x),g(x)),h). ** KEPT: 3139 (9,3118) EQUAL(f(f(f(d,g(b)),x),g(x)),h). ---> New Demodulator: 3140 (3139) EQUAL(f(f(f(d,g(b)),x),g(x)),h). ** KEPT: 3141 (2987,3118) EQUAL(f(h,g(f(g(x),x))),h). ---> New Demodulator: 3142 (3141) EQUAL(f(h,g(f(g(x),x))),h). ** KEPT: 3143 (2985,3118) EQUAL(f(h,g(f(x,g(x)))),h). ---> New Demodulator: 3144 (3143) EQUAL(f(h,g(f(x,g(x)))),h). ** KEPT: 3145 (1071,3118) EQUAL(f(f(f(h,e),h),g(h)),h). ---> New Demodulator: 3146 (3145) EQUAL(f(f(f(h,e),h),g(h)),h). ** KEPT: 3147 (907,3118) EQUAL(f(d,g(f(b,f(e,e)))),h). ---> New Demodulator: 3148 (3147) EQUAL(f(d,g(f(b,f(e,e)))),h). ** KEPT: 3149 (750,3118) EQUAL(f(f(k,d),g(f(b,b))),h). ---> New Demodulator: 3150 (3149) EQUAL(f(f(k,d),g(f(b,b))),h). ** KEPT: 3151 (2120,3118) EQUAL(f(a,g(f(g(h),a))),h). ---> New Demodulator: 3152 (3151) EQUAL(f(a,g(f(g(h),a))),h). ** KEPT: 3153 (163,3118) EQUAL(f(f(h,f(a,b)),g(c)),h). ---> New Demodulator: 3154 (3153) EQUAL(f(f(h,f(a,b)),g(c)),h). ** KEPT: 3155 (163,3118) EQUAL(f(f(h,c),g(f(a,b))),h). ---> New Demodulator: 3156 (3155) EQUAL(f(f(h,c),g(f(a,b))),h). ** KEPT: 3157 (131,3118) EQUAL(f(f(f(h,k),h),g(d)),h). ---> New Demodulator: 3158 (3157) EQUAL(f(f(f(h,k),h),g(d)),h). ** KEPT: 3159 (762,3118) EQUAL(f(e,g(f(b,g(d)))),h). ---> New Demodulator: 3160 (3159) EQUAL(f(e,g(f(b,g(d)))),h). ** KEPT: 3161 (798,3118) EQUAL(f(d,g(f(e,b))),h). ---> New Demodulator: 3162 (3161) EQUAL(f(d,g(f(e,b))),h). ** KEPT: 3163 (748,3118,13) EQUAL(f(f(d,g(b)),e),h). ---> New Demodulator: 3164 (3163) EQUAL(f(f(d,g(b)),e),h). ** KEPT: 3165 (73,3118) EQUAL(f(f(d,x),g(f(b,x))),h). ---> New Demodulator: 3166 (3165) EQUAL(f(f(d,x),g(f(b,x))),h). ** KEPT: 3167 (72,3118) EQUAL(f(f(f(h,h),b),g(d)),h). ---> New Demodulator: 3168 (3167) EQUAL(f(f(f(h,h),b),g(d)),h). ** KEPT: 3169 (266,3118) EQUAL(f(b,g(f(g(h),b))),h). ---> New Demodulator: 3170 (3169) EQUAL(f(b,g(f(g(h),b))),h). ** KEPT: 3171 (15,3118) EQUAL(f(f(f(h,a),b),g(c)),h). ---> New Demodulator: 3172 (3171) EQUAL(f(f(f(h,a),b),g(c)),h). ** KEPT: 3173 (48,3118) EQUAL(f(k,g(f(b,g(h)))),h). ---> New Demodulator: 3174 (3173) EQUAL(f(k,g(f(b,g(h)))),h). ** KEPT: 3175 (5,3118) EQUAL(f(f(f(h,x),y),g(f(x,y))),h). ---> New Demodulator: 3176 (3175) EQUAL(f(f(f(h,x),y),g(f(x,y))),h). ** KEPT: 3177 (2487,3118) EQUAL(f(f(h,f(e,g(d))),d),h). ---> New Demodulator: 3178 (3177) EQUAL(f(f(h,f(e,g(d))),d),h). ** KEPT: 3179 (2208,3118) EQUAL(f(f(h,f(g(d),h)),b),h). ---> New Demodulator: 3180 (3179) EQUAL(f(f(h,f(g(d),h)),b),h). ** KEPT: 3181 (2007,3118) EQUAL(f(f(h,f(b,g(c))),a),h). ---> New Demodulator: 3182 (3181) EQUAL(f(f(h,f(b,g(c))),a),h). ** KEPT: 3183 (1575,3118) EQUAL(f(f(h,f(g(c),a)),b),h). ---> New Demodulator: 3184 (3183) EQUAL(f(f(h,f(g(c),a)),b),h). >>>> Starting back demodulation with: 3140 (3139) EQUAL(f(f(f(d,g(b)),x),g(x)),h). >>>> Starting back demodulation with: 3142 (3141) EQUAL(f(h,g(f(g(x),x))),h). >> back demodulating: 1347 (132,137) EQUAL(f(k,f(h,g(f(g(x),x)))),d). >> back demodulating: 1348 (1347) EQUAL(f(k,f(h,g(f(g(x),x)))),d). >>>> Starting back demodulation with: 3144 (3143) EQUAL(f(h,g(f(x,g(x)))),h). >> back demodulating: 1335 (132,135) EQUAL(f(k,f(h,g(f(x,g(x))))),d). >> back demodulating: 1336 (1335) EQUAL(f(k,f(h,g(f(x,g(x))))),d). >>>> Starting back demodulation with: 3146 (3145) EQUAL(f(f(f(h,e),h),g(h)),h). >>>> Starting back demodulation with: 3148 (3147) EQUAL(f(d,g(f(b,f(e,e)))),h). >>>> Starting back demodulation with: 3150 (3149) EQUAL(f(f(k,d),g(f(b,b))),h). >>>> Starting back demodulation with: 3152 (3151) EQUAL(f(a,g(f(g(h),a))),h). >>>> Starting back demodulation with: 3154 (3153) EQUAL(f(f(h,f(a,b)),g(c)),h). >>>> Starting back demodulation with: 3156 (3155) EQUAL(f(f(h,c),g(f(a,b))),h). >>>> Starting back demodulation with: 3158 (3157) EQUAL(f(f(f(h,k),h),g(d)),h). >>>> Starting back demodulation with: 3160 (3159) EQUAL(f(e,g(f(b,g(d)))),h). >>>> Starting back demodulation with: 3162 (3161) EQUAL(f(d,g(f(e,b))),h). >>>> Starting back demodulation with: 3164 (3163) EQUAL(f(f(d,g(b)),e),h). >> back demodulating: 792 (9,784) EQUAL(f(f(f(d,g(b)),e),b),d). >> back demodulating: 793 (792) EQUAL(f(f(f(d,g(b)),e),b),d). >> back demodulating: 804 (9,786) EQUAL(f(k,f(f(d,g(b)),e)),d). >> back demodulating: 805 (804) EQUAL(f(k,f(f(d,g(b)),e)),d). >> back demodulating: 826 (9,800) EQUAL(f(g(f(f(d,g(b)),e)),d),b). >> back demodulating: 827 (826) EQUAL(f(g(f(f(d,g(b)),e)),d),b). >> back demodulating: 846 (9,840) EQUAL(f(d,g(f(f(d,g(b)),e))),k). >> back demodulating: 847 (846) EQUAL(f(d,g(f(f(d,g(b)),e))),k). >> back demodulating: 1106 (9,1095) EQUAL(f(e,f(f(d,g(b)),e)),h). >> back demodulating: 1107 (1106) EQUAL(f(e,f(f(d,g(b)),e)),h). >> back demodulating: 2929 (9,1114) EQUAL(f(d,f(f(d,g(b)),e)),f(d,h)). >>>> Starting back demodulation with: 3166 (3165) EQUAL(f(f(d,x),g(f(b,x))),h). >> back demodulating: 1655 (1654) EQUAL(f(f(d,e),g(f(b,e))),h). >> back demodulating: 1654 (284,947,1576) EQUAL(f(f(d,e),g(f(b,e))),h). >>>> Starting back demodulation with: 3168 (3167) EQUAL(f(f(f(h,h),b),g(d)),h). >>>> Starting back demodulation with: 3170 (3169) EQUAL(f(b,g(f(g(h),b))),h). >>>> Starting back demodulation with: 3172 (3171) EQUAL(f(f(f(h,a),b),g(c)),h). >>>> Starting back demodulation with: 3174 (3173) EQUAL(f(k,g(f(b,g(h)))),h). >>>> Starting back demodulation with: 3176 (3175) EQUAL(f(f(f(h,x),y),g(f(x,y))),h). >>>> Starting back demodulation with: 3178 (3177) EQUAL(f(f(h,f(e,g(d))),d),h). >>>> Starting back demodulation with: 3180 (3179) EQUAL(f(f(h,f(g(d),h)),b),h). >>>> Starting back demodulation with: 3182 (3181) EQUAL(f(f(h,f(b,g(c))),a),h). >>>> Starting back demodulation with: 3184 (3183) EQUAL(f(f(h,f(g(c),a)),b),h). ** KEPT: 3185 (3118,5) EQUAL(f(f(x,f(h,y)),g(y)),f(x,h)). ** KEPT: 3186 (3118,5) EQUAL(f(f(h,y),f(g(y),x)),f(h,x)). new given clause: 3126 (5,2987) EQUAL(f(f(h,g(x)),x),h). ** KEPT: 3187 (9,3126) EQUAL(f(f(f(d,g(b)),g(x)),x),h). ---> New Demodulator: 3188 (3187) EQUAL(f(f(f(d,g(b)),g(x)),x),h). ** KEPT: 3189 (2983,3126) EQUAL(f(f(h,h),f(g(d),k)),h). ---> New Demodulator: 3190 (3189) EQUAL(f(f(h,h),f(g(d),k)),h). ** KEPT: 3191 (2487,3126) EQUAL(f(f(h,d),f(e,g(d))),h). ---> New Demodulator: 3192 (3191) EQUAL(f(f(h,d),f(e,g(d))),h). ** KEPT: 3193 (2007,3126) EQUAL(f(f(h,a),f(b,g(c))),h). ---> New Demodulator: 3194 (3193) EQUAL(f(f(h,a),f(b,g(c))),h). ** KEPT: 3195 (1575,3126,69) EQUAL(f(d,f(g(c),a)),h). ---> New Demodulator: 3196 (3195) EQUAL(f(d,f(g(c),a)),h). ** KEPT: 3197 (239,3126) EQUAL(f(f(f(h,g(b)),e),b),h). ---> New Demodulator: 3198 (3197) EQUAL(f(f(f(h,g(b)),e),b),h). ** KEPT: 3199 (163,3126) EQUAL(f(f(h,g(c)),f(a,b)),h). ---> New Demodulator: 3200 (3199) EQUAL(f(f(h,g(c)),f(a,b)),h). ** KEPT: 3201 (163,3126) EQUAL(f(f(h,g(f(a,b))),c),h). ---> New Demodulator: 3202 (3201) EQUAL(f(f(h,g(f(a,b))),c),h). ** KEPT: 3203 (72,3126) EQUAL(f(f(f(h,g(d)),h),b),h). ---> New Demodulator: 3204 (3203) EQUAL(f(f(f(h,g(d)),h),b),h). ** KEPT: 3205 (15,3126) EQUAL(f(f(f(h,g(c)),a),b),h). ---> New Demodulator: 3206 (3205) EQUAL(f(f(f(h,g(c)),a),b),h). ** KEPT: 3207 (5,3126) EQUAL(f(f(f(h,g(f(x,y))),x),y),h). ---> New Demodulator: 3208 (3207) EQUAL(f(f(f(h,g(f(x,y))),x),y),h). >>>> Starting back demodulation with: 3188 (3187) EQUAL(f(f(f(d,g(b)),g(x)),x),h). >>>> Starting back demodulation with: 3190 (3189) EQUAL(f(f(h,h),f(g(d),k)),h). >>>> Starting back demodulation with: 3192 (3191) EQUAL(f(f(h,d),f(e,g(d))),h). >>>> Starting back demodulation with: 3194 (3193) EQUAL(f(f(h,a),f(b,g(c))),h). >>>> Starting back demodulation with: 3196 (3195) EQUAL(f(d,f(g(c),a)),h). >> back demodulating: 1696 (1575,113) EQUAL(f(f(d,f(g(c),a)),b),d). >> back demodulating: 1697 (1696) EQUAL(f(f(d,f(g(c),a)),b),d). >> back demodulating: 1735 (1715,73) EQUAL(f(d,f(g(c),a)),f(h,e)). >>>> Starting back demodulation with: 3198 (3197) EQUAL(f(f(f(h,g(b)),e),b),h). >>>> Starting back demodulation with: 3200 (3199) EQUAL(f(f(h,g(c)),f(a,b)),h). >>>> Starting back demodulation with: 3202 (3201) EQUAL(f(f(h,g(f(a,b))),c),h). >>>> Starting back demodulation with: 3204 (3203) EQUAL(f(f(f(h,g(d)),h),b),h). >>>> Starting back demodulation with: 3206 (3205) EQUAL(f(f(f(h,g(c)),a),b),h). >>>> Starting back demodulation with: 3208 (3207) EQUAL(f(f(f(h,g(f(x,y))),x),y),h). ** KEPT: 3209 (3126,1175) EQUAL(f(g(f(h,g(d))),h),d). ---> New Demodulator: 3210 (3209) EQUAL(f(g(f(h,g(d))),h),d). ** KEPT: 3211 (3126,260) EQUAL(f(g(f(h,g(b))),h),b). ---> New Demodulator: 3212 (3211) EQUAL(f(g(f(h,g(b))),h),b). ** KEPT: 3213 (3126,2126) EQUAL(f(g(f(h,g(a))),h),a). ---> New Demodulator: 3214 (3213) EQUAL(f(g(f(h,g(a))),h),a). ** KEPT: 3215 (3126,15,69) EQUAL(f(f(h,g(a)),c),d). ---> New Demodulator: 3216 (3215) EQUAL(f(f(h,g(a)),c),d). ** KEPT: 3217 (3126,5) EQUAL(f(f(x,f(h,g(y))),y),f(x,h)). ** KEPT: 3218 (3126,5) EQUAL(f(f(h,g(y)),f(y,x)),f(h,x)). >>>> Starting back demodulation with: 3210 (3209) EQUAL(f(g(f(h,g(d))),h),d). >>>> Starting back demodulation with: 3212 (3211) EQUAL(f(g(f(h,g(b))),h),b). >>>> Starting back demodulation with: 3214 (3213) EQUAL(f(g(f(h,g(a))),h),a). >>>> Starting back demodulation with: 3216 (3215) EQUAL(f(f(h,g(a)),c),d). new given clause: 3134 (5,3112) EQUAL(f(f(h,g(d)),k),e). ** KEPT: 3219 (9,3134) EQUAL(f(f(f(d,g(b)),g(d)),k),e). ---> New Demodulator: 3220 (3219) EQUAL(f(f(f(d,g(b)),g(d)),k),e). ** KEPT: 3221 (8,3134) EQUAL(f(f(h,g(f(c,g(a)))),k),e). ---> New Demodulator: 3222 (3221) EQUAL(f(f(h,g(f(c,g(a)))),k),e). >>>> Starting back demodulation with: 3220 (3219) EQUAL(f(f(f(d,g(b)),g(d)),k),e). >>>> Starting back demodulation with: 3222 (3221) EQUAL(f(f(h,g(f(c,g(a)))),k),e). ** KEPT: 3223 (3134,5) EQUAL(f(f(x,f(h,g(d))),k),f(x,e)). ** KEPT: 3224 (3134,5) EQUAL(f(f(h,g(d)),f(k,x)),f(e,x)). new given clause: 3161 (798,3118) EQUAL(f(d,g(f(e,b))),h). ** KEPT: 3225 (8,3161) EQUAL(f(f(c,g(a)),g(f(e,b))),h). ---> New Demodulator: 3226 (3225) EQUAL(f(f(c,g(a)),g(f(e,b))),h). ** KEPT: 3227 (861,3161) EQUAL(f(f(d,e),g(f(e,b))),h). ---> New Demodulator: 3228 (3227) EQUAL(f(f(d,e),g(f(e,b))),h). ** KEPT: 3229 (132,3161) EQUAL(f(k,f(h,g(f(e,b)))),h). ---> New Demodulator: 3230 (3229) EQUAL(f(k,f(h,g(f(e,b)))),h). ** KEPT: 3231 (92,3161) EQUAL(f(d,f(e,g(f(e,b)))),h). ---> New Demodulator: 3232 (3231) EQUAL(f(d,f(e,g(f(e,b)))),h). ** KEPT: 3233 (73,3161) EQUAL(f(h,f(b,g(f(e,b)))),h). ---> New Demodulator: 3234 (3233) EQUAL(f(h,f(b,g(f(e,b)))),h). >>>> Starting back demodulation with: 3226 (3225) EQUAL(f(f(c,g(a)),g(f(e,b))),h). >>>> Starting back demodulation with: 3228 (3227) EQUAL(f(f(d,e),g(f(e,b))),h). >>>> Starting back demodulation with: 3230 (3229) EQUAL(f(k,f(h,g(f(e,b)))),h). >>>> Starting back demodulation with: 3232 (3231) EQUAL(f(d,f(e,g(f(e,b)))),h). >>>> Starting back demodulation with: 3234 (3233) EQUAL(f(h,f(b,g(f(e,b)))),h). ** KEPT: 3235 (3161,5) EQUAL(f(f(x,d),g(f(e,b))),f(x,h)). ** KEPT: 3236 (3161,5) EQUAL(f(d,f(g(f(e,b)),x)),f(h,x)). new given clause: 3163 (748,3118,13) EQUAL(f(f(d,g(b)),e),h). ** KEPT: 3237 (748,3163) EQUAL(f(f(h,e),e),h). ---> New Demodulator: 3238 (3237) EQUAL(f(f(h,e),e),h). ** KEPT: 3239 (5,3163) EQUAL(f(d,f(g(b),e)),h). ---> New Demodulator: 3240 (3239) EQUAL(f(d,f(g(b),e)),h). >>>> Starting back demodulation with: 3238 (3237) EQUAL(f(f(h,e),e),h). >> back demodulating: 1451 (784,239) EQUAL(f(f(f(h,e),e),b),d). >> back demodulating: 1452 (1451) EQUAL(f(f(f(h,e),e),b),d). >> back demodulating: 3032 (1153,1114,2984) EQUAL(f(d,f(f(h,e),e)),f(d,h)). >> back demodulating: 3033 (1153,1095,2984) EQUAL(f(e,f(f(h,e),e)),h). >> back demodulating: 3034 (3033) EQUAL(f(e,f(f(h,e),e)),h). >> back demodulating: 3035 (1153,840,2984) EQUAL(f(d,g(f(f(h,e),e))),k). >> back demodulating: 3036 (3035) EQUAL(f(d,g(f(f(h,e),e))),k). >> back demodulating: 3037 (1153,800,2984) EQUAL(f(g(f(f(h,e),e)),d),b). >> back demodulating: 3038 (3037) EQUAL(f(g(f(f(h,e),e)),d),b). >> back demodulating: 3039 (1153,786,2984) EQUAL(f(k,f(f(h,e),e)),d). >> back demodulating: 3040 (3039) EQUAL(f(k,f(f(h,e),e)),d). >> back demodulating: 3044 (1153,748,2984) EQUAL(f(f(h,e),e),f(d,g(b))). >>>> Starting back demodulation with: 3240 (3239) EQUAL(f(d,f(g(b),e)),h). ** KEPT: 3241 (3163,5) EQUAL(f(f(x,f(d,g(b))),e),f(x,h)). ** KEPT: 3242 (3163,5) EQUAL(f(f(d,g(b)),f(e,x)),f(h,x)). new given clause: 3237 (748,3163) EQUAL(f(f(h,e),e),h). ** KEPT: 3243 (4,3237) EQUAL(f(f(h,e),f(x,g(x))),h). ---> New Demodulator: 3244 (3243) EQUAL(f(f(h,e),f(x,g(x))),h). ** KEPT: 3245 (3,3237) EQUAL(f(f(h,e),f(g(x),x)),h). ---> New Demodulator: 3246 (3245) EQUAL(f(f(h,e),f(g(x),x)),h). ** KEPT: 3247 (5,3237) EQUAL(f(h,f(e,e)),h). ---> New Demodulator: 3248 (3247) EQUAL(f(h,f(e,e)),h). >>>> Starting back demodulation with: 3244 (3243) EQUAL(f(f(h,e),f(x,g(x))),h). >>>> Starting back demodulation with: 3246 (3245) EQUAL(f(f(h,e),f(g(x),x)),h). >>>> Starting back demodulation with: 3248 (3247) EQUAL(f(h,f(e,e)),h). >> back demodulating: 1281 (885,132) EQUAL(f(k,f(h,f(e,e))),d). >> back demodulating: 1282 (1281) EQUAL(f(k,f(h,f(e,e))),d). ** KEPT: 3249 (3237,5) EQUAL(f(f(x,f(h,e)),e),f(x,h)). ** KEPT: 3250 (3237,5) EQUAL(f(f(h,e),f(e,x)),f(h,x)). new given clause: 3247 (5,3237) EQUAL(f(h,f(e,e)),h). ** KEPT: 3251 (9,3247) EQUAL(f(f(d,g(b)),f(e,e)),h). ---> New Demodulator: 3252 (3251) EQUAL(f(f(d,g(b)),f(e,e)),h). ** KEPT: 3253 (4,3247) EQUAL(f(h,f(f(x,g(x)),e)),h). ---> New Demodulator: 3254 (3253) EQUAL(f(h,f(f(x,g(x)),e)),h). ** KEPT: 3255 (3,3247) EQUAL(f(h,f(f(g(x),x),e)),h). ---> New Demodulator: 3256 (3255) EQUAL(f(h,f(f(g(x),x),e)),h). ** KEPT: 3257 (4,3247) EQUAL(f(h,f(e,f(x,g(x)))),h). ---> New Demodulator: 3258 (3257) EQUAL(f(h,f(e,f(x,g(x)))),h). ** KEPT: 3259 (3,3247) EQUAL(f(h,f(e,f(g(x),x))),h). ---> New Demodulator: 3260 (3259) EQUAL(f(h,f(e,f(g(x),x))),h). >>>> Starting back demodulation with: 3252 (3251) EQUAL(f(f(d,g(b)),f(e,e)),h). >>>> Starting back demodulation with: 3254 (3253) EQUAL(f(h,f(f(x,g(x)),e)),h). >>>> Starting back demodulation with: 3256 (3255) EQUAL(f(h,f(f(g(x),x),e)),h). >>>> Starting back demodulation with: 3258 (3257) EQUAL(f(h,f(e,f(x,g(x)))),h). >>>> Starting back demodulation with: 3260 (3259) EQUAL(f(h,f(e,f(g(x),x))),h). ** KEPT: 3261 (3247,3118) EQUAL(f(h,g(f(e,e))),h). ---> New Demodulator: 3262 (3261) EQUAL(f(h,g(f(e,e))),h). ** KEPT: 3263 (3247,5) EQUAL(f(f(x,h),f(e,e)),f(x,h)). ** KEPT: 3264 (3247,5) EQUAL(f(h,f(f(e,e),x)),f(h,x)). >>>> Starting back demodulation with: 3262 (3261) EQUAL(f(h,g(f(e,e))),h). >> back demodulating: 1273 (911,132) EQUAL(f(k,f(h,g(f(e,e)))),d). >> back demodulating: 1274 (1273) EQUAL(f(k,f(h,g(f(e,e)))),d). new given clause: 3195 (1575,3126,69) EQUAL(f(d,f(g(c),a)),h). ** KEPT: 3265 (8,3195) EQUAL(f(f(c,g(a)),f(g(c),a)),h). ---> New Demodulator: 3266 (3265) EQUAL(f(f(c,g(a)),f(g(c),a)),h). ** KEPT: 3267 (7,3195) EQUAL(f(d,f(g(f(a,b)),a)),h). ---> New Demodulator: 3268 (3267) EQUAL(f(d,f(g(f(a,b)),a)),h). ** KEPT: 3269 (861,3195) EQUAL(f(f(d,e),f(g(c),a)),h). ---> New Demodulator: 3270 (3269) EQUAL(f(f(d,e),f(g(c),a)),h). ** KEPT: 3271 (132,3195) EQUAL(f(k,f(h,f(g(c),a))),h). ---> New Demodulator: 3272 (3271) EQUAL(f(k,f(h,f(g(c),a))),h). ** KEPT: 3273 (92,3195) EQUAL(f(d,f(e,f(g(c),a))),h). ---> New Demodulator: 3274 (3273) EQUAL(f(d,f(e,f(g(c),a))),h). ** KEPT: 3275 (5,3195) EQUAL(f(f(d,g(c)),a),h). ---> New Demodulator: 3276 (3275) EQUAL(f(f(d,g(c)),a),h). >>>> Starting back demodulation with: 3266 (3265) EQUAL(f(f(c,g(a)),f(g(c),a)),h). >>>> Starting back demodulation with: 3268 (3267) EQUAL(f(d,f(g(f(a,b)),a)),h). >>>> Starting back demodulation with: 3270 (3269) EQUAL(f(f(d,e),f(g(c),a)),h). >>>> Starting back demodulation with: 3272 (3271) EQUAL(f(k,f(h,f(g(c),a))),h). >>>> Starting back demodulation with: 3274 (3273) EQUAL(f(d,f(e,f(g(c),a))),h). >>>> Starting back demodulation with: 3276 (3275) EQUAL(f(f(d,g(c)),a),h). >> back demodulating: 164 (105,15) EQUAL(f(f(f(d,g(c)),a),b),d). >> back demodulating: 165 (164) EQUAL(f(f(f(d,g(c)),a),b),d). ** KEPT: 3277 (3195,5) EQUAL(f(f(x,d),f(g(c),a)),f(x,h)). ** KEPT: 3278 (3195,5) EQUAL(f(d,f(f(g(c),a),x)),f(h,x)). new given clause: 3215 (3126,15,69) EQUAL(f(f(h,g(a)),c),d). ** KEPT: 3279 (9,3215) EQUAL(f(f(f(d,g(b)),g(a)),c),d). ---> New Demodulator: 3280 (3279) EQUAL(f(f(f(d,g(b)),g(a)),c),d). ** KEPT: 3281 (7,3215) EQUAL(f(f(h,g(a)),f(a,b)),d). ---> New Demodulator: 3282 (3281) EQUAL(f(f(h,g(a)),f(a,b)),d). >>>> Starting back demodulation with: 3280 (3279) EQUAL(f(f(f(d,g(b)),g(a)),c),d). >>>> Starting back demodulation with: 3282 (3281) EQUAL(f(f(h,g(a)),f(a,b)),d). ** KEPT: 3283 (3215,5) EQUAL(f(f(x,f(h,g(a))),c),f(x,d)). ** KEPT: 3284 (3215,5) EQUAL(f(f(h,g(a)),f(c,x)),f(d,x)). new given clause: 3239 (5,3163) EQUAL(f(d,f(g(b),e)),h). ** KEPT: 3285 (8,3239) EQUAL(f(f(c,g(a)),f(g(b),e)),h). ---> New Demodulator: 3286 (3285) EQUAL(f(f(c,g(a)),f(g(b),e)),h). ** KEPT: 3287 (4,3239) EQUAL(f(d,f(g(b),f(x,g(x)))),h). ---> New Demodulator: 3288 (3287) EQUAL(f(d,f(g(b),f(x,g(x)))),h). ** KEPT: 3289 (3,3239) EQUAL(f(d,f(g(b),f(g(x),x))),h). ---> New Demodulator: 3290 (3289) EQUAL(f(d,f(g(b),f(g(x),x))),h). ** KEPT: 3291 (861,3239) EQUAL(f(f(d,e),f(g(b),e)),h). ---> New Demodulator: 3292 (3291) EQUAL(f(f(d,e),f(g(b),e)),h). ** KEPT: 3293 (132,3239) EQUAL(f(k,f(h,f(g(b),e))),h). ---> New Demodulator: 3294 (3293) EQUAL(f(k,f(h,f(g(b),e))),h). ** KEPT: 3295 (92,3239) EQUAL(f(d,f(e,f(g(b),e))),h). ---> New Demodulator: 3296 (3295) EQUAL(f(d,f(e,f(g(b),e))),h). ** KEPT: 3297 (73,3239) EQUAL(f(h,f(b,f(g(b),e))),h). ---> New Demodulator: 3298 (3297) EQUAL(f(h,f(b,f(g(b),e))),h). >>>> Starting back demodulation with: 3286 (3285) EQUAL(f(f(c,g(a)),f(g(b),e)),h). >>>> Starting back demodulation with: 3288 (3287) EQUAL(f(d,f(g(b),f(x,g(x)))),h). >>>> Starting back demodulation with: 3290 (3289) EQUAL(f(d,f(g(b),f(g(x),x))),h). >>>> Starting back demodulation with: 3292 (3291) EQUAL(f(f(d,e),f(g(b),e)),h). >>>> Starting back demodulation with: 3294 (3293) EQUAL(f(k,f(h,f(g(b),e))),h). >>>> Starting back demodulation with: 3296 (3295) EQUAL(f(d,f(e,f(g(b),e))),h). >>>> Starting back demodulation with: 3298 (3297) EQUAL(f(h,f(b,f(g(b),e))),h). ** KEPT: 3299 (3239,113) EQUAL(f(h,g(f(g(b),e))),d). ---> New Demodulator: 3300 (3299) EQUAL(f(h,g(f(g(b),e))),d). ** KEPT: 3301 (3239,5) EQUAL(f(f(x,d),f(g(b),e)),f(x,h)). ** KEPT: 3302 (3239,5) EQUAL(f(d,f(f(g(b),e),x)),f(h,x)). >>>> Starting back demodulation with: 3300 (3299) EQUAL(f(h,g(f(g(b),e))),d). new given clause: 3261 (3247,3118) EQUAL(f(h,g(f(e,e))),h). ** KEPT: 3303 (9,3261) EQUAL(f(f(d,g(b)),g(f(e,e))),h). ---> New Demodulator: 3304 (3303) EQUAL(f(f(d,g(b)),g(f(e,e))),h). ** KEPT: 3305 (4,3261) EQUAL(f(h,g(f(f(x,g(x)),e))),h). ---> New Demodulator: 3306 (3305) EQUAL(f(h,g(f(f(x,g(x)),e))),h). ** KEPT: 3307 (3,3261) EQUAL(f(h,g(f(f(g(x),x),e))),h). ---> New Demodulator: 3308 (3307) EQUAL(f(h,g(f(f(g(x),x),e))),h). ** KEPT: 3309 (4,3261) EQUAL(f(h,g(f(e,f(x,g(x))))),h). ---> New Demodulator: 3310 (3309) EQUAL(f(h,g(f(e,f(x,g(x))))),h). ** KEPT: 3311 (3,3261) EQUAL(f(h,g(f(e,f(g(x),x)))),h). ---> New Demodulator: 3312 (3311) EQUAL(f(h,g(f(e,f(g(x),x)))),h). >>>> Starting back demodulation with: 3304 (3303) EQUAL(f(f(d,g(b)),g(f(e,e))),h). >>>> Starting back demodulation with: 3306 (3305) EQUAL(f(h,g(f(f(x,g(x)),e))),h). >>>> Starting back demodulation with: 3308 (3307) EQUAL(f(h,g(f(f(g(x),x),e))),h). >>>> Starting back demodulation with: 3310 (3309) EQUAL(f(h,g(f(e,f(x,g(x))))),h). >>>> Starting back demodulation with: 3312 (3311) EQUAL(f(h,g(f(e,f(g(x),x)))),h). ** KEPT: 3313 (3261,5) EQUAL(f(f(x,h),g(f(e,e))),f(x,h)). ** KEPT: 3314 (3261,5) EQUAL(f(h,f(g(f(e,e)),x)),f(h,x)). new given clause: 3275 (5,3195) EQUAL(f(f(d,g(c)),a),h). ** KEPT: 3315 (8,3275) EQUAL(f(f(f(c,g(a)),g(c)),a),h). ---> New Demodulator: 3316 (3315) EQUAL(f(f(f(c,g(a)),g(c)),a),h). ** KEPT: 3317 (7,3275) EQUAL(f(f(d,g(f(a,b))),a),h). ---> New Demodulator: 3318 (3317) EQUAL(f(f(d,g(f(a,b))),a),h). ** KEPT: 3319 (861,3275) EQUAL(f(f(f(d,e),g(c)),a),h). ---> New Demodulator: 3320 (3319) EQUAL(f(f(f(d,e),g(c)),a),h). ** KEPT: 3321 (132,3275) EQUAL(f(f(k,f(h,g(c))),a),h). ---> New Demodulator: 3322 (3321) EQUAL(f(f(k,f(h,g(c))),a),h). ** KEPT: 3323 (92,3275) EQUAL(f(f(d,f(e,g(c))),a),h). ---> New Demodulator: 3324 (3323) EQUAL(f(f(d,f(e,g(c))),a),h). >>>> Starting back demodulation with: 3316 (3315) EQUAL(f(f(f(c,g(a)),g(c)),a),h). >>>> Starting back demodulation with: 3318 (3317) EQUAL(f(f(d,g(f(a,b))),a),h). >>>> Starting back demodulation with: 3320 (3319) EQUAL(f(f(f(d,e),g(c)),a),h). >>>> Starting back demodulation with: 3322 (3321) EQUAL(f(f(k,f(h,g(c))),a),h). >>>> Starting back demodulation with: 3324 (3323) EQUAL(f(f(d,f(e,g(c))),a),h). ** KEPT: 3325 (3275,2126) EQUAL(f(g(f(d,g(c))),h),a). ---> New Demodulator: 3326 (3325) EQUAL(f(g(f(d,g(c))),h),a). ** KEPT: 3327 (3275,5) EQUAL(f(f(x,f(d,g(c))),a),f(x,h)). ** KEPT: 3328 (3275,5) EQUAL(f(f(d,g(c)),f(a,x)),f(h,x)). >>>> Starting back demodulation with: 3326 (3325) EQUAL(f(g(f(d,g(c))),h),a). new given clause: 1155 (1022,1125) EQUAL(f(g(f(g(h),k)),b),h). ** KEPT: 3329 (9,1155) EQUAL(f(g(f(g(f(d,g(b))),k)),b),h). ---> New Demodulator: 3330 (3329) EQUAL(f(g(f(g(f(d,g(b))),k)),b),h). ** KEPT: 3331 (239,1155) EQUAL(f(f(g(f(g(h),k)),e),b),h). ---> New Demodulator: 3332 (3331) EQUAL(f(f(g(f(g(h),k)),e),b),h). >>>> Starting back demodulation with: 3330 (3329) EQUAL(f(g(f(g(f(d,g(b))),k)),b),h). >>>> Starting back demodulation with: 3332 (3331) EQUAL(f(f(g(f(g(h),k)),e),b),h). ** KEPT: 3333 (1155,5) EQUAL(f(f(x,g(f(g(h),k))),b),f(x,h)). ** KEPT: 3334 (1155,5) EQUAL(f(g(f(g(h),k)),f(b,x)),f(h,x)). new given clause: 1165 (520,1125) EQUAL(f(g(f(a,g(h))),a),h). ** KEPT: 3335 (9,1165) EQUAL(f(g(f(a,g(f(d,g(b))))),a),h). ---> New Demodulator: 3336 (3335) EQUAL(f(g(f(a,g(f(d,g(b))))),a),h). ** KEPT: 3337 (483,1165) EQUAL(f(g(f(a,f(e,g(h)))),a),h). ---> New Demodulator: 3338 (3337) EQUAL(f(g(f(a,f(e,g(h)))),a),h). >>>> Starting back demodulation with: 3336 (3335) EQUAL(f(g(f(a,g(f(d,g(b))))),a),h). >>>> Starting back demodulation with: 3338 (3337) EQUAL(f(g(f(a,f(e,g(h)))),a),h). ** KEPT: 3339 (1165,15,69) EQUAL(f(g(f(a,g(h))),c),d). ---> New Demodulator: 3340 (3339) EQUAL(f(g(f(a,g(h))),c),d). ** KEPT: 3341 (1165,5) EQUAL(f(f(x,g(f(a,g(h)))),a),f(x,h)). ** KEPT: 3342 (1165,5) EQUAL(f(g(f(a,g(h))),f(a,x)),f(h,x)). >>>> Starting back demodulation with: 3340 (3339) EQUAL(f(g(f(a,g(h))),c),d). new given clause: 1189 (1133,526) EQUAL(f(h,g(f(g(a),h))),a). ** KEPT: 3343 (9,1189) EQUAL(f(f(d,g(b)),g(f(g(a),h))),a). ---> New Demodulator: 3344 (3343) EQUAL(f(f(d,g(b)),g(f(g(a),h))),a). ** KEPT: 3345 (9,1189) EQUAL(f(h,g(f(g(a),f(d,g(b))))),a). ---> New Demodulator: 3346 (3345) EQUAL(f(h,g(f(g(a),f(d,g(b))))),a). ** KEPT: 3347 (1071,1189) EQUAL(f(h,g(f(f(g(a),e),h))),a). ---> New Demodulator: 3348 (3347) EQUAL(f(h,g(f(f(g(a),e),h))),a). >>>> Starting back demodulation with: 3344 (3343) EQUAL(f(f(d,g(b)),g(f(g(a),h))),a). >>>> Starting back demodulation with: 3346 (3345) EQUAL(f(h,g(f(g(a),f(d,g(b))))),a). >>>> Starting back demodulation with: 3348 (3347) EQUAL(f(h,g(f(f(g(a),e),h))),a). ** KEPT: 3349 (1189,132) EQUAL(f(d,g(f(g(a),h))),f(k,a)). ** KEPT: 3350 (1189,5) EQUAL(f(f(x,h),g(f(g(a),h))),f(x,a)). ** KEPT: 3351 (1189,5) EQUAL(f(h,f(g(f(g(a),h)),x)),f(a,x)). new given clause: 1215 (1135,1175) EQUAL(f(g(f(x,g(x))),d),d). ** KEPT: 3352 (5,1215) EQUAL(f(g(f(x,f(y,g(f(x,y))))),d),d). ---> New Demodulator: 3353 (3352) EQUAL(f(g(f(x,f(y,g(f(x,y))))),d),d). ** KEPT: 3354 (8,1215) EQUAL(f(g(f(x,g(x))),f(c,g(a))),d). ---> New Demodulator: 3355 (3354) EQUAL(f(g(f(x,g(x))),f(c,g(a))),d). ** KEPT: 3356 (131,1215) EQUAL(f(f(g(f(x,g(x))),k),h),d). ---> New Demodulator: 3357 (3356) EQUAL(f(f(g(f(x,g(x))),k),h),d). >>>> Starting back demodulation with: 3353 (3352) EQUAL(f(g(f(x,f(y,g(f(x,y))))),d),d). >>>> Starting back demodulation with: 3355 (3354) EQUAL(f(g(f(x,g(x))),f(c,g(a))),d). >>>> Starting back demodulation with: 3357 (3356) EQUAL(f(f(g(f(x,g(x))),k),h),d). ** KEPT: 3358 (1215,5) EQUAL(f(f(x,g(f(y,g(y)))),d),f(x,d)). ** KEPT: 3359 (1215,5) EQUAL(f(g(f(y,g(y))),f(d,x)),f(d,x)). new given clause: 1217 (1127,1175) EQUAL(f(g(f(g(x),x)),d),d). ** KEPT: 3360 (5,1217) EQUAL(f(g(f(f(g(f(x,y)),x),y)),d),d). ---> New Demodulator: 3361 (3360) EQUAL(f(g(f(f(g(f(x,y)),x),y)),d),d). ** KEPT: 3362 (8,1217) EQUAL(f(g(f(g(x),x)),f(c,g(a))),d). ---> New Demodulator: 3363 (3362) EQUAL(f(g(f(g(x),x)),f(c,g(a))),d). ** KEPT: 3364 (131,1217) EQUAL(f(f(g(f(g(x),x)),k),h),d). ---> New Demodulator: 3365 (3364) EQUAL(f(f(g(f(g(x),x)),k),h),d). >>>> Starting back demodulation with: 3361 (3360) EQUAL(f(g(f(f(g(f(x,y)),x),y)),d),d). >>>> Starting back demodulation with: 3363 (3362) EQUAL(f(g(f(g(x),x)),f(c,g(a))),d). >>>> Starting back demodulation with: 3365 (3364) EQUAL(f(f(g(f(g(x),x)),k),h),d). ** KEPT: 3366 (1217,5) EQUAL(f(f(x,g(f(g(y),y))),d),f(x,d)). ** KEPT: 3367 (1217,5) EQUAL(f(g(f(g(y),y)),f(d,x)),f(d,x)). new given clause: 1231 (520,1175) EQUAL(f(g(f(a,g(d))),a),d). ** KEPT: 3368 (8,1231) EQUAL(f(g(f(a,g(f(c,g(a))))),a),d). ---> New Demodulator: 3369 (3368) EQUAL(f(g(f(a,g(f(c,g(a))))),a),d). ** KEPT: 3370 (483,1231) EQUAL(f(g(f(a,f(e,g(d)))),a),d). ---> New Demodulator: 3371 (3370) EQUAL(f(g(f(a,f(e,g(d)))),a),d). >>>> Starting back demodulation with: 3369 (3368) EQUAL(f(g(f(a,g(f(c,g(a))))),a),d). >>>> Starting back demodulation with: 3371 (3370) EQUAL(f(g(f(a,f(e,g(d)))),a),d). ** KEPT: 3372 (1231,15) EQUAL(f(g(f(a,g(d))),c),f(d,b)). ** KEPT: 3373 (1231,5) EQUAL(f(f(x,g(f(a,g(d)))),a),f(x,d)). ** KEPT: 3374 (1231,5) EQUAL(f(g(f(a,g(d))),f(a,x)),f(d,x)). new given clause: 1249 (1197,526) EQUAL(f(d,g(f(g(a),d))),a). ** KEPT: 3375 (8,1249) EQUAL(f(f(c,g(a)),g(f(g(a),d))),a). ---> New Demodulator: 3376 (3375) EQUAL(f(f(c,g(a)),g(f(g(a),d))),a). ** KEPT: 3377 (8,1249) EQUAL(f(d,g(f(g(a),f(c,g(a))))),a). ---> New Demodulator: 3378 (3377) EQUAL(f(d,g(f(g(a),f(c,g(a))))),a). ** KEPT: 3379 (131,1249) EQUAL(f(d,g(f(f(g(a),k),h))),a). ---> New Demodulator: 3380 (3379) EQUAL(f(d,g(f(f(g(a),k),h))),a). ** KEPT: 3381 (72,1249) EQUAL(f(d,g(f(f(g(a),h),b))),a). ---> New Demodulator: 3382 (3381) EQUAL(f(d,g(f(f(g(a),h),b))),a). ** KEPT: 3383 (861,1249) EQUAL(f(f(d,e),g(f(g(a),d))),a). ---> New Demodulator: 3384 (3383) EQUAL(f(f(d,e),g(f(g(a),d))),a). ** KEPT: 3385 (132,1249) EQUAL(f(k,f(h,g(f(g(a),d)))),a). ---> New Demodulator: 3386 (3385) EQUAL(f(k,f(h,g(f(g(a),d)))),a). ** KEPT: 3387 (92,1249) EQUAL(f(d,f(e,g(f(g(a),d)))),a). ---> New Demodulator: 3388 (3387) EQUAL(f(d,f(e,g(f(g(a),d)))),a). ** KEPT: 3389 (73,1249) EQUAL(f(h,f(b,g(f(g(a),d)))),a). ---> New Demodulator: 3390 (3389) EQUAL(f(h,f(b,g(f(g(a),d)))),a). >>>> Starting back demodulation with: 3376 (3375) EQUAL(f(f(c,g(a)),g(f(g(a),d))),a). >>>> Starting back demodulation with: 3378 (3377) EQUAL(f(d,g(f(g(a),f(c,g(a))))),a). >>>> Starting back demodulation with: 3380 (3379) EQUAL(f(d,g(f(f(g(a),k),h))),a). >>>> Starting back demodulation with: 3382 (3381) EQUAL(f(d,g(f(f(g(a),h),b))),a). >>>> Starting back demodulation with: 3384 (3383) EQUAL(f(f(d,e),g(f(g(a),d))),a). >>>> Starting back demodulation with: 3386 (3385) EQUAL(f(k,f(h,g(f(g(a),d)))),a). >>>> Starting back demodulation with: 3388 (3387) EQUAL(f(d,f(e,g(f(g(a),d)))),a). >>>> Starting back demodulation with: 3390 (3389) EQUAL(f(h,f(b,g(f(g(a),d)))),a). ** KEPT: 3391 (1249,5) EQUAL(f(f(x,d),g(f(g(a),d))),f(x,a)). ** KEPT: 3392 (1249,5) EQUAL(f(d,f(g(f(g(a),d)),x)),f(a,x)). new given clause: 1263 (764,132) EQUAL(f(d,f(b,e)),f(k,d)). ** KEPT: 3393 (8,1263) EQUAL(f(f(c,g(a)),f(b,e)),f(k,d)). ** KEPT: 3394 (861,1263) EQUAL(f(f(d,e),f(b,e)),f(k,d)). ** KEPT: 3395 (92,1263) EQUAL(f(d,f(e,f(b,e))),f(k,d)). ** KEPT: 3396 (73,1263) EQUAL(f(h,f(b,f(b,e))),f(k,d)). ** KEPT: 3397 (5,1263) EQUAL(f(f(d,b),e),f(k,d)). ** KEPT: 3398 (8,1263) EQUAL(f(k,f(c,g(a))),f(d,f(b,e))). ** KEPT: 3399 (869,1263) EQUAL(f(d,f(b,e)),f(d,f(e,b))). ** KEPT: 3400 (750,1263) EQUAL(f(h,f(b,b)),f(d,f(b,e))). ** KEPT: 3401 (131,1263) EQUAL(f(d,f(b,e)),f(f(k,k),h)). ** KEPT: 3402 (667,1263) EQUAL(f(d,f(b,e)),f(d,b)). ** KEPT: 3403 (1263,5) EQUAL(f(f(x,d),f(b,e)),f(x,f(k,d))). ** KEPT: 3404 (1263,5) EQUAL(f(d,f(f(b,e),x)),f(f(k,d),x)). ** KEPT: 3405 (1263,151) EQUAL(f(f(d,f(b,e)),g(b)),d). ---> New Demodulator: 3406 (3405) EQUAL(f(f(d,f(b,e)),g(b)),d). ** KEPT: 3407 (1263,5) EQUAL(f(x,f(d,f(b,e))),f(f(x,k),d)). ** KEPT: 3408 (1263,5) EQUAL(f(f(d,f(b,e)),x),f(k,f(d,x))). >>>> Starting back demodulation with: 3406 (3405) EQUAL(f(f(d,f(b,e)),g(b)),d). new given clause: 1355 (364,163) EQUAL(f(x,f(c,e)),f(x,c)). ** KEPT: 3409 (4,1355) EQUAL(f(x,f(c,f(y,g(y)))),f(x,c)). ** KEPT: 3410 (3,1355) EQUAL(f(x,f(c,f(g(y),y))),f(x,c)). ** KEPT: 3411 (3126,1355) EQUAL(f(f(h,g(f(c,e))),c),h). ---> New Demodulator: 3412 (3411) EQUAL(f(f(h,g(f(c,e))),c),h). ** KEPT: 3413 (861,1355) EQUAL(f(d,f(c,e)),f(f(d,e),c)). ** KEPT: 3414 (365,1355) EQUAL(f(f(a,b),f(c,e)),f(c,c)). ** KEPT: 3415 (365,1355) EQUAL(f(c,f(c,e)),f(f(a,b),c)). ** KEPT: 3416 (1725,1355) EQUAL(f(f(b,g(f(c,e))),c),b). ---> New Demodulator: 3417 (3416) EQUAL(f(f(b,g(f(c,e))),c),b). ** KEPT: 3418 (132,1355) EQUAL(f(k,f(h,f(c,e))),f(d,c)). ** KEPT: 3419 (73,1355) EQUAL(f(h,f(b,f(c,e))),f(d,c)). ** KEPT: 3420 (520,1355) EQUAL(f(f(a,g(f(c,e))),c),a). ---> New Demodulator: 3421 (3420) EQUAL(f(f(a,g(f(c,e))),c),a). ** KEPT: 3422 (16,1355) EQUAL(f(a,f(b,f(c,e))),f(c,c)). ** KEPT: 3423 (105,1355) EQUAL(f(f(d,g(f(c,e))),c),d). ---> New Demodulator: 3424 (3423) EQUAL(f(f(d,g(f(c,e))),c),d). ** KEPT: 3425 (5,1355) EQUAL(f(x,f(y,f(c,e))),f(f(x,y),c)). ** KEPT: 3426 (7,1355) EQUAL(f(x,f(c,e)),f(x,f(a,b))). ** KEPT: 3427 (3215,1355) EQUAL(f(f(h,g(a)),f(c,e)),d). ---> New Demodulator: 3428 (3427) EQUAL(f(f(h,g(a)),f(c,e)),d). ** KEPT: 3429 (3126,1355) EQUAL(f(f(h,g(c)),f(c,e)),h). ---> New Demodulator: 3430 (3429) EQUAL(f(f(h,g(c)),f(c,e)),h). ** KEPT: 3431 (483,1355) EQUAL(f(a,f(c,e)),f(a,f(e,c))). ** KEPT: 3432 (1725,1355) EQUAL(f(f(b,g(c)),f(c,e)),b). ---> New Demodulator: 3433 (3432) EQUAL(f(f(b,g(c)),f(c,e)),b). ** KEPT: 3434 (1495,1355) EQUAL(f(g(f(a,e)),f(c,e)),b). ---> New Demodulator: 3435 (3434) EQUAL(f(g(f(a,e)),f(c,e)),b). ** KEPT: 3436 (1388,1355) EQUAL(f(g(f(e,c)),f(c,e)),e). ---> New Demodulator: 3437 (3436) EQUAL(f(g(f(e,c)),f(c,e)),e). ** KEPT: 3438 (132,1355) EQUAL(f(k,f(h,c)),f(d,f(c,e))). ** KEPT: 3439 (92,1355) EQUAL(f(d,f(c,e)),f(d,f(e,c))). ** KEPT: 3440 (73,1355) EQUAL(f(h,f(b,c)),f(d,f(c,e))). ** KEPT: 3441 (520,1355) EQUAL(f(f(a,g(c)),f(c,e)),a). ---> New Demodulator: 3442 (3441) EQUAL(f(f(a,g(c)),f(c,e)),a). ** KEPT: 3443 (16,1355) EQUAL(f(c,f(c,e)),f(a,f(b,c))). ** KEPT: 3444 (334,1355) EQUAL(f(f(g(a),e),f(c,e)),b). ---> New Demodulator: 3445 (3444) EQUAL(f(f(g(a),e),f(c,e)),b). ** KEPT: 3446 (316,1355) EQUAL(f(f(g(c),e),f(c,e)),e). ---> New Demodulator: 3447 (3446) EQUAL(f(f(g(c),e),f(c,e)),e). ** KEPT: 3448 (105,1355) EQUAL(f(f(d,g(c)),f(c,e)),d). ---> New Demodulator: 3449 (3448) EQUAL(f(f(d,g(c)),f(c,e)),d). ** KEPT: 3450 (5,1355) EQUAL(f(f(x,y),f(c,e)),f(x,f(y,c))). >>>> Starting back demodulation with: 3412 (3411) EQUAL(f(f(h,g(f(c,e))),c),h). >>>> Starting back demodulation with: 3417 (3416) EQUAL(f(f(b,g(f(c,e))),c),b). >>>> Starting back demodulation with: 3421 (3420) EQUAL(f(f(a,g(f(c,e))),c),a). >>>> Starting back demodulation with: 3424 (3423) EQUAL(f(f(d,g(f(c,e))),c),d). >>>> Starting back demodulation with: 3428 (3427) EQUAL(f(f(h,g(a)),f(c,e)),d). >>>> Starting back demodulation with: 3430 (3429) EQUAL(f(f(h,g(c)),f(c,e)),h). >>>> Starting back demodulation with: 3433 (3432) EQUAL(f(f(b,g(c)),f(c,e)),b). >>>> Starting back demodulation with: 3435 (3434) EQUAL(f(g(f(a,e)),f(c,e)),b). >>>> Starting back demodulation with: 3437 (3436) EQUAL(f(g(f(e,c)),f(c,e)),e). >>>> Starting back demodulation with: 3442 (3441) EQUAL(f(f(a,g(c)),f(c,e)),a). >>>> Starting back demodulation with: 3445 (3444) EQUAL(f(f(g(a),e),f(c,e)),b). >>>> Starting back demodulation with: 3447 (3446) EQUAL(f(f(g(c),e),f(c,e)),e). >>>> Starting back demodulation with: 3449 (3448) EQUAL(f(f(d,g(c)),f(c,e)),d). ** KEPT: 3451 (1355,3118) EQUAL(f(f(h,c),g(f(c,e))),h). ---> New Demodulator: 3452 (3451) EQUAL(f(f(h,c),g(f(c,e))),h). ** KEPT: 3453 (1355,526) EQUAL(f(f(a,c),g(f(c,e))),a). ---> New Demodulator: 3454 (3453) EQUAL(f(f(a,c),g(f(c,e))),a). ** KEPT: 3455 (1355,1719) EQUAL(f(f(b,c),g(f(c,e))),b). ---> New Demodulator: 3456 (3455) EQUAL(f(f(b,c),g(f(c,e))),b). ** KEPT: 3457 (1355,113) EQUAL(f(f(d,c),g(f(c,e))),d). ---> New Demodulator: 3458 (3457) EQUAL(f(f(d,c),g(f(c,e))),d). ** KEPT: 3459 (1355,5) EQUAL(f(x,f(f(c,e),y)),f(f(x,c),y)). ** KEPT: 3460 (1355,3118) EQUAL(f(f(h,f(c,e)),g(c)),h). ---> New Demodulator: 3461 (3460) EQUAL(f(f(h,f(c,e)),g(c)),h). ** KEPT: 3462 (1355,526) EQUAL(f(f(a,f(c,e)),g(c)),a). ---> New Demodulator: 3463 (3462) EQUAL(f(f(a,f(c,e)),g(c)),a). ** KEPT: 3464 (1355,1719) EQUAL(f(f(b,f(c,e)),g(c)),b). ---> New Demodulator: 3465 (3464) EQUAL(f(f(b,f(c,e)),g(c)),b). ** KEPT: 3466 (1355,113) EQUAL(f(f(d,f(c,e)),g(c)),d). ---> New Demodulator: 3467 (3466) EQUAL(f(f(d,f(c,e)),g(c)),d). ** KEPT: 3468 (1355,5) EQUAL(f(f(x,f(c,e)),y),f(x,f(c,y))). >>>> Starting back demodulation with: 3452 (3451) EQUAL(f(f(h,c),g(f(c,e))),h). >>>> Starting back demodulation with: 3454 (3453) EQUAL(f(f(a,c),g(f(c,e))),a). >>>> Starting back demodulation with: 3456 (3455) EQUAL(f(f(b,c),g(f(c,e))),b). >>>> Starting back demodulation with: 3458 (3457) EQUAL(f(f(d,c),g(f(c,e))),d). >>>> Starting back demodulation with: 3461 (3460) EQUAL(f(f(h,f(c,e)),g(c)),h). >>>> Starting back demodulation with: 3463 (3462) EQUAL(f(f(a,f(c,e)),g(c)),a). >>>> Starting back demodulation with: 3465 (3464) EQUAL(f(f(b,f(c,e)),g(c)),b). >>>> Starting back demodulation with: 3467 (3466) EQUAL(f(f(d,f(c,e)),g(c)),d). new given clause: 1356 (162,163) EQUAL(f(x,f(e,c)),f(x,c)). ** KEPT: 3469 (4,1356) EQUAL(f(x,f(f(y,g(y)),c)),f(x,c)). ** KEPT: 3470 (3,1356) EQUAL(f(x,f(f(g(y),y),c)),f(x,c)). ** KEPT: 3471 (3126,1356) EQUAL(f(f(h,g(f(e,c))),c),h). ---> New Demodulator: 3472 (3471) EQUAL(f(f(h,g(f(e,c))),c),h). ** KEPT: 3473 (1725,1356) EQUAL(f(f(b,g(f(e,c))),c),b). ---> New Demodulator: 3474 (3473) EQUAL(f(f(b,g(f(e,c))),c),b). ** KEPT: 3475 (520,1356) EQUAL(f(f(a,g(f(e,c))),c),a). ---> New Demodulator: 3476 (3475) EQUAL(f(f(a,g(f(e,c))),c),a). ** KEPT: 3477 (16,1356) EQUAL(f(a,f(b,f(e,c))),f(c,c)). ** KEPT: 3478 (105,1356) EQUAL(f(f(d,g(f(e,c))),c),d). ---> New Demodulator: 3479 (3478) EQUAL(f(f(d,g(f(e,c))),c),d). ** KEPT: 3480 (5,1356) EQUAL(f(f(x,e),c),f(x,c)). ** KEPT: 3481 (5,1356) EQUAL(f(x,f(y,f(e,c))),f(f(x,y),c)). ** KEPT: 3482 (7,1356) EQUAL(f(x,f(a,b)),f(x,f(e,c))). ** KEPT: 3483 (1355,1356) EQUAL(f(x,f(c,e)),f(x,f(e,c))). ** KEPT: 3484 (3215,1356) EQUAL(f(f(h,g(a)),f(e,c)),d). ---> New Demodulator: 3485 (3484) EQUAL(f(f(h,g(a)),f(e,c)),d). ** KEPT: 3486 (3126,1356) EQUAL(f(f(h,g(c)),f(e,c)),h). ---> New Demodulator: 3487 (3486) EQUAL(f(f(h,g(c)),f(e,c)),h). ** KEPT: 3488 (1725,1356) EQUAL(f(f(b,g(c)),f(e,c)),b). ---> New Demodulator: 3489 (3488) EQUAL(f(f(b,g(c)),f(e,c)),b). ** KEPT: 3490 (1495,1356) EQUAL(f(g(f(a,e)),f(e,c)),b). ---> New Demodulator: 3491 (3490) EQUAL(f(g(f(a,e)),f(e,c)),b). ** KEPT: 3492 (1386,1356) EQUAL(f(g(f(c,e)),f(e,c)),e). ---> New Demodulator: 3493 (3492) EQUAL(f(g(f(c,e)),f(e,c)),e). ** KEPT: 3494 (520,1356) EQUAL(f(f(a,g(c)),f(e,c)),a). ---> New Demodulator: 3495 (3494) EQUAL(f(f(a,g(c)),f(e,c)),a). ** KEPT: 3496 (16,1356) EQUAL(f(c,f(e,c)),f(a,f(b,c))). ** KEPT: 3497 (334,1356) EQUAL(f(f(g(a),e),f(e,c)),b). ---> New Demodulator: 3498 (3497) EQUAL(f(f(g(a),e),f(e,c)),b). ** KEPT: 3499 (316,1356) EQUAL(f(f(g(c),e),f(e,c)),e). ---> New Demodulator: 3500 (3499) EQUAL(f(f(g(c),e),f(e,c)),e). ** KEPT: 3501 (105,1356) EQUAL(f(f(d,g(c)),f(e,c)),d). ---> New Demodulator: 3502 (3501) EQUAL(f(f(d,g(c)),f(e,c)),d). ** KEPT: 3503 (5,1356) EQUAL(f(f(x,y),f(e,c)),f(x,f(y,c))). >>>> Starting back demodulation with: 3472 (3471) EQUAL(f(f(h,g(f(e,c))),c),h). >>>> Starting back demodulation with: 3474 (3473) EQUAL(f(f(b,g(f(e,c))),c),b). >>>> Starting back demodulation with: 3476 (3475) EQUAL(f(f(a,g(f(e,c))),c),a). >>>> Starting back demodulation with: 3479 (3478) EQUAL(f(f(d,g(f(e,c))),c),d). 3482 back subsumes: 1894 (163,483) EQUAL(f(a,f(a,b)),f(a,f(e,c))). 3482 back subsumes: 1368 (92,163) EQUAL(f(d,f(a,b)),f(d,f(e,c))). 3483 back subsumes: 3439 (92,1355) EQUAL(f(d,f(c,e)),f(d,f(e,c))). 3483 back subsumes: 3431 (483,1355) EQUAL(f(a,f(c,e)),f(a,f(e,c))). >>>> Starting back demodulation with: 3485 (3484) EQUAL(f(f(h,g(a)),f(e,c)),d). >>>> Starting back demodulation with: 3487 (3486) EQUAL(f(f(h,g(c)),f(e,c)),h). >>>> Starting back demodulation with: 3489 (3488) EQUAL(f(f(b,g(c)),f(e,c)),b). >>>> Starting back demodulation with: 3491 (3490) EQUAL(f(g(f(a,e)),f(e,c)),b). >>>> Starting back demodulation with: 3493 (3492) EQUAL(f(g(f(c,e)),f(e,c)),e). >>>> Starting back demodulation with: 3495 (3494) EQUAL(f(f(a,g(c)),f(e,c)),a). >>>> Starting back demodulation with: 3498 (3497) EQUAL(f(f(g(a),e),f(e,c)),b). >>>> Starting back demodulation with: 3500 (3499) EQUAL(f(f(g(c),e),f(e,c)),e). >>>> Starting back demodulation with: 3502 (3501) EQUAL(f(f(d,g(c)),f(e,c)),d). ** KEPT: 3504 (1356,3118) EQUAL(f(f(h,c),g(f(e,c))),h). ---> New Demodulator: 3505 (3504) EQUAL(f(f(h,c),g(f(e,c))),h). ** KEPT: 3506 (1356,1719) EQUAL(f(f(b,c),g(f(e,c))),b). ---> New Demodulator: 3507 (3506) EQUAL(f(f(b,c),g(f(e,c))),b). ** KEPT: 3508 (1356,5) EQUAL(f(x,f(f(e,c),y)),f(f(x,c),y)). ** KEPT: 3509 (1356,3118) EQUAL(f(f(h,f(e,c)),g(c)),h). ---> New Demodulator: 3510 (3509) EQUAL(f(f(h,f(e,c)),g(c)),h). ** KEPT: 3511 (1356,1719) EQUAL(f(f(b,f(e,c)),g(c)),b). ---> New Demodulator: 3512 (3511) EQUAL(f(f(b,f(e,c)),g(c)),b). ** KEPT: 3513 (1356,5) EQUAL(f(f(x,f(e,c)),y),f(x,f(c,y))). >>>> Starting back demodulation with: 3505 (3504) EQUAL(f(f(h,c),g(f(e,c))),h). >>>> Starting back demodulation with: 3507 (3506) EQUAL(f(f(b,c),g(f(e,c))),b). >>>> Starting back demodulation with: 3510 (3509) EQUAL(f(f(h,f(e,c)),g(c)),h). >>>> Starting back demodulation with: 3512 (3511) EQUAL(f(f(b,f(e,c)),g(c)),b). new given clause: 1420 (364,221) EQUAL(f(f(e,e),f(c,e)),c). ** KEPT: 3514 (4,1420) EQUAL(f(f(f(x,g(x)),e),f(c,e)),c). ---> New Demodulator: 3515 (3514) EQUAL(f(f(f(x,g(x)),e),f(c,e)),c). ** KEPT: 3516 (3,1420) EQUAL(f(f(f(g(x),x),e),f(c,e)),c). ---> New Demodulator: 3517 (3516) EQUAL(f(f(f(g(x),x),e),f(c,e)),c). ** KEPT: 3518 (4,1420) EQUAL(f(f(e,f(x,g(x))),f(c,e)),c). ---> New Demodulator: 3519 (3518) EQUAL(f(f(e,f(x,g(x))),f(c,e)),c). ** KEPT: 3520 (3,1420) EQUAL(f(f(e,f(g(x),x)),f(c,e)),c). ---> New Demodulator: 3521 (3520) EQUAL(f(f(e,f(g(x),x)),f(c,e)),c). ** KEPT: 3522 (4,1420) EQUAL(f(f(e,e),f(c,f(x,g(x)))),c). ---> New Demodulator: 3523 (3522) EQUAL(f(f(e,e),f(c,f(x,g(x)))),c). ** KEPT: 3524 (3,1420) EQUAL(f(f(e,e),f(c,f(g(x),x))),c). ---> New Demodulator: 3525 (3524) EQUAL(f(f(e,e),f(c,f(g(x),x))),c). >>>> Starting back demodulation with: 3515 (3514) EQUAL(f(f(f(x,g(x)),e),f(c,e)),c). >>>> Starting back demodulation with: 3517 (3516) EQUAL(f(f(f(g(x),x),e),f(c,e)),c). >>>> Starting back demodulation with: 3519 (3518) EQUAL(f(f(e,f(x,g(x))),f(c,e)),c). >>>> Starting back demodulation with: 3521 (3520) EQUAL(f(f(e,f(g(x),x)),f(c,e)),c). >>>> Starting back demodulation with: 3523 (3522) EQUAL(f(f(e,e),f(c,f(x,g(x)))),c). >>>> Starting back demodulation with: 3525 (3524) EQUAL(f(f(e,e),f(c,f(g(x),x))),c). ** KEPT: 3526 (1420,5) EQUAL(f(f(x,f(e,e)),f(c,e)),f(x,c)). ** KEPT: 3527 (1420,5) EQUAL(f(f(e,e),f(f(c,e),x)),f(c,x)). new given clause: 1422 (162,221) EQUAL(f(f(e,e),f(e,c)),c). ** KEPT: 3528 (4,1422) EQUAL(f(f(f(x,g(x)),e),f(e,c)),c). ---> New Demodulator: 3529 (3528) EQUAL(f(f(f(x,g(x)),e),f(e,c)),c). ** KEPT: 3530 (3,1422) EQUAL(f(f(f(g(x),x),e),f(e,c)),c). ---> New Demodulator: 3531 (3530) EQUAL(f(f(f(g(x),x),e),f(e,c)),c). ** KEPT: 3532 (4,1422) EQUAL(f(f(e,f(x,g(x))),f(e,c)),c). ---> New Demodulator: 3533 (3532) EQUAL(f(f(e,f(x,g(x))),f(e,c)),c). ** KEPT: 3534 (3,1422) EQUAL(f(f(e,f(g(x),x)),f(e,c)),c). ---> New Demodulator: 3535 (3534) EQUAL(f(f(e,f(g(x),x)),f(e,c)),c). ** KEPT: 3536 (4,1422) EQUAL(f(f(e,e),f(f(x,g(x)),c)),c). ---> New Demodulator: 3537 (3536) EQUAL(f(f(e,e),f(f(x,g(x)),c)),c). ** KEPT: 3538 (3,1422) EQUAL(f(f(e,e),f(f(g(x),x),c)),c). ---> New Demodulator: 3539 (3538) EQUAL(f(f(e,e),f(f(g(x),x),c)),c). ** KEPT: 3540 (5,1422) EQUAL(f(f(f(e,e),e),c),c). ---> New Demodulator: 3541 (3540) EQUAL(f(f(f(e,e),e),c),c). >>>> Starting back demodulation with: 3529 (3528) EQUAL(f(f(f(x,g(x)),e),f(e,c)),c). >>>> Starting back demodulation with: 3531 (3530) EQUAL(f(f(f(g(x),x),e),f(e,c)),c). >>>> Starting back demodulation with: 3533 (3532) EQUAL(f(f(e,f(x,g(x))),f(e,c)),c). >>>> Starting back demodulation with: 3535 (3534) EQUAL(f(f(e,f(g(x),x)),f(e,c)),c). >>>> Starting back demodulation with: 3537 (3536) EQUAL(f(f(e,e),f(f(x,g(x)),c)),c). >>>> Starting back demodulation with: 3539 (3538) EQUAL(f(f(e,e),f(f(g(x),x),c)),c). >>>> Starting back demodulation with: 3541 (3540) EQUAL(f(f(f(e,e),e),c),c). ** KEPT: 3542 (1422,5) EQUAL(f(f(x,f(e,e)),f(e,c)),f(x,c)). ** KEPT: 3543 (1422,5) EQUAL(f(f(e,e),f(f(e,c),x)),f(c,x)). new given clause: 1434 (5,223) EQUAL(f(f(e,f(e,a)),b),c). ** KEPT: 3544 (4,1434) EQUAL(f(f(f(x,g(x)),f(e,a)),b),c). ---> New Demodulator: 3545 (3544) EQUAL(f(f(f(x,g(x)),f(e,a)),b),c). ** KEPT: 3546 (3,1434) EQUAL(f(f(f(g(x),x),f(e,a)),b),c). ---> New Demodulator: 3547 (3546) EQUAL(f(f(f(g(x),x),f(e,a)),b),c). ** KEPT: 3548 (239,1434) EQUAL(f(f(f(e,f(e,a)),e),b),c). ---> New Demodulator: 3549 (3548) EQUAL(f(f(f(e,f(e,a)),e),b),c). >>>> Starting back demodulation with: 3545 (3544) EQUAL(f(f(f(x,g(x)),f(e,a)),b),c). >>>> Starting back demodulation with: 3547 (3546) EQUAL(f(f(f(g(x),x),f(e,a)),b),c). >>>> Starting back demodulation with: 3549 (3548) EQUAL(f(f(f(e,f(e,a)),e),b),c). ** KEPT: 3550 (1434,5) EQUAL(f(f(x,f(e,f(e,a))),b),f(x,c)). ** KEPT: 3551 (1434,5) EQUAL(f(f(e,f(e,a)),f(b,x)),f(c,x)). new given clause: 1444 (5,239) EQUAL(f(x,f(e,b)),f(x,b)). ** KEPT: 3552 (3126,1444) EQUAL(f(f(h,g(f(e,b))),b),h). ---> New Demodulator: 3553 (3552) EQUAL(f(f(h,g(f(e,b))),b),h). ** KEPT: 3554 (1725,1444) EQUAL(f(f(b,g(f(e,b))),b),b). ---> New Demodulator: 3555 (3554) EQUAL(f(f(b,g(f(e,b))),b),b). ** KEPT: 3556 (520,1444) EQUAL(f(f(a,g(f(e,b))),b),a). ---> New Demodulator: 3557 (3556) EQUAL(f(f(a,g(f(e,b))),b),a). ** KEPT: 3558 (16,1444) EQUAL(f(a,f(b,f(e,b))),f(c,b)). ** KEPT: 3559 (5,1444) EQUAL(f(x,f(y,f(e,b))),f(f(x,y),b)). ** KEPT: 3560 (3,1444) EQUAL(f(g(f(e,b)),b),e). ---> New Demodulator: 3561 (3560) EQUAL(f(g(f(e,b)),b),e). ** KEPT: 3562 (1434,1444) EQUAL(f(f(e,f(e,a)),f(e,b)),c). ---> New Demodulator: 3563 (3562) EQUAL(f(f(e,f(e,a)),f(e,b)),c). ** KEPT: 3564 (1155,1444) EQUAL(f(g(f(g(h),k)),f(e,b)),h). ---> New Demodulator: 3565 (3564) EQUAL(f(g(f(g(h),k)),f(e,b)),h). ** KEPT: 3566 (3126,1444) EQUAL(f(f(h,g(b)),f(e,b)),h). ---> New Demodulator: 3567 (3566) EQUAL(f(f(h,g(b)),f(e,b)),h). ** KEPT: 3568 (282,1444) EQUAL(f(g(f(g(x),x)),f(e,b)),b). ---> New Demodulator: 3569 (3568) EQUAL(f(g(f(g(x),x)),f(e,b)),b). ** KEPT: 3570 (280,1444) EQUAL(f(g(f(x,g(x))),f(e,b)),b). ---> New Demodulator: 3571 (3570) EQUAL(f(g(f(x,g(x))),f(e,b)),b). ** KEPT: 3572 (1473,1444) EQUAL(f(f(g(b),e),f(e,b)),e). ---> New Demodulator: 3573 (3572) EQUAL(f(f(g(b),e),f(e,b)),e). ** KEPT: 3574 (1475,1444) EQUAL(f(f(e,e),f(e,b)),b). ---> New Demodulator: 3575 (3574) EQUAL(f(f(e,e),f(e,b)),b). ** KEPT: 3576 (1470,1444) EQUAL(f(f(a,e),f(e,b)),c). ---> New Demodulator: 3577 (3576) EQUAL(f(f(a,e),f(e,b)),c). ** KEPT: 3578 (223,1444) EQUAL(f(f(f(e,e),a),f(e,b)),c). ---> New Demodulator: 3579 (3578) EQUAL(f(f(f(e,e),a),f(e,b)),c). ** KEPT: 3580 (1074,1444) EQUAL(f(f(g(k),h),f(e,b)),h). ---> New Demodulator: 3581 (3580) EQUAL(f(f(g(k),h),f(e,b)),h). ** KEPT: 3582 (676,1444) EQUAL(f(f(g(d),h),f(e,b)),e). ---> New Demodulator: 3583 (3582) EQUAL(f(f(g(d),h),f(e,b)),e). ** KEPT: 3584 (678,1444) EQUAL(f(f(e,h),f(e,b)),d). ---> New Demodulator: 3585 (3584) EQUAL(f(f(e,h),f(e,b)),d). ** KEPT: 3586 (520,1444) EQUAL(f(f(a,g(b)),f(e,b)),a). ---> New Demodulator: 3587 (3586) EQUAL(f(f(a,g(b)),f(e,b)),a). ** KEPT: 3588 (16,1444) EQUAL(f(c,f(e,b)),f(a,f(b,b))). ** KEPT: 3589 (167,1444) EQUAL(f(f(g(c),a),f(e,b)),e). ---> New Demodulator: 3590 (3589) EQUAL(f(f(g(c),a),f(e,b)),e). ** KEPT: 3591 (5,1444) EQUAL(f(f(x,y),f(e,b)),f(x,f(y,b))). >>>> Starting back demodulation with: 3553 (3552) EQUAL(f(f(h,g(f(e,b))),b),h). >>>> Starting back demodulation with: 3555 (3554) EQUAL(f(f(b,g(f(e,b))),b),b). >>>> Starting back demodulation with: 3557 (3556) EQUAL(f(f(a,g(f(e,b))),b),a). >>>> Starting back demodulation with: 3561 (3560) EQUAL(f(g(f(e,b)),b),e). >>>> Starting back demodulation with: 3563 (3562) EQUAL(f(f(e,f(e,a)),f(e,b)),c). >>>> Starting back demodulation with: 3565 (3564) EQUAL(f(g(f(g(h),k)),f(e,b)),h). >>>> Starting back demodulation with: 3567 (3566) EQUAL(f(f(h,g(b)),f(e,b)),h). >>>> Starting back demodulation with: 3569 (3568) EQUAL(f(g(f(g(x),x)),f(e,b)),b). >>>> Starting back demodulation with: 3571 (3570) EQUAL(f(g(f(x,g(x))),f(e,b)),b). >>>> Starting back demodulation with: 3573 (3572) EQUAL(f(f(g(b),e),f(e,b)),e). >>>> Starting back demodulation with: 3575 (3574) EQUAL(f(f(e,e),f(e,b)),b). >>>> Starting back demodulation with: 3577 (3576) EQUAL(f(f(a,e),f(e,b)),c). >>>> Starting back demodulation with: 3579 (3578) EQUAL(f(f(f(e,e),a),f(e,b)),c). >>>> Starting back demodulation with: 3581 (3580) EQUAL(f(f(g(k),h),f(e,b)),h). >>>> Starting back demodulation with: 3583 (3582) EQUAL(f(f(g(d),h),f(e,b)),e). >>>> Starting back demodulation with: 3585 (3584) EQUAL(f(f(e,h),f(e,b)),d). >>>> Starting back demodulation with: 3587 (3586) EQUAL(f(f(a,g(b)),f(e,b)),a). >>>> Starting back demodulation with: 3590 (3589) EQUAL(f(f(g(c),a),f(e,b)),e). ** KEPT: 3592 (1444,1719) EQUAL(f(f(b,b),g(f(e,b))),b). ---> New Demodulator: 3593 (3592) EQUAL(f(f(b,b),g(f(e,b))),b). ** KEPT: 3594 (1444,5) EQUAL(f(x,f(f(e,b),y)),f(f(x,b),y)). ** KEPT: 3595 (1444,574) EQUAL(f(b,g(f(g(a),f(e,b)))),a). ---> New Demodulator: 3596 (3595) EQUAL(f(b,g(f(g(a),f(e,b)))),a). ** KEPT: 3597 (1444,306) EQUAL(f(b,g(f(g(d),f(e,b)))),d). ---> New Demodulator: 3598 (3597) EQUAL(f(b,g(f(g(d),f(e,b)))),d). ** KEPT: 3599 (1444,1719) EQUAL(f(f(b,f(e,b)),g(b)),b). ---> New Demodulator: 3600 (3599) EQUAL(f(f(b,f(e,b)),g(b)),b). ** KEPT: 3601 (1444,266) EQUAL(f(x,f(g(x),f(e,b))),b). ---> New Demodulator: 3602 (3601) EQUAL(f(x,f(g(x),f(e,b))),b). ** KEPT: 3603 (1444,260) EQUAL(f(g(x),f(x,f(e,b))),b). ---> New Demodulator: 3604 (3603) EQUAL(f(g(x),f(x,f(e,b))),b). ** KEPT: 3605 (1444,5) EQUAL(f(f(x,f(e,b)),y),f(x,f(b,y))). >>>> Starting back demodulation with: 3593 (3592) EQUAL(f(f(b,b),g(f(e,b))),b). >>>> Starting back demodulation with: 3596 (3595) EQUAL(f(b,g(f(g(a),f(e,b)))),a). >>>> Starting back demodulation with: 3598 (3597) EQUAL(f(b,g(f(g(d),f(e,b)))),d). >>>> Starting back demodulation with: 3600 (3599) EQUAL(f(f(b,f(e,b)),g(b)),b). >>>> Starting back demodulation with: 3602 (3601) EQUAL(f(x,f(g(x),f(e,b))),b). >>>> Starting back demodulation with: 3604 (3603) EQUAL(f(g(x),f(x,f(e,b))),b). >> back demodulating: 892 (891) EQUAL(f(g(d),f(d,f(e,b))),b). >> back demodulating: 891 (92,260) EQUAL(f(g(d),f(d,f(e,b))),b). new given clause: 3560 (3,1444) EQUAL(f(g(f(e,b)),b),e). ** KEPT: 3606 (239,3560) EQUAL(f(f(g(f(e,b)),e),b),e). ---> New Demodulator: 3607 (3606) EQUAL(f(f(g(f(e,b)),e),b),e). >>>> Starting back demodulation with: 3607 (3606) EQUAL(f(f(g(f(e,b)),e),b),e). ** KEPT: 3608 (3560,266) EQUAL(f(f(e,b),e),b). ---> New Demodulator: 3609 (3608) EQUAL(f(f(e,b),e),b). ** KEPT: 3610 (3560,5) EQUAL(f(f(x,g(f(e,b))),b),f(x,e)). ** KEPT: 3611 (3560,5) EQUAL(f(g(f(e,b)),f(b,x)),f(e,x)). >>>> Starting back demodulation with: 3609 (3608) EQUAL(f(f(e,b),e),b). new given clause: 3608 (3560,266) EQUAL(f(f(e,b),e),b). ** KEPT: 3612 (4,3608) EQUAL(f(f(e,b),f(x,g(x))),b). ---> New Demodulator: 3613 (3612) EQUAL(f(f(e,b),f(x,g(x))),b). ** KEPT: 3614 (3,3608) EQUAL(f(f(e,b),f(g(x),x)),b). ---> New Demodulator: 3615 (3614) EQUAL(f(f(e,b),f(g(x),x)),b). ** KEPT: 3616 (5,3608) EQUAL(f(e,f(b,e)),b). ---> New Demodulator: 3617 (3616) EQUAL(f(e,f(b,e)),b). >>>> Starting back demodulation with: 3613 (3612) EQUAL(f(f(e,b),f(x,g(x))),b). >>>> Starting back demodulation with: 3615 (3614) EQUAL(f(f(e,b),f(g(x),x)),b). >>>> Starting back demodulation with: 3617 (3616) EQUAL(f(e,f(b,e)),b). >> back demodulating: 1622 (284,1527,1576) EQUAL(f(g(b),f(e,f(b,e))),e). >> back demodulating: 1623 (1622) EQUAL(f(g(b),f(e,f(b,e))),e). >> back demodulating: 1624 (284,1511,1576) EQUAL(f(c,g(f(e,f(b,e)))),a). >> back demodulating: 1625 (1624) EQUAL(f(c,g(f(e,f(b,e)))),a). >> back demodulating: 1626 (284,1505,1576) EQUAL(f(e,f(e,f(b,e))),b). >> back demodulating: 1627 (1626) EQUAL(f(e,f(e,f(b,e))),b). >> back demodulating: 1628 (284,1493,1576) EQUAL(f(a,f(e,f(b,e))),c). >> back demodulating: 1629 (1628) EQUAL(f(a,f(e,f(b,e))),c). >> back demodulating: 1630 (284,798,1576) EQUAL(f(h,f(e,f(b,e))),d). >> back demodulating: 1631 (1630) EQUAL(f(h,f(e,f(b,e))),d). >> back demodulating: 3395 (92,1263) EQUAL(f(d,f(e,f(b,e))),f(k,d)). ** KEPT: 3618 (3608,1071) EQUAL(f(f(e,b),h),f(b,h)). ** KEPT: 3619 (3608,239) EQUAL(f(f(e,b),b),f(b,b)). ** KEPT: 3620 (3608,5) EQUAL(f(f(x,f(e,b)),e),f(x,b)). ** KEPT: 3621 (3608,5) EQUAL(f(f(e,b),f(e,x)),f(b,x)). new given clause: 3616 (5,3608) EQUAL(f(e,f(b,e)),b). ** KEPT: 3622 (3616,5) EQUAL(f(e,f(f(b,e),x)),f(b,x)). new given clause: 1447 (132,239,69) EQUAL(f(f(d,e),b),f(k,d)). ** KEPT: 3623 (8,1447) EQUAL(f(k,f(c,g(a))),f(f(d,e),b)). ** KEPT: 3624 (1263,1447) EQUAL(f(d,f(b,e)),f(f(d,e),b)). ** KEPT: 3625 (1447,260) EQUAL(f(g(f(d,e)),f(k,d)),b). ---> New Demodulator: 3626 (3625) EQUAL(f(g(f(d,e)),f(k,d)),b). ** KEPT: 3627 (1447,5) EQUAL(f(f(x,f(d,e)),b),f(x,f(k,d))). ** KEPT: 3628 (1447,5) EQUAL(f(f(d,e),f(b,x)),f(f(k,d),x)). ** KEPT: 3629 (1447,5) EQUAL(f(x,f(f(d,e),b)),f(f(x,k),d)). ** KEPT: 3630 (1447,5) EQUAL(f(f(f(d,e),b),x),f(k,f(d,x))). >>>> Starting back demodulation with: 3626 (3625) EQUAL(f(g(f(d,e)),f(k,d)),b). new given clause: 1466 (169,239) EQUAL(f(f(f(e,a),e),b),c). ** KEPT: 3631 (5,1466) EQUAL(f(f(e,f(a,e)),b),c). ---> New Demodulator: 3632 (3631) EQUAL(f(f(e,f(a,e)),b),c). ** KEPT: 3633 (1444,1466) EQUAL(f(f(f(e,a),e),f(e,b)),c). ---> New Demodulator: 3634 (3633) EQUAL(f(f(f(e,a),e),f(e,b)),c). >>>> Starting back demodulation with: 3632 (3631) EQUAL(f(f(e,f(a,e)),b),c). >>>> Starting back demodulation with: 3634 (3633) EQUAL(f(f(f(e,a),e),f(e,b)),c). ** KEPT: 3635 (1466,5) EQUAL(f(f(x,f(f(e,a),e)),b),f(x,c)). ** KEPT: 3636 (1466,5) EQUAL(f(f(f(e,a),e),f(b,x)),f(c,x)). new given clause: 1503 (239,1475) EQUAL(f(f(f(e,e),e),b),b). ** KEPT: 3637 (4,1503) EQUAL(f(f(f(f(x,g(x)),e),e),b),b). ---> New Demodulator: 3638 (3637) EQUAL(f(f(f(f(x,g(x)),e),e),b),b). ** KEPT: 3639 (3,1503) EQUAL(f(f(f(f(g(x),x),e),e),b),b). ---> New Demodulator: 3640 (3639) EQUAL(f(f(f(f(g(x),x),e),e),b),b). ** KEPT: 3641 (4,1503) EQUAL(f(f(f(e,f(x,g(x))),e),b),b). ---> New Demodulator: 3642 (3641) EQUAL(f(f(f(e,f(x,g(x))),e),b),b). ** KEPT: 3643 (3,1503) EQUAL(f(f(f(e,f(g(x),x)),e),b),b). ---> New Demodulator: 3644 (3643) EQUAL(f(f(f(e,f(g(x),x)),e),b),b). ** KEPT: 3645 (4,1503) EQUAL(f(f(f(e,e),f(x,g(x))),b),b). ---> New Demodulator: 3646 (3645) EQUAL(f(f(f(e,e),f(x,g(x))),b),b). ** KEPT: 3647 (3,1503) EQUAL(f(f(f(e,e),f(g(x),x)),b),b). ---> New Demodulator: 3648 (3647) EQUAL(f(f(f(e,e),f(g(x),x)),b),b). ** KEPT: 3649 (5,1503) EQUAL(f(f(e,f(e,e)),b),b). ---> New Demodulator: 3650 (3649) EQUAL(f(f(e,f(e,e)),b),b). ** KEPT: 3651 (1444,1503) EQUAL(f(f(f(e,e),e),f(e,b)),b). ---> New Demodulator: 3652 (3651) EQUAL(f(f(f(e,e),e),f(e,b)),b). ** KEPT: 3653 (239,1503) EQUAL(f(f(f(f(e,e),e),e),b),b). ---> New Demodulator: 3654 (3653) EQUAL(f(f(f(f(e,e),e),e),b),b). >>>> Starting back demodulation with: 3638 (3637) EQUAL(f(f(f(f(x,g(x)),e),e),b),b). >>>> Starting back demodulation with: 3640 (3639) EQUAL(f(f(f(f(g(x),x),e),e),b),b). >>>> Starting back demodulation with: 3642 (3641) EQUAL(f(f(f(e,f(x,g(x))),e),b),b). >>>> Starting back demodulation with: 3644 (3643) EQUAL(f(f(f(e,f(g(x),x)),e),b),b). >>>> Starting back demodulation with: 3646 (3645) EQUAL(f(f(f(e,e),f(x,g(x))),b),b). >>>> Starting back demodulation with: 3648 (3647) EQUAL(f(f(f(e,e),f(g(x),x)),b),b). >>>> Starting back demodulation with: 3650 (3649) EQUAL(f(f(e,f(e,e)),b),b). >>>> Starting back demodulation with: 3652 (3651) EQUAL(f(f(f(e,e),e),f(e,b)),b). >>>> Starting back demodulation with: 3654 (3653) EQUAL(f(f(f(f(e,e),e),e),b),b). ** KEPT: 3655 (1503,260) EQUAL(f(g(f(f(e,e),e)),b),b). ---> New Demodulator: 3656 (3655) EQUAL(f(g(f(f(e,e),e)),b),b). ** KEPT: 3657 (1503,5) EQUAL(f(f(x,f(f(e,e),e)),b),f(x,b)). ** KEPT: 3658 (1503,5) EQUAL(f(f(f(e,e),e),f(b,x)),f(b,x)). >>>> Starting back demodulation with: 3656 (3655) EQUAL(f(g(f(f(e,e),e)),b),b). new given clause: 1529 (1473,260) EQUAL(f(g(f(g(b),e)),e),b). ** KEPT: 3659 (4,1529) EQUAL(f(g(f(g(b),f(x,g(x)))),e),b). ---> New Demodulator: 3660 (3659) EQUAL(f(g(f(g(b),f(x,g(x)))),e),b). ** KEPT: 3661 (3,1529) EQUAL(f(g(f(g(b),f(g(x),x))),e),b). ---> New Demodulator: 3662 (3661) EQUAL(f(g(f(g(b),f(g(x),x))),e),b). ** KEPT: 3663 (4,1529) EQUAL(f(g(f(g(b),e)),f(x,g(x))),b). ---> New Demodulator: 3664 (3663) EQUAL(f(g(f(g(b),e)),f(x,g(x))),b). ** KEPT: 3665 (3,1529) EQUAL(f(g(f(g(b),e)),f(g(x),x)),b). ---> New Demodulator: 3666 (3665) EQUAL(f(g(f(g(b),e)),f(g(x),x)),b). ** KEPT: 3667 (2,1529) EQUAL(g(f(g(b),e)),b). ---> New Demodulator: 3668 (3667) EQUAL(g(f(g(b),e)),b). >>>> Starting back demodulation with: 3660 (3659) EQUAL(f(g(f(g(b),f(x,g(x)))),e),b). >>>> Starting back demodulation with: 3662 (3661) EQUAL(f(g(f(g(b),f(g(x),x))),e),b). >>>> Starting back demodulation with: 3664 (3663) EQUAL(f(g(f(g(b),e)),f(x,g(x))),b). >>>> Starting back demodulation with: 3666 (3665) EQUAL(f(g(f(g(b),e)),f(g(x),x)),b). >>>> Starting back demodulation with: 3668 (3667) EQUAL(g(f(g(b),e)),b). >> back demodulating: 1529 (1473,260) EQUAL(f(g(f(g(b),e)),e),b). >> back demodulating: 1530 (1529) EQUAL(f(g(f(g(b),e)),e),b). >> back demodulating: 3299 (3239,113) EQUAL(f(h,g(f(g(b),e))),d). >> back demodulating: 3300 (3299) EQUAL(f(h,g(f(g(b),e))),d). >> back demodulating: 3663 (4,1529) EQUAL(f(g(f(g(b),e)),f(x,g(x))),b). >> back demodulating: 3664 (3663) EQUAL(f(g(f(g(b),e)),f(x,g(x))),b). >> back demodulating: 3665 (3,1529) EQUAL(f(g(f(g(b),e)),f(g(x),x)),b). >> back demodulating: 3666 (3665) EQUAL(f(g(f(g(b),e)),f(g(x),x)),b). ** KEPT: 3669 (1529,3560,3668) EQUAL(f(g(f(e,b)),f(b,e)),e). ---> New Demodulator: 3670 (3669) EQUAL(f(g(f(e,b)),f(b,e)),e). ** KEPT: 3671 (1529,2290,3668) EQUAL(f(f(b,e),f(g(d),h)),e). ---> New Demodulator: 3672 (3671) EQUAL(f(f(b,e),f(g(d),h)),e). ** KEPT: 3673 (1529,1503,3668) EQUAL(f(f(f(e,e),e),f(b,e)),b). ---> New Demodulator: 3674 (3673) EQUAL(f(f(f(e,e),e),f(b,e)),b). ** KEPT: 3675 (1529,1466,3668) EQUAL(f(f(f(e,a),e),f(b,e)),c). ---> New Demodulator: 3676 (3675) EQUAL(f(f(f(e,a),e),f(b,e)),c). ** KEPT: 3677 (1529,1444,3668) EQUAL(f(x,f(b,e)),f(x,f(e,b))). ** KEPT: 3678 (1529,1434,3668) EQUAL(f(f(e,f(e,a)),f(b,e)),c). ---> New Demodulator: 3679 (3678) EQUAL(f(f(e,f(e,a)),f(b,e)),c). ** KEPT: 3680 (1529,1155,3668) EQUAL(f(g(f(g(h),k)),f(b,e)),h). ---> New Demodulator: 3681 (3680) EQUAL(f(g(f(g(h),k)),f(b,e)),h). ** KEPT: 3682 (1529,1052,3668) EQUAL(f(d,f(b,e)),f(f(e,k),d)). ** KEPT: 3683 (1529,2296,3668) EQUAL(f(f(f(b,e),g(d)),h),e). ---> New Demodulator: 3684 (3683) EQUAL(f(f(f(b,e),g(d)),h),e). ** KEPT: 3685 (1529,907,3668) EQUAL(f(h,f(f(b,e),f(e,e))),d). ---> New Demodulator: 3686 (3685) EQUAL(f(h,f(f(b,e),f(e,e))),d). ** KEPT: 3687 (1529,3616,3668) EQUAL(f(e,f(f(b,e),e)),b). ---> New Demodulator: 3688 (3687) EQUAL(f(e,f(f(b,e),e)),b). ** KEPT: 3689 (1529,1263,3668) EQUAL(f(d,f(f(b,e),e)),f(k,d)). ** KEPT: 3690 (1529,3239,3668) EQUAL(f(d,f(g(f(b,e)),e)),h). ---> New Demodulator: 3691 (3690) EQUAL(f(d,f(g(f(b,e)),e)),h). ** KEPT: 3692 (1529,949,3668) EQUAL(f(h,g(f(e,g(f(b,e))))),d). ---> New Demodulator: 3693 (3692) EQUAL(f(h,g(f(e,g(f(b,e))))),d). >>>> Starting back demodulation with: 3670 (3669) EQUAL(f(g(f(e,b)),f(b,e)),e). >>>> Starting back demodulation with: 3672 (3671) EQUAL(f(f(b,e),f(g(d),h)),e). >>>> Starting back demodulation with: 3674 (3673) EQUAL(f(f(f(e,e),e),f(b,e)),b). >>>> Starting back demodulation with: 3676 (3675) EQUAL(f(f(f(e,a),e),f(b,e)),c). 3677 back subsumes: 3399 (869,1263) EQUAL(f(d,f(b,e)),f(d,f(e,b))). >>>> Starting back demodulation with: 3679 (3678) EQUAL(f(f(e,f(e,a)),f(b,e)),c). >>>> Starting back demodulation with: 3681 (3680) EQUAL(f(g(f(g(h),k)),f(b,e)),h). >>>> Starting back demodulation with: 3684 (3683) EQUAL(f(f(f(b,e),g(d)),h),e). >>>> Starting back demodulation with: 3686 (3685) EQUAL(f(h,f(f(b,e),f(e,e))),d). >>>> Starting back demodulation with: 3688 (3687) EQUAL(f(e,f(f(b,e),e)),b). >>>> Starting back demodulation with: 3691 (3690) EQUAL(f(d,f(g(f(b,e)),e)),h). >>>> Starting back demodulation with: 3693 (3692) EQUAL(f(h,g(f(e,g(f(b,e))))),d). new given clause: 3667 (2,1529) EQUAL(g(f(g(b),e)),b). ** KEPT: 3694 (4,3667) EQUAL(g(f(g(b),f(x,g(x)))),b). ---> New Demodulator: 3695 (3694) EQUAL(g(f(g(b),f(x,g(x)))),b). ** KEPT: 3696 (3,3667) EQUAL(g(f(g(b),f(g(x),x))),b). ---> New Demodulator: 3697 (3696) EQUAL(g(f(g(b),f(g(x),x))),b). >>>> Starting back demodulation with: 3695 (3694) EQUAL(g(f(g(b),f(x,g(x)))),b). >> back demodulating: 3659 (4,1529) EQUAL(f(g(f(g(b),f(x,g(x)))),e),b). >> back demodulating: 3660 (3659) EQUAL(f(g(f(g(b),f(x,g(x)))),e),b). >>>> Starting back demodulation with: 3697 (3696) EQUAL(g(f(g(b),f(g(x),x))),b). >> back demodulating: 3661 (3,1529) EQUAL(f(g(f(g(b),f(g(x),x))),e),b). >> back demodulating: 3662 (3661) EQUAL(f(g(f(g(b),f(g(x),x))),e),b). ** KEPT: 3698 (3667,3118) EQUAL(f(f(h,f(g(b),e)),b),h). ---> New Demodulator: 3699 (3698) EQUAL(f(f(h,f(g(b),e)),b),h). ** KEPT: 3700 (3667,2126) EQUAL(f(b,f(f(g(b),e),a)),a). ---> New Demodulator: 3701 (3700) EQUAL(f(b,f(f(g(b),e),a)),a). ** KEPT: 3702 (3667,2120) EQUAL(f(f(g(b),e),f(b,a)),a). ---> New Demodulator: 3703 (3702) EQUAL(f(f(g(b),e),f(b,a)),a). ** KEPT: 3704 (3667,1719) EQUAL(f(f(b,f(g(b),e)),b),b). ---> New Demodulator: 3705 (3704) EQUAL(f(f(b,f(g(b),e)),b),b). ** KEPT: 3706 (3667,1197) EQUAL(f(f(g(b),e),f(b,d)),d). ---> New Demodulator: 3707 (3706) EQUAL(f(f(g(b),e),f(b,d)),d). ** KEPT: 3708 (3667,1175) EQUAL(f(b,f(f(g(b),e),d)),d). ---> New Demodulator: 3709 (3708) EQUAL(f(b,f(f(g(b),e),d)),d). ** KEPT: 3710 (3667,1133) EQUAL(f(f(g(b),e),f(b,h)),h). ---> New Demodulator: 3711 (3710) EQUAL(f(f(g(b),e),f(b,h)),h). ** KEPT: 3712 (3667,1725) EQUAL(f(f(b,b),f(g(b),e)),b). ---> New Demodulator: 3713 (3712) EQUAL(f(f(b,b),f(g(b),e)),b). ** KEPT: 3714 (3667,526) EQUAL(f(f(a,f(g(b),e)),b),a). ---> New Demodulator: 3715 (3714) EQUAL(f(f(a,f(g(b),e)),b),a). ** KEPT: 3716 (3667,520) EQUAL(f(f(a,b),f(g(b),e)),a). ---> New Demodulator: 3717 (3716) EQUAL(f(f(a,b),f(g(b),e)),a). ** KEPT: 3718 (3667,266) EQUAL(f(f(g(b),e),f(b,b)),b). ---> New Demodulator: 3719 (3718) EQUAL(f(f(g(b),e),f(b,b)),b). ** KEPT: 3720 (3667,105) EQUAL(f(f(d,b),f(g(b),e)),d). ---> New Demodulator: 3721 (3720) EQUAL(f(f(d,b),f(g(b),e)),d). ** KEPT: 3722 (3667,2011) EQUAL(f(f(b,f(g(b),e)),a),a). ---> New Demodulator: 3723 (3722) EQUAL(f(f(b,f(g(b),e)),a),a). ** KEPT: 3724 (3667,1579) EQUAL(f(b,f(b,f(g(b),e))),b). ---> New Demodulator: 3725 (3724) EQUAL(f(b,f(b,f(g(b),e))),b). ** KEPT: 3726 (3667,1127) EQUAL(f(f(b,f(g(b),e)),d),d). ---> New Demodulator: 3727 (3726) EQUAL(f(f(b,f(g(b),e)),d),d). ** KEPT: 3728 (3667,1065) EQUAL(f(f(b,f(g(b),e)),h),h). ---> New Demodulator: 3729 (3728) EQUAL(f(f(b,f(g(b),e)),h),h). ** KEPT: 3730 (3667,477) EQUAL(f(a,f(b,f(g(b),e))),a). ---> New Demodulator: 3731 (3730) EQUAL(f(a,f(b,f(g(b),e))),a). ** KEPT: 3732 (3667,1217) EQUAL(f(g(f(b,f(g(b),e))),d),d). ---> New Demodulator: 3733 (3732) EQUAL(f(g(f(b,f(g(b),e))),d),d). ** KEPT: 3734 (3667,1151) EQUAL(f(g(f(b,f(g(b),e))),h),h). ---> New Demodulator: 3735 (3734) EQUAL(f(g(f(b,f(g(b),e))),h),h). ** KEPT: 3736 (3667,564) EQUAL(f(a,g(f(b,f(g(b),e)))),a). ---> New Demodulator: 3737 (3736) EQUAL(f(a,g(f(b,f(g(b),e)))),a). ** KEPT: 3738 (3667,282) EQUAL(f(g(f(b,f(g(b),e))),b),b). ---> New Demodulator: 3739 (3738) EQUAL(f(g(f(b,f(g(b),e))),b),b). ** KEPT: 3740 (3667,137) EQUAL(f(d,g(f(b,f(g(b),e)))),d). ---> New Demodulator: 3741 (3740) EQUAL(f(d,g(f(b,f(g(b),e)))),d). ** KEPT: 3742 (3667,82) EQUAL(f(d,f(b,f(g(b),e))),d). ---> New Demodulator: 3743 (3742) EQUAL(f(d,f(b,f(g(b),e))),d). ** KEPT: 3744 (3667,37) -EQUAL(f(b,f(g(b),e)),f(k,g(b))). ** KEPT: 3745 (3667,3) EQUAL(f(b,f(g(b),e)),e). ---> New Demodulator: 3746 (3745) EQUAL(f(b,f(g(b),e)),e). >>>> Starting back demodulation with: 3699 (3698) EQUAL(f(f(h,f(g(b),e)),b),h). >>>> Starting back demodulation with: 3701 (3700) EQUAL(f(b,f(f(g(b),e),a)),a). >>>> Starting back demodulation with: 3703 (3702) EQUAL(f(f(g(b),e),f(b,a)),a). >>>> Starting back demodulation with: 3705 (3704) EQUAL(f(f(b,f(g(b),e)),b),b). >>>> Starting back demodulation with: 3707 (3706) EQUAL(f(f(g(b),e),f(b,d)),d). >>>> Starting back demodulation with: 3709 (3708) EQUAL(f(b,f(f(g(b),e),d)),d). >>>> Starting back demodulation with: 3711 (3710) EQUAL(f(f(g(b),e),f(b,h)),h). >>>> Starting back demodulation with: 3713 (3712) EQUAL(f(f(b,b),f(g(b),e)),b). >>>> Starting back demodulation with: 3715 (3714) EQUAL(f(f(a,f(g(b),e)),b),a). >>>> Starting back demodulation with: 3717 (3716) EQUAL(f(f(a,b),f(g(b),e)),a). >>>> Starting back demodulation with: 3719 (3718) EQUAL(f(f(g(b),e),f(b,b)),b). >>>> Starting back demodulation with: 3721 (3720) EQUAL(f(f(d,b),f(g(b),e)),d). >>>> Starting back demodulation with: 3723 (3722) EQUAL(f(f(b,f(g(b),e)),a),a). >>>> Starting back demodulation with: 3725 (3724) EQUAL(f(b,f(b,f(g(b),e))),b). >>>> Starting back demodulation with: 3727 (3726) EQUAL(f(f(b,f(g(b),e)),d),d). >>>> Starting back demodulation with: 3729 (3728) EQUAL(f(f(b,f(g(b),e)),h),h). >>>> Starting back demodulation with: 3731 (3730) EQUAL(f(a,f(b,f(g(b),e))),a). >>>> Starting back demodulation with: 3733 (3732) EQUAL(f(g(f(b,f(g(b),e))),d),d). >>>> Starting back demodulation with: 3735 (3734) EQUAL(f(g(f(b,f(g(b),e))),h),h). >>>> Starting back demodulation with: 3737 (3736) EQUAL(f(a,g(f(b,f(g(b),e)))),a). >>>> Starting back demodulation with: 3739 (3738) EQUAL(f(g(f(b,f(g(b),e))),b),b). >>>> Starting back demodulation with: 3741 (3740) EQUAL(f(d,g(f(b,f(g(b),e)))),d). >>>> Starting back demodulation with: 3743 (3742) EQUAL(f(d,f(b,f(g(b),e))),d). >>>> Starting back demodulation with: 3746 (3745) EQUAL(f(b,f(g(b),e)),e). >> back demodulating: 3297 (73,3239) EQUAL(f(h,f(b,f(g(b),e))),h). >> back demodulating: 3298 (3297) EQUAL(f(h,f(b,f(g(b),e))),h). >> back demodulating: 3704 (3667,1719) EQUAL(f(f(b,f(g(b),e)),b),b). >> back demodulating: 3705 (3704) EQUAL(f(f(b,f(g(b),e)),b),b). >> back demodulating: 3722 (3667,2011) EQUAL(f(f(b,f(g(b),e)),a),a). >> back demodulating: 3723 (3722) EQUAL(f(f(b,f(g(b),e)),a),a). >> back demodulating: 3724 (3667,1579) EQUAL(f(b,f(b,f(g(b),e))),b). >> back demodulating: 3725 (3724) EQUAL(f(b,f(b,f(g(b),e))),b). >> back demodulating: 3726 (3667,1127) EQUAL(f(f(b,f(g(b),e)),d),d). >> back demodulating: 3727 (3726) EQUAL(f(f(b,f(g(b),e)),d),d). >> back demodulating: 3728 (3667,1065) EQUAL(f(f(b,f(g(b),e)),h),h). >> back demodulating: 3729 (3728) EQUAL(f(f(b,f(g(b),e)),h),h). >> back demodulating: 3730 (3667,477) EQUAL(f(a,f(b,f(g(b),e))),a). >> back demodulating: 3731 (3730) EQUAL(f(a,f(b,f(g(b),e))),a). >> back demodulating: 3732 (3667,1217) EQUAL(f(g(f(b,f(g(b),e))),d),d). >> back demodulating: 3733 (3732) EQUAL(f(g(f(b,f(g(b),e))),d),d). >> back demodulating: 3734 (3667,1151) EQUAL(f(g(f(b,f(g(b),e))),h),h). >> back demodulating: 3735 (3734) EQUAL(f(g(f(b,f(g(b),e))),h),h). >> back demodulating: 3736 (3667,564) EQUAL(f(a,g(f(b,f(g(b),e)))),a). >> back demodulating: 3737 (3736) EQUAL(f(a,g(f(b,f(g(b),e)))),a). >> back demodulating: 3738 (3667,282) EQUAL(f(g(f(b,f(g(b),e))),b),b). >> back demodulating: 3739 (3738) EQUAL(f(g(f(b,f(g(b),e))),b),b). >> back demodulating: 3740 (3667,137) EQUAL(f(d,g(f(b,f(g(b),e)))),d). >> back demodulating: 3741 (3740) EQUAL(f(d,g(f(b,f(g(b),e)))),d). >> back demodulating: 3742 (3667,82) EQUAL(f(d,f(b,f(g(b),e))),d). >> back demodulating: 3743 (3742) EQUAL(f(d,f(b,f(g(b),e))),d). >> back demodulating: 3744 (3667,37) -EQUAL(f(b,f(g(b),e)),f(k,g(b))). new given clause: 3745 (3667,3) EQUAL(f(b,f(g(b),e)),e). ** KEPT: 3747 (4,3745) EQUAL(f(b,f(g(b),f(x,g(x)))),e). ---> New Demodulator: 3748 (3747) EQUAL(f(b,f(g(b),f(x,g(x)))),e). ** KEPT: 3749 (3,3745) EQUAL(f(b,f(g(b),f(g(x),x))),e). ---> New Demodulator: 3750 (3749) EQUAL(f(b,f(g(b),f(g(x),x))),e). ** KEPT: 3751 (5,3745) EQUAL(f(f(b,g(b)),e),e). ---> New Demodulator: 3752 (3751) EQUAL(f(f(b,g(b)),e),e). >>>> Starting back demodulation with: 3748 (3747) EQUAL(f(b,f(g(b),f(x,g(x)))),e). >>>> Starting back demodulation with: 3750 (3749) EQUAL(f(b,f(g(b),f(g(x),x))),e). >>>> Starting back demodulation with: 3752 (3751) EQUAL(f(f(b,g(b)),e),e). ** KEPT: 3753 (3745,5) EQUAL(f(f(x,b),f(g(b),e)),f(x,e)). ** KEPT: 3754 (3745,5) EQUAL(f(b,f(f(g(b),e),x)),f(e,x)). new given clause: 3751 (5,3745) EQUAL(f(f(b,g(b)),e),e). ** KEPT: 3755 (4,3751) EQUAL(f(f(b,g(b)),f(x,g(x))),e). ---> New Demodulator: 3756 (3755) EQUAL(f(f(b,g(b)),f(x,g(x))),e). ** KEPT: 3757 (3,3751) EQUAL(f(f(b,g(b)),f(g(x),x)),e). ---> New Demodulator: 3758 (3757) EQUAL(f(f(b,g(b)),f(g(x),x)),e). >>>> Starting back demodulation with: 3756 (3755) EQUAL(f(f(b,g(b)),f(x,g(x))),e). >>>> Starting back demodulation with: 3758 (3757) EQUAL(f(f(b,g(b)),f(g(x),x)),e). ** KEPT: 3759 (3751,5) EQUAL(f(f(x,f(b,g(b))),e),f(x,e)). ** KEPT: 3760 (3751,5) EQUAL(f(f(b,g(b)),f(e,x)),f(e,x)). new given clause: 1581 (284,5,1576) EQUAL(f(b,f(e,x)),f(b,x)). ** KEPT: 3761 (3616,1581) EQUAL(f(b,f(b,e)),f(b,b)). ** KEPT: 3762 (2489,1581) EQUAL(f(b,f(c,g(a))),f(b,d)). ** KEPT: 3763 (2389,1581) EQUAL(f(b,f(d,e)),f(b,d)). ** KEPT: 3764 (1095,1581) EQUAL(f(b,f(h,e)),f(b,h)). ** KEPT: 3765 (1063,1581) EQUAL(f(b,f(d,g(b))),f(b,h)). ** KEPT: 3766 (5,1581) EQUAL(f(b,f(f(e,x),y)),f(b,f(x,y))). ** KEPT: 3767 (1581,1581) EQUAL(f(b,f(e,f(e,x))),f(b,x)). ** KEPT: 3768 (5,1581) EQUAL(f(f(b,e),x),f(b,x)). ** KEPT: 3769 (3745,1581) EQUAL(f(b,f(e,f(g(b),e))),e). ---> New Demodulator: 3770 (3769) EQUAL(f(b,f(e,f(g(b),e))),e). ** KEPT: 3771 (1071,1581) EQUAL(f(b,f(e,h)),f(f(b,e),h)). ** KEPT: 3772 (2290,1581) EQUAL(f(b,f(e,f(g(d),h))),e). ---> New Demodulator: 3773 (3772) EQUAL(f(b,f(e,f(g(d),h))),e). ** KEPT: 3774 (574,1581) EQUAL(f(b,f(e,g(f(g(a),b)))),a). ---> New Demodulator: 3775 (3774) EQUAL(f(b,f(e,g(f(g(a),b)))),a). ** KEPT: 3776 (2120,1581) EQUAL(f(b,f(e,f(g(b),a))),a). ---> New Demodulator: 3777 (3776) EQUAL(f(b,f(e,f(g(b),a))),a). ** KEPT: 3778 (306,1581) EQUAL(f(b,f(e,g(f(g(d),b)))),d). ---> New Demodulator: 3779 (3778) EQUAL(f(b,f(e,g(f(g(d),b)))),d). ** KEPT: 3780 (1715,1581) EQUAL(f(b,f(e,f(g(c),a))),e). ---> New Demodulator: 3781 (3780) EQUAL(f(b,f(e,f(g(c),a))),e). ** KEPT: 3782 (1579,1581) EQUAL(f(b,f(e,f(g(x),x))),b). ---> New Demodulator: 3783 (3782) EQUAL(f(b,f(e,f(g(x),x))),b). ** KEPT: 3784 (1577,1581) EQUAL(f(b,f(e,f(x,g(x)))),b). ---> New Demodulator: 3785 (3784) EQUAL(f(b,f(e,f(x,g(x)))),b). ** KEPT: 3786 (239,1581) EQUAL(f(b,f(e,b)),f(f(b,e),b)). ** KEPT: 3787 (1197,1581) EQUAL(f(b,f(e,f(g(b),d))),d). ---> New Demodulator: 3788 (3787) EQUAL(f(b,f(e,f(g(b),d))),d). ** KEPT: 3789 (1133,1581) EQUAL(f(b,f(e,f(g(b),h))),h). ---> New Demodulator: 3790 (3789) EQUAL(f(b,f(e,f(g(b),h))),h). ** KEPT: 3791 (131,1581) EQUAL(f(b,f(e,d)),f(f(b,k),h)). ** KEPT: 3792 (72,1581) EQUAL(f(b,f(e,d)),f(f(b,h),b)). ** KEPT: 3793 (15,1581) EQUAL(f(b,f(e,c)),f(f(b,a),b)). ** KEPT: 3794 (5,1581) EQUAL(f(b,f(e,f(x,y))),f(f(b,x),y)). ** KEPT: 3795 (4,1581) EQUAL(f(b,f(e,g(b))),e). ---> New Demodulator: 3796 (3795) EQUAL(f(b,f(e,g(b))),e). ** KEPT: 3797 (2,1581) EQUAL(f(b,f(e,e)),b). ---> New Demodulator: 3798 (3797) EQUAL(f(b,f(e,e)),b). >>>> Starting back demodulation with: 3770 (3769) EQUAL(f(b,f(e,f(g(b),e))),e). >>>> Starting back demodulation with: 3773 (3772) EQUAL(f(b,f(e,f(g(d),h))),e). >>>> Starting back demodulation with: 3775 (3774) EQUAL(f(b,f(e,g(f(g(a),b)))),a). >>>> Starting back demodulation with: 3777 (3776) EQUAL(f(b,f(e,f(g(b),a))),a). >>>> Starting back demodulation with: 3779 (3778) EQUAL(f(b,f(e,g(f(g(d),b)))),d). >>>> Starting back demodulation with: 3781 (3780) EQUAL(f(b,f(e,f(g(c),a))),e). >>>> Starting back demodulation with: 3783 (3782) EQUAL(f(b,f(e,f(g(x),x))),b). >> back demodulating: 1888 (3,467) EQUAL(f(a,f(b,f(e,f(g(x),x)))),c). >> back demodulating: 1889 (1888) EQUAL(f(a,f(b,f(e,f(g(x),x)))),c). >> back demodulating: 2457 (3,907) EQUAL(f(h,f(b,f(e,f(g(x),x)))),d). >> back demodulating: 2458 (2457) EQUAL(f(h,f(b,f(e,f(g(x),x)))),d). >>>> Starting back demodulation with: 3785 (3784) EQUAL(f(b,f(e,f(x,g(x)))),b). >> back demodulating: 1886 (4,467) EQUAL(f(a,f(b,f(e,f(x,g(x))))),c). >> back demodulating: 1887 (1886) EQUAL(f(a,f(b,f(e,f(x,g(x))))),c). >> back demodulating: 2455 (4,907) EQUAL(f(h,f(b,f(e,f(x,g(x))))),d). >> back demodulating: 2456 (2455) EQUAL(f(h,f(b,f(e,f(x,g(x))))),d). >>>> Starting back demodulation with: 3788 (3787) EQUAL(f(b,f(e,f(g(b),d))),d). >>>> Starting back demodulation with: 3790 (3789) EQUAL(f(b,f(e,f(g(b),h))),h). >>>> Starting back demodulation with: 3796 (3795) EQUAL(f(b,f(e,g(b))),e). >> back demodulating: 656 (16,620) EQUAL(f(a,f(b,f(e,g(b)))),a). >> back demodulating: 657 (656) EQUAL(f(a,f(b,f(e,g(b)))),a). >> back demodulating: 945 (73,880) EQUAL(f(h,f(b,f(e,g(b)))),h). >> back demodulating: 946 (945) EQUAL(f(h,f(b,f(e,g(b)))),h). >>>> Starting back demodulation with: 3798 (3797) EQUAL(f(b,f(e,e)),b). >> back demodulating: 467 (16,453) EQUAL(f(a,f(b,f(e,e))),c). >> back demodulating: 468 (467) EQUAL(f(a,f(b,f(e,e))),c). >> back demodulating: 907 (73,885) EQUAL(f(h,f(b,f(e,e))),d). >> back demodulating: 908 (907) EQUAL(f(h,f(b,f(e,e))),d). >> back demodulating: 1890 (467,526) EQUAL(f(c,g(f(b,f(e,e)))),a). >> back demodulating: 1891 (1890) EQUAL(f(c,g(f(b,f(e,e)))),a). >> back demodulating: 3147 (907,3118) EQUAL(f(d,g(f(b,f(e,e)))),h). >> back demodulating: 3148 (3147) EQUAL(f(d,g(f(b,f(e,e)))),h). >> back demodulating: 1892 (467,5) EQUAL(f(f(x,a),f(b,f(e,e))),f(x,c)). >> back demodulating: 1893 (467,5) EQUAL(f(a,f(f(b,f(e,e)),x)),f(c,x)). >> back demodulating: 2461 (907,5) EQUAL(f(h,f(f(b,f(e,e)),x)),f(d,x)). >> back demodulating: 1901 (467,483) EQUAL(f(a,f(e,f(b,f(e,e)))),c). >> back demodulating: 1902 (1901) EQUAL(f(a,f(e,f(b,f(e,e)))),c). >> back demodulating: 2048 (566,467,2008) EQUAL(f(f(e,a),f(b,f(e,e))),c). >> back demodulating: 2049 (2048) EQUAL(f(f(e,a),f(b,f(e,e))),c). >> back demodulating: 2449 (9,907) EQUAL(f(f(d,g(b)),f(b,f(e,e))),d). >> back demodulating: 2450 (2449) EQUAL(f(f(d,g(b)),f(b,f(e,e))),d). >> back demodulating: 2459 (907,132) EQUAL(f(d,f(b,f(e,e))),f(k,d)). >> back demodulating: 2460 (907,5) EQUAL(f(f(x,h),f(b,f(e,e))),f(x,d)). >> back demodulating: 3028 (1153,907,2984) EQUAL(f(f(h,e),f(b,f(e,e))),d). >> back demodulating: 3029 (3028) EQUAL(f(f(h,e),f(b,f(e,e))),d). ** KEPT: 3799 (1581,1719) EQUAL(f(f(b,x),g(f(e,x))),b). ---> New Demodulator: 3800 (3799) EQUAL(f(f(b,x),g(f(e,x))),b). ** KEPT: 3801 (1581,16) EQUAL(f(c,f(e,x)),f(a,f(b,x))). ** KEPT: 3802 (1581,5) EQUAL(f(f(x,b),f(e,y)),f(x,f(b,y))). ** KEPT: 3803 (1581,5) EQUAL(f(b,f(f(e,x),y)),f(f(b,x),y)). ** KEPT: 3804 (1581,1725) EQUAL(f(f(b,f(e,g(x))),x),b). ---> New Demodulator: 3805 (3804) EQUAL(f(f(b,f(e,g(x))),x),b). ** KEPT: 3806 (1581,2296) EQUAL(f(f(b,f(e,g(d))),h),e). ---> New Demodulator: 3807 (3806) EQUAL(f(f(b,f(e,g(d))),h),e). ** KEPT: 3808 (1581,1125) EQUAL(f(g(b),f(b,f(e,h))),h). ---> New Demodulator: 3809 (3808) EQUAL(f(g(b),f(b,f(e,h))),h). ** KEPT: 3810 (1581,2007) EQUAL(g(f(b,f(e,g(c)))),a). ---> New Demodulator: 3811 (3810) EQUAL(g(f(b,f(e,g(c)))),a). ** KEPT: 3812 (1581,1733) EQUAL(f(f(b,f(e,g(c))),a),e). ---> New Demodulator: 3813 (3812) EQUAL(f(f(b,f(e,g(c))),a),e). ** KEPT: 3814 (1581,1719) EQUAL(f(f(b,f(e,x)),g(x)),b). ---> New Demodulator: 3815 (3814) EQUAL(f(f(b,f(e,x)),g(x)),b). ** KEPT: 3816 (1581,16) EQUAL(f(a,f(b,f(e,x))),f(c,x)). ** KEPT: 3817 (1581,2126) EQUAL(f(g(b),f(b,f(e,a))),a). ---> New Demodulator: 3818 (3817) EQUAL(f(g(b),f(b,f(e,a))),a). ** KEPT: 3819 (1581,580) EQUAL(f(d,g(f(b,f(e,g(a))))),a). ---> New Demodulator: 3820 (3819) EQUAL(f(d,g(f(b,f(e,g(a))))),a). ** KEPT: 3821 (1581,5) EQUAL(f(x,f(b,f(e,y))),f(f(x,b),y)). ** KEPT: 3822 (1581,5) EQUAL(f(f(b,f(e,x)),y),f(b,f(x,y))). >>>> Starting back demodulation with: 3800 (3799) EQUAL(f(f(b,x),g(f(e,x))),b). >> back demodulating: 3593 (3592) EQUAL(f(f(b,b),g(f(e,b))),b). >> back demodulating: 3592 (1444,1719) EQUAL(f(f(b,b),g(f(e,b))),b). >> back demodulating: 3507 (3506) EQUAL(f(f(b,c),g(f(e,c))),b). >> back demodulating: 3506 (1356,1719) EQUAL(f(f(b,c),g(f(e,c))),b). 3801 back subsumes: 3588 (16,1444) EQUAL(f(c,f(e,b)),f(a,f(b,b))). 3801 back subsumes: 3496 (16,1356) EQUAL(f(c,f(e,c)),f(a,f(b,c))). >>>> Starting back demodulation with: 3805 (3804) EQUAL(f(f(b,f(e,g(x))),x),b). >> back demodulating: 2595 (2594) EQUAL(f(f(b,f(e,g(d))),d),b). >> back demodulating: 2594 (2487,1719) EQUAL(f(f(b,f(e,g(d))),d),b). >>>> Starting back demodulation with: 3807 (3806) EQUAL(f(f(b,f(e,g(d))),h),e). >>>> Starting back demodulation with: 3809 (3808) EQUAL(f(g(b),f(b,f(e,h))),h). >>>> Starting back demodulation with: 3811 (3810) EQUAL(g(f(b,f(e,g(c)))),a). >>>> Starting back demodulation with: 3813 (3812) EQUAL(f(f(b,f(e,g(c))),a),e). >>>> Starting back demodulation with: 3815 (3814) EQUAL(f(f(b,f(e,x)),g(x)),b). >> back demodulating: 3600 (3599) EQUAL(f(f(b,f(e,b)),g(b)),b). >> back demodulating: 3599 (1444,1719) EQUAL(f(f(b,f(e,b)),g(b)),b). >> back demodulating: 3512 (3511) EQUAL(f(f(b,f(e,c)),g(c)),b). >> back demodulating: 3511 (1356,1719) EQUAL(f(f(b,f(e,c)),g(c)),b). 3816 back subsumes: 3558 (16,1444) EQUAL(f(a,f(b,f(e,b))),f(c,b)). 3816 back subsumes: 3477 (16,1356) EQUAL(f(a,f(b,f(e,c))),f(c,c)). >>>> Starting back demodulation with: 3818 (3817) EQUAL(f(g(b),f(b,f(e,a))),a). >>>> Starting back demodulation with: 3820 (3819) EQUAL(f(d,g(f(b,f(e,g(a))))),a). new given clause: 3797 (2,1581) EQUAL(f(b,f(e,e)),b). ** KEPT: 3823 (4,3797) EQUAL(f(b,f(f(x,g(x)),e)),b). ---> New Demodulator: 3824 (3823) EQUAL(f(b,f(f(x,g(x)),e)),b). ** KEPT: 3825 (3,3797) EQUAL(f(b,f(f(g(x),x),e)),b). ---> New Demodulator: 3826 (3825) EQUAL(f(b,f(f(g(x),x),e)),b). ** KEPT: 3827 (1581,3797) EQUAL(f(b,f(e,f(e,e))),b). ---> New Demodulator: 3828 (3827) EQUAL(f(b,f(e,f(e,e))),b). ** KEPT: 3829 (5,3797) EQUAL(f(f(b,e),e),b). ---> New Demodulator: 3830 (3829) EQUAL(f(f(b,e),e),b). >>>> Starting back demodulation with: 3824 (3823) EQUAL(f(b,f(f(x,g(x)),e)),b). >> back demodulating: 1882 (4,467) EQUAL(f(a,f(b,f(f(x,g(x)),e))),c). >> back demodulating: 1883 (1882) EQUAL(f(a,f(b,f(f(x,g(x)),e))),c). >> back demodulating: 2451 (4,907) EQUAL(f(h,f(b,f(f(x,g(x)),e))),d). >> back demodulating: 2452 (2451) EQUAL(f(h,f(b,f(f(x,g(x)),e))),d). >>>> Starting back demodulation with: 3826 (3825) EQUAL(f(b,f(f(g(x),x),e)),b). >> back demodulating: 1884 (3,467) EQUAL(f(a,f(b,f(f(g(x),x),e))),c). >> back demodulating: 1885 (1884) EQUAL(f(a,f(b,f(f(g(x),x),e))),c). >> back demodulating: 2453 (3,907) EQUAL(f(h,f(b,f(f(g(x),x),e))),d). >> back demodulating: 2454 (2453) EQUAL(f(h,f(b,f(f(g(x),x),e))),d). >>>> Starting back demodulation with: 3828 (3827) EQUAL(f(b,f(e,f(e,e))),b). >> back demodulating: 2443 (73,905) EQUAL(f(h,f(b,f(e,f(e,e)))),d). >> back demodulating: 2444 (2443) EQUAL(f(h,f(b,f(e,f(e,e)))),d). >>>> Starting back demodulation with: 3830 (3829) EQUAL(f(f(b,e),e),b). >> back demodulating: 1604 (284,764,1576) EQUAL(f(h,f(f(b,e),e)),d). >> back demodulating: 1605 (1604) EQUAL(f(h,f(f(b,e),e)),d). >> back demodulating: 1606 (284,568,1576) EQUAL(f(c,g(f(f(b,e),e))),a). >> back demodulating: 1607 (1606) EQUAL(f(c,g(f(f(b,e),e))),a). >> back demodulating: 2224 (713,1678,2209) EQUAL(f(d,g(f(f(b,e),e))),h). >> back demodulating: 2225 (2224) EQUAL(f(d,g(f(f(b,e),e))),h). >> back demodulating: 2226 (713,1677,2209) -EQUAL(f(k,g(f(f(b,e),e))),e). >> back demodulating: 1608 (284,375,1576) EQUAL(f(a,f(f(b,e),e)),c). >> back demodulating: 1609 (1608) EQUAL(f(a,f(f(b,e),e)),c). >> back demodulating: 3687 (1529,3616,3668) EQUAL(f(e,f(f(b,e),e)),b). >> back demodulating: 3688 (3687) EQUAL(f(e,f(f(b,e),e)),b). >> back demodulating: 3689 (1529,1263,3668) EQUAL(f(d,f(f(b,e),e)),f(k,d)). ** KEPT: 3831 (3797,1719) EQUAL(f(b,g(f(e,e))),b). ---> New Demodulator: 3832 (3831) EQUAL(f(b,g(f(e,e))),b). ** KEPT: 3833 (3797,5) EQUAL(f(f(x,b),f(e,e)),f(x,b)). ** KEPT: 3834 (3797,5) EQUAL(f(b,f(f(e,e),x)),f(b,x)). >>>> Starting back demodulation with: 3832 (3831) EQUAL(f(b,g(f(e,e))),b). >> back demodulating: 983 (73,911) EQUAL(f(h,f(b,g(f(e,e)))),d). >> back demodulating: 984 (983) EQUAL(f(h,f(b,g(f(e,e)))),d). new given clause: 3829 (5,3797) EQUAL(f(f(b,e),e),b). ** KEPT: 3835 (3829,5) EQUAL(f(f(x,f(b,e)),e),f(x,b)). ** KEPT: 3836 (3829,5) EQUAL(f(f(b,e),f(e,x)),f(b,x)). new given clause: 3795 (4,1581) EQUAL(f(b,f(e,g(b))),e). ** KEPT: 3837 (4,3795) EQUAL(f(b,f(f(x,g(x)),g(b))),e). ---> New Demodulator: 3838 (3837) EQUAL(f(b,f(f(x,g(x)),g(b))),e). ** KEPT: 3839 (3,3795) EQUAL(f(b,f(f(g(x),x),g(b))),e). ---> New Demodulator: 3840 (3839) EQUAL(f(b,f(f(g(x),x),g(b))),e). ** KEPT: 3841 (1581,3795) EQUAL(f(b,f(e,f(e,g(b)))),e). ---> New Demodulator: 3842 (3841) EQUAL(f(b,f(e,f(e,g(b)))),e). ** KEPT: 3843 (5,3795) EQUAL(f(f(b,e),g(b)),e). ---> New Demodulator: 3844 (3843) EQUAL(f(f(b,e),g(b)),e). >>>> Starting back demodulation with: 3838 (3837) EQUAL(f(b,f(f(x,g(x)),g(b))),e). >>>> Starting back demodulation with: 3840 (3839) EQUAL(f(b,f(f(g(x),x),g(b))),e). >>>> Starting back demodulation with: 3842 (3841) EQUAL(f(b,f(e,f(e,g(b)))),e). >>>> Starting back demodulation with: 3844 (3843) EQUAL(f(f(b,e),g(b)),e). >> back demodulating: 1602 (284,759,1576) EQUAL(f(h,f(f(b,e),g(b))),h). >> back demodulating: 1603 (1602) EQUAL(f(h,f(f(b,e),g(b))),h). ** KEPT: 3845 (3795,1719) EQUAL(f(e,g(f(e,g(b)))),b). ---> New Demodulator: 3846 (3845) EQUAL(f(e,g(f(e,g(b)))),b). ** KEPT: 3847 (3795,5) EQUAL(f(f(x,b),f(e,g(b))),f(x,e)). ** KEPT: 3848 (3795,5) EQUAL(f(b,f(f(e,g(b)),x)),f(e,x)). >>>> Starting back demodulation with: 3846 (3845) EQUAL(f(e,g(f(e,g(b)))),b). new given clause: 3831 (3797,1719) EQUAL(f(b,g(f(e,e))),b). ** KEPT: 3849 (4,3831) EQUAL(f(b,g(f(f(x,g(x)),e))),b). ---> New Demodulator: 3850 (3849) EQUAL(f(b,g(f(f(x,g(x)),e))),b). ** KEPT: 3851 (3,3831) EQUAL(f(b,g(f(f(g(x),x),e))),b). ---> New Demodulator: 3852 (3851) EQUAL(f(b,g(f(f(g(x),x),e))),b). ** KEPT: 3853 (4,3831) EQUAL(f(b,g(f(e,f(x,g(x))))),b). ---> New Demodulator: 3854 (3853) EQUAL(f(b,g(f(e,f(x,g(x))))),b). ** KEPT: 3855 (3,3831) EQUAL(f(b,g(f(e,f(g(x),x)))),b). ---> New Demodulator: 3856 (3855) EQUAL(f(b,g(f(e,f(g(x),x)))),b). ** KEPT: 3857 (1581,3831) EQUAL(f(b,f(e,g(f(e,e)))),b). ---> New Demodulator: 3858 (3857) EQUAL(f(b,f(e,g(f(e,e)))),b). >>>> Starting back demodulation with: 3850 (3849) EQUAL(f(b,g(f(f(x,g(x)),e))),b). >>>> Starting back demodulation with: 3852 (3851) EQUAL(f(b,g(f(f(g(x),x),e))),b). >>>> Starting back demodulation with: 3854 (3853) EQUAL(f(b,g(f(e,f(x,g(x))))),b). >>>> Starting back demodulation with: 3856 (3855) EQUAL(f(b,g(f(e,f(g(x),x)))),b). >>>> Starting back demodulation with: 3858 (3857) EQUAL(f(b,f(e,g(f(e,e)))),b). ** KEPT: 3859 (3831,16) EQUAL(f(c,g(f(e,e))),f(a,b)). ** KEPT: 3860 (3831,5) EQUAL(f(f(x,b),g(f(e,e))),f(x,b)). ** KEPT: 3861 (3831,5) EQUAL(f(b,f(g(f(e,e)),x)),f(b,x)). new given clause: 3843 (5,3795) EQUAL(f(f(b,e),g(b)),e). ** KEPT: 3862 (3843,5) EQUAL(f(f(x,f(b,e)),g(b)),f(x,e)). ** KEPT: 3863 (3843,5) EQUAL(f(f(b,e),f(g(b),x)),f(e,x)). new given clause: 1584 (284,1475,1576) EQUAL(f(f(e,e),f(b,e)),b). ** KEPT: 3864 (4,1584) EQUAL(f(f(f(x,g(x)),e),f(b,e)),b). ---> New Demodulator: 3865 (3864) EQUAL(f(f(f(x,g(x)),e),f(b,e)),b). ** KEPT: 3866 (3,1584) EQUAL(f(f(f(g(x),x),e),f(b,e)),b). ---> New Demodulator: 3867 (3866) EQUAL(f(f(f(g(x),x),e),f(b,e)),b). ** KEPT: 3868 (4,1584) EQUAL(f(f(e,f(x,g(x))),f(b,e)),b). ---> New Demodulator: 3869 (3868) EQUAL(f(f(e,f(x,g(x))),f(b,e)),b). ** KEPT: 3870 (3,1584) EQUAL(f(f(e,f(g(x),x)),f(b,e)),b). ---> New Demodulator: 3871 (3870) EQUAL(f(f(e,f(g(x),x)),f(b,e)),b). >>>> Starting back demodulation with: 3865 (3864) EQUAL(f(f(f(x,g(x)),e),f(b,e)),b). >>>> Starting back demodulation with: 3867 (3866) EQUAL(f(f(f(g(x),x),e),f(b,e)),b). >>>> Starting back demodulation with: 3869 (3868) EQUAL(f(f(e,f(x,g(x))),f(b,e)),b). >>>> Starting back demodulation with: 3871 (3870) EQUAL(f(f(e,f(g(x),x)),f(b,e)),b). ** KEPT: 3872 (1584,5) EQUAL(f(f(x,f(e,e)),f(b,e)),f(x,b)). ** KEPT: 3873 (1584,5) EQUAL(f(f(e,e),f(f(b,e),x)),f(b,x)). new given clause: 1588 (284,1470,1576) EQUAL(f(f(a,e),f(b,e)),c). ** KEPT: 3874 (1588,5) EQUAL(f(f(x,f(a,e)),f(b,e)),f(x,c)). ** KEPT: 3875 (1588,5) EQUAL(f(f(a,e),f(f(b,e),x)),f(c,x)). new given clause: 1592 (284,784,1576) EQUAL(f(f(h,e),f(b,e)),d). ** KEPT: 3876 (1592,5) EQUAL(f(f(x,f(h,e)),f(b,e)),f(x,d)). ** KEPT: 3877 (1592,5) EQUAL(f(f(h,e),f(f(b,e),x)),f(d,x)). new given clause: 1598 (284,678,1576) EQUAL(f(f(e,h),f(b,e)),d). ** KEPT: 3878 (1598,5) EQUAL(f(f(x,f(e,h)),f(b,e)),f(x,d)). ** KEPT: 3879 (1598,5) EQUAL(f(f(e,h),f(f(b,e),x)),f(d,x)). new given clause: 1638 (284,169,1576) EQUAL(f(f(e,a),f(b,e)),c). ** KEPT: 3880 (1638,5) EQUAL(f(f(x,f(e,a)),f(b,e)),f(x,c)). ** KEPT: 3881 (1638,5) EQUAL(f(f(e,a),f(f(b,e),x)),f(c,x)). new given clause: 1680 (7,1575) EQUAL(g(f(g(f(a,b)),a)),b). ** KEPT: 3882 (364,1680) EQUAL(g(f(g(f(c,e)),a)),b). ---> New Demodulator: 3883 (3882) EQUAL(g(f(g(f(c,e)),a)),b). ** KEPT: 3884 (162,1680) EQUAL(g(f(g(f(e,c)),a)),b). ---> New Demodulator: 3885 (3884) EQUAL(g(f(g(f(e,c)),a)),b). >>>> Starting back demodulation with: 3883 (3882) EQUAL(g(f(g(f(c,e)),a)),b). >>>> Starting back demodulation with: 3885 (3884) EQUAL(g(f(g(f(e,c)),a)),b). ** KEPT: 3886 (1680,3118) EQUAL(f(f(h,f(g(f(a,b)),a)),b),h). ---> New Demodulator: 3887 (3886) EQUAL(f(f(h,f(g(f(a,b)),a)),b),h). ** KEPT: 3888 (1680,2126) EQUAL(f(b,f(f(g(f(a,b)),a),a)),a). ---> New Demodulator: 3889 (3888) EQUAL(f(b,f(f(g(f(a,b)),a),a)),a). ** KEPT: 3890 (1680,2120) EQUAL(f(f(g(f(a,b)),a),f(b,a)),a). ---> New Demodulator: 3891 (3890) EQUAL(f(f(g(f(a,b)),a),f(b,a)),a). ** KEPT: 3892 (1680,1197) EQUAL(f(f(g(f(a,b)),a),f(b,d)),d). ---> New Demodulator: 3893 (3892) EQUAL(f(f(g(f(a,b)),a),f(b,d)),d). ** KEPT: 3894 (1680,1175) EQUAL(f(b,f(f(g(f(a,b)),a),d)),d). ---> New Demodulator: 3895 (3894) EQUAL(f(b,f(f(g(f(a,b)),a),d)),d). ** KEPT: 3896 (1680,1133) EQUAL(f(f(g(f(a,b)),a),f(b,h)),h). ---> New Demodulator: 3897 (3896) EQUAL(f(f(g(f(a,b)),a),f(b,h)),h). ** KEPT: 3898 (1680,1125) EQUAL(f(b,f(f(g(f(a,b)),a),h)),h). ---> New Demodulator: 3899 (3898) EQUAL(f(b,f(f(g(f(a,b)),a),h)),h). ** KEPT: 3900 (1680,1725) EQUAL(f(f(b,b),f(g(f(a,b)),a)),b). ---> New Demodulator: 3901 (3900) EQUAL(f(f(b,b),f(g(f(a,b)),a)),b). ** KEPT: 3902 (1680,526) EQUAL(f(f(a,f(g(f(a,b)),a)),b),a). ---> New Demodulator: 3903 (3902) EQUAL(f(f(a,f(g(f(a,b)),a)),b),a). ** KEPT: 3904 (1680,266) EQUAL(f(f(g(f(a,b)),a),f(b,b)),b). ---> New Demodulator: 3905 (3904) EQUAL(f(f(g(f(a,b)),a),f(b,b)),b). ** KEPT: 3906 (1680,105) EQUAL(f(f(d,b),f(g(f(a,b)),a)),d). ---> New Demodulator: 3907 (3906) EQUAL(f(f(d,b),f(g(f(a,b)),a)),d). >>>> Starting back demodulation with: 3887 (3886) EQUAL(f(f(h,f(g(f(a,b)),a)),b),h). >>>> Starting back demodulation with: 3889 (3888) EQUAL(f(b,f(f(g(f(a,b)),a),a)),a). >>>> Starting back demodulation with: 3891 (3890) EQUAL(f(f(g(f(a,b)),a),f(b,a)),a). >>>> Starting back demodulation with: 3893 (3892) EQUAL(f(f(g(f(a,b)),a),f(b,d)),d). >>>> Starting back demodulation with: 3895 (3894) EQUAL(f(b,f(f(g(f(a,b)),a),d)),d). >>>> Starting back demodulation with: 3897 (3896) EQUAL(f(f(g(f(a,b)),a),f(b,h)),h). >>>> Starting back demodulation with: 3899 (3898) EQUAL(f(b,f(f(g(f(a,b)),a),h)),h). >>>> Starting back demodulation with: 3901 (3900) EQUAL(f(f(b,b),f(g(f(a,b)),a)),b). >>>> Starting back demodulation with: 3903 (3902) EQUAL(f(f(a,f(g(f(a,b)),a)),b),a). >>>> Starting back demodulation with: 3905 (3904) EQUAL(f(f(g(f(a,b)),a),f(b,b)),b). >>>> Starting back demodulation with: 3907 (3906) EQUAL(f(f(d,b),f(g(f(a,b)),a)),d). new given clause: 1739 (1579,1719) EQUAL(f(b,g(f(g(x),x))),b). ** KEPT: 3908 (5,1739) EQUAL(f(b,g(f(f(g(f(x,y)),x),y))),b). ---> New Demodulator: 3909 (3908) EQUAL(f(b,g(f(f(g(f(x,y)),x),y))),b). ** KEPT: 3910 (1581,1739) EQUAL(f(b,f(e,g(f(g(x),x)))),b). ---> New Demodulator: 3911 (3910) EQUAL(f(b,f(e,g(f(g(x),x)))),b). >>>> Starting back demodulation with: 3909 (3908) EQUAL(f(b,g(f(f(g(f(x,y)),x),y))),b). >>>> Starting back demodulation with: 3911 (3910) EQUAL(f(b,f(e,g(f(g(x),x)))),b). ** KEPT: 3912 (1739,16) EQUAL(f(c,g(f(g(x),x))),f(a,b)). ** KEPT: 3913 (1739,5) EQUAL(f(f(x,b),g(f(g(y),y))),f(x,b)). ** KEPT: 3914 (1739,5) EQUAL(f(b,f(g(f(g(y),y)),x)),f(b,x)). new given clause: 1741 (1577,1719) EQUAL(f(b,g(f(x,g(x)))),b). ** KEPT: 3915 (5,1741) EQUAL(f(b,g(f(x,f(y,g(f(x,y)))))),b). ---> New Demodulator: 3916 (3915) EQUAL(f(b,g(f(x,f(y,g(f(x,y)))))),b). ** KEPT: 3917 (1581,1741) EQUAL(f(b,f(e,g(f(x,g(x))))),b). ---> New Demodulator: 3918 (3917) EQUAL(f(b,f(e,g(f(x,g(x))))),b). >>>> Starting back demodulation with: 3916 (3915) EQUAL(f(b,g(f(x,f(y,g(f(x,y)))))),b). >>>> Starting back demodulation with: 3918 (3917) EQUAL(f(b,f(e,g(f(x,g(x))))),b). ** KEPT: 3919 (1741,16) EQUAL(f(c,g(f(x,g(x)))),f(a,b)). ** KEPT: 3920 (1741,5) EQUAL(f(f(x,b),g(f(y,g(y)))),f(x,b)). ** KEPT: 3921 (1741,5) EQUAL(f(b,f(g(f(y,g(y))),x)),f(b,x)). new given clause: 1749 (1197,1719) EQUAL(f(d,g(f(g(b),d))),b). ** KEPT: 3922 (8,1749) EQUAL(f(f(c,g(a)),g(f(g(b),d))),b). ---> New Demodulator: 3923 (3922) EQUAL(f(f(c,g(a)),g(f(g(b),d))),b). ** KEPT: 3924 (8,1749) EQUAL(f(d,g(f(g(b),f(c,g(a))))),b). ---> New Demodulator: 3925 (3924) EQUAL(f(d,g(f(g(b),f(c,g(a))))),b). ** KEPT: 3926 (131,1749) EQUAL(f(d,g(f(f(g(b),k),h))),b). ---> New Demodulator: 3927 (3926) EQUAL(f(d,g(f(f(g(b),k),h))),b). ** KEPT: 3928 (72,1749) EQUAL(f(d,g(f(f(g(b),h),b))),b). ---> New Demodulator: 3929 (3928) EQUAL(f(d,g(f(f(g(b),h),b))),b). ** KEPT: 3930 (861,1749) EQUAL(f(f(d,e),g(f(g(b),d))),b). ---> New Demodulator: 3931 (3930) EQUAL(f(f(d,e),g(f(g(b),d))),b). ** KEPT: 3932 (132,1749) EQUAL(f(k,f(h,g(f(g(b),d)))),b). ---> New Demodulator: 3933 (3932) EQUAL(f(k,f(h,g(f(g(b),d)))),b). ** KEPT: 3934 (92,1749) EQUAL(f(d,f(e,g(f(g(b),d)))),b). ---> New Demodulator: 3935 (3934) EQUAL(f(d,f(e,g(f(g(b),d)))),b). ** KEPT: 3936 (73,1749) EQUAL(f(h,f(b,g(f(g(b),d)))),b). ---> New Demodulator: 3937 (3936) EQUAL(f(h,f(b,g(f(g(b),d)))),b). >>>> Starting back demodulation with: 3923 (3922) EQUAL(f(f(c,g(a)),g(f(g(b),d))),b). >>>> Starting back demodulation with: 3925 (3924) EQUAL(f(d,g(f(g(b),f(c,g(a))))),b). >>>> Starting back demodulation with: 3927 (3926) EQUAL(f(d,g(f(f(g(b),k),h))),b). >>>> Starting back demodulation with: 3929 (3928) EQUAL(f(d,g(f(f(g(b),h),b))),b). >>>> Starting back demodulation with: 3931 (3930) EQUAL(f(f(d,e),g(f(g(b),d))),b). >>>> Starting back demodulation with: 3933 (3932) EQUAL(f(k,f(h,g(f(g(b),d)))),b). >>>> Starting back demodulation with: 3935 (3934) EQUAL(f(d,f(e,g(f(g(b),d)))),b). >>>> Starting back demodulation with: 3937 (3936) EQUAL(f(h,f(b,g(f(g(b),d)))),b). ** KEPT: 3938 (1749,5) EQUAL(f(f(x,d),g(f(g(b),d))),f(x,b)). ** KEPT: 3939 (1749,5) EQUAL(f(d,f(g(f(g(b),d)),x)),f(b,x)). new given clause: 1751 (1133,1719) EQUAL(f(h,g(f(g(b),h))),b). ** KEPT: 3940 (9,1751) EQUAL(f(f(d,g(b)),g(f(g(b),h))),b). ---> New Demodulator: 3941 (3940) EQUAL(f(f(d,g(b)),g(f(g(b),h))),b). ** KEPT: 3942 (9,1751) EQUAL(f(h,g(f(g(b),f(d,g(b))))),b). ---> New Demodulator: 3943 (3942) EQUAL(f(h,g(f(g(b),f(d,g(b))))),b). ** KEPT: 3944 (1071,1751) EQUAL(f(h,g(f(f(g(b),e),h))),b). ---> New Demodulator: 3945 (3944) EQUAL(f(h,g(f(f(g(b),e),h))),b). >>>> Starting back demodulation with: 3941 (3940) EQUAL(f(f(d,g(b)),g(f(g(b),h))),b). >>>> Starting back demodulation with: 3943 (3942) EQUAL(f(h,g(f(g(b),f(d,g(b))))),b). >>>> Starting back demodulation with: 3945 (3944) EQUAL(f(h,g(f(f(g(b),e),h))),b). ** KEPT: 3946 (1751,132) EQUAL(f(d,g(f(g(b),h))),f(k,b)). ** KEPT: 3947 (1751,5) EQUAL(f(f(x,h),g(f(g(b),h))),f(x,b)). ** KEPT: 3948 (1751,5) EQUAL(f(h,f(g(f(g(b),h)),x)),f(b,x)). new given clause: 1775 (1725,1175) EQUAL(f(g(f(b,g(d))),b),d). ** KEPT: 3949 (8,1775) EQUAL(f(g(f(b,g(f(c,g(a))))),b),d). ---> New Demodulator: 3950 (3949) EQUAL(f(g(f(b,g(f(c,g(a))))),b),d). ** KEPT: 3951 (1581,1775) EQUAL(f(g(f(b,f(e,g(d)))),b),d). ---> New Demodulator: 3952 (3951) EQUAL(f(g(f(b,f(e,g(d)))),b),d). ** KEPT: 3953 (1444,1775) EQUAL(f(g(f(b,g(d))),f(e,b)),d). ---> New Demodulator: 3954 (3953) EQUAL(f(g(f(b,g(d))),f(e,b)),d). >>>> Starting back demodulation with: 3950 (3949) EQUAL(f(g(f(b,g(f(c,g(a))))),b),d). >>>> Starting back demodulation with: 3952 (3951) EQUAL(f(g(f(b,f(e,g(d)))),b),d). >>>> Starting back demodulation with: 3954 (3953) EQUAL(f(g(f(b,g(d))),f(e,b)),d). ** KEPT: 3955 (1775,5) EQUAL(f(f(x,g(f(b,g(d)))),b),f(x,d)). ** KEPT: 3956 (1775,5) EQUAL(f(g(f(b,g(d))),f(b,x)),f(d,x)). new given clause: 1777 (1725,1125) EQUAL(f(g(f(b,g(h))),b),h). ** KEPT: 3957 (9,1777) EQUAL(f(g(f(b,g(f(d,g(b))))),b),h). ---> New Demodulator: 3958 (3957) EQUAL(f(g(f(b,g(f(d,g(b))))),b),h). ** KEPT: 3959 (1581,1777) EQUAL(f(g(f(b,f(e,g(h)))),b),h). ---> New Demodulator: 3960 (3959) EQUAL(f(g(f(b,f(e,g(h)))),b),h). ** KEPT: 3961 (1444,1777) EQUAL(f(g(f(b,g(h))),f(e,b)),h). ---> New Demodulator: 3962 (3961) EQUAL(f(g(f(b,g(h))),f(e,b)),h). ** KEPT: 3963 (239,1777) EQUAL(f(f(g(f(b,g(h))),e),b),h). ---> New Demodulator: 3964 (3963) EQUAL(f(f(g(f(b,g(h))),e),b),h). >>>> Starting back demodulation with: 3958 (3957) EQUAL(f(g(f(b,g(f(d,g(b))))),b),h). >>>> Starting back demodulation with: 3960 (3959) EQUAL(f(g(f(b,f(e,g(h)))),b),h). >>>> Starting back demodulation with: 3962 (3961) EQUAL(f(g(f(b,g(h))),f(e,b)),h). >>>> Starting back demodulation with: 3964 (3963) EQUAL(f(f(g(f(b,g(h))),e),b),h). ** KEPT: 3965 (1777,5) EQUAL(f(f(x,g(f(b,g(h)))),b),f(x,h)). ** KEPT: 3966 (1777,5) EQUAL(f(g(f(b,g(h))),f(b,x)),f(h,x)). new given clause: 1791 (5,300) EQUAL(f(f(g(h),c),g(a)),b). ** KEPT: 3967 (9,1791) EQUAL(f(f(g(f(d,g(b))),c),g(a)),b). ---> New Demodulator: 3968 (3967) EQUAL(f(f(g(f(d,g(b))),c),g(a)),b). ** KEPT: 3969 (7,1791) EQUAL(f(f(g(h),f(a,b)),g(a)),b). ---> New Demodulator: 3970 (3969) EQUAL(f(f(g(h),f(a,b)),g(a)),b). ** KEPT: 3971 (1356,1791) EQUAL(f(f(g(h),f(e,c)),g(a)),b). ---> New Demodulator: 3972 (3971) EQUAL(f(f(g(h),f(e,c)),g(a)),b). ** KEPT: 3973 (1355,1791) EQUAL(f(f(g(h),f(c,e)),g(a)),b). ---> New Demodulator: 3974 (3973) EQUAL(f(f(g(h),f(c,e)),g(a)),b). ** KEPT: 3975 (15,1791) EQUAL(f(f(f(g(h),a),b),g(a)),b). ---> New Demodulator: 3976 (3975) EQUAL(f(f(f(g(h),a),b),g(a)),b). >>>> Starting back demodulation with: 3968 (3967) EQUAL(f(f(g(f(d,g(b))),c),g(a)),b). >>>> Starting back demodulation with: 3970 (3969) EQUAL(f(f(g(h),f(a,b)),g(a)),b). >>>> Starting back demodulation with: 3972 (3971) EQUAL(f(f(g(h),f(e,c)),g(a)),b). >>>> Starting back demodulation with: 3974 (3973) EQUAL(f(f(g(h),f(c,e)),g(a)),b). >>>> Starting back demodulation with: 3976 (3975) EQUAL(f(f(f(g(h),a),b),g(a)),b). ** KEPT: 3977 (1791,5) EQUAL(f(f(x,f(g(h),c)),g(a)),f(x,b)). ** KEPT: 3978 (1791,5) EQUAL(f(f(g(h),c),f(g(a),x)),f(b,x)). new given clause: 1803 (364,365) EQUAL(f(f(c,e),x),f(c,x)). ** KEPT: 3979 (4,1803) EQUAL(f(f(c,f(x,g(x))),y),f(c,y)). ** KEPT: 3980 (3,1803) EQUAL(f(f(c,f(g(x),x)),y),f(c,y)). ** KEPT: 3981 (1444,1803) EQUAL(f(c,f(e,b)),f(f(c,e),b)). ** KEPT: 3982 (1356,1803) EQUAL(f(c,f(e,c)),f(f(c,e),c)). ** KEPT: 3983 (1355,1803) EQUAL(f(c,f(c,e)),f(f(c,e),c)). ** KEPT: 3984 (2120,1803) EQUAL(f(c,f(g(f(c,e)),a)),a). ---> New Demodulator: 3985 (3984) EQUAL(f(c,f(g(f(c,e)),a)),a). ** KEPT: 3986 (163,1803) EQUAL(f(c,f(a,b)),f(f(c,e),c)). ** KEPT: 3987 (1197,1803) EQUAL(f(c,f(g(f(c,e)),d)),d). ---> New Demodulator: 3988 (3987) EQUAL(f(c,f(g(f(c,e)),d)),d). ** KEPT: 3989 (1133,1803) EQUAL(f(c,f(g(f(c,e)),h)),h). ---> New Demodulator: 3990 (3989) EQUAL(f(c,f(g(f(c,e)),h)),h). ** KEPT: 3991 (131,1803) EQUAL(f(f(f(c,e),k),h),f(c,d)). ** KEPT: 3992 (266,1803) EQUAL(f(c,f(g(f(c,e)),b)),b). ---> New Demodulator: 3993 (3992) EQUAL(f(c,f(g(f(c,e)),b)),b). ** KEPT: 3994 (15,1803) EQUAL(f(f(f(c,e),a),b),f(c,c)). ** KEPT: 3995 (5,1803) EQUAL(f(f(f(c,e),x),y),f(c,f(x,y))). ** KEPT: 3996 (5,1803) EQUAL(f(c,f(e,x)),f(c,x)). ** KEPT: 3997 (7,1803) EQUAL(f(f(c,e),x),f(f(a,b),x)). ** KEPT: 3998 (997,1803) EQUAL(f(f(c,e),f(g(a),g(h))),k). ---> New Demodulator: 3999 (3998) EQUAL(f(f(c,e),f(g(a),g(h))),k). ** KEPT: 4000 (660,1803) EQUAL(f(f(c,e),f(g(a),g(b))),h). ---> New Demodulator: 4001 (4000) EQUAL(f(f(c,e),f(g(a),g(b))),h). ** KEPT: 4002 (2120,1803) EQUAL(f(f(c,e),f(g(c),a)),a). ---> New Demodulator: 4003 (4002) EQUAL(f(f(c,e),f(g(c),a)),a). ** KEPT: 4004 (1844,1803) EQUAL(f(f(c,e),g(f(e,c))),e). ---> New Demodulator: 4005 (4004) EQUAL(f(f(c,e),g(f(e,c))),e). ** KEPT: 4006 (1511,1803) EQUAL(f(f(c,e),g(f(e,b))),a). ---> New Demodulator: 4007 (4006) EQUAL(f(f(c,e),g(f(e,b))),a). ** KEPT: 4008 (1197,1803) EQUAL(f(f(c,e),f(g(c),d)),d). ---> New Demodulator: 4009 (4008) EQUAL(f(f(c,e),f(g(c),d)),d). ** KEPT: 4010 (1133,1803) EQUAL(f(f(c,e),f(g(c),h)),h). ---> New Demodulator: 4011 (4010) EQUAL(f(f(c,e),f(g(c),h)),h). ** KEPT: 4012 (131,1803) EQUAL(f(f(c,k),h),f(f(c,e),d)). ** KEPT: 4013 (620,1803) EQUAL(f(f(c,e),f(e,g(b))),a). ---> New Demodulator: 4014 (4013) EQUAL(f(f(c,e),f(e,g(b))),a). ** KEPT: 4015 (592,1803) EQUAL(f(f(c,e),f(e,g(c))),e). ---> New Demodulator: 4016 (4015) EQUAL(f(f(c,e),f(e,g(c))),e). ** KEPT: 4017 (514,1803) EQUAL(f(f(c,e),f(e,g(a))),d). ---> New Demodulator: 4018 (4017) EQUAL(f(f(c,e),f(e,g(a))),d). ** KEPT: 4019 (266,1803) EQUAL(f(f(c,e),f(g(c),b)),b). ---> New Demodulator: 4020 (4019) EQUAL(f(f(c,e),f(g(c),b)),b). ** KEPT: 4021 (15,1803) EQUAL(f(f(c,a),b),f(f(c,e),c)). ** KEPT: 4022 (117,1803) EQUAL(f(f(c,e),f(g(a),e)),d). ---> New Demodulator: 4023 (4022) EQUAL(f(f(c,e),f(g(a),e)),d). ** KEPT: 4024 (5,1803) EQUAL(f(f(c,e),f(x,y)),f(f(c,x),y)). >>>> Starting back demodulation with: 3985 (3984) EQUAL(f(c,f(g(f(c,e)),a)),a). >>>> Starting back demodulation with: 3988 (3987) EQUAL(f(c,f(g(f(c,e)),d)),d). >>>> Starting back demodulation with: 3990 (3989) EQUAL(f(c,f(g(f(c,e)),h)),h). >>>> Starting back demodulation with: 3993 (3992) EQUAL(f(c,f(g(f(c,e)),b)),b). 3997 back subsumes: 2787 (365,1071) EQUAL(f(f(c,e),h),f(f(a,b),h)). 3997 back subsumes: 1819 (239,365) EQUAL(f(f(c,e),b),f(f(a,b),b)). >>>> Starting back demodulation with: 3999 (3998) EQUAL(f(f(c,e),f(g(a),g(h))),k). >>>> Starting back demodulation with: 4001 (4000) EQUAL(f(f(c,e),f(g(a),g(b))),h). >>>> Starting back demodulation with: 4003 (4002) EQUAL(f(f(c,e),f(g(c),a)),a). >>>> Starting back demodulation with: 4005 (4004) EQUAL(f(f(c,e),g(f(e,c))),e). >>>> Starting back demodulation with: 4007 (4006) EQUAL(f(f(c,e),g(f(e,b))),a). >>>> Starting back demodulation with: 4009 (4008) EQUAL(f(f(c,e),f(g(c),d)),d). >>>> Starting back demodulation with: 4011 (4010) EQUAL(f(f(c,e),f(g(c),h)),h). >>>> Starting back demodulation with: 4014 (4013) EQUAL(f(f(c,e),f(e,g(b))),a). >>>> Starting back demodulation with: 4016 (4015) EQUAL(f(f(c,e),f(e,g(c))),e). >>>> Starting back demodulation with: 4018 (4017) EQUAL(f(f(c,e),f(e,g(a))),d). >>>> Starting back demodulation with: 4020 (4019) EQUAL(f(f(c,e),f(g(c),b)),b). >>>> Starting back demodulation with: 4023 (4022) EQUAL(f(f(c,e),f(g(a),e)),d). ** KEPT: 4025 (1803,1175) EQUAL(f(g(f(c,e)),f(c,d)),d). ---> New Demodulator: 4026 (4025) EQUAL(f(g(f(c,e)),f(c,d)),d). ** KEPT: 4027 (1803,2126) EQUAL(f(g(f(c,e)),f(c,a)),a). ---> New Demodulator: 4028 (4027) EQUAL(f(g(f(c,e)),f(c,a)),a). ** KEPT: 4029 (1803,1175) EQUAL(f(g(c),f(f(c,e),d)),d). ---> New Demodulator: 4030 (4029) EQUAL(f(g(c),f(f(c,e),d)),d). ** KEPT: 4031 (1803,2126) EQUAL(f(g(c),f(f(c,e),a)),a). ---> New Demodulator: 4032 (4031) EQUAL(f(g(c),f(f(c,e),a)),a). >>>> Starting back demodulation with: 4026 (4025) EQUAL(f(g(f(c,e)),f(c,d)),d). >>>> Starting back demodulation with: 4028 (4027) EQUAL(f(g(f(c,e)),f(c,a)),a). >>>> Starting back demodulation with: 4030 (4029) EQUAL(f(g(c),f(f(c,e),d)),d). >>>> Starting back demodulation with: 4032 (4031) EQUAL(f(g(c),f(f(c,e),a)),a). new given clause: 1804 (162,365) EQUAL(f(f(e,c),x),f(c,x)). ** KEPT: 4033 (4,1804) EQUAL(f(f(f(x,g(x)),c),y),f(c,y)). ** KEPT: 4034 (3,1804) EQUAL(f(f(f(g(x),x),c),y),f(c,y)). ** KEPT: 4035 (1355,1804) EQUAL(f(f(e,c),f(c,e)),f(c,c)). ** KEPT: 4036 (1355,1804) EQUAL(f(c,f(c,e)),f(f(e,c),c)). ** KEPT: 4037 (2120,1804) EQUAL(f(c,f(g(f(e,c)),a)),a). ---> New Demodulator: 4038 (4037) EQUAL(f(c,f(g(f(e,c)),a)),a). ** KEPT: 4039 (163,1804) EQUAL(f(f(e,c),f(a,b)),f(c,c)). ** KEPT: 4040 (163,1804) EQUAL(f(c,f(a,b)),f(f(e,c),c)). ** KEPT: 4041 (1197,1804) EQUAL(f(c,f(g(f(e,c)),d)),d). ---> New Demodulator: 4042 (4041) EQUAL(f(c,f(g(f(e,c)),d)),d). ** KEPT: 4043 (1133,1804) EQUAL(f(c,f(g(f(e,c)),h)),h). ---> New Demodulator: 4044 (4043) EQUAL(f(c,f(g(f(e,c)),h)),h). ** KEPT: 4045 (131,1804) EQUAL(f(f(f(e,c),k),h),f(c,d)). ** KEPT: 4046 (72,1804) EQUAL(f(f(f(e,c),h),b),f(c,d)). ** KEPT: 4047 (266,1804) EQUAL(f(c,f(g(f(e,c)),b)),b). ---> New Demodulator: 4048 (4047) EQUAL(f(c,f(g(f(e,c)),b)),b). ** KEPT: 4049 (15,1804) EQUAL(f(f(f(e,c),a),b),f(c,c)). ** KEPT: 4050 (5,1804) EQUAL(f(f(f(e,c),x),y),f(c,f(x,y))). ** KEPT: 4051 (7,1804) EQUAL(f(f(a,b),x),f(f(e,c),x)). ** KEPT: 4052 (1803,1804) EQUAL(f(f(c,e),x),f(f(e,c),x)). ** KEPT: 4053 (997,1804) EQUAL(f(f(e,c),f(g(a),g(h))),k). ---> New Demodulator: 4054 (4053) EQUAL(f(f(e,c),f(g(a),g(h))),k). ** KEPT: 4055 (660,1804) EQUAL(f(f(e,c),f(g(a),g(b))),h). ---> New Demodulator: 4056 (4055) EQUAL(f(f(e,c),f(g(a),g(b))),h). ** KEPT: 4057 (2120,1804) EQUAL(f(f(e,c),f(g(c),a)),a). ---> New Demodulator: 4058 (4057) EQUAL(f(f(e,c),f(g(c),a)),a). ** KEPT: 4059 (1842,1804) EQUAL(f(f(e,c),g(f(c,e))),e). ---> New Demodulator: 4060 (4059) EQUAL(f(f(e,c),g(f(c,e))),e). ** KEPT: 4061 (1511,1804) EQUAL(f(f(e,c),g(f(e,b))),a). ---> New Demodulator: 4062 (4061) EQUAL(f(f(e,c),g(f(e,b))),a). ** KEPT: 4063 (1197,1804) EQUAL(f(f(e,c),f(g(c),d)),d). ---> New Demodulator: 4064 (4063) EQUAL(f(f(e,c),f(g(c),d)),d). ** KEPT: 4065 (1133,1804) EQUAL(f(f(e,c),f(g(c),h)),h). ---> New Demodulator: 4066 (4065) EQUAL(f(f(e,c),f(g(c),h)),h). ** KEPT: 4067 (131,1804) EQUAL(f(f(c,k),h),f(f(e,c),d)). ** KEPT: 4068 (72,1804) EQUAL(f(f(c,h),b),f(f(e,c),d)). ** KEPT: 4069 (620,1804) EQUAL(f(f(e,c),f(e,g(b))),a). ---> New Demodulator: 4070 (4069) EQUAL(f(f(e,c),f(e,g(b))),a). ** KEPT: 4071 (592,1804) EQUAL(f(f(e,c),f(e,g(c))),e). ---> New Demodulator: 4072 (4071) EQUAL(f(f(e,c),f(e,g(c))),e). ** KEPT: 4073 (514,1804) EQUAL(f(f(e,c),f(e,g(a))),d). ---> New Demodulator: 4074 (4073) EQUAL(f(f(e,c),f(e,g(a))),d). ** KEPT: 4075 (266,1804) EQUAL(f(f(e,c),f(g(c),b)),b). ---> New Demodulator: 4076 (4075) EQUAL(f(f(e,c),f(g(c),b)),b). ** KEPT: 4077 (15,1804) EQUAL(f(f(c,a),b),f(f(e,c),c)). ** KEPT: 4078 (117,1804) EQUAL(f(f(e,c),f(g(a),e)),d). ---> New Demodulator: 4079 (4078) EQUAL(f(f(e,c),f(g(a),e)),d). ** KEPT: 4080 (5,1804) EQUAL(f(f(e,c),f(x,y)),f(f(c,x),y)). >>>> Starting back demodulation with: 4038 (4037) EQUAL(f(c,f(g(f(e,c)),a)),a). >>>> Starting back demodulation with: 4042 (4041) EQUAL(f(c,f(g(f(e,c)),d)),d). >>>> Starting back demodulation with: 4044 (4043) EQUAL(f(c,f(g(f(e,c)),h)),h). >>>> Starting back demodulation with: 4048 (4047) EQUAL(f(c,f(g(f(e,c)),b)),b). >>>> Starting back demodulation with: 4054 (4053) EQUAL(f(f(e,c),f(g(a),g(h))),k). >>>> Starting back demodulation with: 4056 (4055) EQUAL(f(f(e,c),f(g(a),g(b))),h). >>>> Starting back demodulation with: 4058 (4057) EQUAL(f(f(e,c),f(g(c),a)),a). >>>> Starting back demodulation with: 4060 (4059) EQUAL(f(f(e,c),g(f(c,e))),e). >>>> Starting back demodulation with: 4062 (4061) EQUAL(f(f(e,c),g(f(e,b))),a). >>>> Starting back demodulation with: 4064 (4063) EQUAL(f(f(e,c),f(g(c),d)),d). >>>> Starting back demodulation with: 4066 (4065) EQUAL(f(f(e,c),f(g(c),h)),h). >>>> Starting back demodulation with: 4070 (4069) EQUAL(f(f(e,c),f(e,g(b))),a). >>>> Starting back demodulation with: 4072 (4071) EQUAL(f(f(e,c),f(e,g(c))),e). >>>> Starting back demodulation with: 4074 (4073) EQUAL(f(f(e,c),f(e,g(a))),d). >>>> Starting back demodulation with: 4076 (4075) EQUAL(f(f(e,c),f(g(c),b)),b). >>>> Starting back demodulation with: 4079 (4078) EQUAL(f(f(e,c),f(g(a),e)),d). ** KEPT: 4081 (1804,1175) EQUAL(f(g(f(e,c)),f(c,d)),d). ---> New Demodulator: 4082 (4081) EQUAL(f(g(f(e,c)),f(c,d)),d). ** KEPT: 4083 (1804,1125) EQUAL(f(g(f(e,c)),f(c,h)),h). ---> New Demodulator: 4084 (4083) EQUAL(f(g(f(e,c)),f(c,h)),h). ** KEPT: 4085 (1804,260) EQUAL(f(g(f(e,c)),f(c,b)),b). ---> New Demodulator: 4086 (4085) EQUAL(f(g(f(e,c)),f(c,b)),b). ** KEPT: 4087 (1804,2126) EQUAL(f(g(f(e,c)),f(c,a)),a). ---> New Demodulator: 4088 (4087) EQUAL(f(g(f(e,c)),f(c,a)),a). ** KEPT: 4089 (1804,1175) EQUAL(f(g(c),f(f(e,c),d)),d). ---> New Demodulator: 4090 (4089) EQUAL(f(g(c),f(f(e,c),d)),d). ** KEPT: 4091 (1804,1125) EQUAL(f(g(c),f(f(e,c),h)),h). ---> New Demodulator: 4092 (4091) EQUAL(f(g(c),f(f(e,c),h)),h). ** KEPT: 4093 (1804,260) EQUAL(f(g(c),f(f(e,c),b)),b). ---> New Demodulator: 4094 (4093) EQUAL(f(g(c),f(f(e,c),b)),b). ** KEPT: 4095 (1804,2126) EQUAL(f(g(c),f(f(e,c),a)),a). ---> New Demodulator: 4096 (4095) EQUAL(f(g(c),f(f(e,c),a)),a). >>>> Starting back demodulation with: 4082 (4081) EQUAL(f(g(f(e,c)),f(c,d)),d). >>>> Starting back demodulation with: 4084 (4083) EQUAL(f(g(f(e,c)),f(c,h)),h). >>>> Starting back demodulation with: 4086 (4085) EQUAL(f(g(f(e,c)),f(c,b)),b). >>>> Starting back demodulation with: 4088 (4087) EQUAL(f(g(f(e,c)),f(c,a)),a). >>>> Starting back demodulation with: 4090 (4089) EQUAL(f(g(c),f(f(e,c),d)),d). >>>> Starting back demodulation with: 4092 (4091) EQUAL(f(g(c),f(f(e,c),h)),h). >>>> Starting back demodulation with: 4094 (4093) EQUAL(f(g(c),f(f(e,c),b)),b). >>>> Starting back demodulation with: 4096 (4095) EQUAL(f(g(c),f(f(e,c),a)),a). new given clause: 1868 (364,457) EQUAL(f(f(c,e),f(e,e)),c). ** KEPT: 4097 (4,1868) EQUAL(f(f(c,f(x,g(x))),f(e,e)),c). ---> New Demodulator: 4098 (4097) EQUAL(f(f(c,f(x,g(x))),f(e,e)),c). ** KEPT: 4099 (3,1868) EQUAL(f(f(c,f(g(x),x)),f(e,e)),c). ---> New Demodulator: 4100 (4099) EQUAL(f(f(c,f(g(x),x)),f(e,e)),c). ** KEPT: 4101 (4,1868) EQUAL(f(f(c,e),f(f(x,g(x)),e)),c). ---> New Demodulator: 4102 (4101) EQUAL(f(f(c,e),f(f(x,g(x)),e)),c). ** KEPT: 4103 (3,1868) EQUAL(f(f(c,e),f(f(g(x),x),e)),c). ---> New Demodulator: 4104 (4103) EQUAL(f(f(c,e),f(f(g(x),x),e)),c). ** KEPT: 4105 (4,1868) EQUAL(f(f(c,e),f(e,f(x,g(x)))),c). ---> New Demodulator: 4106 (4105) EQUAL(f(f(c,e),f(e,f(x,g(x)))),c). ** KEPT: 4107 (3,1868) EQUAL(f(f(c,e),f(e,f(g(x),x))),c). ---> New Demodulator: 4108 (4107) EQUAL(f(f(c,e),f(e,f(g(x),x))),c). ** KEPT: 4109 (5,1868) EQUAL(f(c,f(e,f(e,e))),c). ---> New Demodulator: 4110 (4109) EQUAL(f(c,f(e,f(e,e))),c). >>>> Starting back demodulation with: 4098 (4097) EQUAL(f(f(c,f(x,g(x))),f(e,e)),c). >>>> Starting back demodulation with: 4100 (4099) EQUAL(f(f(c,f(g(x),x)),f(e,e)),c). >>>> Starting back demodulation with: 4102 (4101) EQUAL(f(f(c,e),f(f(x,g(x)),e)),c). >>>> Starting back demodulation with: 4104 (4103) EQUAL(f(f(c,e),f(f(g(x),x),e)),c). >>>> Starting back demodulation with: 4106 (4105) EQUAL(f(f(c,e),f(e,f(x,g(x)))),c). >>>> Starting back demodulation with: 4108 (4107) EQUAL(f(f(c,e),f(e,f(g(x),x))),c). >>>> Starting back demodulation with: 4110 (4109) EQUAL(f(c,f(e,f(e,e))),c). ** KEPT: 4111 (1868,5) EQUAL(f(f(x,f(c,e)),f(e,e)),f(x,c)). ** KEPT: 4112 (1868,5) EQUAL(f(f(c,e),f(f(e,e),x)),f(c,x)). new given clause: 1870 (162,457) EQUAL(f(f(e,c),f(e,e)),c). ** KEPT: 4113 (4,1870) EQUAL(f(f(f(x,g(x)),c),f(e,e)),c). ---> New Demodulator: 4114 (4113) EQUAL(f(f(f(x,g(x)),c),f(e,e)),c). ** KEPT: 4115 (3,1870) EQUAL(f(f(f(g(x),x),c),f(e,e)),c). ---> New Demodulator: 4116 (4115) EQUAL(f(f(f(g(x),x),c),f(e,e)),c). ** KEPT: 4117 (4,1870) EQUAL(f(f(e,c),f(f(x,g(x)),e)),c). ---> New Demodulator: 4118 (4117) EQUAL(f(f(e,c),f(f(x,g(x)),e)),c). ** KEPT: 4119 (3,1870) EQUAL(f(f(e,c),f(f(g(x),x),e)),c). ---> New Demodulator: 4120 (4119) EQUAL(f(f(e,c),f(f(g(x),x),e)),c). ** KEPT: 4121 (4,1870) EQUAL(f(f(e,c),f(e,f(x,g(x)))),c). ---> New Demodulator: 4122 (4121) EQUAL(f(f(e,c),f(e,f(x,g(x)))),c). ** KEPT: 4123 (3,1870) EQUAL(f(f(e,c),f(e,f(g(x),x))),c). ---> New Demodulator: 4124 (4123) EQUAL(f(f(e,c),f(e,f(g(x),x))),c). >>>> Starting back demodulation with: 4114 (4113) EQUAL(f(f(f(x,g(x)),c),f(e,e)),c). >>>> Starting back demodulation with: 4116 (4115) EQUAL(f(f(f(g(x),x),c),f(e,e)),c). >>>> Starting back demodulation with: 4118 (4117) EQUAL(f(f(e,c),f(f(x,g(x)),e)),c). >>>> Starting back demodulation with: 4120 (4119) EQUAL(f(f(e,c),f(f(g(x),x),e)),c). >>>> Starting back demodulation with: 4122 (4121) EQUAL(f(f(e,c),f(e,f(x,g(x)))),c). >>>> Starting back demodulation with: 4124 (4123) EQUAL(f(f(e,c),f(e,f(g(x),x))),c). ** KEPT: 4125 (1870,5) EQUAL(f(f(x,f(e,c)),f(e,e)),f(x,c)). ** KEPT: 4126 (1870,5) EQUAL(f(f(e,c),f(f(e,e),x)),f(c,x)). new given clause: 1895 (1095,483) EQUAL(f(a,f(h,e)),f(a,h)). ** KEPT: 4127 (9,1895) EQUAL(f(a,f(d,g(b))),f(a,f(h,e))). ** KEPT: 4128 (1071,1895) EQUAL(f(a,f(h,e)),f(f(a,e),h)). ** KEPT: 4129 (483,1895) EQUAL(f(a,f(h,e)),f(a,f(e,h))). ** KEPT: 4130 (1895,526) EQUAL(f(f(a,h),g(f(h,e))),a). ---> New Demodulator: 4131 (4130) EQUAL(f(f(a,h),g(f(h,e))),a). ** KEPT: 4132 (1895,5) EQUAL(f(f(x,a),f(h,e)),f(x,f(a,h))). ** KEPT: 4133 (1895,5) EQUAL(f(a,f(f(h,e),x)),f(f(a,h),x)). ** KEPT: 4134 (1895,526) EQUAL(f(f(a,f(h,e)),g(h)),a). ---> New Demodulator: 4135 (4134) EQUAL(f(f(a,f(h,e)),g(h)),a). ** KEPT: 4136 (1895,5) EQUAL(f(x,f(a,f(h,e))),f(f(x,a),h)). ** KEPT: 4137 (1895,5) EQUAL(f(f(a,f(h,e)),x),f(a,f(h,x))). >>>> Starting back demodulation with: 4131 (4130) EQUAL(f(f(a,h),g(f(h,e))),a). >>>> Starting back demodulation with: 4135 (4134) EQUAL(f(f(a,f(h,e)),g(h)),a). new given clause: 1900 (5,483) EQUAL(f(f(a,e),x),f(a,x)). ** KEPT: 4138 (1356,1900) EQUAL(f(a,f(e,c)),f(f(a,e),c)). ** KEPT: 4139 (1355,1900) EQUAL(f(a,f(c,e)),f(f(a,e),c)). ** KEPT: 4140 (2120,1900) EQUAL(f(a,f(g(f(a,e)),a)),a). ---> New Demodulator: 4141 (4140) EQUAL(f(a,f(g(f(a,e)),a)),a). ** KEPT: 4142 (163,1900) EQUAL(f(a,f(a,b)),f(f(a,e),c)). ** KEPT: 4143 (1197,1900) EQUAL(f(a,f(g(f(a,e)),d)),d). ---> New Demodulator: 4144 (4143) EQUAL(f(a,f(g(f(a,e)),d)),d). ** KEPT: 4145 (1133,1900) EQUAL(f(a,f(g(f(a,e)),h)),h). ---> New Demodulator: 4146 (4145) EQUAL(f(a,f(g(f(a,e)),h)),h). ** KEPT: 4147 (131,1900) EQUAL(f(f(f(a,e),k),h),f(a,d)). ** KEPT: 4148 (266,1900) EQUAL(f(a,f(g(f(a,e)),b)),b). ---> New Demodulator: 4149 (4148) EQUAL(f(a,f(g(f(a,e)),b)),b). ** KEPT: 4150 (15,1900) EQUAL(f(f(f(a,e),a),b),f(a,c)). ** KEPT: 4151 (5,1900) EQUAL(f(f(f(a,e),x),y),f(a,f(x,y))). ** KEPT: 4152 (4,1900) EQUAL(f(a,g(f(a,e))),e). ---> New Demodulator: 4153 (4152) EQUAL(f(a,g(f(a,e))),e). ** KEPT: 4154 (564,1900) EQUAL(f(f(a,e),g(f(g(x),x))),a). ---> New Demodulator: 4155 (4154) EQUAL(f(f(a,e),g(f(g(x),x))),a). ** KEPT: 4156 (562,1900) EQUAL(f(f(a,e),g(f(x,g(x)))),a). ---> New Demodulator: 4157 (4156) EQUAL(f(f(a,e),g(f(x,g(x)))),a). ** KEPT: 4158 (1922,1900) EQUAL(f(f(a,e),f(e,g(a))),e). ---> New Demodulator: 4159 (4158) EQUAL(f(f(a,e),f(e,g(a))),e). ** KEPT: 4160 (1924,1900) EQUAL(f(f(a,e),f(e,e)),a). ---> New Demodulator: 4161 (4160) EQUAL(f(f(a,e),f(e,e)),a). ** KEPT: 4162 (483,1900) EQUAL(f(a,f(e,x)),f(f(a,e),x)). ** KEPT: 4163 (1197,1900) EQUAL(f(f(a,e),f(g(a),d)),d). ---> New Demodulator: 4164 (4163) EQUAL(f(f(a,e),f(g(a),d)),d). ** KEPT: 4165 (1133,1900) EQUAL(f(f(a,e),f(g(a),h)),h). ---> New Demodulator: 4166 (4165) EQUAL(f(f(a,e),f(g(a),h)),h). ** KEPT: 4167 (131,1900) EQUAL(f(f(a,k),h),f(f(a,e),d)). ** KEPT: 4168 (373,1900) EQUAL(f(f(a,e),f(b,g(c))),e). ---> New Demodulator: 4169 (4168) EQUAL(f(f(a,e),f(b,g(c))),e). ** KEPT: 4170 (266,1900) EQUAL(f(f(a,e),f(g(a),b)),b). ---> New Demodulator: 4171 (4170) EQUAL(f(f(a,e),f(g(a),b)),b). ** KEPT: 4172 (15,1900) EQUAL(f(f(a,a),b),f(f(a,e),c)). ** KEPT: 4173 (38,1900) EQUAL(f(f(a,e),f(b,g(a))),d). ---> New Demodulator: 4174 (4173) EQUAL(f(f(a,e),f(b,g(a))),d). ** KEPT: 4175 (5,1900) EQUAL(f(f(a,e),f(x,y)),f(f(a,x),y)). >>>> Starting back demodulation with: 4141 (4140) EQUAL(f(a,f(g(f(a,e)),a)),a). >>>> Starting back demodulation with: 4144 (4143) EQUAL(f(a,f(g(f(a,e)),d)),d). >>>> Starting back demodulation with: 4146 (4145) EQUAL(f(a,f(g(f(a,e)),h)),h). >>>> Starting back demodulation with: 4149 (4148) EQUAL(f(a,f(g(f(a,e)),b)),b). >>>> Starting back demodulation with: 4153 (4152) EQUAL(f(a,g(f(a,e))),e). >>>> Starting back demodulation with: 4155 (4154) EQUAL(f(f(a,e),g(f(g(x),x))),a). >>>> Starting back demodulation with: 4157 (4156) EQUAL(f(f(a,e),g(f(x,g(x)))),a). >>>> Starting back demodulation with: 4159 (4158) EQUAL(f(f(a,e),f(e,g(a))),e). >>>> Starting back demodulation with: 4161 (4160) EQUAL(f(f(a,e),f(e,e)),a). 4162 back subsumes: 4138 (1356,1900) EQUAL(f(a,f(e,c)),f(f(a,e),c)). 4162 back subsumes: 2798 (483,1071) EQUAL(f(a,f(e,h)),f(f(a,e),h)). >>>> Starting back demodulation with: 4164 (4163) EQUAL(f(f(a,e),f(g(a),d)),d). >>>> Starting back demodulation with: 4166 (4165) EQUAL(f(f(a,e),f(g(a),h)),h). >>>> Starting back demodulation with: 4169 (4168) EQUAL(f(f(a,e),f(b,g(c))),e). >>>> Starting back demodulation with: 4171 (4170) EQUAL(f(f(a,e),f(g(a),b)),b). >>>> Starting back demodulation with: 4174 (4173) EQUAL(f(f(a,e),f(b,g(a))),d). ** KEPT: 4176 (1900,1175) EQUAL(f(g(f(a,e)),f(a,d)),d). ---> New Demodulator: 4177 (4176) EQUAL(f(g(f(a,e)),f(a,d)),d). ** KEPT: 4178 (1900,2126) EQUAL(f(g(f(a,e)),f(a,a)),a). ---> New Demodulator: 4179 (4178) EQUAL(f(g(f(a,e)),f(a,a)),a). ** KEPT: 4180 (1900,5) EQUAL(f(f(x,f(a,e)),y),f(x,f(a,y))). ** KEPT: 4181 (1900,1231) EQUAL(f(g(f(f(a,e),g(d))),a),d). ---> New Demodulator: 4182 (4181) EQUAL(f(g(f(f(a,e),g(d))),a),d). ** KEPT: 4183 (1900,1165) EQUAL(f(g(f(f(a,e),g(h))),a),h). ---> New Demodulator: 4184 (4183) EQUAL(f(g(f(f(a,e),g(h))),a),h). ** KEPT: 4185 (1900,558) EQUAL(f(g(f(f(a,e),g(b))),a),b). ---> New Demodulator: 4186 (4185) EQUAL(f(g(f(f(a,e),g(b))),a),b). ** KEPT: 4187 (1900,1175) EQUAL(f(g(a),f(f(a,e),d)),d). ---> New Demodulator: 4188 (4187) EQUAL(f(g(a),f(f(a,e),d)),d). ** KEPT: 4189 (1900,526) EQUAL(f(f(f(a,e),x),g(x)),a). ---> New Demodulator: 4190 (4189) EQUAL(f(f(f(a,e),x),g(x)),a). ** KEPT: 4191 (1900,520) EQUAL(f(f(f(a,e),g(x)),x),a). ---> New Demodulator: 4192 (4191) EQUAL(f(f(f(a,e),g(x)),x),a). ** KEPT: 4193 (1900,2126) EQUAL(f(g(a),f(f(a,e),a)),a). ---> New Demodulator: 4194 (4193) EQUAL(f(g(a),f(f(a,e),a)),a). ** KEPT: 4195 (1900,5) EQUAL(f(x,f(f(a,e),y)),f(f(x,a),y)). >>>> Starting back demodulation with: 4177 (4176) EQUAL(f(g(f(a,e)),f(a,d)),d). >>>> Starting back demodulation with: 4179 (4178) EQUAL(f(g(f(a,e)),f(a,a)),a). >>>> Starting back demodulation with: 4182 (4181) EQUAL(f(g(f(f(a,e),g(d))),a),d). >>>> Starting back demodulation with: 4184 (4183) EQUAL(f(g(f(f(a,e),g(h))),a),h). >>>> Starting back demodulation with: 4186 (4185) EQUAL(f(g(f(f(a,e),g(b))),a),b). >>>> Starting back demodulation with: 4188 (4187) EQUAL(f(g(a),f(f(a,e),d)),d). >>>> Starting back demodulation with: 4190 (4189) EQUAL(f(f(f(a,e),x),g(x)),a). >> back demodulating: 2838 (2837) EQUAL(f(f(f(a,e),h),g(h)),a). >> back demodulating: 2837 (1071,526) EQUAL(f(f(f(a,e),h),g(h)),a). >>>> Starting back demodulation with: 4192 (4191) EQUAL(f(f(f(a,e),g(x)),x),a). >>>> Starting back demodulation with: 4194 (4193) EQUAL(f(g(a),f(f(a,e),a)),a). new given clause: 4152 (4,1900) EQUAL(f(a,g(f(a,e))),e). ** KEPT: 4196 (483,4152) EQUAL(f(a,f(e,g(f(a,e)))),e). ---> New Demodulator: 4197 (4196) EQUAL(f(a,f(e,g(f(a,e)))),e). >>>> Starting back demodulation with: 4197 (4196) EQUAL(f(a,f(e,g(f(a,e)))),e). ** KEPT: 4198 (4152,526,14) EQUAL(f(e,f(a,e)),a). ---> New Demodulator: 4199 (4198) EQUAL(f(e,f(a,e)),a). ** KEPT: 4200 (4152,5) EQUAL(f(f(x,a),g(f(a,e))),f(x,e)). ** KEPT: 4201 (4152,5) EQUAL(f(a,f(g(f(a,e)),x)),f(e,x)). >>>> Starting back demodulation with: 4199 (4198) EQUAL(f(e,f(a,e)),a). >> back demodulating: 3631 (5,1466) EQUAL(f(f(e,f(a,e)),b),c). >> back demodulating: 3632 (3631) EQUAL(f(f(e,f(a,e)),b),c). new given clause: 4198 (4152,526,14) EQUAL(f(e,f(a,e)),a). ** KEPT: 4202 (4,4198) EQUAL(f(f(x,g(x)),f(a,e)),a). ---> New Demodulator: 4203 (4202) EQUAL(f(f(x,g(x)),f(a,e)),a). ** KEPT: 4204 (3,4198) EQUAL(f(f(g(x),x),f(a,e)),a). ---> New Demodulator: 4205 (4204) EQUAL(f(f(g(x),x),f(a,e)),a). ** KEPT: 4206 (5,4198) EQUAL(f(f(e,a),e),a). ---> New Demodulator: 4207 (4206) EQUAL(f(f(e,a),e),a). >>>> Starting back demodulation with: 4203 (4202) EQUAL(f(f(x,g(x)),f(a,e)),a). >>>> Starting back demodulation with: 4205 (4204) EQUAL(f(f(g(x),x),f(a,e)),a). >>>> Starting back demodulation with: 4207 (4206) EQUAL(f(f(e,a),e),a). >> back demodulating: 1466 (169,239) EQUAL(f(f(f(e,a),e),b),c). >> back demodulating: 1467 (1466) EQUAL(f(f(f(e,a),e),b),c). >> back demodulating: 2038 (566,1964,2008) EQUAL(f(f(f(e,a),e),g(a)),e). >> back demodulating: 2039 (2038) EQUAL(f(f(f(e,a),e),g(a)),e). >> back demodulating: 2040 (566,1946,2008) EQUAL(f(f(f(e,a),e),e),a). >> back demodulating: 2041 (2040) EQUAL(f(f(f(e,a),e),e),a). >> back demodulating: 2042 (566,1495,2008) EQUAL(f(g(f(f(e,a),e)),c),b). >> back demodulating: 2043 (2042) EQUAL(f(g(f(f(e,a),e)),c),b). >> back demodulating: 3633 (1444,1466) EQUAL(f(f(f(e,a),e),f(e,b)),c). >> back demodulating: 3634 (3633) EQUAL(f(f(f(e,a),e),f(e,b)),c). >> back demodulating: 3635 (1466,5) EQUAL(f(f(x,f(f(e,a),e)),b),f(x,c)). >> back demodulating: 3636 (1466,5) EQUAL(f(f(f(e,a),e),f(b,x)),f(c,x)). >> back demodulating: 3675 (1529,1466,3668) EQUAL(f(f(f(e,a),e),f(b,e)),c). >> back demodulating: 3676 (3675) EQUAL(f(f(f(e,a),e),f(b,e)),c). ** KEPT: 4208 (4198,1581) EQUAL(f(b,f(a,e)),f(b,a)). ** KEPT: 4209 (4198,483) EQUAL(f(a,f(a,e)),f(a,a)). ** KEPT: 4210 (4198,92) EQUAL(f(d,f(a,e)),f(d,a)). ** KEPT: 4211 (4198,5) EQUAL(f(f(x,e),f(a,e)),f(x,a)). ** KEPT: 4212 (4198,5) EQUAL(f(e,f(f(a,e),x)),f(a,x)). new given clause: 4206 (5,4198) EQUAL(f(f(e,a),e),a). ** KEPT: 4213 (4206,1071) EQUAL(f(f(e,a),h),f(a,h)). ** KEPT: 4214 (4206,5) EQUAL(f(f(x,f(e,a)),e),f(x,a)). new given clause: 1944 (483,1924) EQUAL(f(a,f(e,f(e,e))),a). ** KEPT: 4215 (4,1944) EQUAL(f(a,f(f(x,g(x)),f(e,e))),a). ---> New Demodulator: 4216 (4215) EQUAL(f(a,f(f(x,g(x)),f(e,e))),a). ** KEPT: 4217 (3,1944) EQUAL(f(a,f(f(g(x),x),f(e,e))),a). ---> New Demodulator: 4218 (4217) EQUAL(f(a,f(f(g(x),x),f(e,e))),a). ** KEPT: 4219 (4,1944) EQUAL(f(a,f(e,f(f(x,g(x)),e))),a). ---> New Demodulator: 4220 (4219) EQUAL(f(a,f(e,f(f(x,g(x)),e))),a). ** KEPT: 4221 (3,1944) EQUAL(f(a,f(e,f(f(g(x),x),e))),a). ---> New Demodulator: 4222 (4221) EQUAL(f(a,f(e,f(f(g(x),x),e))),a). ** KEPT: 4223 (4,1944) EQUAL(f(a,f(e,f(e,f(x,g(x))))),a). ---> New Demodulator: 4224 (4223) EQUAL(f(a,f(e,f(e,f(x,g(x))))),a). ** KEPT: 4225 (3,1944) EQUAL(f(a,f(e,f(e,f(g(x),x)))),a). ---> New Demodulator: 4226 (4225) EQUAL(f(a,f(e,f(e,f(g(x),x)))),a). ** KEPT: 4227 (5,1944) EQUAL(f(a,f(f(e,e),e)),a). ---> New Demodulator: 4228 (4227) EQUAL(f(a,f(f(e,e),e)),a). ** KEPT: 4229 (1900,1944) EQUAL(f(f(a,e),f(e,f(e,e))),a). ---> New Demodulator: 4230 (4229) EQUAL(f(f(a,e),f(e,f(e,e))),a). ** KEPT: 4231 (483,1944) EQUAL(f(a,f(e,f(e,f(e,e)))),a). ---> New Demodulator: 4232 (4231) EQUAL(f(a,f(e,f(e,f(e,e)))),a). >>>> Starting back demodulation with: 4216 (4215) EQUAL(f(a,f(f(x,g(x)),f(e,e))),a). >>>> Starting back demodulation with: 4218 (4217) EQUAL(f(a,f(f(g(x),x),f(e,e))),a). >>>> Starting back demodulation with: 4220 (4219) EQUAL(f(a,f(e,f(f(x,g(x)),e))),a). >>>> Starting back demodulation with: 4222 (4221) EQUAL(f(a,f(e,f(f(g(x),x),e))),a). >>>> Starting back demodulation with: 4224 (4223) EQUAL(f(a,f(e,f(e,f(x,g(x))))),a). >>>> Starting back demodulation with: 4226 (4225) EQUAL(f(a,f(e,f(e,f(g(x),x)))),a). >>>> Starting back demodulation with: 4228 (4227) EQUAL(f(a,f(f(e,e),e)),a). >>>> Starting back demodulation with: 4230 (4229) EQUAL(f(f(a,e),f(e,f(e,e))),a). >>>> Starting back demodulation with: 4232 (4231) EQUAL(f(a,f(e,f(e,f(e,e)))),a). ** KEPT: 4233 (1944,526) EQUAL(f(a,g(f(e,f(e,e)))),a). ---> New Demodulator: 4234 (4233) EQUAL(f(a,g(f(e,f(e,e)))),a). ** KEPT: 4235 (1944,5) EQUAL(f(f(x,a),f(e,f(e,e))),f(x,a)). ** KEPT: 4236 (1944,5) EQUAL(f(a,f(f(e,f(e,e)),x)),f(a,x)). >>>> Starting back demodulation with: 4234 (4233) EQUAL(f(a,g(f(e,f(e,e)))),a). new given clause: 1966 (1922,526) EQUAL(f(e,g(f(e,g(a)))),a). ** KEPT: 4237 (4,1966) EQUAL(f(f(x,g(x)),g(f(e,g(a)))),a). ---> New Demodulator: 4238 (4237) EQUAL(f(f(x,g(x)),g(f(e,g(a)))),a). ** KEPT: 4239 (3,1966) EQUAL(f(f(g(x),x),g(f(e,g(a)))),a). ---> New Demodulator: 4240 (4239) EQUAL(f(f(g(x),x),g(f(e,g(a)))),a). ** KEPT: 4241 (4,1966) EQUAL(f(e,g(f(f(x,g(x)),g(a)))),a). ---> New Demodulator: 4242 (4241) EQUAL(f(e,g(f(f(x,g(x)),g(a)))),a). ** KEPT: 4243 (3,1966) EQUAL(f(e,g(f(f(g(x),x),g(a)))),a). ---> New Demodulator: 4244 (4243) EQUAL(f(e,g(f(f(g(x),x),g(a)))),a). ** KEPT: 4245 (1,1966) EQUAL(g(f(e,g(a))),a). ---> New Demodulator: 4246 (4245) EQUAL(g(f(e,g(a))),a). >>>> Starting back demodulation with: 4238 (4237) EQUAL(f(f(x,g(x)),g(f(e,g(a)))),a). >>>> Starting back demodulation with: 4240 (4239) EQUAL(f(f(g(x),x),g(f(e,g(a)))),a). >>>> Starting back demodulation with: 4242 (4241) EQUAL(f(e,g(f(f(x,g(x)),g(a)))),a). >>>> Starting back demodulation with: 4244 (4243) EQUAL(f(e,g(f(f(g(x),x),g(a)))),a). >>>> Starting back demodulation with: 4246 (4245) EQUAL(g(f(e,g(a))),a). >> back demodulating: 1966 (1922,526) EQUAL(f(e,g(f(e,g(a)))),a). >> back demodulating: 1967 (1966) EQUAL(f(e,g(f(e,g(a)))),a). >> back demodulating: 4237 (4,1966) EQUAL(f(f(x,g(x)),g(f(e,g(a)))),a). >> back demodulating: 4238 (4237) EQUAL(f(f(x,g(x)),g(f(e,g(a)))),a). >> back demodulating: 4239 (3,1966) EQUAL(f(f(g(x),x),g(f(e,g(a)))),a). >> back demodulating: 4240 (4239) EQUAL(f(f(g(x),x),g(f(e,g(a)))),a). ** KEPT: 4247 (1966,4152,4246) EQUAL(f(f(e,a),g(f(a,e))),e). ---> New Demodulator: 4248 (4247) EQUAL(f(f(e,a),g(f(a,e))),e). ** KEPT: 4249 (1966,3275,4246) EQUAL(f(f(d,g(c)),f(e,a)),h). ---> New Demodulator: 4250 (4249) EQUAL(f(f(d,g(c)),f(e,a)),h). ** KEPT: 4251 (1966,2120,4246) EQUAL(f(x,f(g(x),f(e,a))),a). ---> New Demodulator: 4252 (4251) EQUAL(f(x,f(g(x),f(e,a))),a). ** KEPT: 4253 (1966,2011,4246) EQUAL(f(f(g(x),x),f(e,a)),a). ---> New Demodulator: 4254 (4253) EQUAL(f(f(g(x),x),f(e,a)),a). ** KEPT: 4255 (1966,2009,4246) EQUAL(f(f(x,g(x)),f(e,a)),a). ---> New Demodulator: 4256 (4255) EQUAL(f(f(x,g(x)),f(e,a)),a). ** KEPT: 4257 (1966,1944,4246) EQUAL(f(f(e,a),f(e,f(e,e))),a). ---> New Demodulator: 4258 (4257) EQUAL(f(f(e,a),f(e,f(e,e))),a). ** KEPT: 4259 (1966,1900,4246) EQUAL(f(f(a,e),x),f(f(e,a),x)). ** KEPT: 4260 (1966,1895,4246) EQUAL(f(a,f(h,e)),f(f(e,a),h)). ** KEPT: 4261 (1966,1895,4246) EQUAL(f(f(e,a),f(h,e)),f(a,h)). ** KEPT: 4262 (1966,1231,4246) EQUAL(f(g(f(a,g(d))),f(e,a)),d). ---> New Demodulator: 4263 (4262) EQUAL(f(g(f(a,g(d))),f(e,a)),d). ** KEPT: 4264 (1966,1165,4246) EQUAL(f(g(f(a,g(h))),f(e,a)),h). ---> New Demodulator: 4265 (4264) EQUAL(f(g(f(a,g(h))),f(e,a)),h). ** KEPT: 4266 (1966,1165,4246) EQUAL(f(g(f(f(e,a),g(h))),a),h). ---> New Demodulator: 4267 (4266) EQUAL(f(g(f(f(e,a),g(h))),a),h). ** KEPT: 4268 (1966,1231,4246) EQUAL(f(g(f(f(e,a),g(d))),a),d). ---> New Demodulator: 4269 (4268) EQUAL(f(g(f(f(e,a),g(d))),a),d). ** KEPT: 4270 (1966,1680,4246) EQUAL(g(f(g(f(a,b)),f(e,a))),b). ---> New Demodulator: 4271 (4270) EQUAL(g(f(g(f(a,b)),f(e,a))),b). ** KEPT: 4272 (1966,4206,4246) EQUAL(f(f(e,f(e,a)),e),a). ---> New Demodulator: 4273 (4272) EQUAL(f(f(e,f(e,a)),e),a). ** KEPT: 4274 (1966,1434,4246) EQUAL(f(f(e,f(e,f(e,a))),b),c). ---> New Demodulator: 4275 (4274) EQUAL(f(f(e,f(e,f(e,a))),b),c). ** KEPT: 4276 (1966,2094,4246) EQUAL(f(c,g(f(e,f(e,a)))),d). ---> New Demodulator: 4277 (4276) EQUAL(f(c,g(f(e,f(e,a)))),d). ** KEPT: 4278 (1966,3195,4246) EQUAL(f(d,f(g(c),f(e,a))),h). ---> New Demodulator: 4279 (4278) EQUAL(f(d,f(g(c),f(e,a))),h). ** KEPT: 4280 (1966,2126,4246) EQUAL(f(g(x),f(x,f(e,a))),a). ---> New Demodulator: 4281 (4280) EQUAL(f(g(x),f(x,f(e,a))),a). ** KEPT: 4282 (1966,3215,4246) EQUAL(f(f(h,g(f(e,a))),c),d). ---> New Demodulator: 4283 (4282) EQUAL(f(f(h,g(f(e,a))),c),d). ** KEPT: 4284 (1966,1791,4246) EQUAL(f(f(g(h),c),g(f(e,a))),b). ---> New Demodulator: 4285 (4284) EQUAL(f(f(g(h),c),g(f(e,a))),b). ** KEPT: 4286 (1966,1249,4246) EQUAL(f(d,g(f(g(f(e,a)),d))),a). ---> New Demodulator: 4287 (4286) EQUAL(f(d,g(f(g(f(e,a)),d))),a). ** KEPT: 4288 (1966,1189,4246) EQUAL(f(h,g(f(g(f(e,a)),h))),a). ---> New Demodulator: 4289 (4288) EQUAL(f(h,g(f(g(f(e,a)),h))),a). ** KEPT: 4290 (1966,997,4246) EQUAL(f(c,f(g(f(e,a)),g(h))),k). ---> New Demodulator: 4291 (4290) EQUAL(f(c,f(g(f(e,a)),g(h))),k). ** KEPT: 4292 (1966,660,4246) EQUAL(f(c,f(g(f(e,a)),g(b))),h). ---> New Demodulator: 4293 (4292) EQUAL(f(c,f(g(f(e,a)),g(b))),h). ** KEPT: 4294 (1966,574,4246) EQUAL(f(b,g(f(g(f(e,a)),b))),a). ---> New Demodulator: 4295 (4294) EQUAL(f(b,g(f(g(f(e,a)),b))),a). ** KEPT: 4296 (1966,580,4246) EQUAL(f(d,g(f(b,g(f(e,a))))),a). ---> New Demodulator: 4297 (4296) EQUAL(f(d,g(f(b,g(f(e,a))))),a). >>>> Starting back demodulation with: 4248 (4247) EQUAL(f(f(e,a),g(f(a,e))),e). >>>> Starting back demodulation with: 4250 (4249) EQUAL(f(f(d,g(c)),f(e,a)),h). >>>> Starting back demodulation with: 4252 (4251) EQUAL(f(x,f(g(x),f(e,a))),a). >>>> Starting back demodulation with: 4254 (4253) EQUAL(f(f(g(x),x),f(e,a)),a). >> back demodulating: 3546 (3,1434) EQUAL(f(f(f(g(x),x),f(e,a)),b),c). >> back demodulating: 3547 (3546) EQUAL(f(f(f(g(x),x),f(e,a)),b),c). >>>> Starting back demodulation with: 4256 (4255) EQUAL(f(f(x,g(x)),f(e,a)),a). >> back demodulating: 3544 (4,1434) EQUAL(f(f(f(x,g(x)),f(e,a)),b),c). >> back demodulating: 3545 (3544) EQUAL(f(f(f(x,g(x)),f(e,a)),b),c). >>>> Starting back demodulation with: 4258 (4257) EQUAL(f(f(e,a),f(e,f(e,e))),a). >>>> Starting back demodulation with: 4263 (4262) EQUAL(f(g(f(a,g(d))),f(e,a)),d). >>>> Starting back demodulation with: 4265 (4264) EQUAL(f(g(f(a,g(h))),f(e,a)),h). >>>> Starting back demodulation with: 4267 (4266) EQUAL(f(g(f(f(e,a),g(h))),a),h). >>>> Starting back demodulation with: 4269 (4268) EQUAL(f(g(f(f(e,a),g(d))),a),d). >>>> Starting back demodulation with: 4271 (4270) EQUAL(g(f(g(f(a,b)),f(e,a))),b). >>>> Starting back demodulation with: 4273 (4272) EQUAL(f(f(e,f(e,a)),e),a). >> back demodulating: 3548 (239,1434) EQUAL(f(f(f(e,f(e,a)),e),b),c). >> back demodulating: 3549 (3548) EQUAL(f(f(f(e,f(e,a)),e),b),c). >>>> Starting back demodulation with: 4275 (4274) EQUAL(f(f(e,f(e,f(e,a))),b),c). >>>> Starting back demodulation with: 4277 (4276) EQUAL(f(c,g(f(e,f(e,a)))),d). >>>> Starting back demodulation with: 4279 (4278) EQUAL(f(d,f(g(c),f(e,a))),h). >>>> Starting back demodulation with: 4281 (4280) EQUAL(f(g(x),f(x,f(e,a))),a). >> back demodulating: 3818 (3817) EQUAL(f(g(b),f(b,f(e,a))),a). >> back demodulating: 3817 (1581,2126) EQUAL(f(g(b),f(b,f(e,a))),a). >> back demodulating: 2169 (2168) EQUAL(f(g(d),f(d,f(e,a))),a). >> back demodulating: 2168 (92,2126) EQUAL(f(g(d),f(d,f(e,a))),a). >> back demodulating: 2159 (2158) EQUAL(f(g(a),f(a,f(e,a))),a). >> back demodulating: 2158 (483,2126) EQUAL(f(g(a),f(a,f(e,a))),a). >>>> Starting back demodulation with: 4283 (4282) EQUAL(f(f(h,g(f(e,a))),c),d). >>>> Starting back demodulation with: 4285 (4284) EQUAL(f(f(g(h),c),g(f(e,a))),b). >>>> Starting back demodulation with: 4287 (4286) EQUAL(f(d,g(f(g(f(e,a)),d))),a). >>>> Starting back demodulation with: 4289 (4288) EQUAL(f(h,g(f(g(f(e,a)),h))),a). >>>> Starting back demodulation with: 4291 (4290) EQUAL(f(c,f(g(f(e,a)),g(h))),k). >>>> Starting back demodulation with: 4293 (4292) EQUAL(f(c,f(g(f(e,a)),g(b))),h). >>>> Starting back demodulation with: 4295 (4294) EQUAL(f(b,g(f(g(f(e,a)),b))),a). >>>> Starting back demodulation with: 4297 (4296) EQUAL(f(d,g(f(b,g(f(e,a))))),a). new given clause: 4245 (1,1966) EQUAL(g(f(e,g(a))),a). ** KEPT: 4298 (4,4245) EQUAL(g(f(f(x,g(x)),g(a))),a). ---> New Demodulator: 4299 (4298) EQUAL(g(f(f(x,g(x)),g(a))),a). ** KEPT: 4300 (3,4245) EQUAL(g(f(f(g(x),x),g(a))),a). ---> New Demodulator: 4301 (4300) EQUAL(g(f(f(g(x),x),g(a))),a). >>>> Starting back demodulation with: 4299 (4298) EQUAL(g(f(f(x,g(x)),g(a))),a). >> back demodulating: 4241 (4,1966) EQUAL(f(e,g(f(f(x,g(x)),g(a)))),a). >> back demodulating: 4242 (4241) EQUAL(f(e,g(f(f(x,g(x)),g(a)))),a). >>>> Starting back demodulation with: 4301 (4300) EQUAL(g(f(f(g(x),x),g(a))),a). >> back demodulating: 4243 (3,1966) EQUAL(f(e,g(f(f(g(x),x),g(a)))),a). >> back demodulating: 4244 (4243) EQUAL(f(e,g(f(f(g(x),x),g(a)))),a). ** KEPT: 4302 (4245,3118) EQUAL(f(f(h,f(e,g(a))),a),h). ---> New Demodulator: 4303 (4302) EQUAL(f(f(h,f(e,g(a))),a),h). ** KEPT: 4304 (4245,2126) EQUAL(f(a,f(f(e,g(a)),a)),a). ---> New Demodulator: 4305 (4304) EQUAL(f(a,f(f(e,g(a)),a)),a). ** KEPT: 4306 (4245,2120) EQUAL(f(f(e,g(a)),f(a,a)),a). ---> New Demodulator: 4307 (4306) EQUAL(f(f(e,g(a)),f(a,a)),a). ** KEPT: 4308 (4245,3126) EQUAL(f(f(h,a),f(e,g(a))),h). ---> New Demodulator: 4309 (4308) EQUAL(f(f(h,a),f(e,g(a))),h). ** KEPT: 4310 (4245,1197) EQUAL(f(f(e,g(a)),f(a,d)),d). ---> New Demodulator: 4311 (4310) EQUAL(f(f(e,g(a)),f(a,d)),d). ** KEPT: 4312 (4245,1175) EQUAL(f(a,f(f(e,g(a)),d)),d). ---> New Demodulator: 4313 (4312) EQUAL(f(a,f(f(e,g(a)),d)),d). ** KEPT: 4314 (4245,1133) EQUAL(f(f(e,g(a)),f(a,h)),h). ---> New Demodulator: 4315 (4314) EQUAL(f(f(e,g(a)),f(a,h)),h). ** KEPT: 4316 (4245,1125) EQUAL(f(a,f(f(e,g(a)),h)),h). ---> New Demodulator: 4317 (4316) EQUAL(f(a,f(f(e,g(a)),h)),h). ** KEPT: 4318 (4245,1725) EQUAL(f(f(b,a),f(e,g(a))),b). ---> New Demodulator: 4319 (4318) EQUAL(f(f(b,a),f(e,g(a))),b). ** KEPT: 4320 (4245,520) EQUAL(f(f(a,a),f(e,g(a))),a). ---> New Demodulator: 4321 (4320) EQUAL(f(f(a,a),f(e,g(a))),a). ** KEPT: 4322 (4245,266) EQUAL(f(f(e,g(a)),f(a,b)),b). ---> New Demodulator: 4323 (4322) EQUAL(f(f(e,g(a)),f(a,b)),b). ** KEPT: 4324 (4245,260) EQUAL(f(a,f(f(e,g(a)),b)),b). ---> New Demodulator: 4325 (4324) EQUAL(f(a,f(f(e,g(a)),b)),b). ** KEPT: 4326 (4245,105) EQUAL(f(f(d,a),f(e,g(a))),d). ---> New Demodulator: 4327 (4326) EQUAL(f(f(d,a),f(e,g(a))),d). ** KEPT: 4328 (4245,2985) EQUAL(f(h,f(f(e,g(a)),a)),h). ---> New Demodulator: 4329 (4328) EQUAL(f(h,f(f(e,g(a)),a)),h). ** KEPT: 4330 (4245,2009) EQUAL(f(f(f(e,g(a)),a),a),a). ---> New Demodulator: 4331 (4330) EQUAL(f(f(f(e,g(a)),a),a),a). ** KEPT: 4332 (4245,1577) EQUAL(f(b,f(f(e,g(a)),a)),b). ---> New Demodulator: 4333 (4332) EQUAL(f(b,f(f(e,g(a)),a)),b). ** KEPT: 4334 (4245,1135) EQUAL(f(f(f(e,g(a)),a),d),d). ---> New Demodulator: 4335 (4334) EQUAL(f(f(f(e,g(a)),a),d),d). ** KEPT: 4336 (4245,1067) EQUAL(f(f(f(e,g(a)),a),h),h). ---> New Demodulator: 4337 (4336) EQUAL(f(f(f(e,g(a)),a),h),h). ** KEPT: 4338 (4245,235) EQUAL(f(f(f(e,g(a)),a),b),b). ---> New Demodulator: 4339 (4338) EQUAL(f(f(f(e,g(a)),a),b),b). ** KEPT: 4340 (4245,1741) EQUAL(f(b,g(f(f(e,g(a)),a))),b). ---> New Demodulator: 4341 (4340) EQUAL(f(b,g(f(f(e,g(a)),a))),b). ** KEPT: 4342 (4245,1215) EQUAL(f(g(f(f(e,g(a)),a)),d),d). ---> New Demodulator: 4343 (4342) EQUAL(f(g(f(f(e,g(a)),a)),d),d). ** KEPT: 4344 (4245,1149) EQUAL(f(g(f(f(e,g(a)),a)),h),h). ---> New Demodulator: 4345 (4344) EQUAL(f(g(f(f(e,g(a)),a)),h),h). ** KEPT: 4346 (4245,562) EQUAL(f(a,g(f(f(e,g(a)),a))),a). ---> New Demodulator: 4347 (4346) EQUAL(f(a,g(f(f(e,g(a)),a))),a). ** KEPT: 4348 (4245,280) EQUAL(f(g(f(f(e,g(a)),a)),b),b). ---> New Demodulator: 4349 (4348) EQUAL(f(g(f(f(e,g(a)),a)),b),b). ** KEPT: 4350 (4245,135) EQUAL(f(d,g(f(f(e,g(a)),a))),d). ---> New Demodulator: 4351 (4350) EQUAL(f(d,g(f(f(e,g(a)),a))),d). ** KEPT: 4352 (4245,84) EQUAL(f(d,f(f(e,g(a)),a)),d). ---> New Demodulator: 4353 (4352) EQUAL(f(d,f(f(e,g(a)),a)),d). ** KEPT: 4354 (4245,36) -EQUAL(f(f(e,g(a)),a),f(k,g(b))). ** KEPT: 4355 (4245,4) EQUAL(f(f(e,g(a)),a),e). ---> New Demodulator: 4356 (4355) EQUAL(f(f(e,g(a)),a),e). >>>> Starting back demodulation with: 4303 (4302) EQUAL(f(f(h,f(e,g(a))),a),h). >>>> Starting back demodulation with: 4305 (4304) EQUAL(f(a,f(f(e,g(a)),a)),a). >>>> Starting back demodulation with: 4307 (4306) EQUAL(f(f(e,g(a)),f(a,a)),a). >>>> Starting back demodulation with: 4309 (4308) EQUAL(f(f(h,a),f(e,g(a))),h). >>>> Starting back demodulation with: 4311 (4310) EQUAL(f(f(e,g(a)),f(a,d)),d). >>>> Starting back demodulation with: 4313 (4312) EQUAL(f(a,f(f(e,g(a)),d)),d). >>>> Starting back demodulation with: 4315 (4314) EQUAL(f(f(e,g(a)),f(a,h)),h). >>>> Starting back demodulation with: 4317 (4316) EQUAL(f(a,f(f(e,g(a)),h)),h). >>>> Starting back demodulation with: 4319 (4318) EQUAL(f(f(b,a),f(e,g(a))),b). >>>> Starting back demodulation with: 4321 (4320) EQUAL(f(f(a,a),f(e,g(a))),a). >>>> Starting back demodulation with: 4323 (4322) EQUAL(f(f(e,g(a)),f(a,b)),b). >>>> Starting back demodulation with: 4325 (4324) EQUAL(f(a,f(f(e,g(a)),b)),b). >>>> Starting back demodulation with: 4327 (4326) EQUAL(f(f(d,a),f(e,g(a))),d). >>>> Starting back demodulation with: 4329 (4328) EQUAL(f(h,f(f(e,g(a)),a)),h). >>>> Starting back demodulation with: 4331 (4330) EQUAL(f(f(f(e,g(a)),a),a),a). >>>> Starting back demodulation with: 4333 (4332) EQUAL(f(b,f(f(e,g(a)),a)),b). >>>> Starting back demodulation with: 4335 (4334) EQUAL(f(f(f(e,g(a)),a),d),d). >>>> Starting back demodulation with: 4337 (4336) EQUAL(f(f(f(e,g(a)),a),h),h). >>>> Starting back demodulation with: 4339 (4338) EQUAL(f(f(f(e,g(a)),a),b),b). >>>> Starting back demodulation with: 4341 (4340) EQUAL(f(b,g(f(f(e,g(a)),a))),b). >>>> Starting back demodulation with: 4343 (4342) EQUAL(f(g(f(f(e,g(a)),a)),d),d). >>>> Starting back demodulation with: 4345 (4344) EQUAL(f(g(f(f(e,g(a)),a)),h),h). >>>> Starting back demodulation with: 4347 (4346) EQUAL(f(a,g(f(f(e,g(a)),a))),a). >>>> Starting back demodulation with: 4349 (4348) EQUAL(f(g(f(f(e,g(a)),a)),b),b). >>>> Starting back demodulation with: 4351 (4350) EQUAL(f(d,g(f(f(e,g(a)),a))),d). >>>> Starting back demodulation with: 4353 (4352) EQUAL(f(d,f(f(e,g(a)),a)),d). >>>> Starting back demodulation with: 4356 (4355) EQUAL(f(f(e,g(a)),a),e). >> back demodulating: 4304 (4245,2126) EQUAL(f(a,f(f(e,g(a)),a)),a). >> back demodulating: 4305 (4304) EQUAL(f(a,f(f(e,g(a)),a)),a). >> back demodulating: 4328 (4245,2985) EQUAL(f(h,f(f(e,g(a)),a)),h). >> back demodulating: 4329 (4328) EQUAL(f(h,f(f(e,g(a)),a)),h). >> back demodulating: 4330 (4245,2009) EQUAL(f(f(f(e,g(a)),a),a),a). >> back demodulating: 4331 (4330) EQUAL(f(f(f(e,g(a)),a),a),a). >> back demodulating: 4332 (4245,1577) EQUAL(f(b,f(f(e,g(a)),a)),b). >> back demodulating: 4333 (4332) EQUAL(f(b,f(f(e,g(a)),a)),b). >> back demodulating: 4334 (4245,1135) EQUAL(f(f(f(e,g(a)),a),d),d). >> back demodulating: 4335 (4334) EQUAL(f(f(f(e,g(a)),a),d),d). >> back demodulating: 4336 (4245,1067) EQUAL(f(f(f(e,g(a)),a),h),h). >> back demodulating: 4337 (4336) EQUAL(f(f(f(e,g(a)),a),h),h). >> back demodulating: 4338 (4245,235) EQUAL(f(f(f(e,g(a)),a),b),b). >> back demodulating: 4339 (4338) EQUAL(f(f(f(e,g(a)),a),b),b). >> back demodulating: 4340 (4245,1741) EQUAL(f(b,g(f(f(e,g(a)),a))),b). >> back demodulating: 4341 (4340) EQUAL(f(b,g(f(f(e,g(a)),a))),b). >> back demodulating: 4342 (4245,1215) EQUAL(f(g(f(f(e,g(a)),a)),d),d). >> back demodulating: 4343 (4342) EQUAL(f(g(f(f(e,g(a)),a)),d),d). >> back demodulating: 4344 (4245,1149) EQUAL(f(g(f(f(e,g(a)),a)),h),h). >> back demodulating: 4345 (4344) EQUAL(f(g(f(f(e,g(a)),a)),h),h). >> back demodulating: 4346 (4245,562) EQUAL(f(a,g(f(f(e,g(a)),a))),a). >> back demodulating: 4347 (4346) EQUAL(f(a,g(f(f(e,g(a)),a))),a). >> back demodulating: 4348 (4245,280) EQUAL(f(g(f(f(e,g(a)),a)),b),b). >> back demodulating: 4349 (4348) EQUAL(f(g(f(f(e,g(a)),a)),b),b). >> back demodulating: 4350 (4245,135) EQUAL(f(d,g(f(f(e,g(a)),a))),d). >> back demodulating: 4351 (4350) EQUAL(f(d,g(f(f(e,g(a)),a))),d). >> back demodulating: 4352 (4245,84) EQUAL(f(d,f(f(e,g(a)),a)),d). >> back demodulating: 4353 (4352) EQUAL(f(d,f(f(e,g(a)),a)),d). >> back demodulating: 4354 (4245,36) -EQUAL(f(f(e,g(a)),a),f(k,g(b))). new given clause: 4355 (4245,4) EQUAL(f(f(e,g(a)),a),e). ** KEPT: 4357 (4,4355) EQUAL(f(f(f(x,g(x)),g(a)),a),e). ---> New Demodulator: 4358 (4357) EQUAL(f(f(f(x,g(x)),g(a)),a),e). ** KEPT: 4359 (3,4355) EQUAL(f(f(f(g(x),x),g(a)),a),e). ---> New Demodulator: 4360 (4359) EQUAL(f(f(f(g(x),x),g(a)),a),e). ** KEPT: 4361 (5,4355) EQUAL(f(e,f(g(a),a)),e). ---> New Demodulator: 4362 (4361) EQUAL(f(e,f(g(a),a)),e). >>>> Starting back demodulation with: 4358 (4357) EQUAL(f(f(f(x,g(x)),g(a)),a),e). >>>> Starting back demodulation with: 4360 (4359) EQUAL(f(f(f(g(x),x),g(a)),a),e). >>>> Starting back demodulation with: 4362 (4361) EQUAL(f(e,f(g(a),a)),e). ** KEPT: 4363 (4355,5) EQUAL(f(f(x,f(e,g(a))),a),f(x,e)). ** KEPT: 4364 (4355,5) EQUAL(f(f(e,g(a)),f(a,x)),f(e,x)). new given clause: 4361 (5,4355) EQUAL(f(e,f(g(a),a)),e). ** KEPT: 4365 (4,4361) EQUAL(f(f(x,g(x)),f(g(a),a)),e). ---> New Demodulator: 4366 (4365) EQUAL(f(f(x,g(x)),f(g(a),a)),e). ** KEPT: 4367 (3,4361) EQUAL(f(f(g(x),x),f(g(a),a)),e). ---> New Demodulator: 4368 (4367) EQUAL(f(f(g(x),x),f(g(a),a)),e). >>>> Starting back demodulation with: 4366 (4365) EQUAL(f(f(x,g(x)),f(g(a),a)),e). >>>> Starting back demodulation with: 4368 (4367) EQUAL(f(f(g(x),x),f(g(a),a)),e). ** KEPT: 4369 (4361,5) EQUAL(f(f(x,e),f(g(a),a)),f(x,e)). ** KEPT: 4370 (4361,5) EQUAL(f(e,f(f(g(a),a),x)),f(e,x)). new given clause: 2013 (566,5,2008) EQUAL(f(f(x,e),a),f(x,a)). ** KEPT: 4371 (4206,2013) EQUAL(f(f(e,a),a),f(a,a)). ** KEPT: 4372 (3608,2013) EQUAL(f(f(e,b),a),f(b,a)). ** KEPT: 4373 (3163,2013) EQUAL(f(f(d,g(b)),a),f(h,a)). ** KEPT: 4374 (2397,2013) EQUAL(f(f(e,d),a),f(d,a)). ** KEPT: 4375 (1112,2013) EQUAL(f(f(e,h),a),f(h,a)). ** KEPT: 4376 (86,2013) EQUAL(f(f(c,g(a)),a),f(d,a)). ** KEPT: 4377 (5,2013) EQUAL(f(f(x,f(y,e)),a),f(f(x,y),a)). ** KEPT: 4378 (2013,2013) EQUAL(f(f(f(x,e),e),a),f(x,a)). ** KEPT: 4379 (5,2013) EQUAL(f(x,f(e,a)),f(x,a)). ** KEPT: 4380 (4355,2013) EQUAL(f(f(f(e,g(a)),e),a),e). ---> New Demodulator: 4381 (4380) EQUAL(f(f(f(e,g(a)),e),a),e). ** KEPT: 4382 (1581,2013) EQUAL(f(b,f(e,a)),f(f(b,e),a)). ** KEPT: 4383 (1231,2013) EQUAL(f(f(g(f(a,g(d))),e),a),d). ---> New Demodulator: 4384 (4383) EQUAL(f(f(g(f(a,g(d))),e),a),d). ** KEPT: 4385 (1165,2013) EQUAL(f(f(g(f(a,g(h))),e),a),h). ---> New Demodulator: 4386 (4385) EQUAL(f(f(g(f(a,g(h))),e),a),h). ** KEPT: 4387 (3275,2013) EQUAL(f(f(f(d,g(c)),e),a),h). ---> New Demodulator: 4388 (4387) EQUAL(f(f(f(d,g(c)),e),a),h). ** KEPT: 4389 (3126,2013) EQUAL(f(f(f(h,g(a)),e),a),h). ---> New Demodulator: 4390 (4389) EQUAL(f(f(f(h,g(a)),e),a),h). ** KEPT: 4391 (2011,2013) EQUAL(f(f(f(g(x),x),e),a),a). ---> New Demodulator: 4392 (4391) EQUAL(f(f(f(g(x),x),e),a),a). ** KEPT: 4393 (2009,2013) EQUAL(f(f(f(x,g(x)),e),a),a). ---> New Demodulator: 4394 (4393) EQUAL(f(f(f(x,g(x)),e),a),a). ** KEPT: 4395 (558,2013) EQUAL(f(f(g(f(a,g(b))),e),a),b). ---> New Demodulator: 4396 (4395) EQUAL(f(f(g(f(a,g(b))),e),a),b). ** KEPT: 4397 (1733,2013) EQUAL(f(f(f(b,g(c)),e),a),e). ---> New Demodulator: 4398 (4397) EQUAL(f(f(f(b,g(c)),e),a),e). ** KEPT: 4399 (1725,2013) EQUAL(f(f(f(b,g(a)),e),a),b). ---> New Demodulator: 4400 (4399) EQUAL(f(f(f(b,g(a)),e),a),b). ** KEPT: 4401 (105,2013) EQUAL(f(f(f(d,g(a)),e),a),d). ---> New Demodulator: 4402 (4401) EQUAL(f(f(f(d,g(a)),e),a),d). ** KEPT: 4403 (5,2013) EQUAL(f(f(f(x,y),e),a),f(x,f(y,a))). ** KEPT: 4404 (3,2013) EQUAL(f(f(g(a),e),a),e). ---> New Demodulator: 4405 (4404) EQUAL(f(f(g(a),e),a),e). ** KEPT: 4406 (1,2013) EQUAL(f(f(e,e),a),a). ---> New Demodulator: 4407 (4406) EQUAL(f(f(e,e),a),a). >>>> Starting back demodulation with: 4381 (4380) EQUAL(f(f(f(e,g(a)),e),a),e). >>>> Starting back demodulation with: 4384 (4383) EQUAL(f(f(g(f(a,g(d))),e),a),d). >>>> Starting back demodulation with: 4386 (4385) EQUAL(f(f(g(f(a,g(h))),e),a),h). >>>> Starting back demodulation with: 4388 (4387) EQUAL(f(f(f(d,g(c)),e),a),h). >>>> Starting back demodulation with: 4390 (4389) EQUAL(f(f(f(h,g(a)),e),a),h). >>>> Starting back demodulation with: 4392 (4391) EQUAL(f(f(f(g(x),x),e),a),a). >> back demodulating: 1428 (3,223) EQUAL(f(f(f(f(g(x),x),e),a),b),c). >> back demodulating: 1429 (1428) EQUAL(f(f(f(f(g(x),x),e),a),b),c). >>>> Starting back demodulation with: 4394 (4393) EQUAL(f(f(f(x,g(x)),e),a),a). >> back demodulating: 1426 (4,223) EQUAL(f(f(f(f(x,g(x)),e),a),b),c). >> back demodulating: 1427 (1426) EQUAL(f(f(f(f(x,g(x)),e),a),b),c). >>>> Starting back demodulation with: 4396 (4395) EQUAL(f(f(g(f(a,g(b))),e),a),b). >>>> Starting back demodulation with: 4398 (4397) EQUAL(f(f(f(b,g(c)),e),a),e). >>>> Starting back demodulation with: 4400 (4399) EQUAL(f(f(f(b,g(a)),e),a),b). >>>> Starting back demodulation with: 4402 (4401) EQUAL(f(f(f(d,g(a)),e),a),d). >>>> Starting back demodulation with: 4405 (4404) EQUAL(f(f(g(a),e),a),e). >> back demodulating: 356 (15,334) EQUAL(f(f(f(g(a),e),a),b),b). >> back demodulating: 357 (356) EQUAL(f(f(f(g(a),e),a),b),b). >>>> Starting back demodulation with: 4407 (4406) EQUAL(f(f(e,e),a),a). >> back demodulating: 223 (15,209) EQUAL(f(f(f(e,e),a),b),c). >> back demodulating: 224 (223) EQUAL(f(f(f(e,e),a),b),c). >> back demodulating: 1436 (223,260) EQUAL(f(g(f(f(e,e),a)),c),b). >> back demodulating: 1437 (1436) EQUAL(f(g(f(f(e,e),a)),c),b). >> back demodulating: 1438 (223,5) EQUAL(f(f(x,f(f(e,e),a)),b),f(x,c)). >> back demodulating: 1439 (223,5) EQUAL(f(f(f(e,e),a),f(b,x)),f(c,x)). >> back demodulating: 1445 (223,239) EQUAL(f(f(f(f(e,e),a),e),b),c). >> back demodulating: 1446 (1445) EQUAL(f(f(f(f(e,e),a),e),b),c). >> back demodulating: 1636 (284,223,1576) EQUAL(f(f(f(e,e),a),f(b,e)),c). >> back demodulating: 1637 (1636) EQUAL(f(f(f(e,e),a),f(b,e)),c). >> back demodulating: 3578 (223,1444) EQUAL(f(f(f(e,e),a),f(e,b)),c). >> back demodulating: 3579 (3578) EQUAL(f(f(f(e,e),a),f(e,b)),c). ** KEPT: 4408 (2013,2126) EQUAL(f(g(f(x,e)),f(x,a)),a). ---> New Demodulator: 4409 (4408) EQUAL(f(g(f(x,e)),f(x,a)),a). ** KEPT: 4410 (2013,15) EQUAL(f(f(x,a),b),f(f(x,e),c)). ** KEPT: 4411 (2013,5) EQUAL(f(f(x,f(y,e)),a),f(x,f(y,a))). ** KEPT: 4412 (2013,5) EQUAL(f(f(x,e),f(a,y)),f(f(x,a),y)). ** KEPT: 4413 (2013,1680) EQUAL(g(f(f(g(f(a,b)),e),a)),b). ---> New Demodulator: 4414 (4413) EQUAL(g(f(f(g(f(a,b)),e),a)),b). ** KEPT: 4415 (2013,2120) EQUAL(f(x,f(f(g(x),e),a)),a). ---> New Demodulator: 4416 (4415) EQUAL(f(x,f(f(g(x),e),a)),a). ** KEPT: 4417 (2013,3118) EQUAL(f(f(f(h,e),a),g(a)),h). ---> New Demodulator: 4418 (4417) EQUAL(f(f(f(h,e),a),g(a)),h). ** KEPT: 4419 (2013,3195) EQUAL(f(d,f(f(g(c),e),a)),h). ---> New Demodulator: 4420 (4419) EQUAL(f(d,f(f(g(c),e),a)),h). ** KEPT: 4421 (2013,1715) EQUAL(f(b,f(f(g(c),e),a)),e). ---> New Demodulator: 4422 (4421) EQUAL(f(b,f(f(g(c),e),a)),e). ** KEPT: 4423 (2013,1575) EQUAL(g(f(f(g(c),e),a)),b). ---> New Demodulator: 4424 (4423) EQUAL(g(f(f(g(c),e),a)),b). ** KEPT: 4425 (2013,2126) EQUAL(f(g(x),f(f(x,e),a)),a). ---> New Demodulator: 4426 (4425) EQUAL(f(g(x),f(f(x,e),a)),a). ** KEPT: 4427 (2013,15) EQUAL(f(f(f(x,e),a),b),f(x,c)). ** KEPT: 4428 (2013,5) EQUAL(f(x,f(f(y,e),a)),f(f(x,y),a)). ** KEPT: 4429 (2013,5) EQUAL(f(f(f(x,e),a),y),f(x,f(a,y))). >>>> Starting back demodulation with: 4409 (4408) EQUAL(f(g(f(x,e)),f(x,a)),a). >> back demodulating: 4179 (4178) EQUAL(f(g(f(a,e)),f(a,a)),a). >> back demodulating: 4178 (1900,2126) EQUAL(f(g(f(a,e)),f(a,a)),a). >> back demodulating: 4028 (4027) EQUAL(f(g(f(c,e)),f(c,a)),a). >> back demodulating: 4027 (1803,2126) EQUAL(f(g(f(c,e)),f(c,a)),a). >> back demodulating: 2368 (2367) EQUAL(f(g(f(d,e)),f(d,a)),a). >> back demodulating: 2367 (861,2126) EQUAL(f(g(f(d,e)),f(d,a)),a). 4410 back subsumes: 4172 (15,1900) EQUAL(f(f(a,a),b),f(f(a,e),c)). 4410 back subsumes: 4021 (15,1803) EQUAL(f(f(c,a),b),f(f(c,e),c)). 4410 back subsumes: 2361 (15,861) EQUAL(f(f(d,a),b),f(f(d,e),c)). >>>> Starting back demodulation with: 4414 (4413) EQUAL(g(f(f(g(f(a,b)),e),a)),b). >>>> Starting back demodulation with: 4416 (4415) EQUAL(f(x,f(f(g(x),e),a)),a). >> back demodulating: 3701 (3700) EQUAL(f(b,f(f(g(b),e),a)),a). >> back demodulating: 3700 (3667,2126) EQUAL(f(b,f(f(g(b),e),a)),a). >>>> Starting back demodulation with: 4418 (4417) EQUAL(f(f(f(h,e),a),g(a)),h). >>>> Starting back demodulation with: 4420 (4419) EQUAL(f(d,f(f(g(c),e),a)),h). >>>> Starting back demodulation with: 4422 (4421) EQUAL(f(b,f(f(g(c),e),a)),e). >>>> Starting back demodulation with: 4424 (4423) EQUAL(g(f(f(g(c),e),a)),b). >>>> Starting back demodulation with: 4426 (4425) EQUAL(f(g(x),f(f(x,e),a)),a). >> back demodulating: 4194 (4193) EQUAL(f(g(a),f(f(a,e),a)),a). >> back demodulating: 4193 (1900,2126) EQUAL(f(g(a),f(f(a,e),a)),a). >> back demodulating: 4032 (4031) EQUAL(f(g(c),f(f(c,e),a)),a). >> back demodulating: 4031 (1803,2126) EQUAL(f(g(c),f(f(c,e),a)),a). >> back demodulating: 2375 (2374) EQUAL(f(g(d),f(f(d,e),a)),a). >> back demodulating: 2374 (861,2126) EQUAL(f(g(d),f(f(d,e),a)),a). 4427 back subsumes: 4150 (15,1900) EQUAL(f(f(f(a,e),a),b),f(a,c)). 4427 back subsumes: 3994 (15,1803) EQUAL(f(f(f(c,e),a),b),f(c,c)). 4427 back subsumes: 2329 (15,861) EQUAL(f(f(f(d,e),a),b),f(d,c)). new given clause: 4406 (1,2013) EQUAL(f(f(e,e),a),a). ** KEPT: 4430 (4,4406) EQUAL(f(f(e,f(x,g(x))),a),a). ---> New Demodulator: 4431 (4430) EQUAL(f(f(e,f(x,g(x))),a),a). ** KEPT: 4432 (3,4406) EQUAL(f(f(e,f(g(x),x)),a),a). ---> New Demodulator: 4433 (4432) EQUAL(f(f(e,f(g(x),x)),a),a). ** KEPT: 4434 (2013,4406) EQUAL(f(f(f(e,e),e),a),a). ---> New Demodulator: 4435 (4434) EQUAL(f(f(f(e,e),e),a),a). ** KEPT: 4436 (5,4406) EQUAL(f(e,f(e,a)),a). ---> New Demodulator: 4437 (4436) EQUAL(f(e,f(e,a)),a). >>>> Starting back demodulation with: 4431 (4430) EQUAL(f(f(e,f(x,g(x))),a),a). >> back demodulating: 1430 (4,223) EQUAL(f(f(f(e,f(x,g(x))),a),b),c). >> back demodulating: 1431 (1430) EQUAL(f(f(f(e,f(x,g(x))),a),b),c). >>>> Starting back demodulation with: 4433 (4432) EQUAL(f(f(e,f(g(x),x)),a),a). >> back demodulating: 1432 (3,223) EQUAL(f(f(f(e,f(g(x),x)),a),b),c). >> back demodulating: 1433 (1432) EQUAL(f(f(f(e,f(g(x),x)),a),b),c). >>>> Starting back demodulation with: 4435 (4434) EQUAL(f(f(f(e,e),e),a),a). >>>> Starting back demodulation with: 4437 (4436) EQUAL(f(e,f(e,a)),a). >> back demodulating: 1434 (5,223) EQUAL(f(f(e,f(e,a)),b),c). >> back demodulating: 1435 (1434) EQUAL(f(f(e,f(e,a)),b),c). >> back demodulating: 2054 (566,286,2008) EQUAL(f(g(f(e,f(e,a))),c),b). >> back demodulating: 2055 (2054) EQUAL(f(g(f(e,f(e,a))),c),b). >> back demodulating: 4276 (1966,2094,4246) EQUAL(f(c,g(f(e,f(e,a)))),d). >> back demodulating: 4277 (4276) EQUAL(f(c,g(f(e,f(e,a)))),d). >> back demodulating: 3550 (1434,5) EQUAL(f(f(x,f(e,f(e,a))),b),f(x,c)). >> back demodulating: 3551 (1434,5) EQUAL(f(f(e,f(e,a)),f(b,x)),f(c,x)). >> back demodulating: 3562 (1434,1444) EQUAL(f(f(e,f(e,a)),f(e,b)),c). >> back demodulating: 3563 (3562) EQUAL(f(f(e,f(e,a)),f(e,b)),c). >> back demodulating: 3678 (1529,1434,3668) EQUAL(f(f(e,f(e,a)),f(b,e)),c). >> back demodulating: 3679 (3678) EQUAL(f(f(e,f(e,a)),f(b,e)),c). >> back demodulating: 4272 (1966,4206,4246) EQUAL(f(f(e,f(e,a)),e),a). >> back demodulating: 4273 (4272) EQUAL(f(f(e,f(e,a)),e),a). >> back demodulating: 4274 (1966,1434,4246) EQUAL(f(f(e,f(e,f(e,a))),b),c). >> back demodulating: 4275 (4274) EQUAL(f(f(e,f(e,f(e,a))),b),c). ** KEPT: 4438 (4406,2126) EQUAL(f(g(f(e,e)),a),a). ---> New Demodulator: 4439 (4438) EQUAL(f(g(f(e,e)),a),a). ** KEPT: 4440 (4406,5) EQUAL(f(f(x,f(e,e)),a),f(x,a)). ** KEPT: 4441 (4406,5) EQUAL(f(f(e,e),f(a,x)),f(a,x)). >>>> Starting back demodulation with: 4439 (4438) EQUAL(f(g(f(e,e)),a),a). new given clause: 4436 (5,4406) EQUAL(f(e,f(e,a)),a). ** KEPT: 4442 (4436,5) EQUAL(f(f(x,e),f(e,a)),f(x,a)). ** KEPT: 4443 (4436,5) EQUAL(f(e,f(f(e,a),x)),f(a,x)). new given clause: 4404 (3,2013) EQUAL(f(f(g(a),e),a),e). ** KEPT: 4444 (4,4404) EQUAL(f(f(g(a),f(x,g(x))),a),e). ---> New Demodulator: 4445 (4444) EQUAL(f(f(g(a),f(x,g(x))),a),e). ** KEPT: 4446 (3,4404) EQUAL(f(f(g(a),f(g(x),x)),a),e). ---> New Demodulator: 4447 (4446) EQUAL(f(f(g(a),f(g(x),x)),a),e). ** KEPT: 4448 (2013,4404) EQUAL(f(f(f(g(a),e),e),a),e). ---> New Demodulator: 4449 (4448) EQUAL(f(f(f(g(a),e),e),a),e). ** KEPT: 4450 (5,4404) EQUAL(f(g(a),f(e,a)),e). ---> New Demodulator: 4451 (4450) EQUAL(f(g(a),f(e,a)),e). >>>> Starting back demodulation with: 4445 (4444) EQUAL(f(f(g(a),f(x,g(x))),a),e). >>>> Starting back demodulation with: 4447 (4446) EQUAL(f(f(g(a),f(g(x),x)),a),e). >>>> Starting back demodulation with: 4449 (4448) EQUAL(f(f(f(g(a),e),e),a),e). >>>> Starting back demodulation with: 4451 (4450) EQUAL(f(g(a),f(e,a)),e). ** KEPT: 4452 (4404,2126) EQUAL(f(g(f(g(a),e)),e),a). ---> New Demodulator: 4453 (4452) EQUAL(f(g(f(g(a),e)),e),a). ** KEPT: 4454 (4404,5) EQUAL(f(f(x,f(g(a),e)),a),f(x,e)). ** KEPT: 4455 (4404,5) EQUAL(f(f(g(a),e),f(a,x)),f(e,x)). >>>> Starting back demodulation with: 4453 (4452) EQUAL(f(g(f(g(a),e)),e),a). new given clause: 4438 (4406,2126) EQUAL(f(g(f(e,e)),a),a). ** KEPT: 4456 (4,4438) EQUAL(f(g(f(f(x,g(x)),e)),a),a). ---> New Demodulator: 4457 (4456) EQUAL(f(g(f(f(x,g(x)),e)),a),a). ** KEPT: 4458 (3,4438) EQUAL(f(g(f(f(g(x),x),e)),a),a). ---> New Demodulator: 4459 (4458) EQUAL(f(g(f(f(g(x),x),e)),a),a). ** KEPT: 4460 (4,4438) EQUAL(f(g(f(e,f(x,g(x)))),a),a). ---> New Demodulator: 4461 (4460) EQUAL(f(g(f(e,f(x,g(x)))),a),a). ** KEPT: 4462 (3,4438) EQUAL(f(g(f(e,f(g(x),x))),a),a). ---> New Demodulator: 4463 (4462) EQUAL(f(g(f(e,f(g(x),x))),a),a). ** KEPT: 4464 (2013,4438) EQUAL(f(f(g(f(e,e)),e),a),a). ---> New Demodulator: 4465 (4464) EQUAL(f(f(g(f(e,e)),e),a),a). >>>> Starting back demodulation with: 4457 (4456) EQUAL(f(g(f(f(x,g(x)),e)),a),a). >>>> Starting back demodulation with: 4459 (4458) EQUAL(f(g(f(f(g(x),x),e)),a),a). >>>> Starting back demodulation with: 4461 (4460) EQUAL(f(g(f(e,f(x,g(x)))),a),a). >>>> Starting back demodulation with: 4463 (4462) EQUAL(f(g(f(e,f(g(x),x))),a),a). >>>> Starting back demodulation with: 4465 (4464) EQUAL(f(f(g(f(e,e)),e),a),a). ** KEPT: 4466 (4438,15) EQUAL(f(g(f(e,e)),c),f(a,b)). ** KEPT: 4467 (4438,5) EQUAL(f(f(x,g(f(e,e))),a),f(x,a)). ** KEPT: 4468 (4438,5) EQUAL(f(g(f(e,e)),f(a,x)),f(a,x)). new given clause: 4450 (5,4404) EQUAL(f(g(a),f(e,a)),e). ** KEPT: 4469 (4450,5) EQUAL(f(f(x,g(a)),f(e,a)),f(x,e)). ** KEPT: 4470 (4450,5) EQUAL(f(g(a),f(f(e,a),x)),f(e,x)). new given clause: 2016 (566,1924,2008) EQUAL(f(f(e,a),f(e,e)),a). ** KEPT: 4471 (4,2016) EQUAL(f(f(e,a),f(f(x,g(x)),e)),a). ---> New Demodulator: 4472 (4471) EQUAL(f(f(e,a),f(f(x,g(x)),e)),a). ** KEPT: 4473 (3,2016) EQUAL(f(f(e,a),f(f(g(x),x),e)),a). ---> New Demodulator: 4474 (4473) EQUAL(f(f(e,a),f(f(g(x),x),e)),a). ** KEPT: 4475 (4,2016) EQUAL(f(f(e,a),f(e,f(x,g(x)))),a). ---> New Demodulator: 4476 (4475) EQUAL(f(f(e,a),f(e,f(x,g(x)))),a). ** KEPT: 4477 (3,2016) EQUAL(f(f(e,a),f(e,f(g(x),x))),a). ---> New Demodulator: 4478 (4477) EQUAL(f(f(e,a),f(e,f(g(x),x))),a). >>>> Starting back demodulation with: 4472 (4471) EQUAL(f(f(e,a),f(f(x,g(x)),e)),a). >>>> Starting back demodulation with: 4474 (4473) EQUAL(f(f(e,a),f(f(g(x),x),e)),a). >>>> Starting back demodulation with: 4476 (4475) EQUAL(f(f(e,a),f(e,f(x,g(x)))),a). >>>> Starting back demodulation with: 4478 (4477) EQUAL(f(f(e,a),f(e,f(g(x),x))),a). ** KEPT: 4479 (2016,5) EQUAL(f(f(x,f(e,a)),f(e,e)),f(x,a)). ** KEPT: 4480 (2016,5) EQUAL(f(f(e,a),f(f(e,e),x)),f(a,x)). new given clause: 2022 (566,1493,2008) EQUAL(f(f(e,a),f(e,b)),c). ** KEPT: 4481 (2022,5) EQUAL(f(f(x,f(e,a)),f(e,b)),f(x,c)). ** KEPT: 4482 (2022,5) EQUAL(f(f(e,a),f(f(e,b),x)),f(c,x)). new given clause: 2058 (566,1575,2008) EQUAL(g(f(g(c),f(e,a))),b). ** KEPT: 4483 (2058,3118) EQUAL(f(f(h,f(g(c),f(e,a))),b),h). ---> New Demodulator: 4484 (4483) EQUAL(f(f(h,f(g(c),f(e,a))),b),h). ** KEPT: 4485 (2058,2126) EQUAL(f(b,f(f(g(c),f(e,a)),a)),a). ---> New Demodulator: 4486 (4485) EQUAL(f(b,f(f(g(c),f(e,a)),a)),a). ** KEPT: 4487 (2058,2120) EQUAL(f(f(g(c),f(e,a)),f(b,a)),a). ---> New Demodulator: 4488 (4487) EQUAL(f(f(g(c),f(e,a)),f(b,a)),a). ** KEPT: 4489 (2058,1197) EQUAL(f(f(g(c),f(e,a)),f(b,d)),d). ---> New Demodulator: 4490 (4489) EQUAL(f(f(g(c),f(e,a)),f(b,d)),d). ** KEPT: 4491 (2058,1175) EQUAL(f(b,f(f(g(c),f(e,a)),d)),d). ---> New Demodulator: 4492 (4491) EQUAL(f(b,f(f(g(c),f(e,a)),d)),d). ** KEPT: 4493 (2058,1133) EQUAL(f(f(g(c),f(e,a)),f(b,h)),h). ---> New Demodulator: 4494 (4493) EQUAL(f(f(g(c),f(e,a)),f(b,h)),h). ** KEPT: 4495 (2058,1125) EQUAL(f(b,f(f(g(c),f(e,a)),h)),h). ---> New Demodulator: 4496 (4495) EQUAL(f(b,f(f(g(c),f(e,a)),h)),h). ** KEPT: 4497 (2058,1725) EQUAL(f(f(b,b),f(g(c),f(e,a))),b). ---> New Demodulator: 4498 (4497) EQUAL(f(f(b,b),f(g(c),f(e,a))),b). ** KEPT: 4499 (2058,526) EQUAL(f(f(a,f(g(c),f(e,a))),b),a). ---> New Demodulator: 4500 (4499) EQUAL(f(f(a,f(g(c),f(e,a))),b),a). ** KEPT: 4501 (2058,520) EQUAL(f(f(a,b),f(g(c),f(e,a))),a). ---> New Demodulator: 4502 (4501) EQUAL(f(f(a,b),f(g(c),f(e,a))),a). ** KEPT: 4503 (2058,266) EQUAL(f(f(g(c),f(e,a)),f(b,b)),b). ---> New Demodulator: 4504 (4503) EQUAL(f(f(g(c),f(e,a)),f(b,b)),b). ** KEPT: 4505 (2058,105) EQUAL(f(f(d,b),f(g(c),f(e,a))),d). ---> New Demodulator: 4506 (4505) EQUAL(f(f(d,b),f(g(c),f(e,a))),d). >>>> Starting back demodulation with: 4484 (4483) EQUAL(f(f(h,f(g(c),f(e,a))),b),h). >>>> Starting back demodulation with: 4486 (4485) EQUAL(f(b,f(f(g(c),f(e,a)),a)),a). >>>> Starting back demodulation with: 4488 (4487) EQUAL(f(f(g(c),f(e,a)),f(b,a)),a). >>>> Starting back demodulation with: 4490 (4489) EQUAL(f(f(g(c),f(e,a)),f(b,d)),d). >>>> Starting back demodulation with: 4492 (4491) EQUAL(f(b,f(f(g(c),f(e,a)),d)),d). >>>> Starting back demodulation with: 4494 (4493) EQUAL(f(f(g(c),f(e,a)),f(b,h)),h). >>>> Starting back demodulation with: 4496 (4495) EQUAL(f(b,f(f(g(c),f(e,a)),h)),h). >>>> Starting back demodulation with: 4498 (4497) EQUAL(f(f(b,b),f(g(c),f(e,a))),b). >>>> Starting back demodulation with: 4500 (4499) EQUAL(f(f(a,f(g(c),f(e,a))),b),a). >>>> Starting back demodulation with: 4502 (4501) EQUAL(f(f(a,b),f(g(c),f(e,a))),a). >>>> Starting back demodulation with: 4504 (4503) EQUAL(f(f(g(c),f(e,a)),f(b,b)),b). >>>> Starting back demodulation with: 4506 (4505) EQUAL(f(f(d,b),f(g(c),f(e,a))),d). new given clause: 2096 (7,2007) EQUAL(g(f(b,g(f(a,b)))),a). ** KEPT: 4507 (364,2096) EQUAL(g(f(b,g(f(c,e)))),a). ---> New Demodulator: 4508 (4507) EQUAL(g(f(b,g(f(c,e)))),a). ** KEPT: 4509 (162,2096) EQUAL(g(f(b,g(f(e,c)))),a). ---> New Demodulator: 4510 (4509) EQUAL(g(f(b,g(f(e,c)))),a). ** KEPT: 4511 (1581,2096) EQUAL(g(f(b,f(e,g(f(a,b))))),a). ---> New Demodulator: 4512 (4511) EQUAL(g(f(b,f(e,g(f(a,b))))),a). >>>> Starting back demodulation with: 4508 (4507) EQUAL(g(f(b,g(f(c,e)))),a). >>>> Starting back demodulation with: 4510 (4509) EQUAL(g(f(b,g(f(e,c)))),a). >>>> Starting back demodulation with: 4512 (4511) EQUAL(g(f(b,f(e,g(f(a,b))))),a). ** KEPT: 4513 (2096,3118) EQUAL(f(f(h,f(b,g(f(a,b)))),a),h). ---> New Demodulator: 4514 (4513) EQUAL(f(f(h,f(b,g(f(a,b)))),a),h). ** KEPT: 4515 (2096,2120) EQUAL(f(f(b,g(f(a,b))),f(a,a)),a). ---> New Demodulator: 4516 (4515) EQUAL(f(f(b,g(f(a,b))),f(a,a)),a). ** KEPT: 4517 (2096,1719) EQUAL(f(f(b,f(b,g(f(a,b)))),a),b). ---> New Demodulator: 4518 (4517) EQUAL(f(f(b,f(b,g(f(a,b)))),a),b). ** KEPT: 4519 (2096,3126) EQUAL(f(f(h,a),f(b,g(f(a,b)))),h). ---> New Demodulator: 4520 (4519) EQUAL(f(f(h,a),f(b,g(f(a,b)))),h). ** KEPT: 4521 (2096,1197) EQUAL(f(f(b,g(f(a,b))),f(a,d)),d). ---> New Demodulator: 4522 (4521) EQUAL(f(f(b,g(f(a,b))),f(a,d)),d). ** KEPT: 4523 (2096,1175) EQUAL(f(a,f(f(b,g(f(a,b))),d)),d). ---> New Demodulator: 4524 (4523) EQUAL(f(a,f(f(b,g(f(a,b))),d)),d). ** KEPT: 4525 (2096,1133) EQUAL(f(f(b,g(f(a,b))),f(a,h)),h). ---> New Demodulator: 4526 (4525) EQUAL(f(f(b,g(f(a,b))),f(a,h)),h). ** KEPT: 4527 (2096,1125) EQUAL(f(a,f(f(b,g(f(a,b))),h)),h). ---> New Demodulator: 4528 (4527) EQUAL(f(a,f(f(b,g(f(a,b))),h)),h). ** KEPT: 4529 (2096,1725) EQUAL(f(f(b,a),f(b,g(f(a,b)))),b). ---> New Demodulator: 4530 (4529) EQUAL(f(f(b,a),f(b,g(f(a,b)))),b). ** KEPT: 4531 (2096,520) EQUAL(f(f(a,a),f(b,g(f(a,b)))),a). ---> New Demodulator: 4532 (4531) EQUAL(f(f(a,a),f(b,g(f(a,b)))),a). ** KEPT: 4533 (2096,260) EQUAL(f(a,f(f(b,g(f(a,b))),b)),b). ---> New Demodulator: 4534 (4533) EQUAL(f(a,f(f(b,g(f(a,b))),b)),b). ** KEPT: 4535 (2096,113) EQUAL(f(f(d,f(b,g(f(a,b)))),a),d). ---> New Demodulator: 4536 (4535) EQUAL(f(f(d,f(b,g(f(a,b)))),a),d). ** KEPT: 4537 (2096,105) EQUAL(f(f(d,a),f(b,g(f(a,b)))),d). ---> New Demodulator: 4538 (4537) EQUAL(f(f(d,a),f(b,g(f(a,b)))),d). >>>> Starting back demodulation with: 4514 (4513) EQUAL(f(f(h,f(b,g(f(a,b)))),a),h). >>>> Starting back demodulation with: 4516 (4515) EQUAL(f(f(b,g(f(a,b))),f(a,a)),a). >>>> Starting back demodulation with: 4518 (4517) EQUAL(f(f(b,f(b,g(f(a,b)))),a),b). >>>> Starting back demodulation with: 4520 (4519) EQUAL(f(f(h,a),f(b,g(f(a,b)))),h). >>>> Starting back demodulation with: 4522 (4521) EQUAL(f(f(b,g(f(a,b))),f(a,d)),d). >>>> Starting back demodulation with: 4524 (4523) EQUAL(f(a,f(f(b,g(f(a,b))),d)),d). >>>> Starting back demodulation with: 4526 (4525) EQUAL(f(f(b,g(f(a,b))),f(a,h)),h). >>>> Starting back demodulation with: 4528 (4527) EQUAL(f(a,f(f(b,g(f(a,b))),h)),h). >>>> Starting back demodulation with: 4530 (4529) EQUAL(f(f(b,a),f(b,g(f(a,b)))),b). >>>> Starting back demodulation with: 4532 (4531) EQUAL(f(f(a,a),f(b,g(f(a,b)))),a). >>>> Starting back demodulation with: 4534 (4533) EQUAL(f(a,f(f(b,g(f(a,b))),b)),b). >>>> Starting back demodulation with: 4536 (4535) EQUAL(f(f(d,f(b,g(f(a,b)))),a),d). >>>> Starting back demodulation with: 4538 (4537) EQUAL(f(f(d,a),f(b,g(f(a,b)))),d). new given clause: 2146 (2120,1719) EQUAL(f(a,g(f(g(b),a))),b). ** KEPT: 4539 (2013,2146) EQUAL(f(a,g(f(f(g(b),e),a))),b). ---> New Demodulator: 4540 (4539) EQUAL(f(a,g(f(f(g(b),e),a))),b). ** KEPT: 4541 (1900,2146) EQUAL(f(f(a,e),g(f(g(b),a))),b). ---> New Demodulator: 4542 (4541) EQUAL(f(f(a,e),g(f(g(b),a))),b). ** KEPT: 4543 (483,2146) EQUAL(f(a,f(e,g(f(g(b),a)))),b). ---> New Demodulator: 4544 (4543) EQUAL(f(a,f(e,g(f(g(b),a)))),b). >>>> Starting back demodulation with: 4540 (4539) EQUAL(f(a,g(f(f(g(b),e),a))),b). >>>> Starting back demodulation with: 4542 (4541) EQUAL(f(f(a,e),g(f(g(b),a))),b). >>>> Starting back demodulation with: 4544 (4543) EQUAL(f(a,f(e,g(f(g(b),a)))),b). ** KEPT: 4545 (2146,5) EQUAL(f(f(x,a),g(f(g(b),a))),f(x,b)). ** KEPT: 4546 (2146,5) EQUAL(f(a,f(g(f(g(b),a)),x)),f(b,x)). new given clause: 2148 (2120,113) EQUAL(f(a,g(f(g(d),a))),d). ** KEPT: 4547 (8,2148) EQUAL(f(a,g(f(g(f(c,g(a))),a))),d). ---> New Demodulator: 4548 (4547) EQUAL(f(a,g(f(g(f(c,g(a))),a))),d). ** KEPT: 4549 (2013,2148) EQUAL(f(a,g(f(f(g(d),e),a))),d). ---> New Demodulator: 4550 (4549) EQUAL(f(a,g(f(f(g(d),e),a))),d). ** KEPT: 4551 (1900,2148) EQUAL(f(f(a,e),g(f(g(d),a))),d). ---> New Demodulator: 4552 (4551) EQUAL(f(f(a,e),g(f(g(d),a))),d). ** KEPT: 4553 (483,2148) EQUAL(f(a,f(e,g(f(g(d),a)))),d). ---> New Demodulator: 4554 (4553) EQUAL(f(a,f(e,g(f(g(d),a)))),d). >>>> Starting back demodulation with: 4548 (4547) EQUAL(f(a,g(f(g(f(c,g(a))),a))),d). >>>> Starting back demodulation with: 4550 (4549) EQUAL(f(a,g(f(f(g(d),e),a))),d). >>>> Starting back demodulation with: 4552 (4551) EQUAL(f(f(a,e),g(f(g(d),a))),d). >>>> Starting back demodulation with: 4554 (4553) EQUAL(f(a,f(e,g(f(g(d),a)))),d). ** KEPT: 4555 (2148,5) EQUAL(f(f(x,a),g(f(g(d),a))),f(x,d)). ** KEPT: 4556 (2148,5) EQUAL(f(a,f(g(f(g(d),a)),x)),f(d,x)). new given clause: 2154 (2011,2126) EQUAL(f(g(f(g(x),x)),a),a). ** KEPT: 4557 (5,2154) EQUAL(f(g(f(f(g(f(x,y)),x),y)),a),a). ---> New Demodulator: 4558 (4557) EQUAL(f(g(f(f(g(f(x,y)),x),y)),a),a). ** KEPT: 4559 (2013,2154) EQUAL(f(f(g(f(g(x),x)),e),a),a). ---> New Demodulator: 4560 (4559) EQUAL(f(f(g(f(g(x),x)),e),a),a). >>>> Starting back demodulation with: 4558 (4557) EQUAL(f(g(f(f(g(f(x,y)),x),y)),a),a). >>>> Starting back demodulation with: 4560 (4559) EQUAL(f(f(g(f(g(x),x)),e),a),a). ** KEPT: 4561 (2154,15) EQUAL(f(g(f(g(x),x)),c),f(a,b)). ** KEPT: 4562 (2154,5) EQUAL(f(f(x,g(f(g(y),y))),a),f(x,a)). ** KEPT: 4563 (2154,5) EQUAL(f(g(f(g(y),y)),f(a,x)),f(a,x)). new given clause: 2156 (2009,2126) EQUAL(f(g(f(x,g(x))),a),a). ** KEPT: 4564 (5,2156) EQUAL(f(g(f(x,f(y,g(f(x,y))))),a),a). ---> New Demodulator: 4565 (4564) EQUAL(f(g(f(x,f(y,g(f(x,y))))),a),a). ** KEPT: 4566 (2013,2156) EQUAL(f(f(g(f(x,g(x))),e),a),a). ---> New Demodulator: 4567 (4566) EQUAL(f(f(g(f(x,g(x))),e),a),a). >>>> Starting back demodulation with: 4565 (4564) EQUAL(f(g(f(x,f(y,g(f(x,y))))),a),a). >>>> Starting back demodulation with: 4567 (4566) EQUAL(f(f(g(f(x,g(x))),e),a),a). ** KEPT: 4568 (2156,15) EQUAL(f(g(f(x,g(x))),c),f(a,b)). ** KEPT: 4569 (2156,5) EQUAL(f(f(x,g(f(y,g(y)))),a),f(x,a)). ** KEPT: 4570 (2156,5) EQUAL(f(g(f(y,g(y))),f(a,x)),f(a,x)). new given clause: 2164 (1725,2126) EQUAL(f(g(f(b,g(a))),b),a). ** KEPT: 4571 (1581,2164) EQUAL(f(g(f(b,f(e,g(a)))),b),a). ---> New Demodulator: 4572 (4571) EQUAL(f(g(f(b,f(e,g(a)))),b),a). ** KEPT: 4573 (1444,2164) EQUAL(f(g(f(b,g(a))),f(e,b)),a). ---> New Demodulator: 4574 (4573) EQUAL(f(g(f(b,g(a))),f(e,b)),a). ** KEPT: 4575 (239,2164) EQUAL(f(f(g(f(b,g(a))),e),b),a). ---> New Demodulator: 4576 (4575) EQUAL(f(f(g(f(b,g(a))),e),b),a). >>>> Starting back demodulation with: 4572 (4571) EQUAL(f(g(f(b,f(e,g(a)))),b),a). >>>> Starting back demodulation with: 4574 (4573) EQUAL(f(g(f(b,g(a))),f(e,b)),a). >>>> Starting back demodulation with: 4576 (4575) EQUAL(f(f(g(f(b,g(a))),e),b),a). ** KEPT: 4577 (2164,5) EQUAL(f(f(x,g(f(b,g(a)))),b),f(x,a)). ** KEPT: 4578 (2164,5) EQUAL(f(g(f(b,g(a))),f(b,x)),f(a,x)). new given clause: 2174 (105,2126) EQUAL(f(g(f(d,g(a))),d),a). ** KEPT: 4579 (8,2174) EQUAL(f(g(f(f(c,g(a)),g(a))),d),a). ---> New Demodulator: 4580 (4579) EQUAL(f(g(f(f(c,g(a)),g(a))),d),a). ** KEPT: 4581 (861,2174) EQUAL(f(g(f(f(d,e),g(a))),d),a). ---> New Demodulator: 4582 (4581) EQUAL(f(g(f(f(d,e),g(a))),d),a). ** KEPT: 4583 (132,2174) EQUAL(f(g(f(k,f(h,g(a)))),d),a). ---> New Demodulator: 4584 (4583) EQUAL(f(g(f(k,f(h,g(a)))),d),a). ** KEPT: 4585 (92,2174) EQUAL(f(g(f(d,f(e,g(a)))),d),a). ---> New Demodulator: 4586 (4585) EQUAL(f(g(f(d,f(e,g(a)))),d),a). ** KEPT: 4587 (73,2174) EQUAL(f(g(f(h,f(b,g(a)))),d),a). ---> New Demodulator: 4588 (4587) EQUAL(f(g(f(h,f(b,g(a)))),d),a). ** KEPT: 4589 (8,2174) EQUAL(f(g(f(d,g(a))),f(c,g(a))),a). ---> New Demodulator: 4590 (4589) EQUAL(f(g(f(d,g(a))),f(c,g(a))),a). ** KEPT: 4591 (131,2174) EQUAL(f(f(g(f(d,g(a))),k),h),a). ---> New Demodulator: 4592 (4591) EQUAL(f(f(g(f(d,g(a))),k),h),a). ** KEPT: 4593 (72,2174) EQUAL(f(f(g(f(d,g(a))),h),b),a). ---> New Demodulator: 4594 (4593) EQUAL(f(f(g(f(d,g(a))),h),b),a). >>>> Starting back demodulation with: 4580 (4579) EQUAL(f(g(f(f(c,g(a)),g(a))),d),a). >>>> Starting back demodulation with: 4582 (4581) EQUAL(f(g(f(f(d,e),g(a))),d),a). >>>> Starting back demodulation with: 4584 (4583) EQUAL(f(g(f(k,f(h,g(a)))),d),a). >>>> Starting back demodulation with: 4586 (4585) EQUAL(f(g(f(d,f(e,g(a)))),d),a). >>>> Starting back demodulation with: 4588 (4587) EQUAL(f(g(f(h,f(b,g(a)))),d),a). >>>> Starting back demodulation with: 4590 (4589) EQUAL(f(g(f(d,g(a))),f(c,g(a))),a). >>>> Starting back demodulation with: 4592 (4591) EQUAL(f(f(g(f(d,g(a))),k),h),a). >>>> Starting back demodulation with: 4594 (4593) EQUAL(f(f(g(f(d,g(a))),h),b),a). ** KEPT: 4595 (2174,5) EQUAL(f(f(x,g(f(d,g(a)))),d),f(x,a)). ** KEPT: 4596 (2174,5) EQUAL(f(g(f(d,g(a))),f(d,x)),f(a,x)). new given clause: 2227 (713,2007,2209) EQUAL(g(f(f(b,e),g(c))),a). ** KEPT: 4597 (7,2227) EQUAL(g(f(f(b,e),g(f(a,b)))),a). ---> New Demodulator: 4598 (4597) EQUAL(g(f(f(b,e),g(f(a,b)))),a). >>>> Starting back demodulation with: 4598 (4597) EQUAL(g(f(f(b,e),g(f(a,b)))),a). ** KEPT: 4599 (2227,3118) EQUAL(f(f(h,f(f(b,e),g(c))),a),h). ---> New Demodulator: 4600 (4599) EQUAL(f(f(h,f(f(b,e),g(c))),a),h). ** KEPT: 4601 (2227,2120) EQUAL(f(f(f(b,e),g(c)),f(a,a)),a). ---> New Demodulator: 4602 (4601) EQUAL(f(f(f(b,e),g(c)),f(a,a)),a). ** KEPT: 4603 (2227,1719) EQUAL(f(f(b,f(f(b,e),g(c))),a),b). ---> New Demodulator: 4604 (4603) EQUAL(f(f(b,f(f(b,e),g(c))),a),b). ** KEPT: 4605 (2227,3126) EQUAL(f(f(h,a),f(f(b,e),g(c))),h). ---> New Demodulator: 4606 (4605) EQUAL(f(f(h,a),f(f(b,e),g(c))),h). ** KEPT: 4607 (2227,1197) EQUAL(f(f(f(b,e),g(c)),f(a,d)),d). ---> New Demodulator: 4608 (4607) EQUAL(f(f(f(b,e),g(c)),f(a,d)),d). ** KEPT: 4609 (2227,1175) EQUAL(f(a,f(f(f(b,e),g(c)),d)),d). ---> New Demodulator: 4610 (4609) EQUAL(f(a,f(f(f(b,e),g(c)),d)),d). ** KEPT: 4611 (2227,1133) EQUAL(f(f(f(b,e),g(c)),f(a,h)),h). ---> New Demodulator: 4612 (4611) EQUAL(f(f(f(b,e),g(c)),f(a,h)),h). ** KEPT: 4613 (2227,1125) EQUAL(f(a,f(f(f(b,e),g(c)),h)),h). ---> New Demodulator: 4614 (4613) EQUAL(f(a,f(f(f(b,e),g(c)),h)),h). ** KEPT: 4615 (2227,1725) EQUAL(f(f(b,a),f(f(b,e),g(c))),b). ---> New Demodulator: 4616 (4615) EQUAL(f(f(b,a),f(f(b,e),g(c))),b). ** KEPT: 4617 (2227,520) EQUAL(f(f(a,a),f(f(b,e),g(c))),a). ---> New Demodulator: 4618 (4617) EQUAL(f(f(a,a),f(f(b,e),g(c))),a). ** KEPT: 4619 (2227,266) EQUAL(f(f(f(b,e),g(c)),f(a,b)),b). ---> New Demodulator: 4620 (4619) EQUAL(f(f(f(b,e),g(c)),f(a,b)),b). ** KEPT: 4621 (2227,260) EQUAL(f(a,f(f(f(b,e),g(c)),b)),b). ---> New Demodulator: 4622 (4621) EQUAL(f(a,f(f(f(b,e),g(c)),b)),b). ** KEPT: 4623 (2227,113) EQUAL(f(f(d,f(f(b,e),g(c))),a),d). ---> New Demodulator: 4624 (4623) EQUAL(f(f(d,f(f(b,e),g(c))),a),d). ** KEPT: 4625 (2227,105) EQUAL(f(f(d,a),f(f(b,e),g(c))),d). ---> New Demodulator: 4626 (4625) EQUAL(f(f(d,a),f(f(b,e),g(c))),d). >>>> Starting back demodulation with: 4600 (4599) EQUAL(f(f(h,f(f(b,e),g(c))),a),h). >>>> Starting back demodulation with: 4602 (4601) EQUAL(f(f(f(b,e),g(c)),f(a,a)),a). >>>> Starting back demodulation with: 4604 (4603) EQUAL(f(f(b,f(f(b,e),g(c))),a),b). >>>> Starting back demodulation with: 4606 (4605) EQUAL(f(f(h,a),f(f(b,e),g(c))),h). >>>> Starting back demodulation with: 4608 (4607) EQUAL(f(f(f(b,e),g(c)),f(a,d)),d). >>>> Starting back demodulation with: 4610 (4609) EQUAL(f(a,f(f(f(b,e),g(c)),d)),d). >>>> Starting back demodulation with: 4612 (4611) EQUAL(f(f(f(b,e),g(c)),f(a,h)),h). >>>> Starting back demodulation with: 4614 (4613) EQUAL(f(a,f(f(f(b,e),g(c)),h)),h). >>>> Starting back demodulation with: 4616 (4615) EQUAL(f(f(b,a),f(f(b,e),g(c))),b). >>>> Starting back demodulation with: 4618 (4617) EQUAL(f(f(a,a),f(f(b,e),g(c))),a). >>>> Starting back demodulation with: 4620 (4619) EQUAL(f(f(f(b,e),g(c)),f(a,b)),b). >>>> Starting back demodulation with: 4622 (4621) EQUAL(f(a,f(f(f(b,e),g(c)),b)),b). >>>> Starting back demodulation with: 4624 (4623) EQUAL(f(f(d,f(f(b,e),g(c))),a),d). >>>> Starting back demodulation with: 4626 (4625) EQUAL(f(f(d,a),f(f(b,e),g(c))),d). new given clause: 2305 (2296,1125) EQUAL(f(g(f(b,g(d))),e),h). ** KEPT: 4627 (8,2305) EQUAL(f(g(f(b,g(f(c,g(a))))),e),h). ---> New Demodulator: 4628 (4627) EQUAL(f(g(f(b,g(f(c,g(a))))),e),h). ** KEPT: 4629 (1581,2305) EQUAL(f(g(f(b,f(e,g(d)))),e),h). ---> New Demodulator: 4630 (4629) EQUAL(f(g(f(b,f(e,g(d)))),e),h). ** KEPT: 4631 (4,2305) EQUAL(f(g(f(b,g(d))),f(x,g(x))),h). ---> New Demodulator: 4632 (4631) EQUAL(f(g(f(b,g(d))),f(x,g(x))),h). ** KEPT: 4633 (3,2305) EQUAL(f(g(f(b,g(d))),f(g(x),x)),h). ---> New Demodulator: 4634 (4633) EQUAL(f(g(f(b,g(d))),f(g(x),x)),h). ** KEPT: 4635 (2,2305) EQUAL(g(f(b,g(d))),h). ---> New Demodulator: 4636 (4635) EQUAL(g(f(b,g(d))),h). >>>> Starting back demodulation with: 4628 (4627) EQUAL(f(g(f(b,g(f(c,g(a))))),e),h). >>>> Starting back demodulation with: 4630 (4629) EQUAL(f(g(f(b,f(e,g(d)))),e),h). >>>> Starting back demodulation with: 4632 (4631) EQUAL(f(g(f(b,g(d))),f(x,g(x))),h). >>>> Starting back demodulation with: 4634 (4633) EQUAL(f(g(f(b,g(d))),f(g(x),x)),h). >>>> Starting back demodulation with: 4636 (4635) EQUAL(g(f(b,g(d))),h). >> back demodulating: 1775 (1725,1175) EQUAL(f(g(f(b,g(d))),b),d). >> back demodulating: 1776 (1775) EQUAL(f(g(f(b,g(d))),b),d). >> back demodulating: 2305 (2296,1125) EQUAL(f(g(f(b,g(d))),e),h). >> back demodulating: 2306 (2305) EQUAL(f(g(f(b,g(d))),e),h). >> back demodulating: 3159 (762,3118) EQUAL(f(e,g(f(b,g(d)))),h). >> back demodulating: 3160 (3159) EQUAL(f(e,g(f(b,g(d)))),h). >> back demodulating: 3953 (1444,1775) EQUAL(f(g(f(b,g(d))),f(e,b)),d). >> back demodulating: 3954 (3953) EQUAL(f(g(f(b,g(d))),f(e,b)),d). >> back demodulating: 3955 (1775,5) EQUAL(f(f(x,g(f(b,g(d)))),b),f(x,d)). >> back demodulating: 3956 (1775,5) EQUAL(f(g(f(b,g(d))),f(b,x)),f(d,x)). >> back demodulating: 4631 (4,2305) EQUAL(f(g(f(b,g(d))),f(x,g(x))),h). >> back demodulating: 4632 (4631) EQUAL(f(g(f(b,g(d))),f(x,g(x))),h). >> back demodulating: 4633 (3,2305) EQUAL(f(g(f(b,g(d))),f(g(x),x)),h). >> back demodulating: 4634 (4633) EQUAL(f(g(f(b,g(d))),f(g(x),x)),h). ** KEPT: 4637 (2305,3261,4636) EQUAL(f(f(h,e),g(f(e,e))),h). ---> New Demodulator: 4638 (4637) EQUAL(f(f(h,e),g(f(e,e))),h). ** KEPT: 4639 (2305,3247,4636) EQUAL(f(f(h,e),f(e,e)),h). ---> New Demodulator: 4640 (4639) EQUAL(f(f(h,e),f(e,e)),h). ** KEPT: 4641 (2305,3215,4636) EQUAL(f(f(f(h,e),g(a)),c),d). ---> New Demodulator: 4642 (4641) EQUAL(f(f(f(h,e),g(a)),c),d). ** KEPT: 4643 (2305,3112,4636) EQUAL(f(f(h,e),f(g(d),k)),e). ---> New Demodulator: 4644 (4643) EQUAL(f(f(h,e),f(g(d),k)),e). ** KEPT: 4645 (2305,1751,4636) EQUAL(f(h,g(f(g(b),f(h,e)))),b). ---> New Demodulator: 4646 (4645) EQUAL(f(h,g(f(g(b),f(h,e)))),b). ** KEPT: 4647 (2305,1751,4636) EQUAL(f(f(h,e),g(f(g(b),h))),b). ---> New Demodulator: 4648 (4647) EQUAL(f(f(h,e),g(f(g(b),h))),b). ** KEPT: 4649 (2305,3126,4636) EQUAL(f(f(f(h,e),g(x)),x),h). ---> New Demodulator: 4650 (4649) EQUAL(f(f(f(h,e),g(x)),x),h). ** KEPT: 4651 (2305,3134,4636) EQUAL(f(f(f(h,e),g(d)),k),e). ---> New Demodulator: 4652 (4651) EQUAL(f(f(f(h,e),g(d)),k),e). ** KEPT: 4653 (2305,1189,4636) EQUAL(f(h,g(f(g(a),f(h,e)))),a). ---> New Demodulator: 4654 (4653) EQUAL(f(h,g(f(g(a),f(h,e)))),a). ** KEPT: 4655 (2305,1189,4636) EQUAL(f(f(h,e),g(f(g(a),h))),a). ---> New Demodulator: 4656 (4655) EQUAL(f(f(h,e),g(f(g(a),h))),a). ** KEPT: 4657 (2305,3118,4636) EQUAL(f(f(f(h,e),x),g(x)),h). ---> New Demodulator: 4658 (4657) EQUAL(f(f(f(h,e),x),g(x)),h). ** KEPT: 4659 (2305,1791,4636) EQUAL(f(f(g(f(h,e)),c),g(a)),b). ---> New Demodulator: 4660 (4659) EQUAL(f(f(g(f(h,e)),c),g(a)),b). ** KEPT: 4661 (2305,1165,4636) EQUAL(f(g(f(a,g(f(h,e)))),a),h). ---> New Demodulator: 4662 (4661) EQUAL(f(g(f(a,g(f(h,e)))),a),h). ** KEPT: 4663 (2305,1155,4636) EQUAL(f(g(f(g(f(h,e)),k)),b),h). ---> New Demodulator: 4664 (4663) EQUAL(f(g(f(g(f(h,e)),k)),b),h). ** KEPT: 4665 (2305,1777,4636) EQUAL(f(g(f(b,g(f(h,e)))),b),h). ---> New Demodulator: 4666 (4665) EQUAL(f(g(f(b,g(f(h,e)))),b),h). >>>> Starting back demodulation with: 4638 (4637) EQUAL(f(f(h,e),g(f(e,e))),h). >>>> Starting back demodulation with: 4640 (4639) EQUAL(f(f(h,e),f(e,e)),h). >>>> Starting back demodulation with: 4642 (4641) EQUAL(f(f(f(h,e),g(a)),c),d). >>>> Starting back demodulation with: 4644 (4643) EQUAL(f(f(h,e),f(g(d),k)),e). >>>> Starting back demodulation with: 4646 (4645) EQUAL(f(h,g(f(g(b),f(h,e)))),b). >>>> Starting back demodulation with: 4648 (4647) EQUAL(f(f(h,e),g(f(g(b),h))),b). >>>> Starting back demodulation with: 4650 (4649) EQUAL(f(f(f(h,e),g(x)),x),h). >>>> Starting back demodulation with: 4652 (4651) EQUAL(f(f(f(h,e),g(d)),k),e). >>>> Starting back demodulation with: 4654 (4653) EQUAL(f(h,g(f(g(a),f(h,e)))),a). >>>> Starting back demodulation with: 4656 (4655) EQUAL(f(f(h,e),g(f(g(a),h))),a). >>>> Starting back demodulation with: 4658 (4657) EQUAL(f(f(f(h,e),x),g(x)),h). >> back demodulating: 4418 (4417) EQUAL(f(f(f(h,e),a),g(a)),h). >> back demodulating: 4417 (2013,3118) EQUAL(f(f(f(h,e),a),g(a)),h). >> back demodulating: 3146 (3145) EQUAL(f(f(f(h,e),h),g(h)),h). >> back demodulating: 3145 (1071,3118) EQUAL(f(f(f(h,e),h),g(h)),h). >>>> Starting back demodulation with: 4660 (4659) EQUAL(f(f(g(f(h,e)),c),g(a)),b). >>>> Starting back demodulation with: 4662 (4661) EQUAL(f(g(f(a,g(f(h,e)))),a),h). >>>> Starting back demodulation with: 4664 (4663) EQUAL(f(g(f(g(f(h,e)),k)),b),h). >>>> Starting back demodulation with: 4666 (4665) EQUAL(f(g(f(b,g(f(h,e)))),b),h). new given clause: 4635 (2,2305) EQUAL(g(f(b,g(d))),h). ** KEPT: 4667 (8,4635) EQUAL(g(f(b,g(f(c,g(a))))),h). ---> New Demodulator: 4668 (4667) EQUAL(g(f(b,g(f(c,g(a))))),h). ** KEPT: 4669 (1581,4635) EQUAL(g(f(b,f(e,g(d)))),h). ---> New Demodulator: 4670 (4669) EQUAL(g(f(b,f(e,g(d)))),h). >>>> Starting back demodulation with: 4668 (4667) EQUAL(g(f(b,g(f(c,g(a))))),h). >> back demodulating: 3949 (8,1775) EQUAL(f(g(f(b,g(f(c,g(a))))),b),d). >> back demodulating: 3950 (3949) EQUAL(f(g(f(b,g(f(c,g(a))))),b),d). >> back demodulating: 4627 (8,2305) EQUAL(f(g(f(b,g(f(c,g(a))))),e),h). >> back demodulating: 4628 (4627) EQUAL(f(g(f(b,g(f(c,g(a))))),e),h). >>>> Starting back demodulation with: 4670 (4669) EQUAL(g(f(b,f(e,g(d)))),h). >> back demodulating: 3951 (1581,1775) EQUAL(f(g(f(b,f(e,g(d)))),b),d). >> back demodulating: 3952 (3951) EQUAL(f(g(f(b,f(e,g(d)))),b),d). >> back demodulating: 4629 (1581,2305) EQUAL(f(g(f(b,f(e,g(d)))),e),h). >> back demodulating: 4630 (4629) EQUAL(f(g(f(b,f(e,g(d)))),e),h). ** KEPT: 4671 (4635,2126) EQUAL(f(h,f(f(b,g(d)),a)),a). ---> New Demodulator: 4672 (4671) EQUAL(f(h,f(f(b,g(d)),a)),a). ** KEPT: 4673 (4635,2120) EQUAL(f(f(b,g(d)),f(h,a)),a). ---> New Demodulator: 4674 (4673) EQUAL(f(f(b,g(d)),f(h,a)),a). ** KEPT: 4675 (4635,1719) EQUAL(f(f(b,f(b,g(d))),h),b). ---> New Demodulator: 4676 (4675) EQUAL(f(f(b,f(b,g(d))),h),b). ** KEPT: 4677 (4635,3126) EQUAL(f(f(h,h),f(b,g(d))),h). ---> New Demodulator: 4678 (4677) EQUAL(f(f(h,h),f(b,g(d))),h). ** KEPT: 4679 (4635,1197) EQUAL(f(f(b,g(d)),f(h,d)),d). ---> New Demodulator: 4680 (4679) EQUAL(f(f(b,g(d)),f(h,d)),d). ** KEPT: 4681 (4635,1133) EQUAL(f(f(b,g(d)),f(h,h)),h). ---> New Demodulator: 4682 (4681) EQUAL(f(f(b,g(d)),f(h,h)),h). ** KEPT: 4683 (4635,1725) EQUAL(f(f(b,h),f(b,g(d))),b). ---> New Demodulator: 4684 (4683) EQUAL(f(f(b,h),f(b,g(d))),b). ** KEPT: 4685 (4635,526) EQUAL(f(f(a,f(b,g(d))),h),a). ---> New Demodulator: 4686 (4685) EQUAL(f(f(a,f(b,g(d))),h),a). ** KEPT: 4687 (4635,520) EQUAL(f(f(a,h),f(b,g(d))),a). ---> New Demodulator: 4688 (4687) EQUAL(f(f(a,h),f(b,g(d))),a). ** KEPT: 4689 (4635,260) EQUAL(f(h,f(f(b,g(d)),b)),b). ---> New Demodulator: 4690 (4689) EQUAL(f(h,f(f(b,g(d)),b)),b). ** KEPT: 4691 (4635,113) EQUAL(f(f(d,f(b,g(d))),h),d). ---> New Demodulator: 4692 (4691) EQUAL(f(f(d,f(b,g(d))),h),d). ** KEPT: 4693 (4635,105) EQUAL(f(f(d,h),f(b,g(d))),d). ---> New Demodulator: 4694 (4693) EQUAL(f(f(d,h),f(b,g(d))),d). >>>> Starting back demodulation with: 4672 (4671) EQUAL(f(h,f(f(b,g(d)),a)),a). >>>> Starting back demodulation with: 4674 (4673) EQUAL(f(f(b,g(d)),f(h,a)),a). >>>> Starting back demodulation with: 4676 (4675) EQUAL(f(f(b,f(b,g(d))),h),b). >>>> Starting back demodulation with: 4678 (4677) EQUAL(f(f(h,h),f(b,g(d))),h). >>>> Starting back demodulation with: 4680 (4679) EQUAL(f(f(b,g(d)),f(h,d)),d). >>>> Starting back demodulation with: 4682 (4681) EQUAL(f(f(b,g(d)),f(h,h)),h). >>>> Starting back demodulation with: 4684 (4683) EQUAL(f(f(b,h),f(b,g(d))),b). >>>> Starting back demodulation with: 4686 (4685) EQUAL(f(f(a,f(b,g(d))),h),a). >>>> Starting back demodulation with: 4688 (4687) EQUAL(f(f(a,h),f(b,g(d))),a). >>>> Starting back demodulation with: 4690 (4689) EQUAL(f(h,f(f(b,g(d)),b)),b). >>>> Starting back demodulation with: 4692 (4691) EQUAL(f(f(d,f(b,g(d))),h),d). >>>> Starting back demodulation with: 4694 (4693) EQUAL(f(f(d,h),f(b,g(d))),d). new given clause: 2352 (885,861) EQUAL(f(f(d,e),f(e,e)),d). ** KEPT: 4695 (4,2352) EQUAL(f(f(d,e),f(f(x,g(x)),e)),d). ---> New Demodulator: 4696 (4695) EQUAL(f(f(d,e),f(f(x,g(x)),e)),d). ** KEPT: 4697 (3,2352) EQUAL(f(f(d,e),f(f(g(x),x),e)),d). ---> New Demodulator: 4698 (4697) EQUAL(f(f(d,e),f(f(g(x),x),e)),d). ** KEPT: 4699 (4,2352) EQUAL(f(f(d,e),f(e,f(x,g(x)))),d). ---> New Demodulator: 4700 (4699) EQUAL(f(f(d,e),f(e,f(x,g(x)))),d). ** KEPT: 4701 (3,2352) EQUAL(f(f(d,e),f(e,f(g(x),x))),d). ---> New Demodulator: 4702 (4701) EQUAL(f(f(d,e),f(e,f(g(x),x))),d). >>>> Starting back demodulation with: 4696 (4695) EQUAL(f(f(d,e),f(f(x,g(x)),e)),d). >>>> Starting back demodulation with: 4698 (4697) EQUAL(f(f(d,e),f(f(g(x),x),e)),d). >>>> Starting back demodulation with: 4700 (4699) EQUAL(f(f(d,e),f(e,f(x,g(x)))),d). >>>> Starting back demodulation with: 4702 (4701) EQUAL(f(f(d,e),f(e,f(g(x),x))),d). ** KEPT: 4703 (2352,5) EQUAL(f(f(x,f(d,e)),f(e,e)),f(x,d)). ** KEPT: 4704 (2352,5) EQUAL(f(f(d,e),f(f(e,e),x)),f(d,x)). new given clause: 2399 (2389,483) EQUAL(f(a,f(d,e)),f(a,d)). ** KEPT: 4705 (8,2399) EQUAL(f(a,f(c,g(a))),f(a,f(d,e))). ** KEPT: 4706 (1900,2399) EQUAL(f(a,f(d,e)),f(f(a,e),d)). ** KEPT: 4707 (483,2399) EQUAL(f(a,f(d,e)),f(a,f(e,d))). ** KEPT: 4708 (131,2399) EQUAL(f(a,f(d,e)),f(f(a,k),h)). ** KEPT: 4709 (72,2399) EQUAL(f(a,f(d,e)),f(f(a,h),b)). ** KEPT: 4710 (2399,526) EQUAL(f(f(a,d),g(f(d,e))),a). ---> New Demodulator: 4711 (4710) EQUAL(f(f(a,d),g(f(d,e))),a). ** KEPT: 4712 (2399,5) EQUAL(f(f(x,a),f(d,e)),f(x,f(a,d))). ** KEPT: 4713 (2399,1175) EQUAL(f(g(a),f(a,f(d,e))),d). ---> New Demodulator: 4714 (4713) EQUAL(f(g(a),f(a,f(d,e))),d). ** KEPT: 4715 (2399,526) EQUAL(f(f(a,f(d,e)),g(d)),a). ---> New Demodulator: 4716 (4715) EQUAL(f(f(a,f(d,e)),g(d)),a). ** KEPT: 4717 (2399,5) EQUAL(f(x,f(a,f(d,e))),f(f(x,a),d)). >>>> Starting back demodulation with: 4711 (4710) EQUAL(f(f(a,d),g(f(d,e))),a). >>>> Starting back demodulation with: 4714 (4713) EQUAL(f(g(a),f(a,f(d,e))),d). >>>> Starting back demodulation with: 4716 (4715) EQUAL(f(f(a,f(d,e)),g(d)),a). new given clause: 2400 (2389,92) EQUAL(f(d,f(d,e)),f(d,d)). ** KEPT: 4718 (8,2400) EQUAL(f(f(c,g(a)),f(d,e)),f(d,d)). ** KEPT: 4719 (132,2400) EQUAL(f(k,f(h,f(d,e))),f(d,d)). ** KEPT: 4720 (73,2400) EQUAL(f(h,f(b,f(d,e))),f(d,d)). ** KEPT: 4721 (8,2400) EQUAL(f(f(c,g(a)),d),f(d,f(d,e))). ** KEPT: 4722 (8,2400) EQUAL(f(d,f(c,g(a))),f(d,f(d,e))). ** KEPT: 4723 (861,2400) EQUAL(f(d,f(d,e)),f(f(d,e),d)). ** KEPT: 4724 (132,2400) EQUAL(f(k,f(h,d)),f(d,f(d,e))). ** KEPT: 4725 (131,2400) EQUAL(f(d,f(d,e)),f(f(d,k),h)). ** KEPT: 4726 (92,2400) EQUAL(f(d,f(d,e)),f(d,f(e,d))). ** KEPT: 4727 (73,2400) EQUAL(f(h,f(b,d)),f(d,f(d,e))). ** KEPT: 4728 (72,2400) EQUAL(f(d,f(d,e)),f(f(d,h),b)). ** KEPT: 4729 (2400,113) EQUAL(f(f(d,d),g(f(d,e))),d). ---> New Demodulator: 4730 (4729) EQUAL(f(f(d,d),g(f(d,e))),d). ** KEPT: 4731 (2400,5) EQUAL(f(f(x,d),f(d,e)),f(x,f(d,d))). ** KEPT: 4732 (2400,1175) EQUAL(f(g(d),f(d,f(d,e))),d). ---> New Demodulator: 4733 (4732) EQUAL(f(g(d),f(d,f(d,e))),d). ** KEPT: 4734 (2400,113) EQUAL(f(f(d,f(d,e)),g(d)),d). ---> New Demodulator: 4735 (4734) EQUAL(f(f(d,f(d,e)),g(d)),d). ** KEPT: 4736 (2400,5) EQUAL(f(x,f(d,f(d,e))),f(f(x,d),d)). >>>> Starting back demodulation with: 4730 (4729) EQUAL(f(f(d,d),g(f(d,e))),d). >>>> Starting back demodulation with: 4733 (4732) EQUAL(f(g(d),f(d,f(d,e))),d). >>>> Starting back demodulation with: 4735 (4734) EQUAL(f(f(d,f(d,e)),g(d)),d). new given clause: 2407 (2397,239) EQUAL(f(f(e,d),b),f(d,b)). ** KEPT: 4737 (8,2407) EQUAL(f(f(c,g(a)),b),f(f(e,d),b)). ** KEPT: 4738 (1017,2407) EQUAL(f(f(k,k),h),f(f(e,d),b)). ** KEPT: 4739 (2407,260) EQUAL(f(g(f(e,d)),f(d,b)),b). ---> New Demodulator: 4740 (4739) EQUAL(f(g(f(e,d)),f(d,b)),b). ** KEPT: 4741 (2407,5) EQUAL(f(f(x,f(e,d)),b),f(x,f(d,b))). ** KEPT: 4742 (2407,5) EQUAL(f(f(e,d),f(b,x)),f(f(d,b),x)). ** KEPT: 4743 (2407,260) EQUAL(f(g(d),f(f(e,d),b)),b). ---> New Demodulator: 4744 (4743) EQUAL(f(g(d),f(f(e,d),b)),b). ** KEPT: 4745 (2407,5) EQUAL(f(x,f(f(e,d),b)),f(f(x,d),b)). ** KEPT: 4746 (2407,5) EQUAL(f(f(f(e,d),b),x),f(d,f(b,x))). >>>> Starting back demodulation with: 4740 (4739) EQUAL(f(g(f(e,d)),f(d,b)),b). >>>> Starting back demodulation with: 4744 (4743) EQUAL(f(g(d),f(f(e,d),b)),b). new given clause: 2435 (5,905) EQUAL(f(d,f(f(e,e),e)),d). ** KEPT: 4747 (8,2435) EQUAL(f(f(c,g(a)),f(f(e,e),e)),d). ---> New Demodulator: 4748 (4747) EQUAL(f(f(c,g(a)),f(f(e,e),e)),d). ** KEPT: 4749 (4,2435) EQUAL(f(d,f(f(f(x,g(x)),e),e)),d). ---> New Demodulator: 4750 (4749) EQUAL(f(d,f(f(f(x,g(x)),e),e)),d). ** KEPT: 4751 (3,2435) EQUAL(f(d,f(f(f(g(x),x),e),e)),d). ---> New Demodulator: 4752 (4751) EQUAL(f(d,f(f(f(g(x),x),e),e)),d). ** KEPT: 4753 (4,2435) EQUAL(f(d,f(f(e,f(x,g(x))),e)),d). ---> New Demodulator: 4754 (4753) EQUAL(f(d,f(f(e,f(x,g(x))),e)),d). ** KEPT: 4755 (3,2435) EQUAL(f(d,f(f(e,f(g(x),x)),e)),d). ---> New Demodulator: 4756 (4755) EQUAL(f(d,f(f(e,f(g(x),x)),e)),d). ** KEPT: 4757 (4,2435) EQUAL(f(d,f(f(e,e),f(x,g(x)))),d). ---> New Demodulator: 4758 (4757) EQUAL(f(d,f(f(e,e),f(x,g(x)))),d). ** KEPT: 4759 (3,2435) EQUAL(f(d,f(f(e,e),f(g(x),x))),d). ---> New Demodulator: 4760 (4759) EQUAL(f(d,f(f(e,e),f(g(x),x))),d). ** KEPT: 4761 (861,2435) EQUAL(f(f(d,e),f(f(e,e),e)),d). ---> New Demodulator: 4762 (4761) EQUAL(f(f(d,e),f(f(e,e),e)),d). ** KEPT: 4763 (132,2435) EQUAL(f(k,f(h,f(f(e,e),e))),d). ---> New Demodulator: 4764 (4763) EQUAL(f(k,f(h,f(f(e,e),e))),d). ** KEPT: 4765 (92,2435) EQUAL(f(d,f(e,f(f(e,e),e))),d). ---> New Demodulator: 4766 (4765) EQUAL(f(d,f(e,f(f(e,e),e))),d). ** KEPT: 4767 (73,2435) EQUAL(f(h,f(b,f(f(e,e),e))),d). ---> New Demodulator: 4768 (4767) EQUAL(f(h,f(b,f(f(e,e),e))),d). >>>> Starting back demodulation with: 4748 (4747) EQUAL(f(f(c,g(a)),f(f(e,e),e)),d). >>>> Starting back demodulation with: 4750 (4749) EQUAL(f(d,f(f(f(x,g(x)),e),e)),d). >>>> Starting back demodulation with: 4752 (4751) EQUAL(f(d,f(f(f(g(x),x),e),e)),d). >>>> Starting back demodulation with: 4754 (4753) EQUAL(f(d,f(f(e,f(x,g(x))),e)),d). >>>> Starting back demodulation with: 4756 (4755) EQUAL(f(d,f(f(e,f(g(x),x)),e)),d). >>>> Starting back demodulation with: 4758 (4757) EQUAL(f(d,f(f(e,e),f(x,g(x)))),d). >>>> Starting back demodulation with: 4760 (4759) EQUAL(f(d,f(f(e,e),f(g(x),x))),d). >>>> Starting back demodulation with: 4762 (4761) EQUAL(f(f(d,e),f(f(e,e),e)),d). >>>> Starting back demodulation with: 4764 (4763) EQUAL(f(k,f(h,f(f(e,e),e))),d). >>>> Starting back demodulation with: 4766 (4765) EQUAL(f(d,f(e,f(f(e,e),e))),d). >>>> Starting back demodulation with: 4768 (4767) EQUAL(f(h,f(b,f(f(e,e),e))),d). ** KEPT: 4769 (2435,113) EQUAL(f(d,g(f(f(e,e),e))),d). ---> New Demodulator: 4770 (4769) EQUAL(f(d,g(f(f(e,e),e))),d). ** KEPT: 4771 (2435,5) EQUAL(f(f(x,d),f(f(e,e),e)),f(x,d)). ** KEPT: 4772 (2435,5) EQUAL(f(d,f(f(f(e,e),e),x)),f(d,x)). >>>> Starting back demodulation with: 4770 (4769) EQUAL(f(d,g(f(f(e,e),e))),d). new given clause: 2490 (967,5,2488) EQUAL(f(f(x,e),d),f(x,d)). ** KEPT: 4773 (4206,2490) EQUAL(f(f(e,a),d),f(a,d)). ** KEPT: 4774 (3608,2490) EQUAL(f(f(e,b),d),f(b,d)). ** KEPT: 4775 (3163,2490) EQUAL(f(f(d,g(b)),d),f(h,d)). ** KEPT: 4776 (2397,2490) EQUAL(f(f(e,d),d),f(d,d)). ** KEPT: 4777 (1112,2490) EQUAL(f(f(e,h),d),f(h,d)). ** KEPT: 4778 (86,2490) EQUAL(f(f(c,g(a)),d),f(d,d)). ** KEPT: 4779 (5,2490) EQUAL(f(f(x,f(y,e)),d),f(f(x,y),d)). ** KEPT: 4780 (2490,2490) EQUAL(f(f(f(x,e),e),d),f(x,d)). ** KEPT: 4781 (131,2490) EQUAL(f(f(f(x,e),k),h),f(x,d)). ** KEPT: 4782 (5,2490) EQUAL(f(x,f(e,d)),f(x,d)). ** KEPT: 4783 (2174,2490) EQUAL(f(f(g(f(d,g(a))),e),d),a). ---> New Demodulator: 4784 (4783) EQUAL(f(f(g(f(d,g(a))),e),d),a). ** KEPT: 4785 (1581,2490) EQUAL(f(b,f(e,d)),f(f(b,e),d)). ** KEPT: 4786 (1447,2490) EQUAL(f(f(k,e),d),f(f(d,e),b)). ** KEPT: 4787 (1263,2490) EQUAL(f(d,f(b,e)),f(f(k,e),d)). ** KEPT: 4788 (1217,2490) EQUAL(f(f(g(f(g(x),x)),e),d),d). ---> New Demodulator: 4789 (4788) EQUAL(f(f(g(f(g(x),x)),e),d),d). ** KEPT: 4790 (1215,2490) EQUAL(f(f(g(f(x,g(x))),e),d),d). ---> New Demodulator: 4791 (4790) EQUAL(f(f(g(f(x,g(x))),e),d),d). ** KEPT: 4792 (3126,2490) EQUAL(f(f(f(h,g(d)),e),d),h). ---> New Demodulator: 4793 (4792) EQUAL(f(f(f(h,g(d)),e),d),h). ** KEPT: 4794 (2851,2490) EQUAL(f(f(g(f(k,e)),e),d),h). ---> New Demodulator: 4795 (4794) EQUAL(f(f(g(f(k,e)),e),d),h). ** KEPT: 4796 (1052,2490) EQUAL(f(f(f(e,k),e),d),f(d,b)). ** KEPT: 4797 (2667,2490) EQUAL(f(f(f(g(h),e),e),d),b). ---> New Demodulator: 4798 (4797) EQUAL(f(f(f(g(h),e),e),d),b). ** KEPT: 4799 (2663,2490) EQUAL(f(f(f(g(k),e),e),d),h). ---> New Demodulator: 4800 (4799) EQUAL(f(f(f(g(k),e),e),d),h). ** KEPT: 4801 (2659,2490) EQUAL(f(f(g(f(e,e)),e),d),d). ---> New Demodulator: 4802 (4801) EQUAL(f(f(g(f(e,e)),e),d),d). ** KEPT: 4803 (2633,2490) EQUAL(f(f(f(e,g(d)),e),d),e). ---> New Demodulator: 4804 (4803) EQUAL(f(f(f(e,g(d)),e),d),e). ** KEPT: 4805 (2641,2490) EQUAL(f(f(f(e,e),e),d),d). ---> New Demodulator: 4806 (4805) EQUAL(f(f(f(e,e),e),d),d). ** KEPT: 4807 (869,2490) EQUAL(f(d,f(e,b)),f(f(k,e),d)). ** KEPT: 4808 (750,2490) EQUAL(f(h,f(b,b)),f(f(k,e),d)). ** KEPT: 4809 (1725,2490) EQUAL(f(f(f(b,g(d)),e),d),b). ---> New Demodulator: 4810 (4809) EQUAL(f(f(f(b,g(d)),e),d),b). ** KEPT: 4811 (1157,2490) EQUAL(f(f(g(f(e,k)),e),d),h). ---> New Demodulator: 4812 (4811) EQUAL(f(f(g(f(e,k)),e),d),h). ** KEPT: 4813 (131,2490) EQUAL(f(f(x,k),h),f(f(x,e),d)). ** KEPT: 4814 (721,2490) EQUAL(f(f(f(g(d),k),e),d),b). ---> New Demodulator: 4815 (4814) EQUAL(f(f(f(g(d),k),e),d),b). ** KEPT: 4816 (705,2490) EQUAL(f(f(g(f(e,h)),e),d),b). ---> New Demodulator: 4817 (4816) EQUAL(f(f(g(f(e,h)),e),d),b). ** KEPT: 4818 (520,2490) EQUAL(f(f(f(a,g(d)),e),d),a). ---> New Demodulator: 4819 (4818) EQUAL(f(f(f(a,g(d)),e),d),a). ** KEPT: 4820 (5,2490) EQUAL(f(f(f(x,y),e),d),f(x,f(y,d))). ** KEPT: 4821 (3,2490) EQUAL(f(f(g(d),e),d),e). ---> New Demodulator: 4822 (4821) EQUAL(f(f(g(d),e),d),e). 4781 back subsumes: 4147 (131,1900) EQUAL(f(f(f(a,e),k),h),f(a,d)). 4781 back subsumes: 3991 (131,1803) EQUAL(f(f(f(c,e),k),h),f(c,d)). 4781 back subsumes: 2325 (131,861) EQUAL(f(f(f(d,e),k),h),f(d,d)). >>>> Starting back demodulation with: 4784 (4783) EQUAL(f(f(g(f(d,g(a))),e),d),a). >>>> Starting back demodulation with: 4789 (4788) EQUAL(f(f(g(f(g(x),x)),e),d),d). >>>> Starting back demodulation with: 4791 (4790) EQUAL(f(f(g(f(x,g(x))),e),d),d). >>>> Starting back demodulation with: 4793 (4792) EQUAL(f(f(f(h,g(d)),e),d),h). >>>> Starting back demodulation with: 4795 (4794) EQUAL(f(f(g(f(k,e)),e),d),h). >>>> Starting back demodulation with: 4798 (4797) EQUAL(f(f(f(g(h),e),e),d),b). >>>> Starting back demodulation with: 4800 (4799) EQUAL(f(f(f(g(k),e),e),d),h). >>>> Starting back demodulation with: 4802 (4801) EQUAL(f(f(g(f(e,e)),e),d),d). >>>> Starting back demodulation with: 4804 (4803) EQUAL(f(f(f(e,g(d)),e),d),e). >>>> Starting back demodulation with: 4806 (4805) EQUAL(f(f(f(e,e),e),d),d). >>>> Starting back demodulation with: 4810 (4809) EQUAL(f(f(f(b,g(d)),e),d),b). >>>> Starting back demodulation with: 4812 (4811) EQUAL(f(f(g(f(e,k)),e),d),h). 4813 back subsumes: 4167 (131,1900) EQUAL(f(f(a,k),h),f(f(a,e),d)). 4813 back subsumes: 4012 (131,1803) EQUAL(f(f(c,k),h),f(f(c,e),d)). 4813 back subsumes: 2345 (131,861) EQUAL(f(f(d,k),h),f(f(d,e),d)). >>>> Starting back demodulation with: 4815 (4814) EQUAL(f(f(f(g(d),k),e),d),b). >>>> Starting back demodulation with: 4817 (4816) EQUAL(f(f(g(f(e,h)),e),d),b). >>>> Starting back demodulation with: 4819 (4818) EQUAL(f(f(f(a,g(d)),e),d),a). >>>> Starting back demodulation with: 4822 (4821) EQUAL(f(f(g(d),e),d),e). ** KEPT: 4823 (2490,1175) EQUAL(f(g(f(x,e)),f(x,d)),d). ---> New Demodulator: 4824 (4823) EQUAL(f(g(f(x,e)),f(x,d)),d). ** KEPT: 4825 (2490,5) EQUAL(f(f(x,f(y,e)),d),f(x,f(y,d))). ** KEPT: 4826 (2490,5) EQUAL(f(f(x,e),f(d,y)),f(f(x,d),y)). ** KEPT: 4827 (2490,1749) EQUAL(f(d,g(f(f(g(b),e),d))),b). ---> New Demodulator: 4828 (4827) EQUAL(f(d,g(f(f(g(b),e),d))),b). ** KEPT: 4829 (2490,1249) EQUAL(f(d,g(f(f(g(a),e),d))),a). ---> New Demodulator: 4830 (4829) EQUAL(f(d,g(f(f(g(a),e),d))),a). ** KEPT: 4831 (2490,1197) EQUAL(f(x,f(f(g(x),e),d)),d). ---> New Demodulator: 4832 (4831) EQUAL(f(x,f(f(g(x),e),d)),d). ** KEPT: 4833 (2490,1175) EQUAL(f(g(x),f(f(x,e),d)),d). ---> New Demodulator: 4834 (4833) EQUAL(f(g(x),f(f(x,e),d)),d). ** KEPT: 4835 (2490,695) EQUAL(f(g(d),f(f(k,e),d)),b). ---> New Demodulator: 4836 (4835) EQUAL(f(g(d),f(f(k,e),d)),b). ** KEPT: 4837 (2490,151) EQUAL(f(f(f(k,e),d),g(b)),d). ---> New Demodulator: 4838 (4837) EQUAL(f(f(f(k,e),d),g(b)),d). ** KEPT: 4839 (2490,5) EQUAL(f(x,f(f(y,e),d)),f(f(x,y),d)). ** KEPT: 4840 (2490,5) EQUAL(f(f(f(x,e),d),y),f(x,f(d,y))). >>>> Starting back demodulation with: 4824 (4823) EQUAL(f(g(f(x,e)),f(x,d)),d). >> back demodulating: 4177 (4176) EQUAL(f(g(f(a,e)),f(a,d)),d). >> back demodulating: 4176 (1900,1175) EQUAL(f(g(f(a,e)),f(a,d)),d). >> back demodulating: 4026 (4025) EQUAL(f(g(f(c,e)),f(c,d)),d). >> back demodulating: 4025 (1803,1175) EQUAL(f(g(f(c,e)),f(c,d)),d). >> back demodulating: 2364 (2363) EQUAL(f(g(f(d,e)),f(d,d)),d). >> back demodulating: 2363 (861,1175) EQUAL(f(g(f(d,e)),f(d,d)),d). >>>> Starting back demodulation with: 4828 (4827) EQUAL(f(d,g(f(f(g(b),e),d))),b). >>>> Starting back demodulation with: 4830 (4829) EQUAL(f(d,g(f(f(g(a),e),d))),a). >>>> Starting back demodulation with: 4832 (4831) EQUAL(f(x,f(f(g(x),e),d)),d). >> back demodulating: 3709 (3708) EQUAL(f(b,f(f(g(b),e),d)),d). >> back demodulating: 3708 (3667,1175) EQUAL(f(b,f(f(g(b),e),d)),d). >>>> Starting back demodulation with: 4834 (4833) EQUAL(f(g(x),f(f(x,e),d)),d). >> back demodulating: 4188 (4187) EQUAL(f(g(a),f(f(a,e),d)),d). >> back demodulating: 4187 (1900,1175) EQUAL(f(g(a),f(f(a,e),d)),d). >> back demodulating: 4030 (4029) EQUAL(f(g(c),f(f(c,e),d)),d). >> back demodulating: 4029 (1803,1175) EQUAL(f(g(c),f(f(c,e),d)),d). >> back demodulating: 2371 (2370) EQUAL(f(g(d),f(f(d,e),d)),d). >> back demodulating: 2370 (861,1175) EQUAL(f(g(d),f(f(d,e),d)),d). >>>> Starting back demodulation with: 4836 (4835) EQUAL(f(g(d),f(f(k,e),d)),b). >>>> Starting back demodulation with: 4838 (4837) EQUAL(f(f(f(k,e),d),g(b)),d). new given clause: 4821 (3,2490) EQUAL(f(f(g(d),e),d),e). ** KEPT: 4841 (8,4821) EQUAL(f(f(g(f(c,g(a))),e),d),e). ---> New Demodulator: 4842 (4841) EQUAL(f(f(g(f(c,g(a))),e),d),e). ** KEPT: 4843 (4,4821) EQUAL(f(f(g(d),f(x,g(x))),d),e). ---> New Demodulator: 4844 (4843) EQUAL(f(f(g(d),f(x,g(x))),d),e). ** KEPT: 4845 (3,4821) EQUAL(f(f(g(d),f(g(x),x)),d),e). ---> New Demodulator: 4846 (4845) EQUAL(f(f(g(d),f(g(x),x)),d),e). ** KEPT: 4847 (8,4821) EQUAL(f(f(g(d),e),f(c,g(a))),e). ---> New Demodulator: 4848 (4847) EQUAL(f(f(g(d),e),f(c,g(a))),e). ** KEPT: 4849 (2490,4821) EQUAL(f(f(f(g(d),e),e),d),e). ---> New Demodulator: 4850 (4849) EQUAL(f(f(f(g(d),e),e),d),e). ** KEPT: 4851 (131,4821) EQUAL(f(f(f(g(d),e),k),h),e). ---> New Demodulator: 4852 (4851) EQUAL(f(f(f(g(d),e),k),h),e). ** KEPT: 4853 (5,4821) EQUAL(f(g(d),f(e,d)),e). ---> New Demodulator: 4854 (4853) EQUAL(f(g(d),f(e,d)),e). >>>> Starting back demodulation with: 4842 (4841) EQUAL(f(f(g(f(c,g(a))),e),d),e). >>>> Starting back demodulation with: 4844 (4843) EQUAL(f(f(g(d),f(x,g(x))),d),e). >>>> Starting back demodulation with: 4846 (4845) EQUAL(f(f(g(d),f(g(x),x)),d),e). >>>> Starting back demodulation with: 4848 (4847) EQUAL(f(f(g(d),e),f(c,g(a))),e). >>>> Starting back demodulation with: 4850 (4849) EQUAL(f(f(f(g(d),e),e),d),e). >>>> Starting back demodulation with: 4852 (4851) EQUAL(f(f(f(g(d),e),k),h),e). >>>> Starting back demodulation with: 4854 (4853) EQUAL(f(g(d),f(e,d)),e). ** KEPT: 4855 (4821,1175) EQUAL(f(g(f(g(d),e)),e),d). ---> New Demodulator: 4856 (4855) EQUAL(f(g(f(g(d),e)),e),d). ** KEPT: 4857 (4821,5) EQUAL(f(f(x,f(g(d),e)),d),f(x,e)). ** KEPT: 4858 (4821,5) EQUAL(f(f(g(d),e),f(d,x)),f(e,x)). >>>> Starting back demodulation with: 4856 (4855) EQUAL(f(g(f(g(d),e)),e),d). new given clause: 4853 (5,4821) EQUAL(f(g(d),f(e,d)),e). ** KEPT: 4859 (8,4853) EQUAL(f(g(f(c,g(a))),f(e,d)),e). ---> New Demodulator: 4860 (4859) EQUAL(f(g(f(c,g(a))),f(e,d)),e). ** KEPT: 4861 (2489,4853) EQUAL(f(g(d),f(c,g(a))),e). ---> New Demodulator: 4862 (4861) EQUAL(f(g(d),f(c,g(a))),e). >>>> Starting back demodulation with: 4860 (4859) EQUAL(f(g(f(c,g(a))),f(e,d)),e). >>>> Starting back demodulation with: 4862 (4861) EQUAL(f(g(d),f(c,g(a))),e). >> back demodulating: 2741 (8,2685) EQUAL(f(e,f(g(d),f(c,g(a)))),e). >> back demodulating: 2742 (2741) EQUAL(f(e,f(g(d),f(c,g(a)))),e). ** KEPT: 4863 (4853,5) EQUAL(f(f(x,g(d)),f(e,d)),f(x,e)). ** KEPT: 4864 (4853,5) EQUAL(f(g(d),f(f(e,d),x)),f(e,x)). new given clause: 2505 (967,885,2488) EQUAL(f(f(e,d),f(e,e)),d). ** KEPT: 4865 (4,2505) EQUAL(f(f(e,d),f(f(x,g(x)),e)),d). ---> New Demodulator: 4866 (4865) EQUAL(f(f(e,d),f(f(x,g(x)),e)),d). ** KEPT: 4867 (3,2505) EQUAL(f(f(e,d),f(f(g(x),x),e)),d). ---> New Demodulator: 4868 (4867) EQUAL(f(f(e,d),f(f(g(x),x),e)),d). ** KEPT: 4869 (4,2505) EQUAL(f(f(e,d),f(e,f(x,g(x)))),d). ---> New Demodulator: 4870 (4869) EQUAL(f(f(e,d),f(e,f(x,g(x)))),d). ** KEPT: 4871 (3,2505) EQUAL(f(f(e,d),f(e,f(g(x),x))),d). ---> New Demodulator: 4872 (4871) EQUAL(f(f(e,d),f(e,f(g(x),x))),d). >>>> Starting back demodulation with: 4866 (4865) EQUAL(f(f(e,d),f(f(x,g(x)),e)),d). >>>> Starting back demodulation with: 4868 (4867) EQUAL(f(f(e,d),f(f(g(x),x),e)),d). >>>> Starting back demodulation with: 4870 (4869) EQUAL(f(f(e,d),f(e,f(x,g(x)))),d). >>>> Starting back demodulation with: 4872 (4871) EQUAL(f(f(e,d),f(e,f(g(x),x))),d). ** KEPT: 4873 (2505,5) EQUAL(f(f(x,f(e,d)),f(e,e)),f(x,d)). ** KEPT: 4874 (2505,5) EQUAL(f(f(e,d),f(f(e,e),x)),f(d,x)). new given clause: 2529 (967,667,2488) EQUAL(f(f(e,d),b),f(k,d)). ** KEPT: 4875 (5,2529) EQUAL(f(e,f(d,b)),f(k,d)). ** KEPT: 4876 (8,2529) EQUAL(f(k,f(c,g(a))),f(f(e,d),b)). ** KEPT: 4877 (2490,2529) EQUAL(f(f(k,e),d),f(f(e,d),b)). ** KEPT: 4878 (1263,2529) EQUAL(f(d,f(b,e)),f(f(e,d),b)). ** KEPT: 4879 (2529,5) EQUAL(f(f(x,f(e,d)),b),f(x,f(k,d))). ** KEPT: 4880 (2529,5) EQUAL(f(f(e,d),f(b,x)),f(f(k,d),x)). ** KEPT: 4881 (2529,5) EQUAL(f(x,f(f(e,d),b)),f(f(x,k),d)). ** KEPT: 4882 (2529,5) EQUAL(f(f(f(e,d),b),x),f(k,f(d,x))). new given clause: 2530 (967,667,2488) EQUAL(f(k,f(e,d)),f(d,b)). ** KEPT: 4883 (8,2530) EQUAL(f(f(c,g(a)),b),f(k,f(e,d))). ** KEPT: 4884 (2407,2530) EQUAL(f(k,f(e,d)),f(f(e,d),b)). ** KEPT: 4885 (1052,2530) EQUAL(f(k,f(e,d)),f(f(e,k),d)). ** KEPT: 4886 (1017,2530) EQUAL(f(k,f(e,d)),f(f(k,k),h)). ** KEPT: 4887 (861,2530) EQUAL(f(k,f(e,d)),f(f(d,e),b)). ** KEPT: 4888 (2530,5) EQUAL(f(f(x,k),f(e,d)),f(x,f(d,b))). ** KEPT: 4889 (2530,5) EQUAL(f(k,f(f(e,d),x)),f(f(d,b),x)). ** KEPT: 4890 (2530,5) EQUAL(f(x,f(k,f(e,d))),f(f(x,d),b)). ** KEPT: 4891 (2530,5) EQUAL(f(f(k,f(e,d)),x),f(d,f(b,x))). new given clause: 2551 (967,2208,2488) EQUAL(g(f(g(f(e,d)),h)),b). ** KEPT: 4892 (9,2551) EQUAL(g(f(g(f(e,d)),f(d,g(b)))),b). ---> New Demodulator: 4893 (4892) EQUAL(g(f(g(f(e,d)),f(d,g(b)))),b). ** KEPT: 4894 (1071,2551) EQUAL(g(f(f(g(f(e,d)),e),h)),b). ---> New Demodulator: 4895 (4894) EQUAL(g(f(f(g(f(e,d)),e),h)),b). >>>> Starting back demodulation with: 4893 (4892) EQUAL(g(f(g(f(e,d)),f(d,g(b)))),b). >>>> Starting back demodulation with: 4895 (4894) EQUAL(g(f(f(g(f(e,d)),e),h)),b). ** KEPT: 4896 (2551,3118) EQUAL(f(f(h,f(g(f(e,d)),h)),b),h). ---> New Demodulator: 4897 (4896) EQUAL(f(f(h,f(g(f(e,d)),h)),b),h). ** KEPT: 4898 (2551,2126) EQUAL(f(b,f(f(g(f(e,d)),h),a)),a). ---> New Demodulator: 4899 (4898) EQUAL(f(b,f(f(g(f(e,d)),h),a)),a). ** KEPT: 4900 (2551,2120) EQUAL(f(f(g(f(e,d)),h),f(b,a)),a). ---> New Demodulator: 4901 (4900) EQUAL(f(f(g(f(e,d)),h),f(b,a)),a). ** KEPT: 4902 (2551,3126,69) EQUAL(f(d,f(g(f(e,d)),h)),h). ---> New Demodulator: 4903 (4902) EQUAL(f(d,f(g(f(e,d)),h)),h). ** KEPT: 4904 (2551,1197) EQUAL(f(f(g(f(e,d)),h),f(b,d)),d). ---> New Demodulator: 4905 (4904) EQUAL(f(f(g(f(e,d)),h),f(b,d)),d). ** KEPT: 4906 (2551,1175) EQUAL(f(b,f(f(g(f(e,d)),h),d)),d). ---> New Demodulator: 4907 (4906) EQUAL(f(b,f(f(g(f(e,d)),h),d)),d). ** KEPT: 4908 (2551,1133) EQUAL(f(f(g(f(e,d)),h),f(b,h)),h). ---> New Demodulator: 4909 (4908) EQUAL(f(f(g(f(e,d)),h),f(b,h)),h). ** KEPT: 4910 (2551,1125) EQUAL(f(b,f(f(g(f(e,d)),h),h)),h). ---> New Demodulator: 4911 (4910) EQUAL(f(b,f(f(g(f(e,d)),h),h)),h). ** KEPT: 4912 (2551,1725) EQUAL(f(f(b,b),f(g(f(e,d)),h)),b). ---> New Demodulator: 4913 (4912) EQUAL(f(f(b,b),f(g(f(e,d)),h)),b). ** KEPT: 4914 (2551,526) EQUAL(f(f(a,f(g(f(e,d)),h)),b),a). ---> New Demodulator: 4915 (4914) EQUAL(f(f(a,f(g(f(e,d)),h)),b),a). ** KEPT: 4916 (2551,520) EQUAL(f(f(a,b),f(g(f(e,d)),h)),a). ---> New Demodulator: 4917 (4916) EQUAL(f(f(a,b),f(g(f(e,d)),h)),a). ** KEPT: 4918 (2551,266) EQUAL(f(f(g(f(e,d)),h),f(b,b)),b). ---> New Demodulator: 4919 (4918) EQUAL(f(f(g(f(e,d)),h),f(b,b)),b). ** KEPT: 4920 (2551,105) EQUAL(f(f(d,b),f(g(f(e,d)),h)),d). ---> New Demodulator: 4921 (4920) EQUAL(f(f(d,b),f(g(f(e,d)),h)),d). >>>> Starting back demodulation with: 4897 (4896) EQUAL(f(f(h,f(g(f(e,d)),h)),b),h). >>>> Starting back demodulation with: 4899 (4898) EQUAL(f(b,f(f(g(f(e,d)),h),a)),a). >>>> Starting back demodulation with: 4901 (4900) EQUAL(f(f(g(f(e,d)),h),f(b,a)),a). >>>> Starting back demodulation with: 4903 (4902) EQUAL(f(d,f(g(f(e,d)),h)),h). >>>> Starting back demodulation with: 4905 (4904) EQUAL(f(f(g(f(e,d)),h),f(b,d)),d). >>>> Starting back demodulation with: 4907 (4906) EQUAL(f(b,f(f(g(f(e,d)),h),d)),d). >>>> Starting back demodulation with: 4909 (4908) EQUAL(f(f(g(f(e,d)),h),f(b,h)),h). >>>> Starting back demodulation with: 4911 (4910) EQUAL(f(b,f(f(g(f(e,d)),h),h)),h). >>>> Starting back demodulation with: 4913 (4912) EQUAL(f(f(b,b),f(g(f(e,d)),h)),b). >>>> Starting back demodulation with: 4915 (4914) EQUAL(f(f(a,f(g(f(e,d)),h)),b),a). >>>> Starting back demodulation with: 4917 (4916) EQUAL(f(f(a,b),f(g(f(e,d)),h)),a). >>>> Starting back demodulation with: 4919 (4918) EQUAL(f(f(g(f(e,d)),h),f(b,b)),b). >>>> Starting back demodulation with: 4921 (4920) EQUAL(f(f(d,b),f(g(f(e,d)),h)),d). new given clause: 2655 (131,2641) EQUAL(f(f(f(e,e),k),h),d). ** KEPT: 4922 (4,2655) EQUAL(f(f(f(f(x,g(x)),e),k),h),d). ---> New Demodulator: 4923 (4922) EQUAL(f(f(f(f(x,g(x)),e),k),h),d). ** KEPT: 4924 (3,2655) EQUAL(f(f(f(f(g(x),x),e),k),h),d). ---> New Demodulator: 4925 (4924) EQUAL(f(f(f(f(g(x),x),e),k),h),d). ** KEPT: 4926 (4,2655) EQUAL(f(f(f(e,f(x,g(x))),k),h),d). ---> New Demodulator: 4927 (4926) EQUAL(f(f(f(e,f(x,g(x))),k),h),d). ** KEPT: 4928 (3,2655) EQUAL(f(f(f(e,f(g(x),x)),k),h),d). ---> New Demodulator: 4929 (4928) EQUAL(f(f(f(e,f(g(x),x)),k),h),d). ** KEPT: 4930 (5,2655) EQUAL(f(f(e,f(e,k)),h),d). ---> New Demodulator: 4931 (4930) EQUAL(f(f(e,f(e,k)),h),d). ** KEPT: 4932 (9,2655) EQUAL(f(f(f(e,e),k),f(d,g(b))),d). ---> New Demodulator: 4933 (4932) EQUAL(f(f(f(e,e),k),f(d,g(b))),d). ** KEPT: 4934 (1071,2655) EQUAL(f(f(f(f(e,e),k),e),h),d). ---> New Demodulator: 4935 (4934) EQUAL(f(f(f(f(e,e),k),e),h),d). >>>> Starting back demodulation with: 4923 (4922) EQUAL(f(f(f(f(x,g(x)),e),k),h),d). >>>> Starting back demodulation with: 4925 (4924) EQUAL(f(f(f(f(g(x),x),e),k),h),d). >>>> Starting back demodulation with: 4927 (4926) EQUAL(f(f(f(e,f(x,g(x))),k),h),d). >>>> Starting back demodulation with: 4929 (4928) EQUAL(f(f(f(e,f(g(x),x)),k),h),d). >>>> Starting back demodulation with: 4931 (4930) EQUAL(f(f(e,f(e,k)),h),d). >>>> Starting back demodulation with: 4933 (4932) EQUAL(f(f(f(e,e),k),f(d,g(b))),d). >>>> Starting back demodulation with: 4935 (4934) EQUAL(f(f(f(f(e,e),k),e),h),d). ** KEPT: 4936 (2655,1125) EQUAL(f(g(f(f(e,e),k)),d),h). ---> New Demodulator: 4937 (4936) EQUAL(f(g(f(f(e,e),k)),d),h). ** KEPT: 4938 (2655,72) EQUAL(f(f(f(e,e),k),d),f(d,b)). ** KEPT: 4939 (2655,5) EQUAL(f(f(x,f(f(e,e),k)),h),f(x,d)). ** KEPT: 4940 (2655,5) EQUAL(f(f(f(e,e),k),f(h,x)),f(d,x)). >>>> Starting back demodulation with: 4937 (4936) EQUAL(f(g(f(f(e,e),k)),d),h). new given clause: 2715 (2663,1175) EQUAL(f(g(f(g(k),e)),h),d). ** KEPT: 4941 (4,2715) EQUAL(f(g(f(g(k),f(x,g(x)))),h),d). ---> New Demodulator: 4942 (4941) EQUAL(f(g(f(g(k),f(x,g(x)))),h),d). ** KEPT: 4943 (3,2715) EQUAL(f(g(f(g(k),f(g(x),x))),h),d). ---> New Demodulator: 4944 (4943) EQUAL(f(g(f(g(k),f(g(x),x))),h),d). ** KEPT: 4945 (9,2715) EQUAL(f(g(f(g(k),e)),f(d,g(b))),d). ---> New Demodulator: 4946 (4945) EQUAL(f(g(f(g(k),e)),f(d,g(b))),d). ** KEPT: 4947 (1071,2715) EQUAL(f(f(g(f(g(k),e)),e),h),d). ---> New Demodulator: 4948 (4947) EQUAL(f(f(g(f(g(k),e)),e),h),d). >>>> Starting back demodulation with: 4942 (4941) EQUAL(f(g(f(g(k),f(x,g(x)))),h),d). >>>> Starting back demodulation with: 4944 (4943) EQUAL(f(g(f(g(k),f(g(x),x))),h),d). >>>> Starting back demodulation with: 4946 (4945) EQUAL(f(g(f(g(k),e)),f(d,g(b))),d). >>>> Starting back demodulation with: 4948 (4947) EQUAL(f(f(g(f(g(k),e)),e),h),d). ** KEPT: 4949 (2715,72) EQUAL(f(g(f(g(k),e)),d),f(d,b)). ** KEPT: 4950 (2715,5) EQUAL(f(f(x,g(f(g(k),e))),h),f(x,d)). ** KEPT: 4951 (2715,5) EQUAL(f(g(f(g(k),e)),f(h,x)),f(d,x)). new given clause: 2731 (2667,1175) EQUAL(f(g(f(g(h),e)),b),d). ** KEPT: 4952 (9,2731) EQUAL(f(g(f(g(f(d,g(b))),e)),b),d). ---> New Demodulator: 4953 (4952) EQUAL(f(g(f(g(f(d,g(b))),e)),b),d). ** KEPT: 4954 (4,2731) EQUAL(f(g(f(g(h),f(x,g(x)))),b),d). ---> New Demodulator: 4955 (4954) EQUAL(f(g(f(g(h),f(x,g(x)))),b),d). ** KEPT: 4956 (3,2731) EQUAL(f(g(f(g(h),f(g(x),x))),b),d). ---> New Demodulator: 4957 (4956) EQUAL(f(g(f(g(h),f(g(x),x))),b),d). ** KEPT: 4958 (1444,2731) EQUAL(f(g(f(g(h),e)),f(e,b)),d). ---> New Demodulator: 4959 (4958) EQUAL(f(g(f(g(h),e)),f(e,b)),d). >>>> Starting back demodulation with: 4953 (4952) EQUAL(f(g(f(g(f(d,g(b))),e)),b),d). >>>> Starting back demodulation with: 4955 (4954) EQUAL(f(g(f(g(h),f(x,g(x)))),b),d). >>>> Starting back demodulation with: 4957 (4956) EQUAL(f(g(f(g(h),f(g(x),x))),b),d). >>>> Starting back demodulation with: 4959 (4958) EQUAL(f(g(f(g(h),e)),f(e,b)),d). ** KEPT: 4960 (2731,5) EQUAL(f(f(x,g(f(g(h),e))),b),f(x,d)). ** KEPT: 4961 (2731,5) EQUAL(f(g(f(g(h),e)),f(b,x)),f(d,x)). new given clause: 2767 (5,1052) EQUAL(f(e,f(k,d)),f(d,b)). ** KEPT: 4962 (4,2767) EQUAL(f(f(x,g(x)),f(k,d)),f(d,b)). ** KEPT: 4963 (3,2767) EQUAL(f(f(g(x),x),f(k,d)),f(d,b)). ** KEPT: 4964 (8,2767) EQUAL(f(e,f(k,f(c,g(a)))),f(d,b)). ** KEPT: 4965 (2490,2767) EQUAL(f(e,f(f(k,e),d)),f(d,b)). ** KEPT: 4966 (1263,2767) EQUAL(f(e,f(d,f(b,e))),f(d,b)). ** KEPT: 4967 (869,2767) EQUAL(f(e,f(d,f(e,b))),f(d,b)). ** KEPT: 4968 (750,2767) EQUAL(f(e,f(h,f(b,b))),f(d,b)). ** KEPT: 4969 (131,2767) EQUAL(f(e,f(f(k,k),h)),f(d,b)). ** KEPT: 4970 (8,2767) EQUAL(f(f(c,g(a)),b),f(e,f(k,d))). ** KEPT: 4971 (2530,2767) EQUAL(f(k,f(e,d)),f(e,f(k,d))). ** KEPT: 4972 (1444,2767) EQUAL(f(d,f(e,b)),f(e,f(k,d))). ** KEPT: 4973 (1017,2767) EQUAL(f(f(k,k),h),f(e,f(k,d))). ** KEPT: 4974 (861,2767) EQUAL(f(f(d,e),b),f(e,f(k,d))). ** KEPT: 4975 (73,2767) EQUAL(f(h,f(b,b)),f(e,f(k,d))). ** KEPT: 4976 (2767,1581) EQUAL(f(b,f(k,d)),f(b,f(d,b))). ** KEPT: 4977 (2767,483) EQUAL(f(a,f(k,d)),f(a,f(d,b))). ** KEPT: 4978 (2767,92) EQUAL(f(d,f(k,d)),f(d,f(d,b))). ** KEPT: 4979 (2767,5) EQUAL(f(f(x,e),f(k,d)),f(x,f(d,b))). ** KEPT: 4980 (2767,5) EQUAL(f(e,f(f(k,d),x)),f(f(d,b),x)). ** KEPT: 4981 (2767,1227) EQUAL(f(g(k),f(e,f(k,d))),d). ---> New Demodulator: 4982 (4981) EQUAL(f(g(k),f(e,f(k,d))),d). ** KEPT: 4983 (2767,260) EQUAL(f(g(d),f(e,f(k,d))),b). ---> New Demodulator: 4984 (4983) EQUAL(f(g(d),f(e,f(k,d))),b). ** KEPT: 4985 (2767,113) EQUAL(f(f(e,f(k,d)),g(b)),d). ---> New Demodulator: 4986 (4985) EQUAL(f(f(e,f(k,d)),g(b)),d). ** KEPT: 4987 (2767,5) EQUAL(f(x,f(e,f(k,d))),f(f(x,d),b)). ** KEPT: 4988 (2767,5) EQUAL(f(f(e,f(k,d)),x),f(d,f(b,x))). >>>> Starting back demodulation with: 4982 (4981) EQUAL(f(g(k),f(e,f(k,d))),d). >>>> Starting back demodulation with: 4984 (4983) EQUAL(f(g(d),f(e,f(k,d))),b). >>>> Starting back demodulation with: 4986 (4985) EQUAL(f(f(e,f(k,d)),g(b)),d). new given clause: 2771 (132,1052,69) EQUAL(f(f(e,k),d),f(k,d)). ** KEPT: 4989 (4,2771) EQUAL(f(f(f(x,g(x)),k),d),f(k,d)). ** KEPT: 4990 (3,2771) EQUAL(f(f(f(g(x),x),k),d),f(k,d)). ** KEPT: 4991 (8,2771) EQUAL(f(f(e,k),f(c,g(a))),f(k,d)). ** KEPT: 4992 (2490,2771) EQUAL(f(f(f(e,k),e),d),f(k,d)). ** KEPT: 4993 (131,2771) EQUAL(f(f(f(e,k),k),h),f(k,d)). ** KEPT: 4994 (8,2771) EQUAL(f(k,f(c,g(a))),f(f(e,k),d)). ** KEPT: 4995 (2490,2771) EQUAL(f(f(k,e),d),f(f(e,k),d)). ** KEPT: 4996 (2771,1175) EQUAL(f(g(f(e,k)),f(k,d)),d). ---> New Demodulator: 4997 (4996) EQUAL(f(g(f(e,k)),f(k,d)),d). ** KEPT: 4998 (2771,5) EQUAL(f(f(x,f(e,k)),d),f(x,f(k,d))). ** KEPT: 4999 (2771,5) EQUAL(f(f(e,k),f(d,x)),f(f(k,d),x)). ** KEPT: 5000 (2771,2767) EQUAL(f(e,f(f(e,k),d)),f(d,b)). ** KEPT: 5001 (2771,5) EQUAL(f(x,f(f(e,k),d)),f(f(x,k),d)). ** KEPT: 5002 (2771,5) EQUAL(f(f(f(e,k),d),x),f(k,f(d,x))). >>>> Starting back demodulation with: 4997 (4996) EQUAL(f(g(f(e,k)),f(k,d)),d). new given clause: 2786 (2397,1071) EQUAL(f(f(e,d),h),f(d,h)). ** KEPT: 5003 (9,2786) EQUAL(f(f(e,d),f(d,g(b))),f(d,h)). ** KEPT: 5004 (8,2786) EQUAL(f(f(c,g(a)),h),f(f(e,d),h)). ** KEPT: 5005 (9,2786) EQUAL(f(d,f(d,g(b))),f(f(e,d),h)). ** KEPT: 5006 (1114,2786) EQUAL(f(d,f(h,e)),f(f(e,d),h)). ** KEPT: 5007 (2786,1125) EQUAL(f(g(f(e,d)),f(d,h)),h). ---> New Demodulator: 5008 (5007) EQUAL(f(g(f(e,d)),f(d,h)),h). ** KEPT: 5009 (2786,72) EQUAL(f(f(d,h),b),f(f(e,d),d)). ** KEPT: 5010 (2786,5) EQUAL(f(f(x,f(e,d)),h),f(x,f(d,h))). ** KEPT: 5011 (2786,5) EQUAL(f(f(e,d),f(h,x)),f(f(d,h),x)). ** KEPT: 5012 (2786,1125) EQUAL(f(g(d),f(f(e,d),h)),h). ---> New Demodulator: 5013 (5012) EQUAL(f(g(d),f(f(e,d),h)),h). ** KEPT: 5014 (2786,72) EQUAL(f(f(f(e,d),h),b),f(d,d)). ** KEPT: 5015 (2786,5) EQUAL(f(x,f(f(e,d),h)),f(f(x,d),h)). ** KEPT: 5016 (2786,5) EQUAL(f(f(f(e,d),h),x),f(d,f(h,x))). >>>> Starting back demodulation with: 5008 (5007) EQUAL(f(g(f(e,d)),f(d,h)),h). >>>> Starting back demodulation with: 5013 (5012) EQUAL(f(g(d),f(f(e,d),h)),h). new given clause: 2788 (1112,1071) EQUAL(f(f(e,h),h),f(h,h)). ** KEPT: 5017 (9,2788) EQUAL(f(f(e,h),f(d,g(b))),f(h,h)). ** KEPT: 5018 (9,2788) EQUAL(f(f(d,g(b)),h),f(f(e,h),h)). ** KEPT: 5019 (9,2788) EQUAL(f(h,f(d,g(b))),f(f(e,h),h)). ** KEPT: 5020 (1071,2788) EQUAL(f(f(h,e),h),f(f(e,h),h)). ** KEPT: 5021 (2788,1125) EQUAL(f(g(f(e,h)),f(h,h)),h). ---> New Demodulator: 5022 (5021) EQUAL(f(g(f(e,h)),f(h,h)),h). ** KEPT: 5023 (2788,72) EQUAL(f(f(h,h),b),f(f(e,h),d)). ** KEPT: 5024 (2788,5) EQUAL(f(f(x,f(e,h)),h),f(x,f(h,h))). ** KEPT: 5025 (2788,5) EQUAL(f(f(e,h),f(h,x)),f(f(h,h),x)). ** KEPT: 5026 (2788,3118) EQUAL(f(f(f(e,h),h),g(h)),h). ---> New Demodulator: 5027 (5026) EQUAL(f(f(f(e,h),h),g(h)),h). ** KEPT: 5028 (2788,1125) EQUAL(f(g(h),f(f(e,h),h)),h). ---> New Demodulator: 5029 (5028) EQUAL(f(g(h),f(f(e,h),h)),h). ** KEPT: 5030 (2788,72) EQUAL(f(f(f(e,h),h),b),f(h,d)). ** KEPT: 5031 (2788,5) EQUAL(f(x,f(f(e,h),h)),f(f(x,h),h)). ** KEPT: 5032 (2788,5) EQUAL(f(f(f(e,h),h),x),f(h,f(h,x))). >>>> Starting back demodulation with: 5022 (5021) EQUAL(f(g(f(e,h)),f(h,h)),h). >>>> Starting back demodulation with: 5027 (5026) EQUAL(f(f(f(e,h),h),g(h)),h). >>>> Starting back demodulation with: 5029 (5028) EQUAL(f(g(h),f(f(e,h),h)),h). new given clause: 2793 (5,1071) EQUAL(f(x,f(e,h)),f(x,h)). ** KEPT: 5033 (1803,2793) EQUAL(f(c,f(e,h)),f(f(c,e),h)). ** KEPT: 5034 (3126,2793) EQUAL(f(f(h,g(f(e,h))),h),h). ---> New Demodulator: 5035 (5034) EQUAL(f(f(h,g(f(e,h))),h),h). ** KEPT: 5036 (1725,2793) EQUAL(f(f(b,g(f(e,h))),h),b). ---> New Demodulator: 5037 (5036) EQUAL(f(f(b,g(f(e,h))),h),b). ** KEPT: 5038 (520,2793) EQUAL(f(f(a,g(f(e,h))),h),a). ---> New Demodulator: 5039 (5038) EQUAL(f(f(a,g(f(e,h))),h),a). ** KEPT: 5040 (105,2793) EQUAL(f(f(d,g(f(e,h))),h),d). ---> New Demodulator: 5041 (5040) EQUAL(f(f(d,g(f(e,h))),h),d). ** KEPT: 5042 (5,2793) EQUAL(f(x,f(y,f(e,h))),f(f(x,y),h)). ** KEPT: 5043 (3,2793) EQUAL(f(g(f(e,h)),h),e). ---> New Demodulator: 5044 (5043) EQUAL(f(g(f(e,h)),h),e). ** KEPT: 5045 (9,2793) EQUAL(f(x,f(d,g(b))),f(x,f(e,h))). ** KEPT: 5046 (2788,2793) EQUAL(f(h,f(e,h)),f(f(e,h),h)). ** KEPT: 5047 (2715,2793) EQUAL(f(g(f(g(k),e)),f(e,h)),d). ---> New Demodulator: 5048 (5047) EQUAL(f(g(f(g(k),e)),f(e,h)),d). ** KEPT: 5049 (2655,2793) EQUAL(f(f(f(e,e),k),f(e,h)),d). ---> New Demodulator: 5050 (5049) EQUAL(f(f(f(e,e),k),f(e,h)),d). ** KEPT: 5051 (1151,2793) EQUAL(f(g(f(g(x),x)),f(e,h)),h). ---> New Demodulator: 5052 (5051) EQUAL(f(g(f(g(x),x)),f(e,h)),h). ** KEPT: 5053 (1149,2793) EQUAL(f(g(f(x,g(x))),f(e,h)),h). ---> New Demodulator: 5054 (5053) EQUAL(f(g(f(x,g(x))),f(e,h)),h). ** KEPT: 5055 (1141,2793) EQUAL(f(g(f(g(k),h)),f(e,h)),b). ---> New Demodulator: 5056 (5055) EQUAL(f(g(f(g(k),h)),f(e,h)),b). ** KEPT: 5057 (2817,2793) EQUAL(f(f(g(h),e),f(e,h)),e). ---> New Demodulator: 5058 (5057) EQUAL(f(f(g(h),e),f(e,h)),e). ** KEPT: 5059 (2819,2793) EQUAL(f(f(e,e),f(e,h)),h). ---> New Demodulator: 5060 (5059) EQUAL(f(f(e,e),f(e,h)),h). ** KEPT: 5061 (2814,2793) EQUAL(f(f(k,e),f(e,h)),d). ---> New Demodulator: 5062 (5061) EQUAL(f(f(k,e),f(e,h)),d). ** KEPT: 5063 (1017,2793) EQUAL(f(f(k,k),f(e,h)),f(d,b)). ** KEPT: 5064 (2296,2793) EQUAL(f(f(b,g(d)),f(e,h)),e). ---> New Demodulator: 5065 (5064) EQUAL(f(f(b,g(d)),f(e,h)),e). ** KEPT: 5066 (1725,2793) EQUAL(f(f(b,g(h)),f(e,h)),b). ---> New Demodulator: 5067 (5066) EQUAL(f(f(b,g(h)),f(e,h)),b). ** KEPT: 5068 (1027,2793) EQUAL(f(f(g(d),k),f(e,h)),e). ---> New Demodulator: 5069 (5068) EQUAL(f(f(g(d),k),f(e,h)),e). ** KEPT: 5070 (1022,2793) EQUAL(f(f(g(h),k),f(e,h)),b). ---> New Demodulator: 5071 (5070) EQUAL(f(f(g(h),k),f(e,h)),b). ** KEPT: 5072 (1029,2793) EQUAL(f(f(e,k),f(e,h)),d). ---> New Demodulator: 5073 (5072) EQUAL(f(f(e,k),f(e,h)),d). ** KEPT: 5074 (520,2793) EQUAL(f(f(a,g(h)),f(e,h)),a). ---> New Demodulator: 5075 (5074) EQUAL(f(f(a,g(h)),f(e,h)),a). ** KEPT: 5076 (5,2793) EQUAL(f(f(x,y),f(e,h)),f(x,f(y,h))). >>>> Starting back demodulation with: 5035 (5034) EQUAL(f(f(h,g(f(e,h))),h),h). >>>> Starting back demodulation with: 5037 (5036) EQUAL(f(f(b,g(f(e,h))),h),b). >>>> Starting back demodulation with: 5039 (5038) EQUAL(f(f(a,g(f(e,h))),h),a). >>>> Starting back demodulation with: 5041 (5040) EQUAL(f(f(d,g(f(e,h))),h),d). >>>> Starting back demodulation with: 5044 (5043) EQUAL(f(g(f(e,h)),h),e). >> back demodulating: 733 (72,705) EQUAL(f(f(g(f(e,h)),h),b),b). >> back demodulating: 734 (733) EQUAL(f(f(g(f(e,h)),h),b),b). >>>> Starting back demodulation with: 5048 (5047) EQUAL(f(g(f(g(k),e)),f(e,h)),d). >>>> Starting back demodulation with: 5050 (5049) EQUAL(f(f(f(e,e),k),f(e,h)),d). >>>> Starting back demodulation with: 5052 (5051) EQUAL(f(g(f(g(x),x)),f(e,h)),h). >>>> Starting back demodulation with: 5054 (5053) EQUAL(f(g(f(x,g(x))),f(e,h)),h). >>>> Starting back demodulation with: 5056 (5055) EQUAL(f(g(f(g(k),h)),f(e,h)),b). >>>> Starting back demodulation with: 5058 (5057) EQUAL(f(f(g(h),e),f(e,h)),e). >>>> Starting back demodulation with: 5060 (5059) EQUAL(f(f(e,e),f(e,h)),h). >>>> Starting back demodulation with: 5062 (5061) EQUAL(f(f(k,e),f(e,h)),d). >>>> Starting back demodulation with: 5065 (5064) EQUAL(f(f(b,g(d)),f(e,h)),e). >>>> Starting back demodulation with: 5067 (5066) EQUAL(f(f(b,g(h)),f(e,h)),b). >>>> Starting back demodulation with: 5069 (5068) EQUAL(f(f(g(d),k),f(e,h)),e). >>>> Starting back demodulation with: 5071 (5070) EQUAL(f(f(g(h),k),f(e,h)),b). >>>> Starting back demodulation with: 5073 (5072) EQUAL(f(f(e,k),f(e,h)),d). >>>> Starting back demodulation with: 5075 (5074) EQUAL(f(f(a,g(h)),f(e,h)),a). ** KEPT: 5077 (2793,3118) EQUAL(f(f(h,h),g(f(e,h))),h). ---> New Demodulator: 5078 (5077) EQUAL(f(f(h,h),g(f(e,h))),h). ** KEPT: 5079 (2793,5) EQUAL(f(x,f(f(e,h),y)),f(f(x,h),y)). ** KEPT: 5080 (2793,2551) EQUAL(g(f(g(f(e,d)),f(e,h))),b). ---> New Demodulator: 5081 (5080) EQUAL(g(f(g(f(e,d)),f(e,h))),b). ** KEPT: 5082 (2793,1751) EQUAL(f(h,g(f(g(b),f(e,h)))),b). ---> New Demodulator: 5083 (5082) EQUAL(f(h,g(f(g(b),f(e,h)))),b). ** KEPT: 5084 (2793,1189) EQUAL(f(h,g(f(g(a),f(e,h)))),a). ---> New Demodulator: 5085 (5084) EQUAL(f(h,g(f(g(a),f(e,h)))),a). ** KEPT: 5086 (2793,3118) EQUAL(f(f(h,f(e,h)),g(h)),h). ---> New Demodulator: 5087 (5086) EQUAL(f(f(h,f(e,h)),g(h)),h). ** KEPT: 5088 (2793,1133) EQUAL(f(x,f(g(x),f(e,h))),h). ---> New Demodulator: 5089 (5088) EQUAL(f(x,f(g(x),f(e,h))),h). ** KEPT: 5090 (2793,1141) EQUAL(f(g(f(g(k),f(e,h))),h),b). ---> New Demodulator: 5091 (5090) EQUAL(f(g(f(g(k),f(e,h))),h),b). ** KEPT: 5092 (2793,1074) EQUAL(f(f(g(k),f(e,h)),b),h). ---> New Demodulator: 5093 (5092) EQUAL(f(f(g(k),f(e,h)),b),h). ** KEPT: 5094 (2793,2290) EQUAL(f(b,f(g(d),f(e,h))),e). ---> New Demodulator: 5095 (5094) EQUAL(f(b,f(g(d),f(e,h))),e). ** KEPT: 5096 (2793,2208) EQUAL(g(f(g(d),f(e,h))),b). ---> New Demodulator: 5097 (5096) EQUAL(g(f(g(d),f(e,h))),b). ** KEPT: 5098 (2793,676) EQUAL(f(f(g(d),f(e,h)),b),e). ---> New Demodulator: 5099 (5098) EQUAL(f(f(g(d),f(e,h)),b),e). ** KEPT: 5100 (2793,1125) EQUAL(f(g(x),f(x,f(e,h))),h). ---> New Demodulator: 5101 (5100) EQUAL(f(g(x),f(x,f(e,h))),h). ** KEPT: 5102 (2793,5) EQUAL(f(f(x,f(e,h)),y),f(x,f(h,y))). >>>> Starting back demodulation with: 5078 (5077) EQUAL(f(f(h,h),g(f(e,h))),h). 5079 back subsumes: 5031 (2788,5) EQUAL(f(x,f(f(e,h),h)),f(f(x,h),h)). >>>> Starting back demodulation with: 5081 (5080) EQUAL(g(f(g(f(e,d)),f(e,h))),b). >>>> Starting back demodulation with: 5083 (5082) EQUAL(f(h,g(f(g(b),f(e,h)))),b). >>>> Starting back demodulation with: 5085 (5084) EQUAL(f(h,g(f(g(a),f(e,h)))),a). >>>> Starting back demodulation with: 5087 (5086) EQUAL(f(f(h,f(e,h)),g(h)),h). >>>> Starting back demodulation with: 5089 (5088) EQUAL(f(x,f(g(x),f(e,h))),h). >>>> Starting back demodulation with: 5091 (5090) EQUAL(f(g(f(g(k),f(e,h))),h),b). >>>> Starting back demodulation with: 5093 (5092) EQUAL(f(f(g(k),f(e,h)),b),h). >>>> Starting back demodulation with: 5095 (5094) EQUAL(f(b,f(g(d),f(e,h))),e). >>>> Starting back demodulation with: 5097 (5096) EQUAL(g(f(g(d),f(e,h))),b). >>>> Starting back demodulation with: 5099 (5098) EQUAL(f(f(g(d),f(e,h)),b),e). >>>> Starting back demodulation with: 5101 (5100) EQUAL(f(g(x),f(x,f(e,h))),h). >> back demodulating: 3809 (3808) EQUAL(f(g(b),f(b,f(e,h))),h). >> back demodulating: 3808 (1581,1125) EQUAL(f(g(b),f(b,f(e,h))),h). >> back demodulating: 1933 (1932) EQUAL(f(g(a),f(a,f(e,h))),h). >> back demodulating: 1932 (483,1125) EQUAL(f(g(a),f(a,f(e,h))),h). >> back demodulating: 1162 (1161) EQUAL(f(g(d),f(d,f(e,h))),h). >> back demodulating: 1161 (92,1125) EQUAL(f(g(d),f(d,f(e,h))),h). 5102 back subsumes: 5024 (2788,5) EQUAL(f(f(x,f(e,h)),h),f(x,f(h,h))). new given clause: 5043 (3,2793) EQUAL(f(g(f(e,h)),h),e). ** KEPT: 5103 (9,5043) EQUAL(f(g(f(e,h)),f(d,g(b))),e). ---> New Demodulator: 5104 (5103) EQUAL(f(g(f(e,h)),f(d,g(b))),e). ** KEPT: 5105 (1071,5043) EQUAL(f(f(g(f(e,h)),e),h),e). ---> New Demodulator: 5106 (5105) EQUAL(f(f(g(f(e,h)),e),h),e). >>>> Starting back demodulation with: 5104 (5103) EQUAL(f(g(f(e,h)),f(d,g(b))),e). >>>> Starting back demodulation with: 5106 (5105) EQUAL(f(f(g(f(e,h)),e),h),e). ** KEPT: 5107 (5043,5) EQUAL(f(f(x,g(f(e,h))),h),f(x,e)). ** KEPT: 5108 (5043,5) EQUAL(f(g(f(e,h)),f(h,x)),f(e,x)). new given clause: 2809 (1029,1071) EQUAL(f(f(f(e,k),e),h),d). ** KEPT: 5109 (4,2809) EQUAL(f(f(f(f(x,g(x)),k),e),h),d). ---> New Demodulator: 5110 (5109) EQUAL(f(f(f(f(x,g(x)),k),e),h),d). ** KEPT: 5111 (3,2809) EQUAL(f(f(f(f(g(x),x),k),e),h),d). ---> New Demodulator: 5112 (5111) EQUAL(f(f(f(f(g(x),x),k),e),h),d). ** KEPT: 5113 (4,2809) EQUAL(f(f(f(e,k),f(x,g(x))),h),d). ---> New Demodulator: 5114 (5113) EQUAL(f(f(f(e,k),f(x,g(x))),h),d). ** KEPT: 5115 (3,2809) EQUAL(f(f(f(e,k),f(g(x),x)),h),d). ---> New Demodulator: 5116 (5115) EQUAL(f(f(f(e,k),f(g(x),x)),h),d). ** KEPT: 5117 (5,2809) EQUAL(f(f(e,f(k,e)),h),d). ---> New Demodulator: 5118 (5117) EQUAL(f(f(e,f(k,e)),h),d). ** KEPT: 5119 (9,2809) EQUAL(f(f(f(e,k),e),f(d,g(b))),d). ---> New Demodulator: 5120 (5119) EQUAL(f(f(f(e,k),e),f(d,g(b))),d). ** KEPT: 5121 (2793,2809) EQUAL(f(f(f(e,k),e),f(e,h)),d). ---> New Demodulator: 5122 (5121) EQUAL(f(f(f(e,k),e),f(e,h)),d). ** KEPT: 5123 (1071,2809) EQUAL(f(f(f(f(e,k),e),e),h),d). ---> New Demodulator: 5124 (5123) EQUAL(f(f(f(f(e,k),e),e),h),d). >>>> Starting back demodulation with: 5110 (5109) EQUAL(f(f(f(f(x,g(x)),k),e),h),d). >>>> Starting back demodulation with: 5112 (5111) EQUAL(f(f(f(f(g(x),x),k),e),h),d). >>>> Starting back demodulation with: 5114 (5113) EQUAL(f(f(f(e,k),f(x,g(x))),h),d). >>>> Starting back demodulation with: 5116 (5115) EQUAL(f(f(f(e,k),f(g(x),x)),h),d). >>>> Starting back demodulation with: 5118 (5117) EQUAL(f(f(e,f(k,e)),h),d). >>>> Starting back demodulation with: 5120 (5119) EQUAL(f(f(f(e,k),e),f(d,g(b))),d). >>>> Starting back demodulation with: 5122 (5121) EQUAL(f(f(f(e,k),e),f(e,h)),d). >>>> Starting back demodulation with: 5124 (5123) EQUAL(f(f(f(f(e,k),e),e),h),d). ** KEPT: 5125 (2809,1125) EQUAL(f(g(f(f(e,k),e)),d),h). ---> New Demodulator: 5126 (5125) EQUAL(f(g(f(f(e,k),e)),d),h). ** KEPT: 5127 (2809,5) EQUAL(f(f(x,f(f(e,k),e)),h),f(x,d)). ** KEPT: 5128 (2809,5) EQUAL(f(f(f(e,k),e),f(h,x)),f(d,x)). >>>> Starting back demodulation with: 5126 (5125) EQUAL(f(g(f(f(e,k),e)),d),h). new given clause: 2830 (1071,2208) EQUAL(g(f(f(g(d),e),h)),b). ** KEPT: 5129 (8,2830) EQUAL(g(f(f(g(f(c,g(a))),e),h)),b). ---> New Demodulator: 5130 (5129) EQUAL(g(f(f(g(f(c,g(a))),e),h)),b). ** KEPT: 5131 (4,2830) EQUAL(g(f(f(g(d),f(x,g(x))),h)),b). ---> New Demodulator: 5132 (5131) EQUAL(g(f(f(g(d),f(x,g(x))),h)),b). ** KEPT: 5133 (3,2830) EQUAL(g(f(f(g(d),f(g(x),x)),h)),b). ---> New Demodulator: 5134 (5133) EQUAL(g(f(f(g(d),f(g(x),x)),h)),b). ** KEPT: 5135 (9,2830) EQUAL(g(f(f(g(d),e),f(d,g(b)))),b). ---> New Demodulator: 5136 (5135) EQUAL(g(f(f(g(d),e),f(d,g(b)))),b). ** KEPT: 5137 (2793,2830) EQUAL(g(f(f(g(d),e),f(e,h))),b). ---> New Demodulator: 5138 (5137) EQUAL(g(f(f(g(d),e),f(e,h))),b). ** KEPT: 5139 (1071,2830) EQUAL(g(f(f(f(g(d),e),e),h)),b). ---> New Demodulator: 5140 (5139) EQUAL(g(f(f(f(g(d),e),e),h)),b). >>>> Starting back demodulation with: 5130 (5129) EQUAL(g(f(f(g(f(c,g(a))),e),h)),b). >>>> Starting back demodulation with: 5132 (5131) EQUAL(g(f(f(g(d),f(x,g(x))),h)),b). >>>> Starting back demodulation with: 5134 (5133) EQUAL(g(f(f(g(d),f(g(x),x)),h)),b). >>>> Starting back demodulation with: 5136 (5135) EQUAL(g(f(f(g(d),e),f(d,g(b)))),b). >>>> Starting back demodulation with: 5138 (5137) EQUAL(g(f(f(g(d),e),f(e,h))),b). >>>> Starting back demodulation with: 5140 (5139) EQUAL(g(f(f(f(g(d),e),e),h)),b). ** KEPT: 5141 (2830,3118) EQUAL(f(f(h,f(f(g(d),e),h)),b),h). ---> New Demodulator: 5142 (5141) EQUAL(f(f(h,f(f(g(d),e),h)),b),h). ** KEPT: 5143 (2830,2126) EQUAL(f(b,f(f(f(g(d),e),h),a)),a). ---> New Demodulator: 5144 (5143) EQUAL(f(b,f(f(f(g(d),e),h),a)),a). ** KEPT: 5145 (2830,2120) EQUAL(f(f(f(g(d),e),h),f(b,a)),a). ---> New Demodulator: 5146 (5145) EQUAL(f(f(f(g(d),e),h),f(b,a)),a). ** KEPT: 5147 (2830,1197) EQUAL(f(f(f(g(d),e),h),f(b,d)),d). ---> New Demodulator: 5148 (5147) EQUAL(f(f(f(g(d),e),h),f(b,d)),d). ** KEPT: 5149 (2830,1175) EQUAL(f(b,f(f(f(g(d),e),h),d)),d). ---> New Demodulator: 5150 (5149) EQUAL(f(b,f(f(f(g(d),e),h),d)),d). ** KEPT: 5151 (2830,1133) EQUAL(f(f(f(g(d),e),h),f(b,h)),h). ---> New Demodulator: 5152 (5151) EQUAL(f(f(f(g(d),e),h),f(b,h)),h). ** KEPT: 5153 (2830,1125) EQUAL(f(b,f(f(f(g(d),e),h),h)),h). ---> New Demodulator: 5154 (5153) EQUAL(f(b,f(f(f(g(d),e),h),h)),h). ** KEPT: 5155 (2830,1725) EQUAL(f(f(b,b),f(f(g(d),e),h)),b). ---> New Demodulator: 5156 (5155) EQUAL(f(f(b,b),f(f(g(d),e),h)),b). ** KEPT: 5157 (2830,526) EQUAL(f(f(a,f(f(g(d),e),h)),b),a). ---> New Demodulator: 5158 (5157) EQUAL(f(f(a,f(f(g(d),e),h)),b),a). ** KEPT: 5159 (2830,520) EQUAL(f(f(a,b),f(f(g(d),e),h)),a). ---> New Demodulator: 5160 (5159) EQUAL(f(f(a,b),f(f(g(d),e),h)),a). ** KEPT: 5161 (2830,266) EQUAL(f(f(f(g(d),e),h),f(b,b)),b). ---> New Demodulator: 5162 (5161) EQUAL(f(f(f(g(d),e),h),f(b,b)),b). ** KEPT: 5163 (2830,105) EQUAL(f(f(d,b),f(f(g(d),e),h)),d). ---> New Demodulator: 5164 (5163) EQUAL(f(f(d,b),f(f(g(d),e),h)),d). >>>> Starting back demodulation with: 5142 (5141) EQUAL(f(f(h,f(f(g(d),e),h)),b),h). >>>> Starting back demodulation with: 5144 (5143) EQUAL(f(b,f(f(f(g(d),e),h),a)),a). >>>> Starting back demodulation with: 5146 (5145) EQUAL(f(f(f(g(d),e),h),f(b,a)),a). >>>> Starting back demodulation with: 5148 (5147) EQUAL(f(f(f(g(d),e),h),f(b,d)),d). >>>> Starting back demodulation with: 5150 (5149) EQUAL(f(b,f(f(f(g(d),e),h),d)),d). >>>> Starting back demodulation with: 5152 (5151) EQUAL(f(f(f(g(d),e),h),f(b,h)),h). >>>> Starting back demodulation with: 5154 (5153) EQUAL(f(b,f(f(f(g(d),e),h),h)),h). >>>> Starting back demodulation with: 5156 (5155) EQUAL(f(f(b,b),f(f(g(d),e),h)),b). >>>> Starting back demodulation with: 5158 (5157) EQUAL(f(f(a,f(f(g(d),e),h)),b),a). >>>> Starting back demodulation with: 5160 (5159) EQUAL(f(f(a,b),f(f(g(d),e),h)),a). >>>> Starting back demodulation with: 5162 (5161) EQUAL(f(f(f(g(d),e),h),f(b,b)),b). >>>> Starting back demodulation with: 5164 (5163) EQUAL(f(f(d,b),f(f(g(d),e),h)),d). new given clause: 2847 (1071,2814) EQUAL(f(f(f(k,e),e),h),d). ** KEPT: 5165 (4,2847) EQUAL(f(f(f(k,f(x,g(x))),e),h),d). ---> New Demodulator: 5166 (5165) EQUAL(f(f(f(k,f(x,g(x))),e),h),d). ** KEPT: 5167 (3,2847) EQUAL(f(f(f(k,f(g(x),x)),e),h),d). ---> New Demodulator: 5168 (5167) EQUAL(f(f(f(k,f(g(x),x)),e),h),d). ** KEPT: 5169 (4,2847) EQUAL(f(f(f(k,e),f(x,g(x))),h),d). ---> New Demodulator: 5170 (5169) EQUAL(f(f(f(k,e),f(x,g(x))),h),d). ** KEPT: 5171 (3,2847) EQUAL(f(f(f(k,e),f(g(x),x)),h),d). ---> New Demodulator: 5172 (5171) EQUAL(f(f(f(k,e),f(g(x),x)),h),d). ** KEPT: 5173 (5,2847) EQUAL(f(f(k,f(e,e)),h),d). ---> New Demodulator: 5174 (5173) EQUAL(f(f(k,f(e,e)),h),d). ** KEPT: 5175 (9,2847) EQUAL(f(f(f(k,e),e),f(d,g(b))),d). ---> New Demodulator: 5176 (5175) EQUAL(f(f(f(k,e),e),f(d,g(b))),d). ** KEPT: 5177 (2793,2847) EQUAL(f(f(f(k,e),e),f(e,h)),d). ---> New Demodulator: 5178 (5177) EQUAL(f(f(f(k,e),e),f(e,h)),d). ** KEPT: 5179 (1071,2847) EQUAL(f(f(f(f(k,e),e),e),h),d). ---> New Demodulator: 5180 (5179) EQUAL(f(f(f(f(k,e),e),e),h),d). >>>> Starting back demodulation with: 5166 (5165) EQUAL(f(f(f(k,f(x,g(x))),e),h),d). >>>> Starting back demodulation with: 5168 (5167) EQUAL(f(f(f(k,f(g(x),x)),e),h),d). >>>> Starting back demodulation with: 5170 (5169) EQUAL(f(f(f(k,e),f(x,g(x))),h),d). >>>> Starting back demodulation with: 5172 (5171) EQUAL(f(f(f(k,e),f(g(x),x)),h),d). >>>> Starting back demodulation with: 5174 (5173) EQUAL(f(f(k,f(e,e)),h),d). >>>> Starting back demodulation with: 5176 (5175) EQUAL(f(f(f(k,e),e),f(d,g(b))),d). >>>> Starting back demodulation with: 5178 (5177) EQUAL(f(f(f(k,e),e),f(e,h)),d). >>>> Starting back demodulation with: 5180 (5179) EQUAL(f(f(f(f(k,e),e),e),h),d). ** KEPT: 5181 (2847,1125) EQUAL(f(g(f(f(k,e),e)),d),h). ---> New Demodulator: 5182 (5181) EQUAL(f(g(f(f(k,e),e)),d),h). ** KEPT: 5183 (2847,72) EQUAL(f(f(f(k,e),e),d),f(d,b)). ** KEPT: 5184 (2847,5) EQUAL(f(f(x,f(f(k,e),e)),h),f(x,d)). ** KEPT: 5185 (2847,5) EQUAL(f(f(f(k,e),e),f(h,x)),f(d,x)). >>>> Starting back demodulation with: 5182 (5181) EQUAL(f(g(f(f(k,e),e)),d),h). new given clause: 2853 (2814,72) EQUAL(f(f(k,e),d),f(d,b)). ** KEPT: 5186 (4,2853) EQUAL(f(f(k,f(x,g(x))),d),f(d,b)). ** KEPT: 5187 (3,2853) EQUAL(f(f(k,f(g(x),x)),d),f(d,b)). ** KEPT: 5188 (8,2853) EQUAL(f(f(k,e),f(c,g(a))),f(d,b)). ** KEPT: 5189 (131,2853) EQUAL(f(f(f(k,e),k),h),f(d,b)). ** KEPT: 5190 (8,2853) EQUAL(f(f(c,g(a)),b),f(f(k,e),d)). ** KEPT: 5191 (2767,2853) EQUAL(f(f(k,e),d),f(e,f(k,d))). ** KEPT: 5192 (2530,2853) EQUAL(f(k,f(e,d)),f(f(k,e),d)). ** KEPT: 5193 (2853,1175) EQUAL(f(g(f(k,e)),f(d,b)),d). ---> New Demodulator: 5194 (5193) EQUAL(f(g(f(k,e)),f(d,b)),d). ** KEPT: 5195 (2853,5) EQUAL(f(f(x,f(k,e)),d),f(x,f(d,b))). ** KEPT: 5196 (2853,5) EQUAL(f(f(k,e),f(d,x)),f(f(d,b),x)). ** KEPT: 5197 (2853,5) EQUAL(f(x,f(f(k,e),d)),f(f(x,d),b)). ** KEPT: 5198 (2853,5) EQUAL(f(f(f(k,e),d),x),f(d,f(b,x))). >>>> Starting back demodulation with: 5194 (5193) EQUAL(f(g(f(k,e)),f(d,b)),d). new given clause: 2862 (1071,2819) EQUAL(f(f(f(e,e),e),h),h). ** KEPT: 5199 (4,2862) EQUAL(f(f(f(f(x,g(x)),e),e),h),h). ---> New Demodulator: 5200 (5199) EQUAL(f(f(f(f(x,g(x)),e),e),h),h). ** KEPT: 5201 (3,2862) EQUAL(f(f(f(f(g(x),x),e),e),h),h). ---> New Demodulator: 5202 (5201) EQUAL(f(f(f(f(g(x),x),e),e),h),h). ** KEPT: 5203 (4,2862) EQUAL(f(f(f(e,f(x,g(x))),e),h),h). ---> New Demodulator: 5204 (5203) EQUAL(f(f(f(e,f(x,g(x))),e),h),h). ** KEPT: 5205 (3,2862) EQUAL(f(f(f(e,f(g(x),x)),e),h),h). ---> New Demodulator: 5206 (5205) EQUAL(f(f(f(e,f(g(x),x)),e),h),h). ** KEPT: 5207 (4,2862) EQUAL(f(f(f(e,e),f(x,g(x))),h),h). ---> New Demodulator: 5208 (5207) EQUAL(f(f(f(e,e),f(x,g(x))),h),h). ** KEPT: 5209 (3,2862) EQUAL(f(f(f(e,e),f(g(x),x)),h),h). ---> New Demodulator: 5210 (5209) EQUAL(f(f(f(e,e),f(g(x),x)),h),h). ** KEPT: 5211 (5,2862) EQUAL(f(f(e,f(e,e)),h),h). ---> New Demodulator: 5212 (5211) EQUAL(f(f(e,f(e,e)),h),h). ** KEPT: 5213 (9,2862) EQUAL(f(f(f(e,e),e),f(d,g(b))),h). ---> New Demodulator: 5214 (5213) EQUAL(f(f(f(e,e),e),f(d,g(b))),h). ** KEPT: 5215 (2793,2862) EQUAL(f(f(f(e,e),e),f(e,h)),h). ---> New Demodulator: 5216 (5215) EQUAL(f(f(f(e,e),e),f(e,h)),h). ** KEPT: 5217 (1071,2862) EQUAL(f(f(f(f(e,e),e),e),h),h). ---> New Demodulator: 5218 (5217) EQUAL(f(f(f(f(e,e),e),e),h),h). >>>> Starting back demodulation with: 5200 (5199) EQUAL(f(f(f(f(x,g(x)),e),e),h),h). >>>> Starting back demodulation with: 5202 (5201) EQUAL(f(f(f(f(g(x),x),e),e),h),h). >>>> Starting back demodulation with: 5204 (5203) EQUAL(f(f(f(e,f(x,g(x))),e),h),h). >>>> Starting back demodulation with: 5206 (5205) EQUAL(f(f(f(e,f(g(x),x)),e),h),h). >>>> Starting back demodulation with: 5208 (5207) EQUAL(f(f(f(e,e),f(x,g(x))),h),h). >>>> Starting back demodulation with: 5210 (5209) EQUAL(f(f(f(e,e),f(g(x),x)),h),h). >>>> Starting back demodulation with: 5212 (5211) EQUAL(f(f(e,f(e,e)),h),h). >>>> Starting back demodulation with: 5214 (5213) EQUAL(f(f(f(e,e),e),f(d,g(b))),h). >>>> Starting back demodulation with: 5216 (5215) EQUAL(f(f(f(e,e),e),f(e,h)),h). >>>> Starting back demodulation with: 5218 (5217) EQUAL(f(f(f(f(e,e),e),e),h),h). ** KEPT: 5219 (2862,1125) EQUAL(f(g(f(f(e,e),e)),h),h). ---> New Demodulator: 5220 (5219) EQUAL(f(g(f(f(e,e),e)),h),h). ** KEPT: 5221 (2862,5) EQUAL(f(f(x,f(f(e,e),e)),h),f(x,h)). ** KEPT: 5222 (2862,5) EQUAL(f(f(f(e,e),e),f(h,x)),f(h,x)). >>>> Starting back demodulation with: 5220 (5219) EQUAL(f(g(f(f(e,e),e)),h),h). new given clause: 2890 (2817,1125) EQUAL(f(g(f(g(h),e)),e),h). ** KEPT: 5223 (9,2890) EQUAL(f(g(f(g(f(d,g(b))),e)),e),h). ---> New Demodulator: 5224 (5223) EQUAL(f(g(f(g(f(d,g(b))),e)),e),h). ** KEPT: 5225 (4,2890) EQUAL(f(g(f(g(h),f(x,g(x)))),e),h). ---> New Demodulator: 5226 (5225) EQUAL(f(g(f(g(h),f(x,g(x)))),e),h). ** KEPT: 5227 (3,2890) EQUAL(f(g(f(g(h),f(g(x),x))),e),h). ---> New Demodulator: 5228 (5227) EQUAL(f(g(f(g(h),f(g(x),x))),e),h). ** KEPT: 5229 (4,2890) EQUAL(f(g(f(g(h),e)),f(x,g(x))),h). ---> New Demodulator: 5230 (5229) EQUAL(f(g(f(g(h),e)),f(x,g(x))),h). ** KEPT: 5231 (3,2890) EQUAL(f(g(f(g(h),e)),f(g(x),x)),h). ---> New Demodulator: 5232 (5231) EQUAL(f(g(f(g(h),e)),f(g(x),x)),h). ** KEPT: 5233 (2,2890) EQUAL(g(f(g(h),e)),h). ---> New Demodulator: 5234 (5233) EQUAL(g(f(g(h),e)),h). >>>> Starting back demodulation with: 5224 (5223) EQUAL(f(g(f(g(f(d,g(b))),e)),e),h). >>>> Starting back demodulation with: 5226 (5225) EQUAL(f(g(f(g(h),f(x,g(x)))),e),h). >>>> Starting back demodulation with: 5228 (5227) EQUAL(f(g(f(g(h),f(g(x),x))),e),h). >>>> Starting back demodulation with: 5230 (5229) EQUAL(f(g(f(g(h),e)),f(x,g(x))),h). >>>> Starting back demodulation with: 5232 (5231) EQUAL(f(g(f(g(h),e)),f(g(x),x)),h). >>>> Starting back demodulation with: 5234 (5233) EQUAL(g(f(g(h),e)),h). >> back demodulating: 2731 (2667,1175) EQUAL(f(g(f(g(h),e)),b),d). >> back demodulating: 2732 (2731) EQUAL(f(g(f(g(h),e)),b),d). >> back demodulating: 2890 (2817,1125) EQUAL(f(g(f(g(h),e)),e),h). >> back demodulating: 2891 (2890) EQUAL(f(g(f(g(h),e)),e),h). >> back demodulating: 4958 (1444,2731) EQUAL(f(g(f(g(h),e)),f(e,b)),d). >> back demodulating: 4959 (4958) EQUAL(f(g(f(g(h),e)),f(e,b)),d). >> back demodulating: 4960 (2731,5) EQUAL(f(f(x,g(f(g(h),e))),b),f(x,d)). >> back demodulating: 4961 (2731,5) EQUAL(f(g(f(g(h),e)),f(b,x)),f(d,x)). >> back demodulating: 5229 (4,2890) EQUAL(f(g(f(g(h),e)),f(x,g(x))),h). >> back demodulating: 5230 (5229) EQUAL(f(g(f(g(h),e)),f(x,g(x))),h). >> back demodulating: 5231 (3,2890) EQUAL(f(g(f(g(h),e)),f(g(x),x)),h). >> back demodulating: 5232 (5231) EQUAL(f(g(f(g(h),e)),f(g(x),x)),h). ** KEPT: 5235 (2890,5043,5234) EQUAL(f(g(f(e,h)),f(h,e)),e). ---> New Demodulator: 5236 (5235) EQUAL(f(g(f(e,h)),f(h,e)),e). ** KEPT: 5237 (2890,2862,5234) EQUAL(f(f(f(e,e),e),f(h,e)),h). ---> New Demodulator: 5238 (5237) EQUAL(f(f(f(e,e),e),f(h,e)),h). ** KEPT: 5239 (2890,2847,5234) EQUAL(f(f(f(k,e),e),f(h,e)),d). ---> New Demodulator: 5240 (5239) EQUAL(f(f(f(k,e),e),f(h,e)),d). ** KEPT: 5241 (2890,2830,5234) EQUAL(g(f(f(g(d),e),f(h,e))),b). ---> New Demodulator: 5242 (5241) EQUAL(g(f(f(g(d),e),f(h,e))),b). ** KEPT: 5243 (2890,2809,5234) EQUAL(f(f(f(e,k),e),f(h,e)),d). ---> New Demodulator: 5244 (5243) EQUAL(f(f(f(e,k),e),f(h,e)),d). ** KEPT: 5245 (2890,2793,5234) EQUAL(f(x,f(h,e)),f(x,f(e,h))). ** KEPT: 5246 (2890,2788,5234) EQUAL(f(h,f(h,e)),f(f(e,h),h)). ** KEPT: 5247 (2890,2788,5234) EQUAL(f(f(e,h),f(h,e)),f(h,h)). ** KEPT: 5248 (2890,2786,5234) EQUAL(f(f(e,d),f(h,e)),f(d,h)). ** KEPT: 5249 (2890,2715,5234) EQUAL(f(g(f(g(k),e)),f(h,e)),d). ---> New Demodulator: 5250 (5249) EQUAL(f(g(f(g(k),e)),f(h,e)),d). ** KEPT: 5251 (2890,2655,5234) EQUAL(f(f(f(e,e),k),f(h,e)),d). ---> New Demodulator: 5252 (5251) EQUAL(f(f(f(e,e),k),f(h,e)),d). ** KEPT: 5253 (2890,2551,5234) EQUAL(g(f(g(f(e,d)),f(h,e))),b). ---> New Demodulator: 5254 (5253) EQUAL(g(f(g(f(e,d)),f(h,e))),b). >>>> Starting back demodulation with: 5236 (5235) EQUAL(f(g(f(e,h)),f(h,e)),e). >>>> Starting back demodulation with: 5238 (5237) EQUAL(f(f(f(e,e),e),f(h,e)),h). >>>> Starting back demodulation with: 5240 (5239) EQUAL(f(f(f(k,e),e),f(h,e)),d). >>>> Starting back demodulation with: 5242 (5241) EQUAL(g(f(f(g(d),e),f(h,e))),b). >>>> Starting back demodulation with: 5244 (5243) EQUAL(f(f(f(e,k),e),f(h,e)),d). 5245 back subsumes: 4129 (483,1895) EQUAL(f(a,f(h,e)),f(a,f(e,h))). 5245 back subsumes: 2938 (92,1114) EQUAL(f(d,f(h,e)),f(d,f(e,h))). >>>> Starting back demodulation with: 5250 (5249) EQUAL(f(g(f(g(k),e)),f(h,e)),d). >>>> Starting back demodulation with: 5252 (5251) EQUAL(f(f(f(e,e),k),f(h,e)),d). >>>> Starting back demodulation with: 5254 (5253) EQUAL(g(f(g(f(e,d)),f(h,e))),b). new given clause: 5233 (2,2890) EQUAL(g(f(g(h),e)),h). ** KEPT: 5255 (9,5233) EQUAL(g(f(g(f(d,g(b))),e)),h). ---> New Demodulator: 5256 (5255) EQUAL(g(f(g(f(d,g(b))),e)),h). ** KEPT: 5257 (4,5233) EQUAL(g(f(g(h),f(x,g(x)))),h). ---> New Demodulator: 5258 (5257) EQUAL(g(f(g(h),f(x,g(x)))),h). ** KEPT: 5259 (3,5233) EQUAL(g(f(g(h),f(g(x),x))),h). ---> New Demodulator: 5260 (5259) EQUAL(g(f(g(h),f(g(x),x))),h). >>>> Starting back demodulation with: 5256 (5255) EQUAL(g(f(g(f(d,g(b))),e)),h). >> back demodulating: 4952 (9,2731) EQUAL(f(g(f(g(f(d,g(b))),e)),b),d). >> back demodulating: 4953 (4952) EQUAL(f(g(f(g(f(d,g(b))),e)),b),d). >> back demodulating: 5223 (9,2890) EQUAL(f(g(f(g(f(d,g(b))),e)),e),h). >> back demodulating: 5224 (5223) EQUAL(f(g(f(g(f(d,g(b))),e)),e),h). >>>> Starting back demodulation with: 5258 (5257) EQUAL(g(f(g(h),f(x,g(x)))),h). >> back demodulating: 4954 (4,2731) EQUAL(f(g(f(g(h),f(x,g(x)))),b),d). >> back demodulating: 4955 (4954) EQUAL(f(g(f(g(h),f(x,g(x)))),b),d). >> back demodulating: 5225 (4,2890) EQUAL(f(g(f(g(h),f(x,g(x)))),e),h). >> back demodulating: 5226 (5225) EQUAL(f(g(f(g(h),f(x,g(x)))),e),h). >>>> Starting back demodulation with: 5260 (5259) EQUAL(g(f(g(h),f(g(x),x))),h). >> back demodulating: 4956 (3,2731) EQUAL(f(g(f(g(h),f(g(x),x))),b),d). >> back demodulating: 4957 (4956) EQUAL(f(g(f(g(h),f(g(x),x))),b),d). >> back demodulating: 5227 (3,2890) EQUAL(f(g(f(g(h),f(g(x),x))),e),h). >> back demodulating: 5228 (5227) EQUAL(f(g(f(g(h),f(g(x),x))),e),h). ** KEPT: 5261 (5233,3118) EQUAL(f(f(h,f(g(h),e)),h),h). ---> New Demodulator: 5262 (5261) EQUAL(f(f(h,f(g(h),e)),h),h). ** KEPT: 5263 (5233,2120) EQUAL(f(f(g(h),e),f(h,a)),a). ---> New Demodulator: 5264 (5263) EQUAL(f(f(g(h),e),f(h,a)),a). ** KEPT: 5265 (5233,1719) EQUAL(f(f(b,f(g(h),e)),h),b). ---> New Demodulator: 5266 (5265) EQUAL(f(f(b,f(g(h),e)),h),b). ** KEPT: 5267 (5233,3126) EQUAL(f(f(h,h),f(g(h),e)),h). ---> New Demodulator: 5268 (5267) EQUAL(f(f(h,h),f(g(h),e)),h). ** KEPT: 5269 (5233,1197) EQUAL(f(f(g(h),e),f(h,d)),d). ---> New Demodulator: 5270 (5269) EQUAL(f(f(g(h),e),f(h,d)),d). ** KEPT: 5271 (5233,1133) EQUAL(f(f(g(h),e),f(h,h)),h). ---> New Demodulator: 5272 (5271) EQUAL(f(f(g(h),e),f(h,h)),h). ** KEPT: 5273 (5233,1725) EQUAL(f(f(b,h),f(g(h),e)),b). ---> New Demodulator: 5274 (5273) EQUAL(f(f(b,h),f(g(h),e)),b). ** KEPT: 5275 (5233,526) EQUAL(f(f(a,f(g(h),e)),h),a). ---> New Demodulator: 5276 (5275) EQUAL(f(f(a,f(g(h),e)),h),a). ** KEPT: 5277 (5233,520) EQUAL(f(f(a,h),f(g(h),e)),a). ---> New Demodulator: 5278 (5277) EQUAL(f(f(a,h),f(g(h),e)),a). ** KEPT: 5279 (5233,113) EQUAL(f(f(d,f(g(h),e)),h),d). ---> New Demodulator: 5280 (5279) EQUAL(f(f(d,f(g(h),e)),h),d). ** KEPT: 5281 (5233,105) EQUAL(f(f(d,h),f(g(h),e)),d). ---> New Demodulator: 5282 (5281) EQUAL(f(f(d,h),f(g(h),e)),d). ** KEPT: 5283 (5233,2987) EQUAL(f(h,f(h,f(g(h),e))),h). ---> New Demodulator: 5284 (5283) EQUAL(f(h,f(h,f(g(h),e))),h). ** KEPT: 5285 (5233,2011) EQUAL(f(f(h,f(g(h),e)),a),a). ---> New Demodulator: 5286 (5285) EQUAL(f(f(h,f(g(h),e)),a),a). ** KEPT: 5287 (5233,1579) EQUAL(f(b,f(h,f(g(h),e))),b). ---> New Demodulator: 5288 (5287) EQUAL(f(b,f(h,f(g(h),e))),b). ** KEPT: 5289 (5233,1127) EQUAL(f(f(h,f(g(h),e)),d),d). ---> New Demodulator: 5290 (5289) EQUAL(f(f(h,f(g(h),e)),d),d). ** KEPT: 5291 (5233,477) EQUAL(f(a,f(h,f(g(h),e))),a). ---> New Demodulator: 5292 (5291) EQUAL(f(a,f(h,f(g(h),e))),a). ** KEPT: 5293 (5233,233) EQUAL(f(f(h,f(g(h),e)),b),b). ---> New Demodulator: 5294 (5293) EQUAL(f(f(h,f(g(h),e)),b),b). ** KEPT: 5295 (5233,2154) EQUAL(f(g(f(h,f(g(h),e))),a),a). ---> New Demodulator: 5296 (5295) EQUAL(f(g(f(h,f(g(h),e))),a),a). ** KEPT: 5297 (5233,1739) EQUAL(f(b,g(f(h,f(g(h),e)))),b). ---> New Demodulator: 5298 (5297) EQUAL(f(b,g(f(h,f(g(h),e)))),b). ** KEPT: 5299 (5233,1217) EQUAL(f(g(f(h,f(g(h),e))),d),d). ---> New Demodulator: 5300 (5299) EQUAL(f(g(f(h,f(g(h),e))),d),d). ** KEPT: 5301 (5233,1151) EQUAL(f(g(f(h,f(g(h),e))),h),h). ---> New Demodulator: 5302 (5301) EQUAL(f(g(f(h,f(g(h),e))),h),h). ** KEPT: 5303 (5233,564) EQUAL(f(a,g(f(h,f(g(h),e)))),a). ---> New Demodulator: 5304 (5303) EQUAL(f(a,g(f(h,f(g(h),e)))),a). ** KEPT: 5305 (5233,282) EQUAL(f(g(f(h,f(g(h),e))),b),b). ---> New Demodulator: 5306 (5305) EQUAL(f(g(f(h,f(g(h),e))),b),b). ** KEPT: 5307 (5233,137) EQUAL(f(d,g(f(h,f(g(h),e)))),d). ---> New Demodulator: 5308 (5307) EQUAL(f(d,g(f(h,f(g(h),e)))),d). ** KEPT: 5309 (5233,82) EQUAL(f(d,f(h,f(g(h),e))),d). ---> New Demodulator: 5310 (5309) EQUAL(f(d,f(h,f(g(h),e))),d). ** KEPT: 5311 (5233,37) -EQUAL(f(h,f(g(h),e)),f(k,g(b))). ** KEPT: 5312 (5233,3) EQUAL(f(h,f(g(h),e)),e). ---> New Demodulator: 5313 (5312) EQUAL(f(h,f(g(h),e)),e). >>>> Starting back demodulation with: 5262 (5261) EQUAL(f(f(h,f(g(h),e)),h),h). >>>> Starting back demodulation with: 5264 (5263) EQUAL(f(f(g(h),e),f(h,a)),a). >>>> Starting back demodulation with: 5266 (5265) EQUAL(f(f(b,f(g(h),e)),h),b). >>>> Starting back demodulation with: 5268 (5267) EQUAL(f(f(h,h),f(g(h),e)),h). >>>> Starting back demodulation with: 5270 (5269) EQUAL(f(f(g(h),e),f(h,d)),d). >>>> Starting back demodulation with: 5272 (5271) EQUAL(f(f(g(h),e),f(h,h)),h). >>>> Starting back demodulation with: 5274 (5273) EQUAL(f(f(b,h),f(g(h),e)),b). >>>> Starting back demodulation with: 5276 (5275) EQUAL(f(f(a,f(g(h),e)),h),a). >>>> Starting back demodulation with: 5278 (5277) EQUAL(f(f(a,h),f(g(h),e)),a). >>>> Starting back demodulation with: 5280 (5279) EQUAL(f(f(d,f(g(h),e)),h),d). >>>> Starting back demodulation with: 5282 (5281) EQUAL(f(f(d,h),f(g(h),e)),d). >>>> Starting back demodulation with: 5284 (5283) EQUAL(f(h,f(h,f(g(h),e))),h). >>>> Starting back demodulation with: 5286 (5285) EQUAL(f(f(h,f(g(h),e)),a),a). >>>> Starting back demodulation with: 5288 (5287) EQUAL(f(b,f(h,f(g(h),e))),b). >>>> Starting back demodulation with: 5290 (5289) EQUAL(f(f(h,f(g(h),e)),d),d). >>>> Starting back demodulation with: 5292 (5291) EQUAL(f(a,f(h,f(g(h),e))),a). >>>> Starting back demodulation with: 5294 (5293) EQUAL(f(f(h,f(g(h),e)),b),b). >>>> Starting back demodulation with: 5296 (5295) EQUAL(f(g(f(h,f(g(h),e))),a),a). >>>> Starting back demodulation with: 5298 (5297) EQUAL(f(b,g(f(h,f(g(h),e)))),b). >>>> Starting back demodulation with: 5300 (5299) EQUAL(f(g(f(h,f(g(h),e))),d),d). >>>> Starting back demodulation with: 5302 (5301) EQUAL(f(g(f(h,f(g(h),e))),h),h). >>>> Starting back demodulation with: 5304 (5303) EQUAL(f(a,g(f(h,f(g(h),e)))),a). >>>> Starting back demodulation with: 5306 (5305) EQUAL(f(g(f(h,f(g(h),e))),b),b). >>>> Starting back demodulation with: 5308 (5307) EQUAL(f(d,g(f(h,f(g(h),e)))),d). >>>> Starting back demodulation with: 5310 (5309) EQUAL(f(d,f(h,f(g(h),e))),d). >>>> Starting back demodulation with: 5313 (5312) EQUAL(f(h,f(g(h),e)),e). >> back demodulating: 5261 (5233,3118) EQUAL(f(f(h,f(g(h),e)),h),h). >> back demodulating: 5262 (5261) EQUAL(f(f(h,f(g(h),e)),h),h). >> back demodulating: 5283 (5233,2987) EQUAL(f(h,f(h,f(g(h),e))),h). >> back demodulating: 5284 (5283) EQUAL(f(h,f(h,f(g(h),e))),h). >> back demodulating: 5285 (5233,2011) EQUAL(f(f(h,f(g(h),e)),a),a). >> back demodulating: 5286 (5285) EQUAL(f(f(h,f(g(h),e)),a),a). >> back demodulating: 5287 (5233,1579) EQUAL(f(b,f(h,f(g(h),e))),b). >> back demodulating: 5288 (5287) EQUAL(f(b,f(h,f(g(h),e))),b). >> back demodulating: 5289 (5233,1127) EQUAL(f(f(h,f(g(h),e)),d),d). >> back demodulating: 5290 (5289) EQUAL(f(f(h,f(g(h),e)),d),d). >> back demodulating: 5291 (5233,477) EQUAL(f(a,f(h,f(g(h),e))),a). >> back demodulating: 5292 (5291) EQUAL(f(a,f(h,f(g(h),e))),a). >> back demodulating: 5293 (5233,233) EQUAL(f(f(h,f(g(h),e)),b),b). >> back demodulating: 5294 (5293) EQUAL(f(f(h,f(g(h),e)),b),b). >> back demodulating: 5295 (5233,2154) EQUAL(f(g(f(h,f(g(h),e))),a),a). >> back demodulating: 5296 (5295) EQUAL(f(g(f(h,f(g(h),e))),a),a). >> back demodulating: 5297 (5233,1739) EQUAL(f(b,g(f(h,f(g(h),e)))),b). >> back demodulating: 5298 (5297) EQUAL(f(b,g(f(h,f(g(h),e)))),b). >> back demodulating: 5299 (5233,1217) EQUAL(f(g(f(h,f(g(h),e))),d),d). >> back demodulating: 5300 (5299) EQUAL(f(g(f(h,f(g(h),e))),d),d). >> back demodulating: 5301 (5233,1151) EQUAL(f(g(f(h,f(g(h),e))),h),h). >> back demodulating: 5302 (5301) EQUAL(f(g(f(h,f(g(h),e))),h),h). >> back demodulating: 5303 (5233,564) EQUAL(f(a,g(f(h,f(g(h),e)))),a). >> back demodulating: 5304 (5303) EQUAL(f(a,g(f(h,f(g(h),e)))),a). >> back demodulating: 5305 (5233,282) EQUAL(f(g(f(h,f(g(h),e))),b),b). >> back demodulating: 5306 (5305) EQUAL(f(g(f(h,f(g(h),e))),b),b). >> back demodulating: 5307 (5233,137) EQUAL(f(d,g(f(h,f(g(h),e)))),d). >> back demodulating: 5308 (5307) EQUAL(f(d,g(f(h,f(g(h),e)))),d). >> back demodulating: 5309 (5233,82) EQUAL(f(d,f(h,f(g(h),e))),d). >> back demodulating: 5310 (5309) EQUAL(f(d,f(h,f(g(h),e))),d). >> back demodulating: 5311 (5233,37) -EQUAL(f(h,f(g(h),e)),f(k,g(b))). new given clause: 5312 (5233,3) EQUAL(f(h,f(g(h),e)),e). ** KEPT: 5314 (9,5312) EQUAL(f(f(d,g(b)),f(g(h),e)),e). ---> New Demodulator: 5315 (5314) EQUAL(f(f(d,g(b)),f(g(h),e)),e). ** KEPT: 5316 (9,5312) EQUAL(f(h,f(g(f(d,g(b))),e)),e). ---> New Demodulator: 5317 (5316) EQUAL(f(h,f(g(f(d,g(b))),e)),e). ** KEPT: 5318 (4,5312) EQUAL(f(h,f(g(h),f(x,g(x)))),e). ---> New Demodulator: 5319 (5318) EQUAL(f(h,f(g(h),f(x,g(x)))),e). ** KEPT: 5320 (3,5312) EQUAL(f(h,f(g(h),f(g(x),x))),e). ---> New Demodulator: 5321 (5320) EQUAL(f(h,f(g(h),f(g(x),x))),e). ** KEPT: 5322 (5,5312) EQUAL(f(f(h,g(h)),e),e). ---> New Demodulator: 5323 (5322) EQUAL(f(f(h,g(h)),e),e). >>>> Starting back demodulation with: 5315 (5314) EQUAL(f(f(d,g(b)),f(g(h),e)),e). >>>> Starting back demodulation with: 5317 (5316) EQUAL(f(h,f(g(f(d,g(b))),e)),e). >>>> Starting back demodulation with: 5319 (5318) EQUAL(f(h,f(g(h),f(x,g(x)))),e). >>>> Starting back demodulation with: 5321 (5320) EQUAL(f(h,f(g(h),f(g(x),x))),e). >>>> Starting back demodulation with: 5323 (5322) EQUAL(f(f(h,g(h)),e),e). ** KEPT: 5324 (5312,5) EQUAL(f(f(x,h),f(g(h),e)),f(x,e)). ** KEPT: 5325 (5312,5) EQUAL(f(h,f(f(g(h),e),x)),f(e,x)). new given clause: 5322 (5,5312) EQUAL(f(f(h,g(h)),e),e). ** KEPT: 5326 (9,5322) EQUAL(f(f(f(d,g(b)),g(h)),e),e). ---> New Demodulator: 5327 (5326) EQUAL(f(f(f(d,g(b)),g(h)),e),e). ** KEPT: 5328 (9,5322) EQUAL(f(f(h,g(f(d,g(b)))),e),e). ---> New Demodulator: 5329 (5328) EQUAL(f(f(h,g(f(d,g(b)))),e),e). ** KEPT: 5330 (4,5322) EQUAL(f(f(h,g(h)),f(x,g(x))),e). ---> New Demodulator: 5331 (5330) EQUAL(f(f(h,g(h)),f(x,g(x))),e). ** KEPT: 5332 (3,5322) EQUAL(f(f(h,g(h)),f(g(x),x)),e). ---> New Demodulator: 5333 (5332) EQUAL(f(f(h,g(h)),f(g(x),x)),e). >>>> Starting back demodulation with: 5327 (5326) EQUAL(f(f(f(d,g(b)),g(h)),e),e). >>>> Starting back demodulation with: 5329 (5328) EQUAL(f(f(h,g(f(d,g(b)))),e),e). >>>> Starting back demodulation with: 5331 (5330) EQUAL(f(f(h,g(h)),f(x,g(x))),e). >>>> Starting back demodulation with: 5333 (5332) EQUAL(f(f(h,g(h)),f(g(x),x)),e). ** KEPT: 5334 (5322,5) EQUAL(f(f(x,f(h,g(h))),e),f(x,e)). ** KEPT: 5335 (5322,5) EQUAL(f(f(h,g(h)),f(e,x)),f(e,x)). new given clause: 2924 (5,1072) EQUAL(f(f(g(k),c),g(a)),h). ** KEPT: 5336 (7,2924) EQUAL(f(f(g(k),f(a,b)),g(a)),h). ---> New Demodulator: 5337 (5336) EQUAL(f(f(g(k),f(a,b)),g(a)),h). ** KEPT: 5338 (1356,2924) EQUAL(f(f(g(k),f(e,c)),g(a)),h). ---> New Demodulator: 5339 (5338) EQUAL(f(f(g(k),f(e,c)),g(a)),h). ** KEPT: 5340 (1355,2924) EQUAL(f(f(g(k),f(c,e)),g(a)),h). ---> New Demodulator: 5341 (5340) EQUAL(f(f(g(k),f(c,e)),g(a)),h). ** KEPT: 5342 (15,2924) EQUAL(f(f(f(g(k),a),b),g(a)),h). ---> New Demodulator: 5343 (5342) EQUAL(f(f(f(g(k),a),b),g(a)),h). >>>> Starting back demodulation with: 5337 (5336) EQUAL(f(f(g(k),f(a,b)),g(a)),h). >>>> Starting back demodulation with: 5339 (5338) EQUAL(f(f(g(k),f(e,c)),g(a)),h). >>>> Starting back demodulation with: 5341 (5340) EQUAL(f(f(g(k),f(c,e)),g(a)),h). >>>> Starting back demodulation with: 5343 (5342) EQUAL(f(f(f(g(k),a),b),g(a)),h). ** KEPT: 5344 (2924,5) EQUAL(f(f(x,f(g(k),c)),g(a)),f(x,h)). ** KEPT: 5345 (2924,5) EQUAL(f(f(g(k),c),f(g(a),x)),f(h,x)). new given clause: 2989 (1153,5,2984) EQUAL(f(h,f(e,x)),f(h,x)). ** KEPT: 5346 (2767,2989) EQUAL(f(h,f(k,d)),f(h,f(d,b))). ** KEPT: 5347 (4198,2989) EQUAL(f(h,f(a,e)),f(h,a)). ** KEPT: 5348 (2489,2989) EQUAL(f(h,f(c,g(a))),f(h,d)). ** KEPT: 5349 (2389,2989) EQUAL(f(h,f(d,e)),f(h,d)). ** KEPT: 5350 (1095,2989) EQUAL(f(h,f(h,e)),f(h,h)). ** KEPT: 5351 (1063,2989) EQUAL(f(h,f(d,g(b))),f(h,h)). ** KEPT: 5352 (5,2989) EQUAL(f(h,f(f(e,x),y)),f(h,f(x,y))). ** KEPT: 5353 (2989,2989) EQUAL(f(h,f(e,f(e,x))),f(h,x)). ** KEPT: 5354 (5,2989) EQUAL(f(f(h,e),x),f(h,x)). ** KEPT: 5355 (5312,2989) EQUAL(f(h,f(e,f(g(h),e))),e). ---> New Demodulator: 5356 (5355) EQUAL(f(h,f(e,f(g(h),e))),e). ** KEPT: 5357 (2490,2989) EQUAL(f(h,f(e,d)),f(f(h,e),d)). ** KEPT: 5358 (2013,2989) EQUAL(f(h,f(e,a)),f(f(h,e),a)). ** KEPT: 5359 (1751,2989) EQUAL(f(h,f(e,g(f(g(b),h)))),b). ---> New Demodulator: 5360 (5359) EQUAL(f(h,f(e,g(f(g(b),h)))),b). ** KEPT: 5361 (1189,2989) EQUAL(f(h,f(e,g(f(g(a),h)))),a). ---> New Demodulator: 5362 (5361) EQUAL(f(h,f(e,g(f(g(a),h)))),a). ** KEPT: 5363 (3261,2989) EQUAL(f(h,f(e,g(f(e,e)))),h). ---> New Demodulator: 5364 (5363) EQUAL(f(h,f(e,g(f(e,e)))),h). ** KEPT: 5365 (3247,2989) EQUAL(f(h,f(e,f(e,e))),h). ---> New Demodulator: 5366 (5365) EQUAL(f(h,f(e,f(e,e))),h). ** KEPT: 5367 (3112,2989) EQUAL(f(h,f(e,f(g(d),k))),e). ---> New Demodulator: 5368 (5367) EQUAL(f(h,f(e,f(g(d),k))),e). ** KEPT: 5369 (1071,2989) EQUAL(f(h,f(e,h)),f(f(h,e),h)). ** KEPT: 5370 (750,2989) EQUAL(f(h,f(e,f(b,b))),f(k,d)). ** KEPT: 5371 (2120,2989) EQUAL(f(h,f(e,f(g(h),a))),a). ---> New Demodulator: 5372 (5371) EQUAL(f(h,f(e,f(g(h),a))),a). ** KEPT: 5373 (131,2989) EQUAL(f(h,f(e,d)),f(f(h,k),h)). ** KEPT: 5374 (762,2989) EQUAL(f(h,f(e,f(b,g(d)))),e). ---> New Demodulator: 5375 (5374) EQUAL(f(h,f(e,f(b,g(d)))),e). ** KEPT: 5376 (73,2989) EQUAL(f(h,f(e,f(b,x))),f(d,x)). ** KEPT: 5377 (72,2989) EQUAL(f(h,f(e,d)),f(f(h,h),b)). ** KEPT: 5378 (266,2989) EQUAL(f(h,f(e,f(g(h),b))),b). ---> New Demodulator: 5379 (5378) EQUAL(f(h,f(e,f(g(h),b))),b). ** KEPT: 5380 (15,2989) EQUAL(f(h,f(e,c)),f(f(h,a),b)). ** KEPT: 5381 (48,2989) EQUAL(f(h,f(e,f(b,g(h)))),k). ---> New Demodulator: 5382 (5381) EQUAL(f(h,f(e,f(b,g(h)))),k). ** KEPT: 5383 (5,2989) EQUAL(f(h,f(e,f(x,y))),f(f(h,x),y)). ** KEPT: 5384 (4,2989) EQUAL(f(h,f(e,g(h))),e). ---> New Demodulator: 5385 (5384) EQUAL(f(h,f(e,g(h))),e). >>>> Starting back demodulation with: 5356 (5355) EQUAL(f(h,f(e,f(g(h),e))),e). >>>> Starting back demodulation with: 5360 (5359) EQUAL(f(h,f(e,g(f(g(b),h)))),b). >>>> Starting back demodulation with: 5362 (5361) EQUAL(f(h,f(e,g(f(g(a),h)))),a). >>>> Starting back demodulation with: 5364 (5363) EQUAL(f(h,f(e,g(f(e,e)))),h). >>>> Starting back demodulation with: 5366 (5365) EQUAL(f(h,f(e,f(e,e))),h). >> back demodulating: 2439 (132,905) EQUAL(f(k,f(h,f(e,f(e,e)))),d). >> back demodulating: 2440 (2439) EQUAL(f(k,f(h,f(e,f(e,e)))),d). >>>> Starting back demodulation with: 5368 (5367) EQUAL(f(h,f(e,f(g(d),k))),e). >>>> Starting back demodulation with: 5372 (5371) EQUAL(f(h,f(e,f(g(h),a))),a). >>>> Starting back demodulation with: 5375 (5374) EQUAL(f(h,f(e,f(b,g(d)))),e). >>>> Starting back demodulation with: 5379 (5378) EQUAL(f(h,f(e,f(g(h),b))),b). >>>> Starting back demodulation with: 5382 (5381) EQUAL(f(h,f(e,f(b,g(h)))),k). >>>> Starting back demodulation with: 5385 (5384) EQUAL(f(h,f(e,g(h))),e). >> back demodulating: 1279 (878,132) EQUAL(f(k,f(h,f(e,g(h)))),k). >> back demodulating: 1280 (1279) EQUAL(f(k,f(h,f(e,g(h)))),k). ** KEPT: 5386 (2989,3118) EQUAL(f(f(h,x),g(f(e,x))),h). ---> New Demodulator: 5387 (5386) EQUAL(f(f(h,x),g(f(e,x))),h). ** KEPT: 5388 (2989,5) EQUAL(f(f(x,h),f(e,y)),f(x,f(h,y))). ** KEPT: 5389 (2989,5) EQUAL(f(h,f(f(e,x),y)),f(f(h,x),y)). ** KEPT: 5390 (2989,3215) EQUAL(f(f(h,f(e,g(a))),c),d). ---> New Demodulator: 5391 (5390) EQUAL(f(f(h,f(e,g(a))),c),d). ** KEPT: 5392 (2989,3126) EQUAL(f(f(h,f(e,g(x))),x),h). ---> New Demodulator: 5393 (5392) EQUAL(f(f(h,f(e,g(x))),x),h). ** KEPT: 5394 (2989,3134) EQUAL(f(f(h,f(e,g(d))),k),e). ---> New Demodulator: 5395 (5394) EQUAL(f(f(h,f(e,g(d))),k),e). ** KEPT: 5396 (2989,3118) EQUAL(f(f(h,f(e,x)),g(x)),h). ---> New Demodulator: 5397 (5396) EQUAL(f(f(h,f(e,x)),g(x)),h). ** KEPT: 5398 (2989,5) EQUAL(f(x,f(h,f(e,y))),f(f(x,h),y)). ** KEPT: 5399 (2989,5) EQUAL(f(f(h,f(e,x)),y),f(h,f(x,y))). >>>> Starting back demodulation with: 5387 (5386) EQUAL(f(f(h,x),g(f(e,x))),h). >> back demodulating: 5078 (5077) EQUAL(f(f(h,h),g(f(e,h))),h). >> back demodulating: 5077 (2793,3118) EQUAL(f(f(h,h),g(f(e,h))),h). >> back demodulating: 4638 (4637) EQUAL(f(f(h,e),g(f(e,e))),h). >> back demodulating: 4637 (2305,3261,4636) EQUAL(f(f(h,e),g(f(e,e))),h). >> back demodulating: 3505 (3504) EQUAL(f(f(h,c),g(f(e,c))),h). >> back demodulating: 3504 (1356,3118) EQUAL(f(f(h,c),g(f(e,c))),h). >>>> Starting back demodulation with: 5391 (5390) EQUAL(f(f(h,f(e,g(a))),c),d). >>>> Starting back demodulation with: 5393 (5392) EQUAL(f(f(h,f(e,g(x))),x),h). >> back demodulating: 4303 (4302) EQUAL(f(f(h,f(e,g(a))),a),h). >> back demodulating: 4302 (4245,3118) EQUAL(f(f(h,f(e,g(a))),a),h). >> back demodulating: 3178 (3177) EQUAL(f(f(h,f(e,g(d))),d),h). >> back demodulating: 3177 (2487,3118) EQUAL(f(f(h,f(e,g(d))),d),h). >>>> Starting back demodulation with: 5395 (5394) EQUAL(f(f(h,f(e,g(d))),k),e). >>>> Starting back demodulation with: 5397 (5396) EQUAL(f(f(h,f(e,x)),g(x)),h). >> back demodulating: 5087 (5086) EQUAL(f(f(h,f(e,h)),g(h)),h). >> back demodulating: 5086 (2793,3118) EQUAL(f(f(h,f(e,h)),g(h)),h). >> back demodulating: 3510 (3509) EQUAL(f(f(h,f(e,c)),g(c)),h). >> back demodulating: 3509 (1356,3118) EQUAL(f(f(h,f(e,c)),g(c)),h). new given clause: 5384 (4,2989) EQUAL(f(h,f(e,g(h))),e). ** KEPT: 5400 (9,5384) EQUAL(f(f(d,g(b)),f(e,g(h))),e). ---> New Demodulator: 5401 (5400) EQUAL(f(f(d,g(b)),f(e,g(h))),e). ** KEPT: 5402 (4,5384) EQUAL(f(h,f(f(x,g(x)),g(h))),e). ---> New Demodulator: 5403 (5402) EQUAL(f(h,f(f(x,g(x)),g(h))),e). ** KEPT: 5404 (3,5384) EQUAL(f(h,f(f(g(x),x),g(h))),e). ---> New Demodulator: 5405 (5404) EQUAL(f(h,f(f(g(x),x),g(h))),e). ** KEPT: 5406 (9,5384) EQUAL(f(h,f(e,g(f(d,g(b))))),e). ---> New Demodulator: 5407 (5406) EQUAL(f(h,f(e,g(f(d,g(b))))),e). ** KEPT: 5408 (2989,5384) EQUAL(f(h,f(e,f(e,g(h)))),e). ---> New Demodulator: 5409 (5408) EQUAL(f(h,f(e,f(e,g(h)))),e). ** KEPT: 5410 (5,5384) EQUAL(f(f(h,e),g(h)),e). ---> New Demodulator: 5411 (5410) EQUAL(f(f(h,e),g(h)),e). >>>> Starting back demodulation with: 5401 (5400) EQUAL(f(f(d,g(b)),f(e,g(h))),e). >>>> Starting back demodulation with: 5403 (5402) EQUAL(f(h,f(f(x,g(x)),g(h))),e). >>>> Starting back demodulation with: 5405 (5404) EQUAL(f(h,f(f(g(x),x),g(h))),e). >>>> Starting back demodulation with: 5407 (5406) EQUAL(f(h,f(e,g(f(d,g(b))))),e). >>>> Starting back demodulation with: 5409 (5408) EQUAL(f(h,f(e,f(e,g(h)))),e). >>>> Starting back demodulation with: 5411 (5410) EQUAL(f(f(h,e),g(h)),e). >> back demodulating: 3002 (1153,1295,2984) EQUAL(f(k,f(f(h,e),g(h))),k). >> back demodulating: 3003 (3002) EQUAL(f(k,f(f(h,e),g(h))),k). ** KEPT: 5412 (5384,3118) EQUAL(f(e,g(f(e,g(h)))),h). ---> New Demodulator: 5413 (5412) EQUAL(f(e,g(f(e,g(h)))),h). ** KEPT: 5414 (5384,5) EQUAL(f(f(x,h),f(e,g(h))),f(x,e)). ** KEPT: 5415 (5384,5) EQUAL(f(h,f(f(e,g(h)),x)),f(e,x)). >>>> Starting back demodulation with: 5413 (5412) EQUAL(f(e,g(f(e,g(h)))),h). new given clause: 5410 (5,5384) EQUAL(f(f(h,e),g(h)),e). ** KEPT: 5416 (748,5410) EQUAL(f(f(d,g(b)),g(h)),e). ---> New Demodulator: 5417 (5416) EQUAL(f(f(d,g(b)),g(h)),e). ** KEPT: 5418 (9,5410) EQUAL(f(f(h,e),g(f(d,g(b)))),e). ---> New Demodulator: 5419 (5418) EQUAL(f(f(h,e),g(f(d,g(b)))),e). >>>> Starting back demodulation with: 5417 (5416) EQUAL(f(f(d,g(b)),g(h)),e). >> back demodulating: 1317 (9,1295) EQUAL(f(k,f(f(d,g(b)),g(h))),k). >> back demodulating: 1318 (1317) EQUAL(f(k,f(f(d,g(b)),g(h))),k). >> back demodulating: 5326 (9,5322) EQUAL(f(f(f(d,g(b)),g(h)),e),e). >> back demodulating: 5327 (5326) EQUAL(f(f(f(d,g(b)),g(h)),e),e). >>>> Starting back demodulation with: 5419 (5418) EQUAL(f(f(h,e),g(f(d,g(b)))),e). ** KEPT: 5420 (5410,5) EQUAL(f(f(x,f(h,e)),g(h)),f(x,e)). ** KEPT: 5421 (5410,5) EQUAL(f(f(h,e),f(g(h),x)),f(e,x)). new given clause: 2992 (1153,2819,2984) EQUAL(f(f(e,e),f(h,e)),h). ** KEPT: 5422 (4,2992) EQUAL(f(f(f(x,g(x)),e),f(h,e)),h). ---> New Demodulator: 5423 (5422) EQUAL(f(f(f(x,g(x)),e),f(h,e)),h). ** KEPT: 5424 (3,2992) EQUAL(f(f(f(g(x),x),e),f(h,e)),h). ---> New Demodulator: 5425 (5424) EQUAL(f(f(f(g(x),x),e),f(h,e)),h). ** KEPT: 5426 (4,2992) EQUAL(f(f(e,f(x,g(x))),f(h,e)),h). ---> New Demodulator: 5427 (5426) EQUAL(f(f(e,f(x,g(x))),f(h,e)),h). ** KEPT: 5428 (3,2992) EQUAL(f(f(e,f(g(x),x)),f(h,e)),h). ---> New Demodulator: 5429 (5428) EQUAL(f(f(e,f(g(x),x)),f(h,e)),h). >>>> Starting back demodulation with: 5423 (5422) EQUAL(f(f(f(x,g(x)),e),f(h,e)),h). >>>> Starting back demodulation with: 5425 (5424) EQUAL(f(f(f(g(x),x),e),f(h,e)),h). >>>> Starting back demodulation with: 5427 (5426) EQUAL(f(f(e,f(x,g(x))),f(h,e)),h). >>>> Starting back demodulation with: 5429 (5428) EQUAL(f(f(e,f(g(x),x)),f(h,e)),h). ** KEPT: 5430 (2992,5) EQUAL(f(f(x,f(e,e)),f(h,e)),f(x,h)). ** KEPT: 5431 (2992,5) EQUAL(f(f(e,e),f(f(h,e),x)),f(h,x)). new given clause: 2996 (1153,2814,2984) EQUAL(f(f(k,e),f(h,e)),d). ** KEPT: 5432 (4,2996) EQUAL(f(f(k,f(x,g(x))),f(h,e)),d). ---> New Demodulator: 5433 (5432) EQUAL(f(f(k,f(x,g(x))),f(h,e)),d). ** KEPT: 5434 (3,2996) EQUAL(f(f(k,f(g(x),x)),f(h,e)),d). ---> New Demodulator: 5435 (5434) EQUAL(f(f(k,f(g(x),x)),f(h,e)),d). >>>> Starting back demodulation with: 5433 (5432) EQUAL(f(f(k,f(x,g(x))),f(h,e)),d). >>>> Starting back demodulation with: 5435 (5434) EQUAL(f(f(k,f(g(x),x)),f(h,e)),d). ** KEPT: 5436 (2996,5) EQUAL(f(f(x,f(k,e)),f(h,e)),f(x,d)). ** KEPT: 5437 (2996,5) EQUAL(f(f(k,e),f(f(h,e),x)),f(d,x)). new given clause: 3019 (1153,1029,2984) EQUAL(f(f(e,k),f(h,e)),d). ** KEPT: 5438 (4,3019) EQUAL(f(f(f(x,g(x)),k),f(h,e)),d). ---> New Demodulator: 5439 (5438) EQUAL(f(f(f(x,g(x)),k),f(h,e)),d). ** KEPT: 5440 (3,3019) EQUAL(f(f(f(g(x),x),k),f(h,e)),d). ---> New Demodulator: 5441 (5440) EQUAL(f(f(f(g(x),x),k),f(h,e)),d). >>>> Starting back demodulation with: 5439 (5438) EQUAL(f(f(f(x,g(x)),k),f(h,e)),d). >>>> Starting back demodulation with: 5441 (5440) EQUAL(f(f(f(g(x),x),k),f(h,e)),d). ** KEPT: 5442 (3019,5) EQUAL(f(f(x,f(e,k)),f(h,e)),f(x,d)). ** KEPT: 5443 (3019,5) EQUAL(f(f(e,k),f(f(h,e),x)),f(d,x)). new given clause: 3030 (1153,798,2984) EQUAL(f(f(h,e),f(e,b)),d). ** KEPT: 5444 (3030,5) EQUAL(f(f(x,f(h,e)),f(e,b)),f(x,d)). ** KEPT: 5445 (3030,5) EQUAL(f(f(h,e),f(f(e,b),x)),f(d,x)). new given clause: 3047 (1153,2208,2984) EQUAL(g(f(g(d),f(h,e))),b). ** KEPT: 5446 (8,3047) EQUAL(g(f(g(f(c,g(a))),f(h,e))),b). ---> New Demodulator: 5447 (5446) EQUAL(g(f(g(f(c,g(a))),f(h,e))),b). ** KEPT: 5448 (5,3047) EQUAL(g(f(f(g(d),h),e)),b). ---> New Demodulator: 5449 (5448) EQUAL(g(f(f(g(d),h),e)),b). >>>> Starting back demodulation with: 5447 (5446) EQUAL(g(f(g(f(c,g(a))),f(h,e))),b). >>>> Starting back demodulation with: 5449 (5448) EQUAL(g(f(f(g(d),h),e)),b). ** KEPT: 5450 (3047,3118) EQUAL(f(f(h,f(g(d),f(h,e))),b),h). ---> New Demodulator: 5451 (5450) EQUAL(f(f(h,f(g(d),f(h,e))),b),h). ** KEPT: 5452 (3047,2126) EQUAL(f(b,f(f(g(d),f(h,e)),a)),a). ---> New Demodulator: 5453 (5452) EQUAL(f(b,f(f(g(d),f(h,e)),a)),a). ** KEPT: 5454 (3047,2120) EQUAL(f(f(g(d),f(h,e)),f(b,a)),a). ---> New Demodulator: 5455 (5454) EQUAL(f(f(g(d),f(h,e)),f(b,a)),a). ** KEPT: 5456 (3047,1197) EQUAL(f(f(g(d),f(h,e)),f(b,d)),d). ---> New Demodulator: 5457 (5456) EQUAL(f(f(g(d),f(h,e)),f(b,d)),d). ** KEPT: 5458 (3047,1175) EQUAL(f(b,f(f(g(d),f(h,e)),d)),d). ---> New Demodulator: 5459 (5458) EQUAL(f(b,f(f(g(d),f(h,e)),d)),d). ** KEPT: 5460 (3047,1133) EQUAL(f(f(g(d),f(h,e)),f(b,h)),h). ---> New Demodulator: 5461 (5460) EQUAL(f(f(g(d),f(h,e)),f(b,h)),h). ** KEPT: 5462 (3047,1125) EQUAL(f(b,f(f(g(d),f(h,e)),h)),h). ---> New Demodulator: 5463 (5462) EQUAL(f(b,f(f(g(d),f(h,e)),h)),h). ** KEPT: 5464 (3047,1725) EQUAL(f(f(b,b),f(g(d),f(h,e))),b). ---> New Demodulator: 5465 (5464) EQUAL(f(f(b,b),f(g(d),f(h,e))),b). ** KEPT: 5466 (3047,526) EQUAL(f(f(a,f(g(d),f(h,e))),b),a). ---> New Demodulator: 5467 (5466) EQUAL(f(f(a,f(g(d),f(h,e))),b),a). ** KEPT: 5468 (3047,520) EQUAL(f(f(a,b),f(g(d),f(h,e))),a). ---> New Demodulator: 5469 (5468) EQUAL(f(f(a,b),f(g(d),f(h,e))),a). ** KEPT: 5470 (3047,266) EQUAL(f(f(g(d),f(h,e)),f(b,b)),b). ---> New Demodulator: 5471 (5470) EQUAL(f(f(g(d),f(h,e)),f(b,b)),b). ** KEPT: 5472 (3047,105) EQUAL(f(f(d,b),f(g(d),f(h,e))),d). ---> New Demodulator: 5473 (5472) EQUAL(f(f(d,b),f(g(d),f(h,e))),d). >>>> Starting back demodulation with: 5451 (5450) EQUAL(f(f(h,f(g(d),f(h,e))),b),h). >>>> Starting back demodulation with: 5453 (5452) EQUAL(f(b,f(f(g(d),f(h,e)),a)),a). >>>> Starting back demodulation with: 5455 (5454) EQUAL(f(f(g(d),f(h,e)),f(b,a)),a). >>>> Starting back demodulation with: 5457 (5456) EQUAL(f(f(g(d),f(h,e)),f(b,d)),d). >>>> Starting back demodulation with: 5459 (5458) EQUAL(f(b,f(f(g(d),f(h,e)),d)),d). >>>> Starting back demodulation with: 5461 (5460) EQUAL(f(f(g(d),f(h,e)),f(b,h)),h). >>>> Starting back demodulation with: 5463 (5462) EQUAL(f(b,f(f(g(d),f(h,e)),h)),h). >>>> Starting back demodulation with: 5465 (5464) EQUAL(f(f(b,b),f(g(d),f(h,e))),b). >>>> Starting back demodulation with: 5467 (5466) EQUAL(f(f(a,f(g(d),f(h,e))),b),a). >>>> Starting back demodulation with: 5469 (5468) EQUAL(f(f(a,b),f(g(d),f(h,e))),a). >>>> Starting back demodulation with: 5471 (5470) EQUAL(f(f(g(d),f(h,e)),f(b,b)),b). >>>> Starting back demodulation with: 5473 (5472) EQUAL(f(f(d,b),f(g(d),f(h,e))),d). new given clause: 3141 (2987,3118) EQUAL(f(h,g(f(g(x),x))),h). ** KEPT: 5474 (9,3141) EQUAL(f(f(d,g(b)),g(f(g(x),x))),h). ---> New Demodulator: 5475 (5474) EQUAL(f(f(d,g(b)),g(f(g(x),x))),h). ** KEPT: 5476 (5,3141) EQUAL(f(h,g(f(f(g(f(x,y)),x),y))),h). ---> New Demodulator: 5477 (5476) EQUAL(f(h,g(f(f(g(f(x,y)),x),y))),h). ** KEPT: 5478 (2989,3141) EQUAL(f(h,f(e,g(f(g(x),x)))),h). ---> New Demodulator: 5479 (5478) EQUAL(f(h,f(e,g(f(g(x),x)))),h). >>>> Starting back demodulation with: 5475 (5474) EQUAL(f(f(d,g(b)),g(f(g(x),x))),h). >>>> Starting back demodulation with: 5477 (5476) EQUAL(f(h,g(f(f(g(f(x,y)),x),y))),h). >>>> Starting back demodulation with: 5479 (5478) EQUAL(f(h,f(e,g(f(g(x),x)))),h). ** KEPT: 5480 (3141,5) EQUAL(f(f(x,h),g(f(g(y),y))),f(x,h)). ** KEPT: 5481 (3141,5) EQUAL(f(h,f(g(f(g(y),y)),x)),f(h,x)). new given clause: 3143 (2985,3118) EQUAL(f(h,g(f(x,g(x)))),h). ** KEPT: 5482 (9,3143) EQUAL(f(f(d,g(b)),g(f(x,g(x)))),h). ---> New Demodulator: 5483 (5482) EQUAL(f(f(d,g(b)),g(f(x,g(x)))),h). ** KEPT: 5484 (5,3143) EQUAL(f(h,g(f(x,f(y,g(f(x,y)))))),h). ---> New Demodulator: 5485 (5484) EQUAL(f(h,g(f(x,f(y,g(f(x,y)))))),h). ** KEPT: 5486 (2989,3143) EQUAL(f(h,f(e,g(f(x,g(x))))),h). ---> New Demodulator: 5487 (5486) EQUAL(f(h,f(e,g(f(x,g(x))))),h). >>>> Starting back demodulation with: 5483 (5482) EQUAL(f(f(d,g(b)),g(f(x,g(x)))),h). >>>> Starting back demodulation with: 5485 (5484) EQUAL(f(h,g(f(x,f(y,g(f(x,y)))))),h). >>>> Starting back demodulation with: 5487 (5486) EQUAL(f(h,f(e,g(f(x,g(x))))),h). ** KEPT: 5488 (3143,5) EQUAL(f(f(x,h),g(f(y,g(y)))),f(x,h)). ** KEPT: 5489 (3143,5) EQUAL(f(h,f(g(f(y,g(y))),x)),f(h,x)). new given clause: 3151 (2120,3118) EQUAL(f(a,g(f(g(h),a))),h). ** KEPT: 5490 (9,3151) EQUAL(f(a,g(f(g(f(d,g(b))),a))),h). ---> New Demodulator: 5491 (5490) EQUAL(f(a,g(f(g(f(d,g(b))),a))),h). ** KEPT: 5492 (2013,3151) EQUAL(f(a,g(f(f(g(h),e),a))),h). ---> New Demodulator: 5493 (5492) EQUAL(f(a,g(f(f(g(h),e),a))),h). ** KEPT: 5494 (1900,3151) EQUAL(f(f(a,e),g(f(g(h),a))),h). ---> New Demodulator: 5495 (5494) EQUAL(f(f(a,e),g(f(g(h),a))),h). ** KEPT: 5496 (483,3151) EQUAL(f(a,f(e,g(f(g(h),a)))),h). ---> New Demodulator: 5497 (5496) EQUAL(f(a,f(e,g(f(g(h),a)))),h). >>>> Starting back demodulation with: 5491 (5490) EQUAL(f(a,g(f(g(f(d,g(b))),a))),h). >>>> Starting back demodulation with: 5493 (5492) EQUAL(f(a,g(f(f(g(h),e),a))),h). >>>> Starting back demodulation with: 5495 (5494) EQUAL(f(f(a,e),g(f(g(h),a))),h). >>>> Starting back demodulation with: 5497 (5496) EQUAL(f(a,f(e,g(f(g(h),a)))),h). ** KEPT: 5498 (3151,5) EQUAL(f(f(x,a),g(f(g(h),a))),f(x,h)). ** KEPT: 5499 (3151,5) EQUAL(f(a,f(g(f(g(h),a)),x)),f(h,x)). new given clause: 3169 (266,3118) EQUAL(f(b,g(f(g(h),b))),h). ** KEPT: 5500 (9,3169) EQUAL(f(b,g(f(g(f(d,g(b))),b))),h). ---> New Demodulator: 5501 (5500) EQUAL(f(b,g(f(g(f(d,g(b))),b))),h). ** KEPT: 5502 (1444,3169) EQUAL(f(b,g(f(g(h),f(e,b)))),h). ---> New Demodulator: 5503 (5502) EQUAL(f(b,g(f(g(h),f(e,b)))),h). ** KEPT: 5504 (239,3169) EQUAL(f(b,g(f(f(g(h),e),b))),h). ---> New Demodulator: 5505 (5504) EQUAL(f(b,g(f(f(g(h),e),b))),h). ** KEPT: 5506 (1581,3169) EQUAL(f(b,f(e,g(f(g(h),b)))),h). ---> New Demodulator: 5507 (5506) EQUAL(f(b,f(e,g(f(g(h),b)))),h). >>>> Starting back demodulation with: 5501 (5500) EQUAL(f(b,g(f(g(f(d,g(b))),b))),h). >>>> Starting back demodulation with: 5503 (5502) EQUAL(f(b,g(f(g(h),f(e,b)))),h). >>>> Starting back demodulation with: 5505 (5504) EQUAL(f(b,g(f(f(g(h),e),b))),h). >>>> Starting back demodulation with: 5507 (5506) EQUAL(f(b,f(e,g(f(g(h),b)))),h). ** KEPT: 5508 (3169,73) EQUAL(f(d,g(f(g(h),b))),f(h,h)). ** KEPT: 5509 (3169,16) EQUAL(f(c,g(f(g(h),b))),f(a,h)). ** KEPT: 5510 (3169,5) EQUAL(f(f(x,b),g(f(g(h),b))),f(x,h)). ** KEPT: 5511 (3169,5) EQUAL(f(b,f(g(f(g(h),b)),x)),f(h,x)). new given clause: 3173 (48,3118) EQUAL(f(k,g(f(b,g(h)))),h). ** KEPT: 5512 (9,3173) EQUAL(f(k,g(f(b,g(f(d,g(b)))))),h). ---> New Demodulator: 5513 (5512) EQUAL(f(k,g(f(b,g(f(d,g(b)))))),h). ** KEPT: 5514 (1581,3173) EQUAL(f(k,g(f(b,f(e,g(h))))),h). ---> New Demodulator: 5515 (5514) EQUAL(f(k,g(f(b,f(e,g(h))))),h). >>>> Starting back demodulation with: 5513 (5512) EQUAL(f(k,g(f(b,g(f(d,g(b)))))),h). >>>> Starting back demodulation with: 5515 (5514) EQUAL(f(k,g(f(b,f(e,g(h))))),h). ** KEPT: 5516 (3173,5) EQUAL(f(f(x,k),g(f(b,g(h)))),f(x,h)). ** KEPT: 5517 (3173,5) EQUAL(f(k,f(g(f(b,g(h))),x)),f(h,x)). new given clause: 3209 (3126,1175) EQUAL(f(g(f(h,g(d))),h),d). ** KEPT: 5518 (9,3209) EQUAL(f(g(f(f(d,g(b)),g(d))),h),d). ---> New Demodulator: 5519 (5518) EQUAL(f(g(f(f(d,g(b)),g(d))),h),d). ** KEPT: 5520 (8,3209) EQUAL(f(g(f(h,g(f(c,g(a))))),h),d). ---> New Demodulator: 5521 (5520) EQUAL(f(g(f(h,g(f(c,g(a))))),h),d). ** KEPT: 5522 (2989,3209) EQUAL(f(g(f(h,f(e,g(d)))),h),d). ---> New Demodulator: 5523 (5522) EQUAL(f(g(f(h,f(e,g(d)))),h),d). ** KEPT: 5524 (9,3209) EQUAL(f(g(f(h,g(d))),f(d,g(b))),d). ---> New Demodulator: 5525 (5524) EQUAL(f(g(f(h,g(d))),f(d,g(b))),d). ** KEPT: 5526 (2793,3209) EQUAL(f(g(f(h,g(d))),f(e,h)),d). ---> New Demodulator: 5527 (5526) EQUAL(f(g(f(h,g(d))),f(e,h)),d). ** KEPT: 5528 (1071,3209) EQUAL(f(f(g(f(h,g(d))),e),h),d). ---> New Demodulator: 5529 (5528) EQUAL(f(f(g(f(h,g(d))),e),h),d). >>>> Starting back demodulation with: 5519 (5518) EQUAL(f(g(f(f(d,g(b)),g(d))),h),d). >>>> Starting back demodulation with: 5521 (5520) EQUAL(f(g(f(h,g(f(c,g(a))))),h),d). >>>> Starting back demodulation with: 5523 (5522) EQUAL(f(g(f(h,f(e,g(d)))),h),d). >>>> Starting back demodulation with: 5525 (5524) EQUAL(f(g(f(h,g(d))),f(d,g(b))),d). >>>> Starting back demodulation with: 5527 (5526) EQUAL(f(g(f(h,g(d))),f(e,h)),d). >>>> Starting back demodulation with: 5529 (5528) EQUAL(f(f(g(f(h,g(d))),e),h),d). ** KEPT: 5530 (3209,72) EQUAL(f(g(f(h,g(d))),d),f(d,b)). ** KEPT: 5531 (3209,5) EQUAL(f(f(x,g(f(h,g(d)))),h),f(x,d)). ** KEPT: 5532 (3209,5) EQUAL(f(g(f(h,g(d))),f(h,x)),f(d,x)). new given clause: 3211 (3126,260) EQUAL(f(g(f(h,g(b))),h),b). ** KEPT: 5533 (9,3211) EQUAL(f(g(f(f(d,g(b)),g(b))),h),b). ---> New Demodulator: 5534 (5533) EQUAL(f(g(f(f(d,g(b)),g(b))),h),b). ** KEPT: 5535 (2989,3211) EQUAL(f(g(f(h,f(e,g(b)))),h),b). ---> New Demodulator: 5536 (5535) EQUAL(f(g(f(h,f(e,g(b)))),h),b). ** KEPT: 5537 (9,3211) EQUAL(f(g(f(h,g(b))),f(d,g(b))),b). ---> New Demodulator: 5538 (5537) EQUAL(f(g(f(h,g(b))),f(d,g(b))),b). ** KEPT: 5539 (2793,3211) EQUAL(f(g(f(h,g(b))),f(e,h)),b). ---> New Demodulator: 5540 (5539) EQUAL(f(g(f(h,g(b))),f(e,h)),b). ** KEPT: 5541 (1071,3211) EQUAL(f(f(g(f(h,g(b))),e),h),b). ---> New Demodulator: 5542 (5541) EQUAL(f(f(g(f(h,g(b))),e),h),b). >>>> Starting back demodulation with: 5534 (5533) EQUAL(f(g(f(f(d,g(b)),g(b))),h),b). >>>> Starting back demodulation with: 5536 (5535) EQUAL(f(g(f(h,f(e,g(b)))),h),b). >>>> Starting back demodulation with: 5538 (5537) EQUAL(f(g(f(h,g(b))),f(d,g(b))),b). >>>> Starting back demodulation with: 5540 (5539) EQUAL(f(g(f(h,g(b))),f(e,h)),b). >>>> Starting back demodulation with: 5542 (5541) EQUAL(f(f(g(f(h,g(b))),e),h),b). ** KEPT: 5543 (3211,72) EQUAL(f(g(f(h,g(b))),d),f(b,b)). ** KEPT: 5544 (3211,5) EQUAL(f(f(x,g(f(h,g(b)))),h),f(x,b)). ** KEPT: 5545 (3211,5) EQUAL(f(g(f(h,g(b))),f(h,x)),f(b,x)). new given clause: 3213 (3126,2126) EQUAL(f(g(f(h,g(a))),h),a). ** KEPT: 5546 (9,3213) EQUAL(f(g(f(f(d,g(b)),g(a))),h),a). ---> New Demodulator: 5547 (5546) EQUAL(f(g(f(f(d,g(b)),g(a))),h),a). ** KEPT: 5548 (2989,3213) EQUAL(f(g(f(h,f(e,g(a)))),h),a). ---> New Demodulator: 5549 (5548) EQUAL(f(g(f(h,f(e,g(a)))),h),a). ** KEPT: 5550 (9,3213) EQUAL(f(g(f(h,g(a))),f(d,g(b))),a). ---> New Demodulator: 5551 (5550) EQUAL(f(g(f(h,g(a))),f(d,g(b))),a). ** KEPT: 5552 (2793,3213) EQUAL(f(g(f(h,g(a))),f(e,h)),a). ---> New Demodulator: 5553 (5552) EQUAL(f(g(f(h,g(a))),f(e,h)),a). ** KEPT: 5554 (1071,3213) EQUAL(f(f(g(f(h,g(a))),e),h),a). ---> New Demodulator: 5555 (5554) EQUAL(f(f(g(f(h,g(a))),e),h),a). >>>> Starting back demodulation with: 5547 (5546) EQUAL(f(g(f(f(d,g(b)),g(a))),h),a). >>>> Starting back demodulation with: 5549 (5548) EQUAL(f(g(f(h,f(e,g(a)))),h),a). >>>> Starting back demodulation with: 5551 (5550) EQUAL(f(g(f(h,g(a))),f(d,g(b))),a). >>>> Starting back demodulation with: 5553 (5552) EQUAL(f(g(f(h,g(a))),f(e,h)),a). >>>> Starting back demodulation with: 5555 (5554) EQUAL(f(f(g(f(h,g(a))),e),h),a). ** KEPT: 5556 (3213,72) EQUAL(f(g(f(h,g(a))),d),f(a,b)). ** KEPT: 5557 (3213,5) EQUAL(f(f(x,g(f(h,g(a)))),h),f(x,a)). ** KEPT: 5558 (3213,5) EQUAL(f(g(f(h,g(a))),f(h,x)),f(a,x)). new given clause: 3325 (3275,2126) EQUAL(f(g(f(d,g(c))),h),a). ** KEPT: 5559 (8,3325) EQUAL(f(g(f(f(c,g(a)),g(c))),h),a). ---> New Demodulator: 5560 (5559) EQUAL(f(g(f(f(c,g(a)),g(c))),h),a). ** KEPT: 5561 (7,3325) EQUAL(f(g(f(d,g(f(a,b)))),h),a). ---> New Demodulator: 5562 (5561) EQUAL(f(g(f(d,g(f(a,b)))),h),a). ** KEPT: 5563 (861,3325) EQUAL(f(g(f(f(d,e),g(c))),h),a). ---> New Demodulator: 5564 (5563) EQUAL(f(g(f(f(d,e),g(c))),h),a). ** KEPT: 5565 (132,3325) EQUAL(f(g(f(k,f(h,g(c)))),h),a). ---> New Demodulator: 5566 (5565) EQUAL(f(g(f(k,f(h,g(c)))),h),a). ** KEPT: 5567 (92,3325) EQUAL(f(g(f(d,f(e,g(c)))),h),a). ---> New Demodulator: 5568 (5567) EQUAL(f(g(f(d,f(e,g(c)))),h),a). ** KEPT: 5569 (73,3325) EQUAL(f(g(f(h,f(b,g(c)))),h),a). ---> New Demodulator: 5570 (5569) EQUAL(f(g(f(h,f(b,g(c)))),h),a). ** KEPT: 5571 (9,3325) EQUAL(f(g(f(d,g(c))),f(d,g(b))),a). ---> New Demodulator: 5572 (5571) EQUAL(f(g(f(d,g(c))),f(d,g(b))),a). ** KEPT: 5573 (2793,3325) EQUAL(f(g(f(d,g(c))),f(e,h)),a). ---> New Demodulator: 5574 (5573) EQUAL(f(g(f(d,g(c))),f(e,h)),a). ** KEPT: 5575 (1071,3325) EQUAL(f(f(g(f(d,g(c))),e),h),a). ---> New Demodulator: 5576 (5575) EQUAL(f(f(g(f(d,g(c))),e),h),a). >>>> Starting back demodulation with: 5560 (5559) EQUAL(f(g(f(f(c,g(a)),g(c))),h),a). >>>> Starting back demodulation with: 5562 (5561) EQUAL(f(g(f(d,g(f(a,b)))),h),a). >>>> Starting back demodulation with: 5564 (5563) EQUAL(f(g(f(f(d,e),g(c))),h),a). >>>> Starting back demodulation with: 5566 (5565) EQUAL(f(g(f(k,f(h,g(c)))),h),a). >>>> Starting back demodulation with: 5568 (5567) EQUAL(f(g(f(d,f(e,g(c)))),h),a). >>>> Starting back demodulation with: 5570 (5569) EQUAL(f(g(f(h,f(b,g(c)))),h),a). >>>> Starting back demodulation with: 5572 (5571) EQUAL(f(g(f(d,g(c))),f(d,g(b))),a). >>>> Starting back demodulation with: 5574 (5573) EQUAL(f(g(f(d,g(c))),f(e,h)),a). >>>> Starting back demodulation with: 5576 (5575) EQUAL(f(f(g(f(d,g(c))),e),h),a). ** KEPT: 5577 (3325,72) EQUAL(f(g(f(d,g(c))),d),f(a,b)). ** KEPT: 5578 (3325,5) EQUAL(f(f(x,g(f(d,g(c)))),h),f(x,a)). ** KEPT: 5579 (3325,5) EQUAL(f(g(f(d,g(c))),f(h,x)),f(a,x)). new given clause: 3339 (1165,15,69) EQUAL(f(g(f(a,g(h))),c),d). ** KEPT: 5580 (9,3339) EQUAL(f(g(f(a,g(f(d,g(b))))),c),d). ---> New Demodulator: 5581 (5580) EQUAL(f(g(f(a,g(f(d,g(b))))),c),d). ** KEPT: 5582 (1900,3339) EQUAL(f(g(f(f(a,e),g(h))),c),d). ---> New Demodulator: 5583 (5582) EQUAL(f(g(f(f(a,e),g(h))),c),d). ** KEPT: 5584 (483,3339) EQUAL(f(g(f(a,f(e,g(h)))),c),d). ---> New Demodulator: 5585 (5584) EQUAL(f(g(f(a,f(e,g(h)))),c),d). ** KEPT: 5586 (7,3339) EQUAL(f(g(f(a,g(h))),f(a,b)),d). ---> New Demodulator: 5587 (5586) EQUAL(f(g(f(a,g(h))),f(a,b)),d). ** KEPT: 5588 (1356,3339) EQUAL(f(g(f(a,g(h))),f(e,c)),d). ---> New Demodulator: 5589 (5588) EQUAL(f(g(f(a,g(h))),f(e,c)),d). ** KEPT: 5590 (1355,3339) EQUAL(f(g(f(a,g(h))),f(c,e)),d). ---> New Demodulator: 5591 (5590) EQUAL(f(g(f(a,g(h))),f(c,e)),d). >>>> Starting back demodulation with: 5581 (5580) EQUAL(f(g(f(a,g(f(d,g(b))))),c),d). >>>> Starting back demodulation with: 5583 (5582) EQUAL(f(g(f(f(a,e),g(h))),c),d). >>>> Starting back demodulation with: 5585 (5584) EQUAL(f(g(f(a,f(e,g(h)))),c),d). >>>> Starting back demodulation with: 5587 (5586) EQUAL(f(g(f(a,g(h))),f(a,b)),d). >>>> Starting back demodulation with: 5589 (5588) EQUAL(f(g(f(a,g(h))),f(e,c)),d). >>>> Starting back demodulation with: 5591 (5590) EQUAL(f(g(f(a,g(h))),f(c,e)),d). ** KEPT: 5592 (3339,5) EQUAL(f(f(x,g(f(a,g(h)))),c),f(x,d)). ** KEPT: 5593 (3339,5) EQUAL(f(g(f(a,g(h))),f(c,x)),f(d,x)). new given clause: 3397 (5,1263) EQUAL(f(f(d,b),e),f(k,d)). ** KEPT: 5594 (8,3397) EQUAL(f(f(f(c,g(a)),b),e),f(k,d)). ** KEPT: 5595 (2853,3397) EQUAL(f(f(f(k,e),d),e),f(k,d)). ** KEPT: 5596 (2767,3397) EQUAL(f(f(e,f(k,d)),e),f(k,d)). ** KEPT: 5597 (2407,3397) EQUAL(f(f(f(e,d),b),e),f(k,d)). ** KEPT: 5598 (1444,3397) EQUAL(f(f(d,f(e,b)),e),f(k,d)). ** KEPT: 5599 (1052,3397) EQUAL(f(f(f(e,k),d),e),f(k,d)). ** KEPT: 5600 (1017,3397) EQUAL(f(f(f(k,k),h),e),f(k,d)). ** KEPT: 5601 (861,3397) EQUAL(f(f(f(d,e),b),e),f(k,d)). ** KEPT: 5602 (73,3397) EQUAL(f(f(h,f(b,b)),e),f(k,d)). ** KEPT: 5603 (4,3397) EQUAL(f(f(d,b),f(x,g(x))),f(k,d)). ** KEPT: 5604 (3,3397) EQUAL(f(f(d,b),f(g(x),x)),f(k,d)). ** KEPT: 5605 (8,3397) EQUAL(f(k,f(c,g(a))),f(f(d,b),e)). ** KEPT: 5606 (2771,3397) EQUAL(f(f(d,b),e),f(f(e,k),d)). ** KEPT: 5607 (2529,3397) EQUAL(f(f(d,b),e),f(f(e,d),b)). ** KEPT: 5608 (2490,3397) EQUAL(f(f(k,e),d),f(f(d,b),e)). ** KEPT: 5609 (1447,3397) EQUAL(f(f(d,b),e),f(f(d,e),b)). ** KEPT: 5610 (1263,3397) EQUAL(f(d,f(b,e)),f(f(d,b),e)). ** KEPT: 5611 (869,3397) EQUAL(f(d,f(e,b)),f(f(d,b),e)). ** KEPT: 5612 (750,3397) EQUAL(f(h,f(b,b)),f(f(d,b),e)). ** KEPT: 5613 (131,3397) EQUAL(f(f(k,k),h),f(f(d,b),e)). ** KEPT: 5614 (3397,2490) EQUAL(f(f(k,d),d),f(f(d,b),d)). ** KEPT: 5615 (3397,2013) EQUAL(f(f(k,d),a),f(f(d,b),a)). ** KEPT: 5616 (3397,1071) EQUAL(f(f(k,d),h),f(f(d,b),h)). ** KEPT: 5617 (3397,239) EQUAL(f(f(k,d),b),f(f(d,b),b)). ** KEPT: 5618 (3397,5) EQUAL(f(f(x,f(d,b)),e),f(x,f(k,d))). ** KEPT: 5619 (3397,5) EQUAL(f(f(d,b),f(e,x)),f(f(k,d),x)). ** KEPT: 5620 (3397,1175) EQUAL(f(g(k),f(f(d,b),e)),d). ---> New Demodulator: 5621 (5620) EQUAL(f(g(k),f(f(d,b),e)),d). ** KEPT: 5622 (3397,2767) EQUAL(f(e,f(f(d,b),e)),f(d,b)). ** KEPT: 5623 (3397,695) EQUAL(f(g(d),f(f(d,b),e)),b). ---> New Demodulator: 5624 (5623) EQUAL(f(g(d),f(f(d,b),e)),b). ** KEPT: 5625 (3397,151) EQUAL(f(f(f(d,b),e),g(b)),d). ---> New Demodulator: 5626 (5625) EQUAL(f(f(f(d,b),e),g(b)),d). ** KEPT: 5627 (3397,5) EQUAL(f(x,f(f(d,b),e)),f(f(x,k),d)). ** KEPT: 5628 (3397,5) EQUAL(f(f(f(d,b),e),x),f(k,f(d,x))). >>>> Starting back demodulation with: 5621 (5620) EQUAL(f(g(k),f(f(d,b),e)),d). >>>> Starting back demodulation with: 5624 (5623) EQUAL(f(g(d),f(f(d,b),e)),b). >>>> Starting back demodulation with: 5626 (5625) EQUAL(f(f(f(d,b),e),g(b)),d). new given clause: 3402 (667,1263) EQUAL(f(d,f(b,e)),f(d,b)). ** KEPT: 5629 (8,3402) EQUAL(f(f(c,g(a)),f(b,e)),f(d,b)). ** KEPT: 5630 (73,3402) EQUAL(f(h,f(b,f(b,e))),f(d,b)). ** KEPT: 5631 (8,3402) EQUAL(f(f(c,g(a)),b),f(d,f(b,e))). ** KEPT: 5632 (2767,3402) EQUAL(f(d,f(b,e)),f(e,f(k,d))). ** KEPT: 5633 (2530,3402) EQUAL(f(k,f(e,d)),f(d,f(b,e))). ** KEPT: 5634 (3402,113) EQUAL(f(f(d,b),g(f(b,e))),d). ---> New Demodulator: 5635 (5634) EQUAL(f(f(d,b),g(f(b,e))),d). ** KEPT: 5636 (3402,5) EQUAL(f(f(x,d),f(b,e)),f(x,f(d,b))). ** KEPT: 5637 (3402,5) EQUAL(f(d,f(f(b,e),x)),f(f(d,b),x)). ** KEPT: 5638 (3402,3397) EQUAL(f(f(d,f(b,e)),e),f(k,d)). ** KEPT: 5639 (3402,5) EQUAL(f(x,f(d,f(b,e))),f(f(x,d),b)). ** KEPT: 5640 (3402,5) EQUAL(f(f(d,f(b,e)),x),f(d,f(b,x))). >>>> Starting back demodulation with: 5635 (5634) EQUAL(f(f(d,b),g(f(b,e))),d). new given clause: 3480 (5,1356) EQUAL(f(f(x,e),c),f(x,c)). ** KEPT: 5641 (4,3480) EQUAL(f(f(x,f(y,g(y))),c),f(x,c)). ** KEPT: 5642 (3,3480) EQUAL(f(f(x,f(g(y),y)),c),f(x,c)). ** KEPT: 5643 (3397,3480) EQUAL(f(f(k,d),c),f(f(d,b),c)). ** KEPT: 5644 (5322,3480) EQUAL(f(f(h,g(h)),c),f(e,c)). ** KEPT: 5645 (4206,3480) EQUAL(f(f(e,a),c),f(a,c)). ** KEPT: 5646 (3751,3480) EQUAL(f(f(b,g(b)),c),f(e,c)). ** KEPT: 5647 (3608,3480) EQUAL(f(f(e,b),c),f(b,c)). ** KEPT: 5648 (3163,3480) EQUAL(f(f(d,g(b)),c),f(h,c)). ** KEPT: 5649 (2397,3480) EQUAL(f(f(e,d),c),f(d,c)). ** KEPT: 5650 (1112,3480) EQUAL(f(f(e,h),c),f(h,c)). ** KEPT: 5651 (506,3480) EQUAL(f(f(g(c),c),c),f(e,c)). ** KEPT: 5652 (86,3480) EQUAL(f(f(c,g(a)),c),f(d,c)). ** KEPT: 5653 (5,3480) EQUAL(f(f(x,f(y,e)),c),f(f(x,y),c)). ** KEPT: 5654 (3480,3480) EQUAL(f(f(f(x,e),e),c),f(x,c)). ** KEPT: 5655 (3339,3480) EQUAL(f(f(g(f(a,g(h))),e),c),d). ---> New Demodulator: 5656 (5655) EQUAL(f(f(g(f(a,g(h))),e),c),d). ** KEPT: 5657 (2989,3480) EQUAL(f(h,f(e,c)),f(f(h,e),c)). ** KEPT: 5658 (1581,3480) EQUAL(f(b,f(e,c)),f(f(b,e),c)). ** KEPT: 5659 (3215,3480) EQUAL(f(f(f(h,g(a)),e),c),d). ---> New Demodulator: 5660 (5659) EQUAL(f(f(f(h,g(a)),e),c),d). ** KEPT: 5661 (3126,3480) EQUAL(f(f(f(h,g(c)),e),c),h). ---> New Demodulator: 5662 (5661) EQUAL(f(f(f(h,g(c)),e),c),h). ** KEPT: 5663 (1725,3480) EQUAL(f(f(f(b,g(c)),e),c),b). ---> New Demodulator: 5664 (5663) EQUAL(f(f(f(b,g(c)),e),c),b). ** KEPT: 5665 (1495,3480) EQUAL(f(f(g(f(a,e)),e),c),b). ---> New Demodulator: 5666 (5665) EQUAL(f(f(g(f(a,e)),e),c),b). ** KEPT: 5667 (1388,3480) EQUAL(f(f(g(f(e,c)),e),c),e). ---> New Demodulator: 5668 (5667) EQUAL(f(f(g(f(e,c)),e),c),e). ** KEPT: 5669 (1386,3480) EQUAL(f(f(g(f(c,e)),e),c),e). ---> New Demodulator: 5670 (5669) EQUAL(f(f(g(f(c,e)),e),c),e). ** KEPT: 5671 (520,3480) EQUAL(f(f(f(a,g(c)),e),c),a). ---> New Demodulator: 5672 (5671) EQUAL(f(f(f(a,g(c)),e),c),a). ** KEPT: 5673 (334,3480) EQUAL(f(f(f(g(a),e),e),c),b). ---> New Demodulator: 5674 (5673) EQUAL(f(f(f(g(a),e),e),c),b). ** KEPT: 5675 (316,3480) EQUAL(f(f(f(g(c),e),e),c),e). ---> New Demodulator: 5676 (5675) EQUAL(f(f(f(g(c),e),e),c),e). ** KEPT: 5677 (105,3480) EQUAL(f(f(f(d,g(c)),e),c),d). ---> New Demodulator: 5678 (5677) EQUAL(f(f(f(d,g(c)),e),c),d). ** KEPT: 5679 (5,3480) EQUAL(f(f(f(x,y),e),c),f(x,f(y,c))). >>>> Starting back demodulation with: 5656 (5655) EQUAL(f(f(g(f(a,g(h))),e),c),d). >>>> Starting back demodulation with: 5660 (5659) EQUAL(f(f(f(h,g(a)),e),c),d). >>>> Starting back demodulation with: 5662 (5661) EQUAL(f(f(f(h,g(c)),e),c),h). >>>> Starting back demodulation with: 5664 (5663) EQUAL(f(f(f(b,g(c)),e),c),b). >>>> Starting back demodulation with: 5666 (5665) EQUAL(f(f(g(f(a,e)),e),c),b). >>>> Starting back demodulation with: 5668 (5667) EQUAL(f(f(g(f(e,c)),e),c),e). >>>> Starting back demodulation with: 5670 (5669) EQUAL(f(f(g(f(c,e)),e),c),e). >>>> Starting back demodulation with: 5672 (5671) EQUAL(f(f(f(a,g(c)),e),c),a). >>>> Starting back demodulation with: 5674 (5673) EQUAL(f(f(f(g(a),e),e),c),b). >>>> Starting back demodulation with: 5676 (5675) EQUAL(f(f(f(g(c),e),e),c),e). >>>> Starting back demodulation with: 5678 (5677) EQUAL(f(f(f(d,g(c)),e),c),d). ** KEPT: 5680 (3480,5) EQUAL(f(f(x,f(y,e)),c),f(x,f(y,c))). ** KEPT: 5681 (3480,5) EQUAL(f(f(x,e),f(c,y)),f(f(x,c),y)). ** KEPT: 5682 (3480,2924) EQUAL(f(f(f(g(k),e),c),g(a)),h). ---> New Demodulator: 5683 (5682) EQUAL(f(f(f(g(k),e),c),g(a)),h). ** KEPT: 5684 (3480,1791) EQUAL(f(f(f(g(h),e),c),g(a)),b). ---> New Demodulator: 5685 (5684) EQUAL(f(f(f(g(h),e),c),g(a)),b). ** KEPT: 5686 (3480,5) EQUAL(f(x,f(f(y,e),c)),f(f(x,y),c)). ** KEPT: 5687 (3480,5) EQUAL(f(f(f(x,e),c),y),f(x,f(c,y))). >>>> Starting back demodulation with: 5683 (5682) EQUAL(f(f(f(g(k),e),c),g(a)),h). >>>> Starting back demodulation with: 5685 (5684) EQUAL(f(f(f(g(h),e),c),g(a)),b). new given clause: 3540 (5,1422) EQUAL(f(f(f(e,e),e),c),c). ** KEPT: 5688 (4,3540) EQUAL(f(f(f(f(x,g(x)),e),e),c),c). ---> New Demodulator: 5689 (5688) EQUAL(f(f(f(f(x,g(x)),e),e),c),c). ** KEPT: 5690 (3,3540) EQUAL(f(f(f(f(g(x),x),e),e),c),c). ---> New Demodulator: 5691 (5690) EQUAL(f(f(f(f(g(x),x),e),e),c),c). ** KEPT: 5692 (4,3540) EQUAL(f(f(f(e,f(x,g(x))),e),c),c). ---> New Demodulator: 5693 (5692) EQUAL(f(f(f(e,f(x,g(x))),e),c),c). ** KEPT: 5694 (3,3540) EQUAL(f(f(f(e,f(g(x),x)),e),c),c). ---> New Demodulator: 5695 (5694) EQUAL(f(f(f(e,f(g(x),x)),e),c),c). ** KEPT: 5696 (4,3540) EQUAL(f(f(f(e,e),f(x,g(x))),c),c). ---> New Demodulator: 5697 (5696) EQUAL(f(f(f(e,e),f(x,g(x))),c),c). ** KEPT: 5698 (3,3540) EQUAL(f(f(f(e,e),f(g(x),x)),c),c). ---> New Demodulator: 5699 (5698) EQUAL(f(f(f(e,e),f(g(x),x)),c),c). ** KEPT: 5700 (5,3540) EQUAL(f(f(e,f(e,e)),c),c). ---> New Demodulator: 5701 (5700) EQUAL(f(f(e,f(e,e)),c),c). ** KEPT: 5702 (7,3540) EQUAL(f(f(f(e,e),e),f(a,b)),c). ---> New Demodulator: 5703 (5702) EQUAL(f(f(f(e,e),e),f(a,b)),c). ** KEPT: 5704 (3480,3540) EQUAL(f(f(f(f(e,e),e),e),c),c). ---> New Demodulator: 5705 (5704) EQUAL(f(f(f(f(e,e),e),e),c),c). ** KEPT: 5706 (1356,3540) EQUAL(f(f(f(e,e),e),f(e,c)),c). ---> New Demodulator: 5707 (5706) EQUAL(f(f(f(e,e),e),f(e,c)),c). ** KEPT: 5708 (1355,3540) EQUAL(f(f(f(e,e),e),f(c,e)),c). ---> New Demodulator: 5709 (5708) EQUAL(f(f(f(e,e),e),f(c,e)),c). >>>> Starting back demodulation with: 5689 (5688) EQUAL(f(f(f(f(x,g(x)),e),e),c),c). >>>> Starting back demodulation with: 5691 (5690) EQUAL(f(f(f(f(g(x),x),e),e),c),c). >>>> Starting back demodulation with: 5693 (5692) EQUAL(f(f(f(e,f(x,g(x))),e),c),c). >>>> Starting back demodulation with: 5695 (5694) EQUAL(f(f(f(e,f(g(x),x)),e),c),c). >>>> Starting back demodulation with: 5697 (5696) EQUAL(f(f(f(e,e),f(x,g(x))),c),c). >>>> Starting back demodulation with: 5699 (5698) EQUAL(f(f(f(e,e),f(g(x),x)),c),c). >>>> Starting back demodulation with: 5701 (5700) EQUAL(f(f(e,f(e,e)),c),c). >>>> Starting back demodulation with: 5703 (5702) EQUAL(f(f(f(e,e),e),f(a,b)),c). >>>> Starting back demodulation with: 5705 (5704) EQUAL(f(f(f(f(e,e),e),e),c),c). >>>> Starting back demodulation with: 5707 (5706) EQUAL(f(f(f(e,e),e),f(e,c)),c). >>>> Starting back demodulation with: 5709 (5708) EQUAL(f(f(f(e,e),e),f(c,e)),c). ** KEPT: 5710 (3540,5) EQUAL(f(f(x,f(f(e,e),e)),c),f(x,c)). ** KEPT: 5711 (3540,5) EQUAL(f(f(f(e,e),e),f(c,x)),f(c,x)). new given clause: 3574 (1475,1444) EQUAL(f(f(e,e),f(e,b)),b). ** KEPT: 5712 (4,3574) EQUAL(f(f(f(x,g(x)),e),f(e,b)),b). ---> New Demodulator: 5713 (5712) EQUAL(f(f(f(x,g(x)),e),f(e,b)),b). ** KEPT: 5714 (3,3574) EQUAL(f(f(f(g(x),x),e),f(e,b)),b). ---> New Demodulator: 5715 (5714) EQUAL(f(f(f(g(x),x),e),f(e,b)),b). ** KEPT: 5716 (4,3574) EQUAL(f(f(e,f(x,g(x))),f(e,b)),b). ---> New Demodulator: 5717 (5716) EQUAL(f(f(e,f(x,g(x))),f(e,b)),b). ** KEPT: 5718 (3,3574) EQUAL(f(f(e,f(g(x),x)),f(e,b)),b). ---> New Demodulator: 5719 (5718) EQUAL(f(f(e,f(g(x),x)),f(e,b)),b). >>>> Starting back demodulation with: 5713 (5712) EQUAL(f(f(f(x,g(x)),e),f(e,b)),b). >>>> Starting back demodulation with: 5715 (5714) EQUAL(f(f(f(g(x),x),e),f(e,b)),b). >>>> Starting back demodulation with: 5717 (5716) EQUAL(f(f(e,f(x,g(x))),f(e,b)),b). >>>> Starting back demodulation with: 5719 (5718) EQUAL(f(f(e,f(g(x),x)),f(e,b)),b). ** KEPT: 5720 (3574,5) EQUAL(f(f(x,f(e,e)),f(e,b)),f(x,b)). ** KEPT: 5721 (3574,5) EQUAL(f(f(e,e),f(f(e,b),x)),f(b,x)). new given clause: 3576 (1470,1444) EQUAL(f(f(a,e),f(e,b)),c). ** KEPT: 5722 (3576,5) EQUAL(f(f(x,f(a,e)),f(e,b)),f(x,c)). ** KEPT: 5723 (3576,5) EQUAL(f(f(a,e),f(f(e,b),x)),f(c,x)). new given clause: 3584 (678,1444) EQUAL(f(f(e,h),f(e,b)),d). ** KEPT: 5724 (3584,5) EQUAL(f(f(x,f(e,h)),f(e,b)),f(x,d)). ** KEPT: 5725 (3584,5) EQUAL(f(f(e,h),f(f(e,b),x)),f(d,x)). new given clause: 3618 (3608,1071) EQUAL(f(f(e,b),h),f(b,h)). ** KEPT: 5726 (9,3618) EQUAL(f(f(e,b),f(d,g(b))),f(b,h)). ** KEPT: 5727 (9,3618) EQUAL(f(b,f(d,g(b))),f(f(e,b),h)). ** KEPT: 5728 (2793,3618) EQUAL(f(b,f(e,h)),f(f(e,b),h)). ** KEPT: 5729 (1071,3618) EQUAL(f(f(b,e),h),f(f(e,b),h)). ** KEPT: 5730 (3618,1125) EQUAL(f(g(f(e,b)),f(b,h)),h). ---> New Demodulator: 5731 (5730) EQUAL(f(g(f(e,b)),f(b,h)),h). ** KEPT: 5732 (3618,72) EQUAL(f(f(b,h),b),f(f(e,b),d)). ** KEPT: 5733 (3618,5) EQUAL(f(f(e,b),f(h,x)),f(f(b,h),x)). ** KEPT: 5734 (3618,1125) EQUAL(f(g(b),f(f(e,b),h)),h). ---> New Demodulator: 5735 (5734) EQUAL(f(g(b),f(f(e,b),h)),h). ** KEPT: 5736 (3618,72) EQUAL(f(f(f(e,b),h),b),f(b,d)). ** KEPT: 5737 (3618,1719) EQUAL(f(f(f(e,b),h),g(h)),b). ---> New Demodulator: 5738 (5737) EQUAL(f(f(f(e,b),h),g(h)),b). ** KEPT: 5739 (3618,5) EQUAL(f(f(f(e,b),h),x),f(b,f(h,x))). >>>> Starting back demodulation with: 5731 (5730) EQUAL(f(g(f(e,b)),f(b,h)),h). >>>> Starting back demodulation with: 5735 (5734) EQUAL(f(g(b),f(f(e,b),h)),h). >>>> Starting back demodulation with: 5738 (5737) EQUAL(f(f(f(e,b),h),g(h)),b). new given clause: 3619 (3608,239) EQUAL(f(f(e,b),b),f(b,b)). ** KEPT: 5740 (1581,3619) EQUAL(f(b,f(e,b)),f(f(e,b),b)). ** KEPT: 5741 (239,3619) EQUAL(f(f(b,e),b),f(f(e,b),b)). ** KEPT: 5742 (3619,260) EQUAL(f(g(f(e,b)),f(b,b)),b). ---> New Demodulator: 5743 (5742) EQUAL(f(g(f(e,b)),f(b,b)),b). ** KEPT: 5744 (3619,5) EQUAL(f(f(e,b),f(b,x)),f(f(b,b),x)). ** KEPT: 5745 (3619,750) EQUAL(f(h,f(f(e,b),b)),f(k,d)). ** KEPT: 5746 (3619,1719) EQUAL(f(f(f(e,b),b),g(b)),b). ---> New Demodulator: 5747 (5746) EQUAL(f(f(f(e,b),b),g(b)),b). ** KEPT: 5748 (3619,260) EQUAL(f(g(b),f(f(e,b),b)),b). ---> New Demodulator: 5749 (5748) EQUAL(f(g(b),f(f(e,b),b)),b). ** KEPT: 5750 (3619,5) EQUAL(f(f(f(e,b),b),x),f(b,f(b,x))). >>>> Starting back demodulation with: 5743 (5742) EQUAL(f(g(f(e,b)),f(b,b)),b). >>>> Starting back demodulation with: 5747 (5746) EQUAL(f(f(f(e,b),b),g(b)),b). >>>> Starting back demodulation with: 5749 (5748) EQUAL(f(g(b),f(f(e,b),b)),b). new given clause: 3649 (5,1503) EQUAL(f(f(e,f(e,e)),b),b). ** KEPT: 5751 (4,3649) EQUAL(f(f(f(x,g(x)),f(e,e)),b),b). ---> New Demodulator: 5752 (5751) EQUAL(f(f(f(x,g(x)),f(e,e)),b),b). ** KEPT: 5753 (3,3649) EQUAL(f(f(f(g(x),x),f(e,e)),b),b). ---> New Demodulator: 5754 (5753) EQUAL(f(f(f(g(x),x),f(e,e)),b),b). ** KEPT: 5755 (4,3649) EQUAL(f(f(e,f(f(x,g(x)),e)),b),b). ---> New Demodulator: 5756 (5755) EQUAL(f(f(e,f(f(x,g(x)),e)),b),b). ** KEPT: 5757 (3,3649) EQUAL(f(f(e,f(f(g(x),x),e)),b),b). ---> New Demodulator: 5758 (5757) EQUAL(f(f(e,f(f(g(x),x),e)),b),b). ** KEPT: 5759 (4,3649) EQUAL(f(f(e,f(e,f(x,g(x)))),b),b). ---> New Demodulator: 5760 (5759) EQUAL(f(f(e,f(e,f(x,g(x)))),b),b). ** KEPT: 5761 (3,3649) EQUAL(f(f(e,f(e,f(g(x),x))),b),b). ---> New Demodulator: 5762 (5761) EQUAL(f(f(e,f(e,f(g(x),x))),b),b). ** KEPT: 5763 (1444,3649) EQUAL(f(f(e,f(e,e)),f(e,b)),b). ---> New Demodulator: 5764 (5763) EQUAL(f(f(e,f(e,e)),f(e,b)),b). ** KEPT: 5765 (239,3649) EQUAL(f(f(f(e,f(e,e)),e),b),b). ---> New Demodulator: 5766 (5765) EQUAL(f(f(f(e,f(e,e)),e),b),b). >>>> Starting back demodulation with: 5752 (5751) EQUAL(f(f(f(x,g(x)),f(e,e)),b),b). >>>> Starting back demodulation with: 5754 (5753) EQUAL(f(f(f(g(x),x),f(e,e)),b),b). >>>> Starting back demodulation with: 5756 (5755) EQUAL(f(f(e,f(f(x,g(x)),e)),b),b). >>>> Starting back demodulation with: 5758 (5757) EQUAL(f(f(e,f(f(g(x),x),e)),b),b). >>>> Starting back demodulation with: 5760 (5759) EQUAL(f(f(e,f(e,f(x,g(x)))),b),b). >>>> Starting back demodulation with: 5762 (5761) EQUAL(f(f(e,f(e,f(g(x),x))),b),b). >>>> Starting back demodulation with: 5764 (5763) EQUAL(f(f(e,f(e,e)),f(e,b)),b). >>>> Starting back demodulation with: 5766 (5765) EQUAL(f(f(f(e,f(e,e)),e),b),b). ** KEPT: 5767 (3649,260) EQUAL(f(g(f(e,f(e,e))),b),b). ---> New Demodulator: 5768 (5767) EQUAL(f(g(f(e,f(e,e))),b),b). ** KEPT: 5769 (3649,5) EQUAL(f(f(x,f(e,f(e,e))),b),f(x,b)). ** KEPT: 5770 (3649,5) EQUAL(f(f(e,f(e,e)),f(b,x)),f(b,x)). >>>> Starting back demodulation with: 5768 (5767) EQUAL(f(g(f(e,f(e,e))),b),b). new given clause: 3761 (3616,1581) EQUAL(f(b,f(b,e)),f(b,b)). ** KEPT: 5771 (3619,3761) EQUAL(f(b,f(b,e)),f(f(e,b),b)). ** KEPT: 5772 (239,3761) EQUAL(f(b,f(b,e)),f(f(b,e),b)). ** KEPT: 5773 (3761,1719) EQUAL(f(f(b,b),g(f(b,e))),b). ---> New Demodulator: 5774 (5773) EQUAL(f(f(b,b),g(f(b,e))),b). ** KEPT: 5775 (3761,16) EQUAL(f(c,f(b,e)),f(a,f(b,b))). ** KEPT: 5776 (3761,5) EQUAL(f(f(x,b),f(b,e)),f(x,f(b,b))). ** KEPT: 5777 (3761,5) EQUAL(f(b,f(f(b,e),x)),f(f(b,b),x)). ** KEPT: 5778 (3761,1719) EQUAL(f(f(b,f(b,e)),g(b)),b). ---> New Demodulator: 5779 (5778) EQUAL(f(f(b,f(b,e)),g(b)),b). ** KEPT: 5780 (3761,16) EQUAL(f(a,f(b,f(b,e))),f(c,b)). ** KEPT: 5781 (3761,5) EQUAL(f(x,f(b,f(b,e))),f(f(x,b),b)). ** KEPT: 5782 (3761,5) EQUAL(f(f(b,f(b,e)),x),f(b,f(b,x))). >>>> Starting back demodulation with: 5774 (5773) EQUAL(f(f(b,b),g(f(b,e))),b). >>>> Starting back demodulation with: 5779 (5778) EQUAL(f(f(b,f(b,e)),g(b)),b). new given clause: 3763 (2389,1581) EQUAL(f(b,f(d,e)),f(b,d)). ** KEPT: 5783 (8,3763) EQUAL(f(b,f(c,g(a))),f(b,f(d,e))). ** KEPT: 5784 (2490,3763) EQUAL(f(b,f(d,e)),f(f(b,e),d)). ** KEPT: 5785 (1581,3763) EQUAL(f(b,f(d,e)),f(b,f(e,d))). ** KEPT: 5786 (131,3763) EQUAL(f(b,f(d,e)),f(f(b,k),h)). ** KEPT: 5787 (72,3763) EQUAL(f(b,f(d,e)),f(f(b,h),b)). ** KEPT: 5788 (3763,1719) EQUAL(f(f(b,d),g(f(d,e))),b). ---> New Demodulator: 5789 (5788) EQUAL(f(f(b,d),g(f(d,e))),b). ** KEPT: 5790 (3763,16) EQUAL(f(c,f(d,e)),f(a,f(b,d))). ** KEPT: 5791 (3763,5) EQUAL(f(f(x,b),f(d,e)),f(x,f(b,d))). ** KEPT: 5792 (3763,1175) EQUAL(f(g(b),f(b,f(d,e))),d). ---> New Demodulator: 5793 (5792) EQUAL(f(g(b),f(b,f(d,e))),d). ** KEPT: 5794 (3763,1719) EQUAL(f(f(b,f(d,e)),g(d)),b). ---> New Demodulator: 5795 (5794) EQUAL(f(f(b,f(d,e)),g(d)),b). ** KEPT: 5796 (3763,16) EQUAL(f(a,f(b,f(d,e))),f(c,d)). ** KEPT: 5797 (3763,5) EQUAL(f(x,f(b,f(d,e))),f(f(x,b),d)). >>>> Starting back demodulation with: 5789 (5788) EQUAL(f(f(b,d),g(f(d,e))),b). >>>> Starting back demodulation with: 5793 (5792) EQUAL(f(g(b),f(b,f(d,e))),d). >>>> Starting back demodulation with: 5795 (5794) EQUAL(f(f(b,f(d,e)),g(d)),b). new given clause: 3764 (1095,1581) EQUAL(f(b,f(h,e)),f(b,h)). ** KEPT: 5798 (9,3764) EQUAL(f(b,f(d,g(b))),f(b,f(h,e))). ** KEPT: 5799 (3618,3764) EQUAL(f(b,f(h,e)),f(f(e,b),h)). ** KEPT: 5800 (1071,3764) EQUAL(f(b,f(h,e)),f(f(b,e),h)). ** KEPT: 5801 (3764,1719) EQUAL(f(f(b,h),g(f(h,e))),b). ---> New Demodulator: 5802 (5801) EQUAL(f(f(b,h),g(f(h,e))),b). ** KEPT: 5803 (3764,16) EQUAL(f(c,f(h,e)),f(a,f(b,h))). ** KEPT: 5804 (3764,5) EQUAL(f(f(x,b),f(h,e)),f(x,f(b,h))). ** KEPT: 5805 (3764,5) EQUAL(f(b,f(f(h,e),x)),f(f(b,h),x)). ** KEPT: 5806 (3764,1719) EQUAL(f(f(b,f(h,e)),g(h)),b). ---> New Demodulator: 5807 (5806) EQUAL(f(f(b,f(h,e)),g(h)),b). ** KEPT: 5808 (3764,16) EQUAL(f(a,f(b,f(h,e))),f(c,h)). ** KEPT: 5809 (3764,5) EQUAL(f(x,f(b,f(h,e))),f(f(x,b),h)). ** KEPT: 5810 (3764,5) EQUAL(f(f(b,f(h,e)),x),f(b,f(h,x))). >>>> Starting back demodulation with: 5802 (5801) EQUAL(f(f(b,h),g(f(h,e))),b). >>>> Starting back demodulation with: 5807 (5806) EQUAL(f(f(b,f(h,e)),g(h)),b). new given clause: 3768 (5,1581) EQUAL(f(f(b,e),x),f(b,x)). ** KEPT: 5811 (1355,3768) EQUAL(f(b,f(c,e)),f(f(b,e),c)). ** KEPT: 5812 (2120,3768) EQUAL(f(b,f(g(f(b,e)),a)),a). ---> New Demodulator: 5813 (5812) EQUAL(f(b,f(g(f(b,e)),a)),a). ** KEPT: 5814 (163,3768) EQUAL(f(b,f(a,b)),f(f(b,e),c)). ** KEPT: 5815 (1197,3768) EQUAL(f(b,f(g(f(b,e)),d)),d). ---> New Demodulator: 5816 (5815) EQUAL(f(b,f(g(f(b,e)),d)),d). ** KEPT: 5817 (1133,3768) EQUAL(f(b,f(g(f(b,e)),h)),h). ---> New Demodulator: 5818 (5817) EQUAL(f(b,f(g(f(b,e)),h)),h). ** KEPT: 5819 (266,3768) EQUAL(f(b,f(g(f(b,e)),b)),b). ---> New Demodulator: 5820 (5819) EQUAL(f(b,f(g(f(b,e)),b)),b). ** KEPT: 5821 (5,3768) EQUAL(f(f(f(b,e),x),y),f(b,f(x,y))). ** KEPT: 5822 (4,3768) EQUAL(f(b,g(f(b,e))),e). ---> New Demodulator: 5823 (5822) EQUAL(f(b,g(f(b,e))),e). ** KEPT: 5824 (3169,3768) EQUAL(f(f(b,e),g(f(g(h),b))),h). ---> New Demodulator: 5825 (5824) EQUAL(f(f(b,e),g(f(g(h),b))),h). ** KEPT: 5826 (1741,3768) EQUAL(f(f(b,e),g(f(x,g(x)))),b). ---> New Demodulator: 5827 (5826) EQUAL(f(f(b,e),g(f(x,g(x)))),b). ** KEPT: 5828 (1739,3768) EQUAL(f(f(b,e),g(f(g(x),x))),b). ---> New Demodulator: 5829 (5828) EQUAL(f(f(b,e),g(f(g(x),x))),b). ** KEPT: 5830 (3795,3768) EQUAL(f(f(b,e),f(e,g(b))),e). ---> New Demodulator: 5831 (5830) EQUAL(f(f(b,e),f(e,g(b))),e). ** KEPT: 5832 (3797,3768) EQUAL(f(f(b,e),f(e,e)),b). ---> New Demodulator: 5833 (5832) EQUAL(f(f(b,e),f(e,e)),b). ** KEPT: 5834 (1581,3768) EQUAL(f(b,f(e,x)),f(f(b,e),x)). ** KEPT: 5835 (3745,3768) EQUAL(f(f(b,e),f(g(b),e)),e). ---> New Demodulator: 5836 (5835) EQUAL(f(f(b,e),f(g(b),e)),e). ** KEPT: 5837 (2120,3768) EQUAL(f(f(b,e),f(g(b),a)),a). ---> New Demodulator: 5838 (5837) EQUAL(f(f(b,e),f(g(b),a)),a). ** KEPT: 5839 (1197,3768) EQUAL(f(f(b,e),f(g(b),d)),d). ---> New Demodulator: 5840 (5839) EQUAL(f(f(b,e),f(g(b),d)),d). ** KEPT: 5841 (1133,3768) EQUAL(f(f(b,e),f(g(b),h)),h). ---> New Demodulator: 5842 (5841) EQUAL(f(f(b,e),f(g(b),h)),h). ** KEPT: 5843 (5,3768) EQUAL(f(f(b,e),f(x,y)),f(f(b,x),y)). >>>> Starting back demodulation with: 5813 (5812) EQUAL(f(b,f(g(f(b,e)),a)),a). >>>> Starting back demodulation with: 5816 (5815) EQUAL(f(b,f(g(f(b,e)),d)),d). >>>> Starting back demodulation with: 5818 (5817) EQUAL(f(b,f(g(f(b,e)),h)),h). >>>> Starting back demodulation with: 5820 (5819) EQUAL(f(b,f(g(f(b,e)),b)),b). >>>> Starting back demodulation with: 5823 (5822) EQUAL(f(b,g(f(b,e))),e). >> back demodulating: 612 (16,568) EQUAL(f(a,f(b,g(f(b,e)))),a). >> back demodulating: 613 (612) EQUAL(f(a,f(b,g(f(b,e)))),a). >> back demodulating: 1663 (284,759,1576) EQUAL(f(h,f(b,g(f(b,e)))),h). >> back demodulating: 1664 (1663) EQUAL(f(h,f(b,g(f(b,e)))),h). >>>> Starting back demodulation with: 5825 (5824) EQUAL(f(f(b,e),g(f(g(h),b))),h). >>>> Starting back demodulation with: 5827 (5826) EQUAL(f(f(b,e),g(f(x,g(x)))),b). >>>> Starting back demodulation with: 5829 (5828) EQUAL(f(f(b,e),g(f(g(x),x))),b). >>>> Starting back demodulation with: 5831 (5830) EQUAL(f(f(b,e),f(e,g(b))),e). >>>> Starting back demodulation with: 5833 (5832) EQUAL(f(f(b,e),f(e,e)),b). >> back demodulating: 2222 (713,467,2209) EQUAL(f(a,f(f(b,e),f(e,e))),c). >> back demodulating: 2223 (2222) EQUAL(f(a,f(f(b,e),f(e,e))),c). >> back demodulating: 3685 (1529,907,3668) EQUAL(f(h,f(f(b,e),f(e,e))),d). >> back demodulating: 3686 (3685) EQUAL(f(h,f(f(b,e),f(e,e))),d). 5834 back subsumes: 5658 (1581,3480) EQUAL(f(b,f(e,c)),f(f(b,e),c)). 5834 back subsumes: 4785 (1581,2490) EQUAL(f(b,f(e,d)),f(f(b,e),d)). 5834 back subsumes: 4382 (1581,2013) EQUAL(f(b,f(e,a)),f(f(b,e),a)). 5834 back subsumes: 3786 (239,1581) EQUAL(f(b,f(e,b)),f(f(b,e),b)). 5834 back subsumes: 3771 (1071,1581) EQUAL(f(b,f(e,h)),f(f(b,e),h)). >>>> Starting back demodulation with: 5836 (5835) EQUAL(f(f(b,e),f(g(b),e)),e). >>>> Starting back demodulation with: 5838 (5837) EQUAL(f(f(b,e),f(g(b),a)),a). >>>> Starting back demodulation with: 5840 (5839) EQUAL(f(f(b,e),f(g(b),d)),d). >>>> Starting back demodulation with: 5842 (5841) EQUAL(f(f(b,e),f(g(b),h)),h). ** KEPT: 5844 (3768,5) EQUAL(f(f(x,f(b,e)),y),f(x,f(b,y))). ** KEPT: 5845 (3768,4635) EQUAL(g(f(f(b,e),g(d))),h). ---> New Demodulator: 5846 (5845) EQUAL(g(f(f(b,e),g(d))),h). ** KEPT: 5847 (3768,3173) EQUAL(f(k,g(f(f(b,e),g(h)))),h). ---> New Demodulator: 5848 (5847) EQUAL(f(k,g(f(f(b,e),g(h)))),h). ** KEPT: 5849 (3768,1777) EQUAL(f(g(f(f(b,e),g(h))),b),h). ---> New Demodulator: 5850 (5849) EQUAL(f(g(f(f(b,e),g(h))),b),h). ** KEPT: 5851 (3768,2164) EQUAL(f(g(f(f(b,e),g(a))),b),a). ---> New Demodulator: 5852 (5851) EQUAL(f(g(f(f(b,e),g(a))),b),a). ** KEPT: 5853 (3768,5) EQUAL(f(x,f(f(b,e),y)),f(f(x,b),y)). 5844 back subsumes: 5782 (3761,5) EQUAL(f(f(b,f(b,e)),x),f(b,f(b,x))). 5844 back subsumes: 5640 (3402,5) EQUAL(f(f(d,f(b,e)),x),f(d,f(b,x))). >>>> Starting back demodulation with: 5846 (5845) EQUAL(g(f(f(b,e),g(d))),h). >>>> Starting back demodulation with: 5848 (5847) EQUAL(f(k,g(f(f(b,e),g(h)))),h). >>>> Starting back demodulation with: 5850 (5849) EQUAL(f(g(f(f(b,e),g(h))),b),h). >>>> Starting back demodulation with: 5852 (5851) EQUAL(f(g(f(f(b,e),g(a))),b),a). 5853 back subsumes: 5777 (3761,5) EQUAL(f(b,f(f(b,e),x)),f(f(b,b),x)). 5853 back subsumes: 5637 (3402,5) EQUAL(f(d,f(f(b,e),x)),f(f(d,b),x)). new given clause: 5822 (4,3768) EQUAL(f(b,g(f(b,e))),e). ** KEPT: 5854 (1581,5822) EQUAL(f(b,f(e,g(f(b,e)))),e). ---> New Demodulator: 5855 (5854) EQUAL(f(b,f(e,g(f(b,e)))),e). >>>> Starting back demodulation with: 5855 (5854) EQUAL(f(b,f(e,g(f(b,e)))),e). ** KEPT: 5856 (5822,5) EQUAL(f(f(x,b),g(f(b,e))),f(x,e)). ** KEPT: 5857 (5822,5) EQUAL(f(b,f(g(f(b,e)),x)),f(e,x)). new given clause: 3810 (1581,2007) EQUAL(g(f(b,f(e,g(c)))),a). ** KEPT: 5858 (4,3810) EQUAL(g(f(b,f(f(x,g(x)),g(c)))),a). ---> New Demodulator: 5859 (5858) EQUAL(g(f(b,f(f(x,g(x)),g(c)))),a). ** KEPT: 5860 (3,3810) EQUAL(g(f(b,f(f(g(x),x),g(c)))),a). ---> New Demodulator: 5861 (5860) EQUAL(g(f(b,f(f(g(x),x),g(c)))),a). ** KEPT: 5862 (3768,3810) EQUAL(g(f(f(b,e),f(e,g(c)))),a). ---> New Demodulator: 5863 (5862) EQUAL(g(f(f(b,e),f(e,g(c)))),a). ** KEPT: 5864 (1581,3810) EQUAL(g(f(b,f(e,f(e,g(c))))),a). ---> New Demodulator: 5865 (5864) EQUAL(g(f(b,f(e,f(e,g(c))))),a). >>>> Starting back demodulation with: 5859 (5858) EQUAL(g(f(b,f(f(x,g(x)),g(c)))),a). >>>> Starting back demodulation with: 5861 (5860) EQUAL(g(f(b,f(f(g(x),x),g(c)))),a). >>>> Starting back demodulation with: 5863 (5862) EQUAL(g(f(f(b,e),f(e,g(c)))),a). >>>> Starting back demodulation with: 5865 (5864) EQUAL(g(f(b,f(e,f(e,g(c))))),a). ** KEPT: 5866 (3810,3118) EQUAL(f(f(h,f(b,f(e,g(c)))),a),h). ---> New Demodulator: 5867 (5866) EQUAL(f(f(h,f(b,f(e,g(c)))),a),h). ** KEPT: 5868 (3810,2120) EQUAL(f(f(b,f(e,g(c))),f(a,a)),a). ---> New Demodulator: 5869 (5868) EQUAL(f(f(b,f(e,g(c))),f(a,a)),a). ** KEPT: 5870 (3810,1719) EQUAL(f(f(b,f(b,f(e,g(c)))),a),b). ---> New Demodulator: 5871 (5870) EQUAL(f(f(b,f(b,f(e,g(c)))),a),b). ** KEPT: 5872 (3810,3126) EQUAL(f(f(h,a),f(b,f(e,g(c)))),h). ---> New Demodulator: 5873 (5872) EQUAL(f(f(h,a),f(b,f(e,g(c)))),h). ** KEPT: 5874 (3810,1197) EQUAL(f(f(b,f(e,g(c))),f(a,d)),d). ---> New Demodulator: 5875 (5874) EQUAL(f(f(b,f(e,g(c))),f(a,d)),d). ** KEPT: 5876 (3810,1175) EQUAL(f(a,f(f(b,f(e,g(c))),d)),d). ---> New Demodulator: 5877 (5876) EQUAL(f(a,f(f(b,f(e,g(c))),d)),d). ** KEPT: 5878 (3810,1133) EQUAL(f(f(b,f(e,g(c))),f(a,h)),h). ---> New Demodulator: 5879 (5878) EQUAL(f(f(b,f(e,g(c))),f(a,h)),h). ** KEPT: 5880 (3810,1125) EQUAL(f(a,f(f(b,f(e,g(c))),h)),h). ---> New Demodulator: 5881 (5880) EQUAL(f(a,f(f(b,f(e,g(c))),h)),h). ** KEPT: 5882 (3810,1725) EQUAL(f(f(b,a),f(b,f(e,g(c)))),b). ---> New Demodulator: 5883 (5882) EQUAL(f(f(b,a),f(b,f(e,g(c)))),b). ** KEPT: 5884 (3810,520) EQUAL(f(f(a,a),f(b,f(e,g(c)))),a). ---> New Demodulator: 5885 (5884) EQUAL(f(f(a,a),f(b,f(e,g(c)))),a). ** KEPT: 5886 (3810,266) EQUAL(f(f(b,f(e,g(c))),f(a,b)),b). ---> New Demodulator: 5887 (5886) EQUAL(f(f(b,f(e,g(c))),f(a,b)),b). ** KEPT: 5888 (3810,260) EQUAL(f(a,f(f(b,f(e,g(c))),b)),b). ---> New Demodulator: 5889 (5888) EQUAL(f(a,f(f(b,f(e,g(c))),b)),b). ** KEPT: 5890 (3810,113) EQUAL(f(f(d,f(b,f(e,g(c)))),a),d). ---> New Demodulator: 5891 (5890) EQUAL(f(f(d,f(b,f(e,g(c)))),a),d). ** KEPT: 5892 (3810,105) EQUAL(f(f(d,a),f(b,f(e,g(c)))),d). ---> New Demodulator: 5893 (5892) EQUAL(f(f(d,a),f(b,f(e,g(c)))),d). >>>> Starting back demodulation with: 5867 (5866) EQUAL(f(f(h,f(b,f(e,g(c)))),a),h). >>>> Starting back demodulation with: 5869 (5868) EQUAL(f(f(b,f(e,g(c))),f(a,a)),a). >>>> Starting back demodulation with: 5871 (5870) EQUAL(f(f(b,f(b,f(e,g(c)))),a),b). >>>> Starting back demodulation with: 5873 (5872) EQUAL(f(f(h,a),f(b,f(e,g(c)))),h). >>>> Starting back demodulation with: 5875 (5874) EQUAL(f(f(b,f(e,g(c))),f(a,d)),d). >>>> Starting back demodulation with: 5877 (5876) EQUAL(f(a,f(f(b,f(e,g(c))),d)),d). >>>> Starting back demodulation with: 5879 (5878) EQUAL(f(f(b,f(e,g(c))),f(a,h)),h). >>>> Starting back demodulation with: 5881 (5880) EQUAL(f(a,f(f(b,f(e,g(c))),h)),h). >>>> Starting back demodulation with: 5883 (5882) EQUAL(f(f(b,a),f(b,f(e,g(c)))),b). >>>> Starting back demodulation with: 5885 (5884) EQUAL(f(f(a,a),f(b,f(e,g(c)))),a). >>>> Starting back demodulation with: 5887 (5886) EQUAL(f(f(b,f(e,g(c))),f(a,b)),b). >>>> Starting back demodulation with: 5889 (5888) EQUAL(f(a,f(f(b,f(e,g(c))),b)),b). >>>> Starting back demodulation with: 5891 (5890) EQUAL(f(f(d,f(b,f(e,g(c)))),a),d). >>>> Starting back demodulation with: 5893 (5892) EQUAL(f(f(d,a),f(b,f(e,g(c)))),d). new given clause: 3827 (1581,3797) EQUAL(f(b,f(e,f(e,e))),b). ** KEPT: 5894 (4,3827) EQUAL(f(b,f(f(x,g(x)),f(e,e))),b). ---> New Demodulator: 5895 (5894) EQUAL(f(b,f(f(x,g(x)),f(e,e))),b). ** KEPT: 5896 (3,3827) EQUAL(f(b,f(f(g(x),x),f(e,e))),b). ---> New Demodulator: 5897 (5896) EQUAL(f(b,f(f(g(x),x),f(e,e))),b). ** KEPT: 5898 (4,3827) EQUAL(f(b,f(e,f(f(x,g(x)),e))),b). ---> New Demodulator: 5899 (5898) EQUAL(f(b,f(e,f(f(x,g(x)),e))),b). ** KEPT: 5900 (3,3827) EQUAL(f(b,f(e,f(f(g(x),x),e))),b). ---> New Demodulator: 5901 (5900) EQUAL(f(b,f(e,f(f(g(x),x),e))),b). ** KEPT: 5902 (4,3827) EQUAL(f(b,f(e,f(e,f(x,g(x))))),b). ---> New Demodulator: 5903 (5902) EQUAL(f(b,f(e,f(e,f(x,g(x))))),b). ** KEPT: 5904 (3,3827) EQUAL(f(b,f(e,f(e,f(g(x),x)))),b). ---> New Demodulator: 5905 (5904) EQUAL(f(b,f(e,f(e,f(g(x),x)))),b). ** KEPT: 5906 (5,3827) EQUAL(f(b,f(f(e,e),e)),b). ---> New Demodulator: 5907 (5906) EQUAL(f(b,f(f(e,e),e)),b). ** KEPT: 5908 (3768,3827) EQUAL(f(f(b,e),f(e,f(e,e))),b). ---> New Demodulator: 5909 (5908) EQUAL(f(f(b,e),f(e,f(e,e))),b). ** KEPT: 5910 (1581,3827) EQUAL(f(b,f(e,f(e,f(e,e)))),b). ---> New Demodulator: 5911 (5910) EQUAL(f(b,f(e,f(e,f(e,e)))),b). >>>> Starting back demodulation with: 5895 (5894) EQUAL(f(b,f(f(x,g(x)),f(e,e))),b). >>>> Starting back demodulation with: 5897 (5896) EQUAL(f(b,f(f(g(x),x),f(e,e))),b). >>>> Starting back demodulation with: 5899 (5898) EQUAL(f(b,f(e,f(f(x,g(x)),e))),b). >>>> Starting back demodulation with: 5901 (5900) EQUAL(f(b,f(e,f(f(g(x),x),e))),b). >>>> Starting back demodulation with: 5903 (5902) EQUAL(f(b,f(e,f(e,f(x,g(x))))),b). >>>> Starting back demodulation with: 5905 (5904) EQUAL(f(b,f(e,f(e,f(g(x),x)))),b). >>>> Starting back demodulation with: 5907 (5906) EQUAL(f(b,f(f(e,e),e)),b). >> back demodulating: 4767 (73,2435) EQUAL(f(h,f(b,f(f(e,e),e))),d). >> back demodulating: 4768 (4767) EQUAL(f(h,f(b,f(f(e,e),e))),d). >>>> Starting back demodulation with: 5909 (5908) EQUAL(f(f(b,e),f(e,f(e,e))),b). >>>> Starting back demodulation with: 5911 (5910) EQUAL(f(b,f(e,f(e,f(e,e)))),b). ** KEPT: 5912 (3827,1719) EQUAL(f(b,g(f(e,f(e,e)))),b). ---> New Demodulator: 5913 (5912) EQUAL(f(b,g(f(e,f(e,e)))),b). ** KEPT: 5914 (3827,5) EQUAL(f(f(x,b),f(e,f(e,e))),f(x,b)). ** KEPT: 5915 (3827,5) EQUAL(f(b,f(f(e,f(e,e)),x)),f(b,x)). >>>> Starting back demodulation with: 5913 (5912) EQUAL(f(b,g(f(e,f(e,e)))),b). new given clause: 3845 (3795,1719) EQUAL(f(e,g(f(e,g(b)))),b). ** KEPT: 5916 (4,3845) EQUAL(f(f(x,g(x)),g(f(e,g(b)))),b). ---> New Demodulator: 5917 (5916) EQUAL(f(f(x,g(x)),g(f(e,g(b)))),b). ** KEPT: 5918 (3,3845) EQUAL(f(f(g(x),x),g(f(e,g(b)))),b). ---> New Demodulator: 5919 (5918) EQUAL(f(f(g(x),x),g(f(e,g(b)))),b). ** KEPT: 5920 (4,3845) EQUAL(f(e,g(f(f(x,g(x)),g(b)))),b). ---> New Demodulator: 5921 (5920) EQUAL(f(e,g(f(f(x,g(x)),g(b)))),b). ** KEPT: 5922 (3,3845) EQUAL(f(e,g(f(f(g(x),x),g(b)))),b). ---> New Demodulator: 5923 (5922) EQUAL(f(e,g(f(f(g(x),x),g(b)))),b). ** KEPT: 5924 (1,3845) EQUAL(g(f(e,g(b))),b). ---> New Demodulator: 5925 (5924) EQUAL(g(f(e,g(b))),b). >>>> Starting back demodulation with: 5917 (5916) EQUAL(f(f(x,g(x)),g(f(e,g(b)))),b). >>>> Starting back demodulation with: 5919 (5918) EQUAL(f(f(g(x),x),g(f(e,g(b)))),b). >>>> Starting back demodulation with: 5921 (5920) EQUAL(f(e,g(f(f(x,g(x)),g(b)))),b). >>>> Starting back demodulation with: 5923 (5922) EQUAL(f(e,g(f(f(g(x),x),g(b)))),b). >>>> Starting back demodulation with: 5925 (5924) EQUAL(g(f(e,g(b))),b). >> back demodulating: 949 (880,113) EQUAL(f(h,g(f(e,g(b)))),d). >> back demodulating: 950 (949) EQUAL(f(h,g(f(e,g(b)))),d). >> back demodulating: 2474 (949,132) EQUAL(f(d,g(f(e,g(b)))),f(k,d)). >> back demodulating: 2475 (949,5) EQUAL(f(f(x,h),g(f(e,g(b)))),f(x,d)). >> back demodulating: 2476 (949,5) EQUAL(f(h,f(g(f(e,g(b))),x)),f(d,x)). >> back demodulating: 3026 (1153,949,2984) EQUAL(f(f(h,e),g(f(e,g(b)))),d). >> back demodulating: 3027 (3026) EQUAL(f(f(h,e),g(f(e,g(b)))),d). >> back demodulating: 3845 (3795,1719) EQUAL(f(e,g(f(e,g(b)))),b). >> back demodulating: 3846 (3845) EQUAL(f(e,g(f(e,g(b)))),b). >> back demodulating: 5916 (4,3845) EQUAL(f(f(x,g(x)),g(f(e,g(b)))),b). >> back demodulating: 5917 (5916) EQUAL(f(f(x,g(x)),g(f(e,g(b)))),b). >> back demodulating: 5918 (3,3845) EQUAL(f(f(g(x),x),g(f(e,g(b)))),b). >> back demodulating: 5919 (5918) EQUAL(f(f(g(x),x),g(f(e,g(b)))),b). ** KEPT: 5926 (3845,5822,5925) EQUAL(f(f(e,b),g(f(b,e))),e). ---> New Demodulator: 5927 (5926) EQUAL(f(f(e,b),g(f(b,e))),e). ** KEPT: 5928 (3845,3831,5925) EQUAL(f(f(e,b),g(f(e,e))),b). ---> New Demodulator: 5929 (5928) EQUAL(f(f(e,b),g(f(e,e))),b). ** KEPT: 5930 (3845,3827,5925) EQUAL(f(f(e,b),f(e,f(e,e))),b). ---> New Demodulator: 5931 (5930) EQUAL(f(f(e,b),f(e,f(e,e))),b). ** KEPT: 5932 (3845,3797,5925) EQUAL(f(f(e,b),f(e,e)),b). ---> New Demodulator: 5933 (5932) EQUAL(f(f(e,b),f(e,e)),b). ** KEPT: 5934 (3845,3795,5925) EQUAL(f(f(e,b),f(e,g(b))),e). ---> New Demodulator: 5935 (5934) EQUAL(f(f(e,b),f(e,g(b))),e). ** KEPT: 5936 (3845,3768,5925) EQUAL(f(f(b,e),x),f(f(e,b),x)). ** KEPT: 5937 (3845,3764,5925) EQUAL(f(f(e,b),f(h,e)),f(b,h)). ** KEPT: 5938 (3845,3763,5925) EQUAL(f(b,f(d,e)),f(f(e,b),d)). ** KEPT: 5939 (3845,3763,5925) EQUAL(f(f(e,b),f(d,e)),f(b,d)). ** KEPT: 5940 (3845,3761,5925) EQUAL(f(f(e,b),f(b,e)),f(b,b)). ** KEPT: 5941 (3845,3745,5925) EQUAL(f(f(e,b),f(g(b),e)),e). ---> New Demodulator: 5942 (5941) EQUAL(f(f(e,b),f(g(b),e)),e). ** KEPT: 5943 (3845,3169,5925) EQUAL(f(f(e,b),g(f(g(h),b))),h). ---> New Demodulator: 5944 (5943) EQUAL(f(f(e,b),g(f(g(h),b))),h). ** KEPT: 5945 (3845,2290,5925) EQUAL(f(f(e,b),f(g(d),h)),e). ---> New Demodulator: 5946 (5945) EQUAL(f(f(e,b),f(g(d),h)),e). ** KEPT: 5947 (3845,1741,5925) EQUAL(f(f(e,b),g(f(x,g(x)))),b). ---> New Demodulator: 5948 (5947) EQUAL(f(f(e,b),g(f(x,g(x)))),b). ** KEPT: 5949 (3845,1739,5925) EQUAL(f(f(e,b),g(f(g(x),x))),b). ---> New Demodulator: 5950 (5949) EQUAL(f(f(e,b),g(f(g(x),x))),b). ** KEPT: 5951 (3845,1715,5925) EQUAL(f(f(e,b),f(g(c),a)),e). ---> New Demodulator: 5952 (5951) EQUAL(f(f(e,b),f(g(c),a)),e). ** KEPT: 5953 (3845,1581,5925) EQUAL(f(b,f(e,x)),f(f(e,b),x)). ** KEPT: 5954 (3845,1725,5925) EQUAL(f(f(f(e,b),g(x)),x),b). ---> New Demodulator: 5955 (5954) EQUAL(f(f(f(e,b),g(x)),x),b). ** KEPT: 5956 (3845,4635,5925) EQUAL(g(f(f(e,b),g(d))),h). ---> New Demodulator: 5957 (5956) EQUAL(g(f(f(e,b),g(d))),h). ** KEPT: 5958 (3845,2296,5925) EQUAL(f(f(f(e,b),g(d)),h),e). ---> New Demodulator: 5959 (5958) EQUAL(f(f(f(e,b),g(d)),h),e). ** KEPT: 5960 (3845,762,5925) EQUAL(f(h,f(f(e,b),g(d))),e). ---> New Demodulator: 5961 (5960) EQUAL(f(h,f(f(e,b),g(d))),e). ** KEPT: 5962 (3845,3810,5925) EQUAL(g(f(f(e,b),f(e,g(c)))),a). ---> New Demodulator: 5963 (5962) EQUAL(g(f(f(e,b),f(e,g(c)))),a). ** KEPT: 5964 (3845,574,5925) EQUAL(f(f(e,b),g(f(g(a),b))),a). ---> New Demodulator: 5965 (5964) EQUAL(f(f(e,b),g(f(g(a),b))),a). ** KEPT: 5966 (3845,2096,5925) EQUAL(g(f(f(e,b),g(f(a,b)))),a). ---> New Demodulator: 5967 (5966) EQUAL(g(f(f(e,b),g(f(a,b)))),a). ** KEPT: 5968 (3845,3751,5925) EQUAL(f(f(f(e,b),g(b)),e),e). ---> New Demodulator: 5969 (5968) EQUAL(f(f(f(e,b),g(b)),e),e). ** KEPT: 5970 (3845,2007,5925) EQUAL(g(f(f(e,b),g(c))),a). ---> New Demodulator: 5971 (5970) EQUAL(g(f(f(e,b),g(c))),a). ** KEPT: 5972 (3845,1733,5925) EQUAL(f(f(f(e,b),g(c)),a),e). ---> New Demodulator: 5973 (5972) EQUAL(f(f(f(e,b),g(c)),a),e). ** KEPT: 5974 (3845,373,5925) EQUAL(f(a,f(f(e,b),g(c))),e). ---> New Demodulator: 5975 (5974) EQUAL(f(a,f(f(e,b),g(c))),e). ** KEPT: 5976 (3845,306,5925) EQUAL(f(f(e,b),g(f(g(d),b))),d). ---> New Demodulator: 5977 (5976) EQUAL(f(f(e,b),g(f(g(d),b))),d). ** KEPT: 5978 (3845,3173,5925) EQUAL(f(k,g(f(f(e,b),g(h)))),h). ---> New Demodulator: 5979 (5978) EQUAL(f(k,g(f(f(e,b),g(h)))),h). ** KEPT: 5980 (3845,1777,5925) EQUAL(f(g(f(f(e,b),g(h))),b),h). ---> New Demodulator: 5981 (5980) EQUAL(f(g(f(f(e,b),g(h))),b),h). ** KEPT: 5982 (3845,48,5925) EQUAL(f(h,f(f(e,b),g(h))),k). ---> New Demodulator: 5983 (5982) EQUAL(f(h,f(f(e,b),g(h))),k). ** KEPT: 5984 (3845,2164,5925) EQUAL(f(g(f(f(e,b),g(a))),b),a). ---> New Demodulator: 5985 (5984) EQUAL(f(g(f(f(e,b),g(a))),b),a). ** KEPT: 5986 (3845,580,5925) EQUAL(f(d,g(f(f(e,b),g(a)))),a). ---> New Demodulator: 5987 (5986) EQUAL(f(d,g(f(f(e,b),g(a)))),a). ** KEPT: 5988 (3845,38,5925) EQUAL(f(a,f(f(e,b),g(a))),d). ---> New Demodulator: 5989 (5988) EQUAL(f(a,f(f(e,b),g(a))),d). ** KEPT: 5990 (3845,1719,5925) EQUAL(f(f(f(e,b),x),g(x)),b). ---> New Demodulator: 5991 (5990) EQUAL(f(f(f(e,b),x),g(x)),b). ** KEPT: 5992 (3845,3843,5925) EQUAL(f(f(b,e),g(f(e,b))),e). ---> New Demodulator: 5993 (5992) EQUAL(f(f(b,e),g(f(e,b))),e). ** KEPT: 5994 (3845,2146,5925) EQUAL(f(a,g(f(g(f(e,b)),a))),b). ---> New Demodulator: 5995 (5994) EQUAL(f(a,g(f(g(f(e,b)),a))),b). ** KEPT: 5996 (3845,1751,5925) EQUAL(f(h,g(f(g(f(e,b)),h))),b). ---> New Demodulator: 5997 (5996) EQUAL(f(h,g(f(g(f(e,b)),h))),b). ** KEPT: 5998 (3845,1749,5925) EQUAL(f(d,g(f(g(f(e,b)),d))),b). ---> New Demodulator: 5999 (5998) EQUAL(f(d,g(f(g(f(e,b)),d))),b). ** KEPT: 6000 (3845,3745,5925) EQUAL(f(b,f(g(f(e,b)),e)),e). ---> New Demodulator: 6001 (6000) EQUAL(f(b,f(g(f(e,b)),e)),e). ** KEPT: 6002 (3845,3667,5925) EQUAL(g(f(g(f(e,b)),e)),b). ---> New Demodulator: 6003 (6002) EQUAL(g(f(g(f(e,b)),e)),b). ** KEPT: 6004 (3845,3239,5925) EQUAL(f(d,f(g(f(e,b)),e)),h). ---> New Demodulator: 6005 (6004) EQUAL(f(d,f(g(f(e,b)),e)),h). ** KEPT: 6006 (3845,3211,5925) EQUAL(f(g(f(h,g(f(e,b)))),h),b). ---> New Demodulator: 6007 (6006) EQUAL(f(g(f(h,g(f(e,b)))),h),b). ** KEPT: 6008 (3845,1097,5925) EQUAL(f(f(e,d),g(f(e,b))),h). ---> New Demodulator: 6009 (6008) EQUAL(f(f(e,d),g(f(e,b))),h). ** KEPT: 6010 (3845,660,5925) EQUAL(f(c,f(g(a),g(f(e,b)))),h). ---> New Demodulator: 6011 (6010) EQUAL(f(c,f(g(a),g(f(e,b)))),h). ** KEPT: 6012 (3845,3795,5925) EQUAL(f(b,f(e,g(f(e,b)))),e). ---> New Demodulator: 6013 (6012) EQUAL(f(b,f(e,g(f(e,b)))),e). ** KEPT: 6014 (3845,620,5925) EQUAL(f(c,f(e,g(f(e,b)))),a). ---> New Demodulator: 6015 (6014) EQUAL(f(c,f(e,g(f(e,b)))),a). ** KEPT: 6016 (3845,558,5925) EQUAL(f(g(f(a,g(f(e,b)))),a),b). ---> New Demodulator: 6017 (6016) EQUAL(f(g(f(a,g(f(e,b)))),a),b). ** KEPT: 6018 (3845,3751,5925) EQUAL(f(f(b,g(f(e,b))),e),e). ---> New Demodulator: 6019 (6018) EQUAL(f(f(b,g(f(e,b))),e),e). ** KEPT: 6020 (3845,37,5925) -EQUAL(f(k,g(f(e,b))),f(g(x),x)). ** KEPT: 6021 (3845,36,5925) -EQUAL(f(k,g(f(e,b))),f(x,g(x))). ** KEPT: 6022 (3845,12,5925) -EQUAL(f(k,g(f(e,b))),e). >>>> Starting back demodulation with: 5927 (5926) EQUAL(f(f(e,b),g(f(b,e))),e). >>>> Starting back demodulation with: 5929 (5928) EQUAL(f(f(e,b),g(f(e,e))),b). >>>> Starting back demodulation with: 5931 (5930) EQUAL(f(f(e,b),f(e,f(e,e))),b). >>>> Starting back demodulation with: 5933 (5932) EQUAL(f(f(e,b),f(e,e)),b). >>>> Starting back demodulation with: 5935 (5934) EQUAL(f(f(e,b),f(e,g(b))),e). 5936 back subsumes: 5741 (239,3619) EQUAL(f(f(b,e),b),f(f(e,b),b)). 5936 back subsumes: 5729 (1071,3618) EQUAL(f(f(b,e),h),f(f(e,b),h)). >>>> Starting back demodulation with: 5942 (5941) EQUAL(f(f(e,b),f(g(b),e)),e). >>>> Starting back demodulation with: 5944 (5943) EQUAL(f(f(e,b),g(f(g(h),b))),h). >>>> Starting back demodulation with: 5946 (5945) EQUAL(f(f(e,b),f(g(d),h)),e). >>>> Starting back demodulation with: 5948 (5947) EQUAL(f(f(e,b),g(f(x,g(x)))),b). >>>> Starting back demodulation with: 5950 (5949) EQUAL(f(f(e,b),g(f(g(x),x))),b). >>>> Starting back demodulation with: 5952 (5951) EQUAL(f(f(e,b),f(g(c),a)),e). 5953 back subsumes: 5740 (1581,3619) EQUAL(f(b,f(e,b)),f(f(e,b),b)). 5953 back subsumes: 5728 (2793,3618) EQUAL(f(b,f(e,h)),f(f(e,b),h)). >>>> Starting back demodulation with: 5955 (5954) EQUAL(f(f(f(e,b),g(x)),x),b). >>>> Starting back demodulation with: 5957 (5956) EQUAL(g(f(f(e,b),g(d))),h). >>>> Starting back demodulation with: 5959 (5958) EQUAL(f(f(f(e,b),g(d)),h),e). >>>> Starting back demodulation with: 5961 (5960) EQUAL(f(h,f(f(e,b),g(d))),e). >>>> Starting back demodulation with: 5963 (5962) EQUAL(g(f(f(e,b),f(e,g(c)))),a). >>>> Starting back demodulation with: 5965 (5964) EQUAL(f(f(e,b),g(f(g(a),b))),a). >>>> Starting back demodulation with: 5967 (5966) EQUAL(g(f(f(e,b),g(f(a,b)))),a). >>>> Starting back demodulation with: 5969 (5968) EQUAL(f(f(f(e,b),g(b)),e),e). >>>> Starting back demodulation with: 5971 (5970) EQUAL(g(f(f(e,b),g(c))),a). >>>> Starting back demodulation with: 5973 (5972) EQUAL(f(f(f(e,b),g(c)),a),e). >>>> Starting back demodulation with: 5975 (5974) EQUAL(f(a,f(f(e,b),g(c))),e). >>>> Starting back demodulation with: 5977 (5976) EQUAL(f(f(e,b),g(f(g(d),b))),d). >>>> Starting back demodulation with: 5979 (5978) EQUAL(f(k,g(f(f(e,b),g(h)))),h). >>>> Starting back demodulation with: 5981 (5980) EQUAL(f(g(f(f(e,b),g(h))),b),h). >>>> Starting back demodulation with: 5983 (5982) EQUAL(f(h,f(f(e,b),g(h))),k). >>>> Starting back demodulation with: 5985 (5984) EQUAL(f(g(f(f(e,b),g(a))),b),a). >>>> Starting back demodulation with: 5987 (5986) EQUAL(f(d,g(f(f(e,b),g(a)))),a). >>>> Starting back demodulation with: 5989 (5988) EQUAL(f(a,f(f(e,b),g(a))),d). >>>> Starting back demodulation with: 5991 (5990) EQUAL(f(f(f(e,b),x),g(x)),b). >> back demodulating: 5747 (5746) EQUAL(f(f(f(e,b),b),g(b)),b). >> back demodulating: 5746 (3619,1719) EQUAL(f(f(f(e,b),b),g(b)),b). >> back demodulating: 5738 (5737) EQUAL(f(f(f(e,b),h),g(h)),b). >> back demodulating: 5737 (3618,1719) EQUAL(f(f(f(e,b),h),g(h)),b). >>>> Starting back demodulation with: 5993 (5992) EQUAL(f(f(b,e),g(f(e,b))),e). >>>> Starting back demodulation with: 5995 (5994) EQUAL(f(a,g(f(g(f(e,b)),a))),b). >>>> Starting back demodulation with: 5997 (5996) EQUAL(f(h,g(f(g(f(e,b)),h))),b). >>>> Starting back demodulation with: 5999 (5998) EQUAL(f(d,g(f(g(f(e,b)),d))),b). >>>> Starting back demodulation with: 6001 (6000) EQUAL(f(b,f(g(f(e,b)),e)),e). >>>> Starting back demodulation with: 6003 (6002) EQUAL(g(f(g(f(e,b)),e)),b). >>>> Starting back demodulation with: 6005 (6004) EQUAL(f(d,f(g(f(e,b)),e)),h). >>>> Starting back demodulation with: 6007 (6006) EQUAL(f(g(f(h,g(f(e,b)))),h),b). >>>> Starting back demodulation with: 6009 (6008) EQUAL(f(f(e,d),g(f(e,b))),h). >>>> Starting back demodulation with: 6011 (6010) EQUAL(f(c,f(g(a),g(f(e,b)))),h). >>>> Starting back demodulation with: 6013 (6012) EQUAL(f(b,f(e,g(f(e,b)))),e). >>>> Starting back demodulation with: 6015 (6014) EQUAL(f(c,f(e,g(f(e,b)))),a). >>>> Starting back demodulation with: 6017 (6016) EQUAL(f(g(f(a,g(f(e,b)))),a),b). >>>> Starting back demodulation with: 6019 (6018) EQUAL(f(f(b,g(f(e,b))),e),e). new given clause: 5924 (1,3845) EQUAL(g(f(e,g(b))),b). ** KEPT: 6023 (4,5924) EQUAL(g(f(f(x,g(x)),g(b))),b). ---> New Demodulator: 6024 (6023) EQUAL(g(f(f(x,g(x)),g(b))),b). ** KEPT: 6025 (3,5924) EQUAL(g(f(f(g(x),x),g(b))),b). ---> New Demodulator: 6026 (6025) EQUAL(g(f(f(g(x),x),g(b))),b). >>>> Starting back demodulation with: 6024 (6023) EQUAL(g(f(f(x,g(x)),g(b))),b). >> back demodulating: 2470 (4,949) EQUAL(f(h,g(f(f(x,g(x)),g(b)))),d). >> back demodulating: 2471 (2470) EQUAL(f(h,g(f(f(x,g(x)),g(b)))),d). >> back demodulating: 5920 (4,3845) EQUAL(f(e,g(f(f(x,g(x)),g(b)))),b). >> back demodulating: 5921 (5920) EQUAL(f(e,g(f(f(x,g(x)),g(b)))),b). >>>> Starting back demodulation with: 6026 (6025) EQUAL(g(f(f(g(x),x),g(b))),b). >> back demodulating: 2472 (3,949) EQUAL(f(h,g(f(f(g(x),x),g(b)))),d). >> back demodulating: 2473 (2472) EQUAL(f(h,g(f(f(g(x),x),g(b)))),d). >> back demodulating: 5922 (3,3845) EQUAL(f(e,g(f(f(g(x),x),g(b)))),b). >> back demodulating: 5923 (5922) EQUAL(f(e,g(f(f(g(x),x),g(b)))),b). ** KEPT: 6027 (5924,2126) EQUAL(f(b,f(f(e,g(b)),a)),a). ---> New Demodulator: 6028 (6027) EQUAL(f(b,f(f(e,g(b)),a)),a). ** KEPT: 6029 (5924,2120) EQUAL(f(f(e,g(b)),f(b,a)),a). ---> New Demodulator: 6030 (6029) EQUAL(f(f(e,g(b)),f(b,a)),a). ** KEPT: 6031 (5924,1197) EQUAL(f(f(e,g(b)),f(b,d)),d). ---> New Demodulator: 6032 (6031) EQUAL(f(f(e,g(b)),f(b,d)),d). ** KEPT: 6033 (5924,1175) EQUAL(f(b,f(f(e,g(b)),d)),d). ---> New Demodulator: 6034 (6033) EQUAL(f(b,f(f(e,g(b)),d)),d). ** KEPT: 6035 (5924,1133) EQUAL(f(f(e,g(b)),f(b,h)),h). ---> New Demodulator: 6036 (6035) EQUAL(f(f(e,g(b)),f(b,h)),h). ** KEPT: 6037 (5924,1125) EQUAL(f(b,f(f(e,g(b)),h)),h). ---> New Demodulator: 6038 (6037) EQUAL(f(b,f(f(e,g(b)),h)),h). ** KEPT: 6039 (5924,1725) EQUAL(f(f(b,b),f(e,g(b))),b). ---> New Demodulator: 6040 (6039) EQUAL(f(f(b,b),f(e,g(b))),b). ** KEPT: 6041 (5924,266) EQUAL(f(f(e,g(b)),f(b,b)),b). ---> New Demodulator: 6042 (6041) EQUAL(f(f(e,g(b)),f(b,b)),b). ** KEPT: 6043 (5924,260) EQUAL(f(b,f(f(e,g(b)),b)),b). ---> New Demodulator: 6044 (6043) EQUAL(f(b,f(f(e,g(b)),b)),b). ** KEPT: 6045 (5924,105) EQUAL(f(f(d,b),f(e,g(b))),d). ---> New Demodulator: 6046 (6045) EQUAL(f(f(d,b),f(e,g(b))),d). ** KEPT: 6047 (5924,2985) EQUAL(f(h,f(f(e,g(b)),b)),h). ---> New Demodulator: 6048 (6047) EQUAL(f(h,f(f(e,g(b)),b)),h). ** KEPT: 6049 (5924,2009) EQUAL(f(f(f(e,g(b)),b),a),a). ---> New Demodulator: 6050 (6049) EQUAL(f(f(f(e,g(b)),b),a),a). ** KEPT: 6051 (5924,1135) EQUAL(f(f(f(e,g(b)),b),d),d). ---> New Demodulator: 6052 (6051) EQUAL(f(f(f(e,g(b)),b),d),d). ** KEPT: 6053 (5924,1067) EQUAL(f(f(f(e,g(b)),b),h),h). ---> New Demodulator: 6054 (6053) EQUAL(f(f(f(e,g(b)),b),h),h). ** KEPT: 6055 (5924,479) EQUAL(f(a,f(f(e,g(b)),b)),a). ---> New Demodulator: 6056 (6055) EQUAL(f(a,f(f(e,g(b)),b)),a). ** KEPT: 6057 (5924,235) EQUAL(f(f(f(e,g(b)),b),b),b). ---> New Demodulator: 6058 (6057) EQUAL(f(f(f(e,g(b)),b),b),b). ** KEPT: 6059 (5924,3143) EQUAL(f(h,g(f(f(e,g(b)),b))),h). ---> New Demodulator: 6060 (6059) EQUAL(f(h,g(f(f(e,g(b)),b))),h). ** KEPT: 6061 (5924,2156) EQUAL(f(g(f(f(e,g(b)),b)),a),a). ---> New Demodulator: 6062 (6061) EQUAL(f(g(f(f(e,g(b)),b)),a),a). ** KEPT: 6063 (5924,1741) EQUAL(f(b,g(f(f(e,g(b)),b))),b). ---> New Demodulator: 6064 (6063) EQUAL(f(b,g(f(f(e,g(b)),b))),b). ** KEPT: 6065 (5924,1215) EQUAL(f(g(f(f(e,g(b)),b)),d),d). ---> New Demodulator: 6066 (6065) EQUAL(f(g(f(f(e,g(b)),b)),d),d). ** KEPT: 6067 (5924,1149) EQUAL(f(g(f(f(e,g(b)),b)),h),h). ---> New Demodulator: 6068 (6067) EQUAL(f(g(f(f(e,g(b)),b)),h),h). ** KEPT: 6069 (5924,562) EQUAL(f(a,g(f(f(e,g(b)),b))),a). ---> New Demodulator: 6070 (6069) EQUAL(f(a,g(f(f(e,g(b)),b))),a). ** KEPT: 6071 (5924,280) EQUAL(f(g(f(f(e,g(b)),b)),b),b). ---> New Demodulator: 6072 (6071) EQUAL(f(g(f(f(e,g(b)),b)),b),b). ** KEPT: 6073 (5924,135) EQUAL(f(d,g(f(f(e,g(b)),b))),d). ---> New Demodulator: 6074 (6073) EQUAL(f(d,g(f(f(e,g(b)),b))),d). ** KEPT: 6075 (5924,84) EQUAL(f(d,f(f(e,g(b)),b)),d). ---> New Demodulator: 6076 (6075) EQUAL(f(d,f(f(e,g(b)),b)),d). ** KEPT: 6077 (5924,36) -EQUAL(f(f(e,g(b)),b),f(k,g(b))). ** KEPT: 6078 (5924,4) EQUAL(f(f(e,g(b)),b),e). ---> New Demodulator: 6079 (6078) EQUAL(f(f(e,g(b)),b),e). >>>> Starting back demodulation with: 6028 (6027) EQUAL(f(b,f(f(e,g(b)),a)),a). >>>> Starting back demodulation with: 6030 (6029) EQUAL(f(f(e,g(b)),f(b,a)),a). >>>> Starting back demodulation with: 6032 (6031) EQUAL(f(f(e,g(b)),f(b,d)),d). >>>> Starting back demodulation with: 6034 (6033) EQUAL(f(b,f(f(e,g(b)),d)),d). >>>> Starting back demodulation with: 6036 (6035) EQUAL(f(f(e,g(b)),f(b,h)),h). >>>> Starting back demodulation with: 6038 (6037) EQUAL(f(b,f(f(e,g(b)),h)),h). >>>> Starting back demodulation with: 6040 (6039) EQUAL(f(f(b,b),f(e,g(b))),b). >>>> Starting back demodulation with: 6042 (6041) EQUAL(f(f(e,g(b)),f(b,b)),b). >>>> Starting back demodulation with: 6044 (6043) EQUAL(f(b,f(f(e,g(b)),b)),b). >>>> Starting back demodulation with: 6046 (6045) EQUAL(f(f(d,b),f(e,g(b))),d). >>>> Starting back demodulation with: 6048 (6047) EQUAL(f(h,f(f(e,g(b)),b)),h). >>>> Starting back demodulation with: 6050 (6049) EQUAL(f(f(f(e,g(b)),b),a),a). >>>> Starting back demodulation with: 6052 (6051) EQUAL(f(f(f(e,g(b)),b),d),d). >>>> Starting back demodulation with: 6054 (6053) EQUAL(f(f(f(e,g(b)),b),h),h). >>>> Starting back demodulation with: 6056 (6055) EQUAL(f(a,f(f(e,g(b)),b)),a). >>>> Starting back demodulation with: 6058 (6057) EQUAL(f(f(f(e,g(b)),b),b),b). >>>> Starting back demodulation with: 6060 (6059) EQUAL(f(h,g(f(f(e,g(b)),b))),h). >>>> Starting back demodulation with: 6062 (6061) EQUAL(f(g(f(f(e,g(b)),b)),a),a). >>>> Starting back demodulation with: 6064 (6063) EQUAL(f(b,g(f(f(e,g(b)),b))),b). >>>> Starting back demodulation with: 6066 (6065) EQUAL(f(g(f(f(e,g(b)),b)),d),d). >>>> Starting back demodulation with: 6068 (6067) EQUAL(f(g(f(f(e,g(b)),b)),h),h). >>>> Starting back demodulation with: 6070 (6069) EQUAL(f(a,g(f(f(e,g(b)),b))),a). >>>> Starting back demodulation with: 6072 (6071) EQUAL(f(g(f(f(e,g(b)),b)),b),b). >>>> Starting back demodulation with: 6074 (6073) EQUAL(f(d,g(f(f(e,g(b)),b))),d). >>>> Starting back demodulation with: 6076 (6075) EQUAL(f(d,f(f(e,g(b)),b)),d). >>>> Starting back demodulation with: 6079 (6078) EQUAL(f(f(e,g(b)),b),e). >> back demodulating: 6043 (5924,260) EQUAL(f(b,f(f(e,g(b)),b)),b). >> back demodulating: 6044 (6043) EQUAL(f(b,f(f(e,g(b)),b)),b). >> back demodulating: 6047 (5924,2985) EQUAL(f(h,f(f(e,g(b)),b)),h). >> back demodulating: 6048 (6047) EQUAL(f(h,f(f(e,g(b)),b)),h). >> back demodulating: 6049 (5924,2009) EQUAL(f(f(f(e,g(b)),b),a),a). >> back demodulating: 6050 (6049) EQUAL(f(f(f(e,g(b)),b),a),a). >> back demodulating: 6051 (5924,1135) EQUAL(f(f(f(e,g(b)),b),d),d). >> back demodulating: 6052 (6051) EQUAL(f(f(f(e,g(b)),b),d),d). >> back demodulating: 6053 (5924,1067) EQUAL(f(f(f(e,g(b)),b),h),h). >> back demodulating: 6054 (6053) EQUAL(f(f(f(e,g(b)),b),h),h). >> back demodulating: 6055 (5924,479) EQUAL(f(a,f(f(e,g(b)),b)),a). >> back demodulating: 6056 (6055) EQUAL(f(a,f(f(e,g(b)),b)),a). >> back demodulating: 6057 (5924,235) EQUAL(f(f(f(e,g(b)),b),b),b). >> back demodulating: 6058 (6057) EQUAL(f(f(f(e,g(b)),b),b),b). >> back demodulating: 6059 (5924,3143) EQUAL(f(h,g(f(f(e,g(b)),b))),h). >> back demodulating: 6060 (6059) EQUAL(f(h,g(f(f(e,g(b)),b))),h). >> back demodulating: 6061 (5924,2156) EQUAL(f(g(f(f(e,g(b)),b)),a),a). >> back demodulating: 6062 (6061) EQUAL(f(g(f(f(e,g(b)),b)),a),a). >> back demodulating: 6063 (5924,1741) EQUAL(f(b,g(f(f(e,g(b)),b))),b). >> back demodulating: 6064 (6063) EQUAL(f(b,g(f(f(e,g(b)),b))),b). >> back demodulating: 6065 (5924,1215) EQUAL(f(g(f(f(e,g(b)),b)),d),d). >> back demodulating: 6066 (6065) EQUAL(f(g(f(f(e,g(b)),b)),d),d). >> back demodulating: 6067 (5924,1149) EQUAL(f(g(f(f(e,g(b)),b)),h),h). >> back demodulating: 6068 (6067) EQUAL(f(g(f(f(e,g(b)),b)),h),h). >> back demodulating: 6069 (5924,562) EQUAL(f(a,g(f(f(e,g(b)),b))),a). >> back demodulating: 6070 (6069) EQUAL(f(a,g(f(f(e,g(b)),b))),a). >> back demodulating: 6071 (5924,280) EQUAL(f(g(f(f(e,g(b)),b)),b),b). >> back demodulating: 6072 (6071) EQUAL(f(g(f(f(e,g(b)),b)),b),b). >> back demodulating: 6073 (5924,135) EQUAL(f(d,g(f(f(e,g(b)),b))),d). >> back demodulating: 6074 (6073) EQUAL(f(d,g(f(f(e,g(b)),b))),d). >> back demodulating: 6075 (5924,84) EQUAL(f(d,f(f(e,g(b)),b)),d). >> back demodulating: 6076 (6075) EQUAL(f(d,f(f(e,g(b)),b)),d). >> back demodulating: 6077 (5924,36) -EQUAL(f(f(e,g(b)),b),f(k,g(b))). new given clause: 6022 (3845,12,5925) -EQUAL(f(k,g(f(e,b))),e). new given clause: 6078 (5924,4) EQUAL(f(f(e,g(b)),b),e). ** KEPT: 6080 (4,6078) EQUAL(f(f(f(x,g(x)),g(b)),b),e). ---> New Demodulator: 6081 (6080) EQUAL(f(f(f(x,g(x)),g(b)),b),e). ** KEPT: 6082 (3,6078) EQUAL(f(f(f(g(x),x),g(b)),b),e). ---> New Demodulator: 6083 (6082) EQUAL(f(f(f(g(x),x),g(b)),b),e). ** KEPT: 6084 (1444,6078) EQUAL(f(f(e,g(b)),f(e,b)),e). ---> New Demodulator: 6085 (6084) EQUAL(f(f(e,g(b)),f(e,b)),e). ** KEPT: 6086 (239,6078) EQUAL(f(f(f(e,g(b)),e),b),e). ---> New Demodulator: 6087 (6086) EQUAL(f(f(f(e,g(b)),e),b),e). ** KEPT: 6088 (5,6078) EQUAL(f(e,f(g(b),b)),e). ---> New Demodulator: 6089 (6088) EQUAL(f(e,f(g(b),b)),e). >>>> Starting back demodulation with: 6081 (6080) EQUAL(f(f(f(x,g(x)),g(b)),b),e). >>>> Starting back demodulation with: 6083 (6082) EQUAL(f(f(f(g(x),x),g(b)),b),e). >>>> Starting back demodulation with: 6085 (6084) EQUAL(f(f(e,g(b)),f(e,b)),e). >>>> Starting back demodulation with: 6087 (6086) EQUAL(f(f(f(e,g(b)),e),b),e). >>>> Starting back demodulation with: 6089 (6088) EQUAL(f(e,f(g(b),b)),e). ** KEPT: 6090 (6078,5) EQUAL(f(f(x,f(e,g(b))),b),f(x,e)). ** KEPT: 6091 (6078,5) EQUAL(f(f(e,g(b)),f(b,x)),f(e,x)). new given clause: 6088 (5,6078) EQUAL(f(e,f(g(b),b)),e). ** KEPT: 6092 (4,6088) EQUAL(f(f(x,g(x)),f(g(b),b)),e). ---> New Demodulator: 6093 (6092) EQUAL(f(f(x,g(x)),f(g(b),b)),e). ** KEPT: 6094 (3,6088) EQUAL(f(f(g(x),x),f(g(b),b)),e). ---> New Demodulator: 6095 (6094) EQUAL(f(f(g(x),x),f(g(b),b)),e). >>>> Starting back demodulation with: 6093 (6092) EQUAL(f(f(x,g(x)),f(g(b),b)),e). >>>> Starting back demodulation with: 6095 (6094) EQUAL(f(f(g(x),x),f(g(b),b)),e). ** KEPT: 6096 (6088,5) EQUAL(f(f(x,e),f(g(b),b)),f(x,e)). ** KEPT: 6097 (6088,5) EQUAL(f(e,f(f(g(b),b),x)),f(e,x)). new given clause: 3882 (364,1680) EQUAL(g(f(g(f(c,e)),a)),b). ** KEPT: 6098 (4,3882) EQUAL(g(f(g(f(c,f(x,g(x)))),a)),b). ---> New Demodulator: 6099 (6098) EQUAL(g(f(g(f(c,f(x,g(x)))),a)),b). ** KEPT: 6100 (3,3882) EQUAL(g(f(g(f(c,f(g(x),x))),a)),b). ---> New Demodulator: 6101 (6100) EQUAL(g(f(g(f(c,f(g(x),x))),a)),b). ** KEPT: 6102 (2013,3882) EQUAL(g(f(f(g(f(c,e)),e),a)),b). ---> New Demodulator: 6103 (6102) EQUAL(g(f(f(g(f(c,e)),e),a)),b). >>>> Starting back demodulation with: 6099 (6098) EQUAL(g(f(g(f(c,f(x,g(x)))),a)),b). >>>> Starting back demodulation with: 6101 (6100) EQUAL(g(f(g(f(c,f(g(x),x))),a)),b). >>>> Starting back demodulation with: 6103 (6102) EQUAL(g(f(f(g(f(c,e)),e),a)),b). ** KEPT: 6104 (3882,3118) EQUAL(f(f(h,f(g(f(c,e)),a)),b),h). ---> New Demodulator: 6105 (6104) EQUAL(f(f(h,f(g(f(c,e)),a)),b),h). ** KEPT: 6106 (3882,2126) EQUAL(f(b,f(f(g(f(c,e)),a),a)),a). ---> New Demodulator: 6107 (6106) EQUAL(f(b,f(f(g(f(c,e)),a),a)),a). ** KEPT: 6108 (3882,2120) EQUAL(f(f(g(f(c,e)),a),f(b,a)),a). ---> New Demodulator: 6109 (6108) EQUAL(f(f(g(f(c,e)),a),f(b,a)),a). ** KEPT: 6110 (3882,1719) EQUAL(f(f(b,f(g(f(c,e)),a)),b),b). ---> New Demodulator: 6111 (6110) EQUAL(f(f(b,f(g(f(c,e)),a)),b),b). ** KEPT: 6112 (3882,3126,69) EQUAL(f(d,f(g(f(c,e)),a)),h). ---> New Demodulator: 6113 (6112) EQUAL(f(d,f(g(f(c,e)),a)),h). ** KEPT: 6114 (3882,1197) EQUAL(f(f(g(f(c,e)),a),f(b,d)),d). ---> New Demodulator: 6115 (6114) EQUAL(f(f(g(f(c,e)),a),f(b,d)),d). ** KEPT: 6116 (3882,1175) EQUAL(f(b,f(f(g(f(c,e)),a),d)),d). ---> New Demodulator: 6117 (6116) EQUAL(f(b,f(f(g(f(c,e)),a),d)),d). ** KEPT: 6118 (3882,1133) EQUAL(f(f(g(f(c,e)),a),f(b,h)),h). ---> New Demodulator: 6119 (6118) EQUAL(f(f(g(f(c,e)),a),f(b,h)),h). ** KEPT: 6120 (3882,1125) EQUAL(f(b,f(f(g(f(c,e)),a),h)),h). ---> New Demodulator: 6121 (6120) EQUAL(f(b,f(f(g(f(c,e)),a),h)),h). ** KEPT: 6122 (3882,1725) EQUAL(f(f(b,b),f(g(f(c,e)),a)),b). ---> New Demodulator: 6123 (6122) EQUAL(f(f(b,b),f(g(f(c,e)),a)),b). ** KEPT: 6124 (3882,526) EQUAL(f(f(a,f(g(f(c,e)),a)),b),a). ---> New Demodulator: 6125 (6124) EQUAL(f(f(a,f(g(f(c,e)),a)),b),a). ** KEPT: 6126 (3882,520) EQUAL(f(f(a,b),f(g(f(c,e)),a)),a). ---> New Demodulator: 6127 (6126) EQUAL(f(f(a,b),f(g(f(c,e)),a)),a). ** KEPT: 6128 (3882,266) EQUAL(f(f(g(f(c,e)),a),f(b,b)),b). ---> New Demodulator: 6129 (6128) EQUAL(f(f(g(f(c,e)),a),f(b,b)),b). ** KEPT: 6130 (3882,105) EQUAL(f(f(d,b),f(g(f(c,e)),a)),d). ---> New Demodulator: 6131 (6130) EQUAL(f(f(d,b),f(g(f(c,e)),a)),d). ** KEPT: 6132 (3882,2987) EQUAL(f(h,f(b,f(g(f(c,e)),a))),h). ---> New Demodulator: 6133 (6132) EQUAL(f(h,f(b,f(g(f(c,e)),a))),h). ** KEPT: 6134 (3882,2011) EQUAL(f(f(b,f(g(f(c,e)),a)),a),a). ---> New Demodulator: 6135 (6134) EQUAL(f(f(b,f(g(f(c,e)),a)),a),a). ** KEPT: 6136 (3882,1579) EQUAL(f(b,f(b,f(g(f(c,e)),a))),b). ---> New Demodulator: 6137 (6136) EQUAL(f(b,f(b,f(g(f(c,e)),a))),b). ** KEPT: 6138 (3882,1127) EQUAL(f(f(b,f(g(f(c,e)),a)),d),d). ---> New Demodulator: 6139 (6138) EQUAL(f(f(b,f(g(f(c,e)),a)),d),d). ** KEPT: 6140 (3882,1065) EQUAL(f(f(b,f(g(f(c,e)),a)),h),h). ---> New Demodulator: 6141 (6140) EQUAL(f(f(b,f(g(f(c,e)),a)),h),h). ** KEPT: 6142 (3882,477) EQUAL(f(a,f(b,f(g(f(c,e)),a))),a). ---> New Demodulator: 6143 (6142) EQUAL(f(a,f(b,f(g(f(c,e)),a))),a). ** KEPT: 6144 (3882,3141) EQUAL(f(h,g(f(b,f(g(f(c,e)),a)))),h). ---> New Demodulator: 6145 (6144) EQUAL(f(h,g(f(b,f(g(f(c,e)),a)))),h). ** KEPT: 6146 (3882,2154) EQUAL(f(g(f(b,f(g(f(c,e)),a))),a),a). ---> New Demodulator: 6147 (6146) EQUAL(f(g(f(b,f(g(f(c,e)),a))),a),a). ** KEPT: 6148 (3882,1739) EQUAL(f(b,g(f(b,f(g(f(c,e)),a)))),b). ---> New Demodulator: 6149 (6148) EQUAL(f(b,g(f(b,f(g(f(c,e)),a)))),b). ** KEPT: 6150 (3882,1217) EQUAL(f(g(f(b,f(g(f(c,e)),a))),d),d). ---> New Demodulator: 6151 (6150) EQUAL(f(g(f(b,f(g(f(c,e)),a))),d),d). ** KEPT: 6152 (3882,1151) EQUAL(f(g(f(b,f(g(f(c,e)),a))),h),h). ---> New Demodulator: 6153 (6152) EQUAL(f(g(f(b,f(g(f(c,e)),a))),h),h). ** KEPT: 6154 (3882,564) EQUAL(f(a,g(f(b,f(g(f(c,e)),a)))),a). ---> New Demodulator: 6155 (6154) EQUAL(f(a,g(f(b,f(g(f(c,e)),a)))),a). ** KEPT: 6156 (3882,282) EQUAL(f(g(f(b,f(g(f(c,e)),a))),b),b). ---> New Demodulator: 6157 (6156) EQUAL(f(g(f(b,f(g(f(c,e)),a))),b),b). ** KEPT: 6158 (3882,137) EQUAL(f(d,g(f(b,f(g(f(c,e)),a)))),d). ---> New Demodulator: 6159 (6158) EQUAL(f(d,g(f(b,f(g(f(c,e)),a)))),d). ** KEPT: 6160 (3882,82) EQUAL(f(d,f(b,f(g(f(c,e)),a))),d). ---> New Demodulator: 6161 (6160) EQUAL(f(d,f(b,f(g(f(c,e)),a))),d). ** KEPT: 6162 (3882,37) -EQUAL(f(b,f(g(f(c,e)),a)),f(k,g(b))). ** KEPT: 6163 (3882,3) EQUAL(f(b,f(g(f(c,e)),a)),e). ---> New Demodulator: 6164 (6163) EQUAL(f(b,f(g(f(c,e)),a)),e). >>>> Starting back demodulation with: 6105 (6104) EQUAL(f(f(h,f(g(f(c,e)),a)),b),h). >>>> Starting back demodulation with: 6107 (6106) EQUAL(f(b,f(f(g(f(c,e)),a),a)),a). >>>> Starting back demodulation with: 6109 (6108) EQUAL(f(f(g(f(c,e)),a),f(b,a)),a). >>>> Starting back demodulation with: 6111 (6110) EQUAL(f(f(b,f(g(f(c,e)),a)),b),b). >>>> Starting back demodulation with: 6113 (6112) EQUAL(f(d,f(g(f(c,e)),a)),h). >>>> Starting back demodulation with: 6115 (6114) EQUAL(f(f(g(f(c,e)),a),f(b,d)),d). >>>> Starting back demodulation with: 6117 (6116) EQUAL(f(b,f(f(g(f(c,e)),a),d)),d). >>>> Starting back demodulation with: 6119 (6118) EQUAL(f(f(g(f(c,e)),a),f(b,h)),h). >>>> Starting back demodulation with: 6121 (6120) EQUAL(f(b,f(f(g(f(c,e)),a),h)),h). >>>> Starting back demodulation with: 6123 (6122) EQUAL(f(f(b,b),f(g(f(c,e)),a)),b). >>>> Starting back demodulation with: 6125 (6124) EQUAL(f(f(a,f(g(f(c,e)),a)),b),a). >>>> Starting back demodulation with: 6127 (6126) EQUAL(f(f(a,b),f(g(f(c,e)),a)),a). >>>> Starting back demodulation with: 6129 (6128) EQUAL(f(f(g(f(c,e)),a),f(b,b)),b). >>>> Starting back demodulation with: 6131 (6130) EQUAL(f(f(d,b),f(g(f(c,e)),a)),d). >>>> Starting back demodulation with: 6133 (6132) EQUAL(f(h,f(b,f(g(f(c,e)),a))),h). >>>> Starting back demodulation with: 6135 (6134) EQUAL(f(f(b,f(g(f(c,e)),a)),a),a). >>>> Starting back demodulation with: 6137 (6136) EQUAL(f(b,f(b,f(g(f(c,e)),a))),b). >>>> Starting back demodulation with: 6139 (6138) EQUAL(f(f(b,f(g(f(c,e)),a)),d),d). >>>> Starting back demodulation with: 6141 (6140) EQUAL(f(f(b,f(g(f(c,e)),a)),h),h). >>>> Starting back demodulation with: 6143 (6142) EQUAL(f(a,f(b,f(g(f(c,e)),a))),a). >>>> Starting back demodulation with: 6145 (6144) EQUAL(f(h,g(f(b,f(g(f(c,e)),a)))),h). >>>> Starting back demodulation with: 6147 (6146) EQUAL(f(g(f(b,f(g(f(c,e)),a))),a),a). >>>> Starting back demodulation with: 6149 (6148) EQUAL(f(b,g(f(b,f(g(f(c,e)),a)))),b). >>>> Starting back demodulation with: 6151 (6150) EQUAL(f(g(f(b,f(g(f(c,e)),a))),d),d). >>>> Starting back demodulation with: 6153 (6152) EQUAL(f(g(f(b,f(g(f(c,e)),a))),h),h). >>>> Starting back demodulation with: 6155 (6154) EQUAL(f(a,g(f(b,f(g(f(c,e)),a)))),a). >>>> Starting back demodulation with: 6157 (6156) EQUAL(f(g(f(b,f(g(f(c,e)),a))),b),b). >>>> Starting back demodulation with: 6159 (6158) EQUAL(f(d,g(f(b,f(g(f(c,e)),a)))),d). >>>> Starting back demodulation with: 6161 (6160) EQUAL(f(d,f(b,f(g(f(c,e)),a))),d). >>>> Starting back demodulation with: 6164 (6163) EQUAL(f(b,f(g(f(c,e)),a)),e). >> back demodulating: 6110 (3882,1719) EQUAL(f(f(b,f(g(f(c,e)),a)),b),b). >> back demodulating: 6111 (6110) EQUAL(f(f(b,f(g(f(c,e)),a)),b),b). >> back demodulating: 6132 (3882,2987) EQUAL(f(h,f(b,f(g(f(c,e)),a))),h). >> back demodulating: 6133 (6132) EQUAL(f(h,f(b,f(g(f(c,e)),a))),h). >> back demodulating: 6134 (3882,2011) EQUAL(f(f(b,f(g(f(c,e)),a)),a),a). >> back demodulating: 6135 (6134) EQUAL(f(f(b,f(g(f(c,e)),a)),a),a). >> back demodulating: 6136 (3882,1579) EQUAL(f(b,f(b,f(g(f(c,e)),a))),b). >> back demodulating: 6137 (6136) EQUAL(f(b,f(b,f(g(f(c,e)),a))),b). >> back demodulating: 6138 (3882,1127) EQUAL(f(f(b,f(g(f(c,e)),a)),d),d). >> back demodulating: 6139 (6138) EQUAL(f(f(b,f(g(f(c,e)),a)),d),d). >> back demodulating: 6140 (3882,1065) EQUAL(f(f(b,f(g(f(c,e)),a)),h),h). >> back demodulating: 6141 (6140) EQUAL(f(f(b,f(g(f(c,e)),a)),h),h). >> back demodulating: 6142 (3882,477) EQUAL(f(a,f(b,f(g(f(c,e)),a))),a). >> back demodulating: 6143 (6142) EQUAL(f(a,f(b,f(g(f(c,e)),a))),a). >> back demodulating: 6144 (3882,3141) EQUAL(f(h,g(f(b,f(g(f(c,e)),a)))),h). >> back demodulating: 6145 (6144) EQUAL(f(h,g(f(b,f(g(f(c,e)),a)))),h). >> back demodulating: 6146 (3882,2154) EQUAL(f(g(f(b,f(g(f(c,e)),a))),a),a). >> back demodulating: 6147 (6146) EQUAL(f(g(f(b,f(g(f(c,e)),a))),a),a). >> back demodulating: 6148 (3882,1739) EQUAL(f(b,g(f(b,f(g(f(c,e)),a)))),b). >> back demodulating: 6149 (6148) EQUAL(f(b,g(f(b,f(g(f(c,e)),a)))),b). >> back demodulating: 6150 (3882,1217) EQUAL(f(g(f(b,f(g(f(c,e)),a))),d),d). >> back demodulating: 6151 (6150) EQUAL(f(g(f(b,f(g(f(c,e)),a))),d),d). >> back demodulating: 6152 (3882,1151) EQUAL(f(g(f(b,f(g(f(c,e)),a))),h),h). >> back demodulating: 6153 (6152) EQUAL(f(g(f(b,f(g(f(c,e)),a))),h),h). >> back demodulating: 6154 (3882,564) EQUAL(f(a,g(f(b,f(g(f(c,e)),a)))),a). >> back demodulating: 6155 (6154) EQUAL(f(a,g(f(b,f(g(f(c,e)),a)))),a). >> back demodulating: 6156 (3882,282) EQUAL(f(g(f(b,f(g(f(c,e)),a))),b),b). >> back demodulating: 6157 (6156) EQUAL(f(g(f(b,f(g(f(c,e)),a))),b),b). >> back demodulating: 6158 (3882,137) EQUAL(f(d,g(f(b,f(g(f(c,e)),a)))),d). >> back demodulating: 6159 (6158) EQUAL(f(d,g(f(b,f(g(f(c,e)),a)))),d). >> back demodulating: 6160 (3882,82) EQUAL(f(d,f(b,f(g(f(c,e)),a))),d). >> back demodulating: 6161 (6160) EQUAL(f(d,f(b,f(g(f(c,e)),a))),d). >> back demodulating: 6162 (3882,37) -EQUAL(f(b,f(g(f(c,e)),a)),f(k,g(b))). new given clause: 3884 (162,1680) EQUAL(g(f(g(f(e,c)),a)),b). ** KEPT: 6165 (4,3884) EQUAL(g(f(g(f(f(x,g(x)),c)),a)),b). ---> New Demodulator: 6166 (6165) EQUAL(g(f(g(f(f(x,g(x)),c)),a)),b). ** KEPT: 6167 (3,3884) EQUAL(g(f(g(f(f(g(x),x),c)),a)),b). ---> New Demodulator: 6168 (6167) EQUAL(g(f(g(f(f(g(x),x),c)),a)),b). ** KEPT: 6169 (2013,3884) EQUAL(g(f(f(g(f(e,c)),e),a)),b). ---> New Demodulator: 6170 (6169) EQUAL(g(f(f(g(f(e,c)),e),a)),b). >>>> Starting back demodulation with: 6166 (6165) EQUAL(g(f(g(f(f(x,g(x)),c)),a)),b). >>>> Starting back demodulation with: 6168 (6167) EQUAL(g(f(g(f(f(g(x),x),c)),a)),b). >>>> Starting back demodulation with: 6170 (6169) EQUAL(g(f(f(g(f(e,c)),e),a)),b). ** KEPT: 6171 (3884,3118) EQUAL(f(f(h,f(g(f(e,c)),a)),b),h). ---> New Demodulator: 6172 (6171) EQUAL(f(f(h,f(g(f(e,c)),a)),b),h). ** KEPT: 6173 (3884,2126) EQUAL(f(b,f(f(g(f(e,c)),a),a)),a). ---> New Demodulator: 6174 (6173) EQUAL(f(b,f(f(g(f(e,c)),a),a)),a). ** KEPT: 6175 (3884,2120) EQUAL(f(f(g(f(e,c)),a),f(b,a)),a). ---> New Demodulator: 6176 (6175) EQUAL(f(f(g(f(e,c)),a),f(b,a)),a). ** KEPT: 6177 (3884,1719) EQUAL(f(f(b,f(g(f(e,c)),a)),b),b). ---> New Demodulator: 6178 (6177) EQUAL(f(f(b,f(g(f(e,c)),a)),b),b). ** KEPT: 6179 (3884,3126,69) EQUAL(f(d,f(g(f(e,c)),a)),h). ---> New Demodulator: 6180 (6179) EQUAL(f(d,f(g(f(e,c)),a)),h). ** KEPT: 6181 (3884,1197) EQUAL(f(f(g(f(e,c)),a),f(b,d)),d). ---> New Demodulator: 6182 (6181) EQUAL(f(f(g(f(e,c)),a),f(b,d)),d). ** KEPT: 6183 (3884,1175) EQUAL(f(b,f(f(g(f(e,c)),a),d)),d). ---> New Demodulator: 6184 (6183) EQUAL(f(b,f(f(g(f(e,c)),a),d)),d). ** KEPT: 6185 (3884,1133) EQUAL(f(f(g(f(e,c)),a),f(b,h)),h). ---> New Demodulator: 6186 (6185) EQUAL(f(f(g(f(e,c)),a),f(b,h)),h). ** KEPT: 6187 (3884,1125) EQUAL(f(b,f(f(g(f(e,c)),a),h)),h). ---> New Demodulator: 6188 (6187) EQUAL(f(b,f(f(g(f(e,c)),a),h)),h). ** KEPT: 6189 (3884,1725) EQUAL(f(f(b,b),f(g(f(e,c)),a)),b). ---> New Demodulator: 6190 (6189) EQUAL(f(f(b,b),f(g(f(e,c)),a)),b). ** KEPT: 6191 (3884,526) EQUAL(f(f(a,f(g(f(e,c)),a)),b),a). ---> New Demodulator: 6192 (6191) EQUAL(f(f(a,f(g(f(e,c)),a)),b),a). ** KEPT: 6193 (3884,520) EQUAL(f(f(a,b),f(g(f(e,c)),a)),a). ---> New Demodulator: 6194 (6193) EQUAL(f(f(a,b),f(g(f(e,c)),a)),a). ** KEPT: 6195 (3884,266) EQUAL(f(f(g(f(e,c)),a),f(b,b)),b). ---> New Demodulator: 6196 (6195) EQUAL(f(f(g(f(e,c)),a),f(b,b)),b). ** KEPT: 6197 (3884,105) EQUAL(f(f(d,b),f(g(f(e,c)),a)),d). ---> New Demodulator: 6198 (6197) EQUAL(f(f(d,b),f(g(f(e,c)),a)),d). ** KEPT: 6199 (3884,2987) EQUAL(f(h,f(b,f(g(f(e,c)),a))),h). ---> New Demodulator: 6200 (6199) EQUAL(f(h,f(b,f(g(f(e,c)),a))),h). ** KEPT: 6201 (3884,2011) EQUAL(f(f(b,f(g(f(e,c)),a)),a),a). ---> New Demodulator: 6202 (6201) EQUAL(f(f(b,f(g(f(e,c)),a)),a),a). ** KEPT: 6203 (3884,1579) EQUAL(f(b,f(b,f(g(f(e,c)),a))),b). ---> New Demodulator: 6204 (6203) EQUAL(f(b,f(b,f(g(f(e,c)),a))),b). ** KEPT: 6205 (3884,1127) EQUAL(f(f(b,f(g(f(e,c)),a)),d),d). ---> New Demodulator: 6206 (6205) EQUAL(f(f(b,f(g(f(e,c)),a)),d),d). ** KEPT: 6207 (3884,1065) EQUAL(f(f(b,f(g(f(e,c)),a)),h),h). ---> New Demodulator: 6208 (6207) EQUAL(f(f(b,f(g(f(e,c)),a)),h),h). ** KEPT: 6209 (3884,477) EQUAL(f(a,f(b,f(g(f(e,c)),a))),a). ---> New Demodulator: 6210 (6209) EQUAL(f(a,f(b,f(g(f(e,c)),a))),a). ** KEPT: 6211 (3884,3141) EQUAL(f(h,g(f(b,f(g(f(e,c)),a)))),h). ---> New Demodulator: 6212 (6211) EQUAL(f(h,g(f(b,f(g(f(e,c)),a)))),h). ** KEPT: 6213 (3884,2154) EQUAL(f(g(f(b,f(g(f(e,c)),a))),a),a). ---> New Demodulator: 6214 (6213) EQUAL(f(g(f(b,f(g(f(e,c)),a))),a),a). ** KEPT: 6215 (3884,1739) EQUAL(f(b,g(f(b,f(g(f(e,c)),a)))),b). ---> New Demodulator: 6216 (6215) EQUAL(f(b,g(f(b,f(g(f(e,c)),a)))),b). ** KEPT: 6217 (3884,1217) EQUAL(f(g(f(b,f(g(f(e,c)),a))),d),d). ---> New Demodulator: 6218 (6217) EQUAL(f(g(f(b,f(g(f(e,c)),a))),d),d). ** KEPT: 6219 (3884,1151) EQUAL(f(g(f(b,f(g(f(e,c)),a))),h),h). ---> New Demodulator: 6220 (6219) EQUAL(f(g(f(b,f(g(f(e,c)),a))),h),h). ** KEPT: 6221 (3884,564) EQUAL(f(a,g(f(b,f(g(f(e,c)),a)))),a). ---> New Demodulator: 6222 (6221) EQUAL(f(a,g(f(b,f(g(f(e,c)),a)))),a). ** KEPT: 6223 (3884,282) EQUAL(f(g(f(b,f(g(f(e,c)),a))),b),b). ---> New Demodulator: 6224 (6223) EQUAL(f(g(f(b,f(g(f(e,c)),a))),b),b). ** KEPT: 6225 (3884,137) EQUAL(f(d,g(f(b,f(g(f(e,c)),a)))),d). ---> New Demodulator: 6226 (6225) EQUAL(f(d,g(f(b,f(g(f(e,c)),a)))),d). ** KEPT: 6227 (3884,82) EQUAL(f(d,f(b,f(g(f(e,c)),a))),d). ---> New Demodulator: 6228 (6227) EQUAL(f(d,f(b,f(g(f(e,c)),a))),d). ** KEPT: 6229 (3884,37) -EQUAL(f(b,f(g(f(e,c)),a)),f(k,g(b))). ** KEPT: 6230 (3884,3) EQUAL(f(b,f(g(f(e,c)),a)),e). ---> New Demodulator: 6231 (6230) EQUAL(f(b,f(g(f(e,c)),a)),e). >>>> Starting back demodulation with: 6172 (6171) EQUAL(f(f(h,f(g(f(e,c)),a)),b),h). >>>> Starting back demodulation with: 6174 (6173) EQUAL(f(b,f(f(g(f(e,c)),a),a)),a). >>>> Starting back demodulation with: 6176 (6175) EQUAL(f(f(g(f(e,c)),a),f(b,a)),a). >>>> Starting back demodulation with: 6178 (6177) EQUAL(f(f(b,f(g(f(e,c)),a)),b),b). >>>> Starting back demodulation with: 6180 (6179) EQUAL(f(d,f(g(f(e,c)),a)),h). >>>> Starting back demodulation with: 6182 (6181) EQUAL(f(f(g(f(e,c)),a),f(b,d)),d). >>>> Starting back demodulation with: 6184 (6183) EQUAL(f(b,f(f(g(f(e,c)),a),d)),d). >>>> Starting back demodulation with: 6186 (6185) EQUAL(f(f(g(f(e,c)),a),f(b,h)),h). >>>> Starting back demodulation with: 6188 (6187) EQUAL(f(b,f(f(g(f(e,c)),a),h)),h). >>>> Starting back demodulation with: 6190 (6189) EQUAL(f(f(b,b),f(g(f(e,c)),a)),b). >>>> Starting back demodulation with: 6192 (6191) EQUAL(f(f(a,f(g(f(e,c)),a)),b),a). >>>> Starting back demodulation with: 6194 (6193) EQUAL(f(f(a,b),f(g(f(e,c)),a)),a). >>>> Starting back demodulation with: 6196 (6195) EQUAL(f(f(g(f(e,c)),a),f(b,b)),b). >>>> Starting back demodulation with: 6198 (6197) EQUAL(f(f(d,b),f(g(f(e,c)),a)),d). >>>> Starting back demodulation with: 6200 (6199) EQUAL(f(h,f(b,f(g(f(e,c)),a))),h). >>>> Starting back demodulation with: 6202 (6201) EQUAL(f(f(b,f(g(f(e,c)),a)),a),a). >>>> Starting back demodulation with: 6204 (6203) EQUAL(f(b,f(b,f(g(f(e,c)),a))),b). >>>> Starting back demodulation with: 6206 (6205) EQUAL(f(f(b,f(g(f(e,c)),a)),d),d). >>>> Starting back demodulation with: 6208 (6207) EQUAL(f(f(b,f(g(f(e,c)),a)),h),h). >>>> Starting back demodulation with: 6210 (6209) EQUAL(f(a,f(b,f(g(f(e,c)),a))),a). >>>> Starting back demodulation with: 6212 (6211) EQUAL(f(h,g(f(b,f(g(f(e,c)),a)))),h). >>>> Starting back demodulation with: 6214 (6213) EQUAL(f(g(f(b,f(g(f(e,c)),a))),a),a). >>>> Starting back demodulation with: 6216 (6215) EQUAL(f(b,g(f(b,f(g(f(e,c)),a)))),b). >>>> Starting back demodulation with: 6218 (6217) EQUAL(f(g(f(b,f(g(f(e,c)),a))),d),d). >>>> Starting back demodulation with: 6220 (6219) EQUAL(f(g(f(b,f(g(f(e,c)),a))),h),h). >>>> Starting back demodulation with: 6222 (6221) EQUAL(f(a,g(f(b,f(g(f(e,c)),a)))),a). >>>> Starting back demodulation with: 6224 (6223) EQUAL(f(g(f(b,f(g(f(e,c)),a))),b),b). >>>> Starting back demodulation with: 6226 (6225) EQUAL(f(d,g(f(b,f(g(f(e,c)),a)))),d). >>>> Starting back demodulation with: 6228 (6227) EQUAL(f(d,f(b,f(g(f(e,c)),a))),d). >>>> Starting back demodulation with: 6231 (6230) EQUAL(f(b,f(g(f(e,c)),a)),e). >> back demodulating: 6177 (3884,1719) EQUAL(f(f(b,f(g(f(e,c)),a)),b),b). >> back demodulating: 6178 (6177) EQUAL(f(f(b,f(g(f(e,c)),a)),b),b). >> back demodulating: 6199 (3884,2987) EQUAL(f(h,f(b,f(g(f(e,c)),a))),h). >> back demodulating: 6200 (6199) EQUAL(f(h,f(b,f(g(f(e,c)),a))),h). >> back demodulating: 6201 (3884,2011) EQUAL(f(f(b,f(g(f(e,c)),a)),a),a). >> back demodulating: 6202 (6201) EQUAL(f(f(b,f(g(f(e,c)),a)),a),a). >> back demodulating: 6203 (3884,1579) EQUAL(f(b,f(b,f(g(f(e,c)),a))),b). >> back demodulating: 6204 (6203) EQUAL(f(b,f(b,f(g(f(e,c)),a))),b). >> back demodulating: 6205 (3884,1127) EQUAL(f(f(b,f(g(f(e,c)),a)),d),d). >> back demodulating: 6206 (6205) EQUAL(f(f(b,f(g(f(e,c)),a)),d),d). >> back demodulating: 6207 (3884,1065) EQUAL(f(f(b,f(g(f(e,c)),a)),h),h). >> back demodulating: 6208 (6207) EQUAL(f(f(b,f(g(f(e,c)),a)),h),h). >> back demodulating: 6209 (3884,477) EQUAL(f(a,f(b,f(g(f(e,c)),a))),a). >> back demodulating: 6210 (6209) EQUAL(f(a,f(b,f(g(f(e,c)),a))),a). >> back demodulating: 6211 (3884,3141) EQUAL(f(h,g(f(b,f(g(f(e,c)),a)))),h). >> back demodulating: 6212 (6211) EQUAL(f(h,g(f(b,f(g(f(e,c)),a)))),h). >> back demodulating: 6213 (3884,2154) EQUAL(f(g(f(b,f(g(f(e,c)),a))),a),a). >> back demodulating: 6214 (6213) EQUAL(f(g(f(b,f(g(f(e,c)),a))),a),a). >> back demodulating: 6215 (3884,1739) EQUAL(f(b,g(f(b,f(g(f(e,c)),a)))),b). >> back demodulating: 6216 (6215) EQUAL(f(b,g(f(b,f(g(f(e,c)),a)))),b). >> back demodulating: 6217 (3884,1217) EQUAL(f(g(f(b,f(g(f(e,c)),a))),d),d). >> back demodulating: 6218 (6217) EQUAL(f(g(f(b,f(g(f(e,c)),a))),d),d). >> back demodulating: 6219 (3884,1151) EQUAL(f(g(f(b,f(g(f(e,c)),a))),h),h). >> back demodulating: 6220 (6219) EQUAL(f(g(f(b,f(g(f(e,c)),a))),h),h). >> back demodulating: 6221 (3884,564) EQUAL(f(a,g(f(b,f(g(f(e,c)),a)))),a). >> back demodulating: 6222 (6221) EQUAL(f(a,g(f(b,f(g(f(e,c)),a)))),a). >> back demodulating: 6223 (3884,282) EQUAL(f(g(f(b,f(g(f(e,c)),a))),b),b). >> back demodulating: 6224 (6223) EQUAL(f(g(f(b,f(g(f(e,c)),a))),b),b). >> back demodulating: 6225 (3884,137) EQUAL(f(d,g(f(b,f(g(f(e,c)),a)))),d). >> back demodulating: 6226 (6225) EQUAL(f(d,g(f(b,f(g(f(e,c)),a)))),d). >> back demodulating: 6227 (3884,82) EQUAL(f(d,f(b,f(g(f(e,c)),a))),d). >> back demodulating: 6228 (6227) EQUAL(f(d,f(b,f(g(f(e,c)),a))),d). >> back demodulating: 6229 (3884,37) -EQUAL(f(b,f(g(f(e,c)),a)),f(k,g(b))). new given clause: 3996 (5,1803) EQUAL(f(c,f(e,x)),f(c,x)). ** KEPT: 6232 (4,3996) EQUAL(f(c,f(f(x,g(x)),y)),f(c,y)). ** KEPT: 6233 (3,3996) EQUAL(f(c,f(f(g(x),x),y)),f(c,y)). ** KEPT: 6234 (6088,3996) EQUAL(f(c,f(g(b),b)),f(c,e)). ** KEPT: 6235 (2767,3996) EQUAL(f(c,f(k,d)),f(c,f(d,b))). ** KEPT: 6236 (4361,3996) EQUAL(f(c,f(g(a),a)),f(c,e)). ** KEPT: 6237 (4198,3996) EQUAL(f(c,f(a,e)),f(c,a)). ** KEPT: 6238 (3616,3996) EQUAL(f(c,f(b,e)),f(c,b)). ** KEPT: 6239 (2685,3996) EQUAL(f(c,f(g(d),d)),f(c,e)). ** KEPT: 6240 (2489,3996) EQUAL(f(c,f(c,g(a))),f(c,d)). ** KEPT: 6241 (2389,3996) EQUAL(f(c,f(d,e)),f(c,d)). ** KEPT: 6242 (1095,3996) EQUAL(f(c,f(h,e)),f(c,h)). ** KEPT: 6243 (1063,3996) EQUAL(f(c,f(d,g(b))),f(c,h)). ** KEPT: 6244 (602,3996) EQUAL(f(c,f(c,g(c))),f(c,e)). ** KEPT: 6245 (5,3996) EQUAL(f(c,f(f(e,x),y)),f(c,f(x,y))). ** KEPT: 6246 (3996,3996) EQUAL(f(c,f(e,f(e,x))),f(c,x)). ** KEPT: 6247 (2490,3996) EQUAL(f(c,f(e,d)),f(f(c,e),d)). ** KEPT: 6248 (2013,3996) EQUAL(f(c,f(e,a)),f(f(c,e),a)). ** KEPT: 6249 (1803,3996) EQUAL(f(c,f(e,x)),f(f(c,e),x)). ** KEPT: 6250 (997,3996) EQUAL(f(c,f(e,f(g(a),g(h)))),k). ---> New Demodulator: 6251 (6250) EQUAL(f(c,f(e,f(g(a),g(h)))),k). ** KEPT: 6252 (660,3996) EQUAL(f(c,f(e,f(g(a),g(b)))),h). ---> New Demodulator: 6253 (6252) EQUAL(f(c,f(e,f(g(a),g(b)))),h). ** KEPT: 6254 (2120,3996) EQUAL(f(c,f(e,f(g(c),a))),a). ---> New Demodulator: 6255 (6254) EQUAL(f(c,f(e,f(g(c),a))),a). ** KEPT: 6256 (1844,3996) EQUAL(f(c,f(e,g(f(e,c)))),e). ---> New Demodulator: 6257 (6256) EQUAL(f(c,f(e,g(f(e,c)))),e). ** KEPT: 6258 (1842,3996) EQUAL(f(c,f(e,g(f(c,e)))),e). ---> New Demodulator: 6259 (6258) EQUAL(f(c,f(e,g(f(c,e)))),e). ** KEPT: 6260 (1197,3996) EQUAL(f(c,f(e,f(g(c),d))),d). ---> New Demodulator: 6261 (6260) EQUAL(f(c,f(e,f(g(c),d))),d). ** KEPT: 6262 (1133,3996) EQUAL(f(c,f(e,f(g(c),h))),h). ---> New Demodulator: 6263 (6262) EQUAL(f(c,f(e,f(g(c),h))),h). ** KEPT: 6264 (131,3996) EQUAL(f(c,f(e,d)),f(f(c,k),h)). ** KEPT: 6265 (72,3996) EQUAL(f(c,f(e,d)),f(f(c,h),b)). ** KEPT: 6266 (620,3996) EQUAL(f(c,f(e,f(e,g(b)))),a). ---> New Demodulator: 6267 (6266) EQUAL(f(c,f(e,f(e,g(b)))),a). ** KEPT: 6268 (592,3996) EQUAL(f(c,f(e,f(e,g(c)))),e). ---> New Demodulator: 6269 (6268) EQUAL(f(c,f(e,f(e,g(c)))),e). ** KEPT: 6270 (514,3996) EQUAL(f(c,f(e,f(e,g(a)))),d). ---> New Demodulator: 6271 (6270) EQUAL(f(c,f(e,f(e,g(a)))),d). ** KEPT: 6272 (266,3996) EQUAL(f(c,f(e,f(g(c),b))),b). ---> New Demodulator: 6273 (6272) EQUAL(f(c,f(e,f(g(c),b))),b). ** KEPT: 6274 (15,3996) EQUAL(f(c,f(e,c)),f(f(c,a),b)). ** KEPT: 6275 (117,3996) EQUAL(f(c,f(e,f(g(a),e))),d). ---> New Demodulator: 6276 (6275) EQUAL(f(c,f(e,f(g(a),e))),d). ** KEPT: 6277 (5,3996) EQUAL(f(c,f(e,f(x,y))),f(f(c,x),y)). 6249 back subsumes: 6248 (2013,3996) EQUAL(f(c,f(e,a)),f(f(c,e),a)). 6249 back subsumes: 6247 (2490,3996) EQUAL(f(c,f(e,d)),f(f(c,e),d)). 6249 back subsumes: 5033 (1803,2793) EQUAL(f(c,f(e,h)),f(f(c,e),h)). 6249 back subsumes: 3982 (1356,1803) EQUAL(f(c,f(e,c)),f(f(c,e),c)). 6249 back subsumes: 3981 (1444,1803) EQUAL(f(c,f(e,b)),f(f(c,e),b)). >>>> Starting back demodulation with: 6251 (6250) EQUAL(f(c,f(e,f(g(a),g(h)))),k). >>>> Starting back demodulation with: 6253 (6252) EQUAL(f(c,f(e,f(g(a),g(b)))),h). >>>> Starting back demodulation with: 6255 (6254) EQUAL(f(c,f(e,f(g(c),a))),a). >>>> Starting back demodulation with: 6257 (6256) EQUAL(f(c,f(e,g(f(e,c)))),e). >>>> Starting back demodulation with: 6259 (6258) EQUAL(f(c,f(e,g(f(c,e)))),e). >>>> Starting back demodulation with: 6261 (6260) EQUAL(f(c,f(e,f(g(c),d))),d). >>>> Starting back demodulation with: 6263 (6262) EQUAL(f(c,f(e,f(g(c),h))),h). >>>> Starting back demodulation with: 6267 (6266) EQUAL(f(c,f(e,f(e,g(b)))),a). >>>> Starting back demodulation with: 6269 (6268) EQUAL(f(c,f(e,f(e,g(c)))),e). >>>> Starting back demodulation with: 6271 (6270) EQUAL(f(c,f(e,f(e,g(a)))),d). >>>> Starting back demodulation with: 6273 (6272) EQUAL(f(c,f(e,f(g(c),b))),b). >>>> Starting back demodulation with: 6276 (6275) EQUAL(f(c,f(e,f(g(a),e))),d). ** KEPT: 6278 (3996,5) EQUAL(f(f(x,c),f(e,y)),f(x,f(c,y))). ** KEPT: 6279 (3996,5) EQUAL(f(c,f(f(e,x),y)),f(f(c,x),y)). ** KEPT: 6280 (3996,5) EQUAL(f(x,f(c,f(e,y))),f(f(x,c),y)). ** KEPT: 6281 (3996,5) EQUAL(f(f(c,f(e,x)),y),f(c,f(x,y))). new given clause: 4109 (5,1868) EQUAL(f(c,f(e,f(e,e))),c). ** KEPT: 6282 (7,4109) EQUAL(f(f(a,b),f(e,f(e,e))),c). ---> New Demodulator: 6283 (6282) EQUAL(f(f(a,b),f(e,f(e,e))),c). ** KEPT: 6284 (4,4109) EQUAL(f(c,f(f(x,g(x)),f(e,e))),c). ---> New Demodulator: 6285 (6284) EQUAL(f(c,f(f(x,g(x)),f(e,e))),c). ** KEPT: 6286 (3,4109) EQUAL(f(c,f(f(g(x),x),f(e,e))),c). ---> New Demodulator: 6287 (6286) EQUAL(f(c,f(f(g(x),x),f(e,e))),c). ** KEPT: 6288 (4,4109) EQUAL(f(c,f(e,f(f(x,g(x)),e))),c). ---> New Demodulator: 6289 (6288) EQUAL(f(c,f(e,f(f(x,g(x)),e))),c). ** KEPT: 6290 (3,4109) EQUAL(f(c,f(e,f(f(g(x),x),e))),c). ---> New Demodulator: 6291 (6290) EQUAL(f(c,f(e,f(f(g(x),x),e))),c). ** KEPT: 6292 (4,4109) EQUAL(f(c,f(e,f(e,f(x,g(x))))),c). ---> New Demodulator: 6293 (6292) EQUAL(f(c,f(e,f(e,f(x,g(x))))),c). ** KEPT: 6294 (3,4109) EQUAL(f(c,f(e,f(e,f(g(x),x)))),c). ---> New Demodulator: 6295 (6294) EQUAL(f(c,f(e,f(e,f(g(x),x)))),c). ** KEPT: 6296 (5,4109) EQUAL(f(c,f(f(e,e),e)),c). ---> New Demodulator: 6297 (6296) EQUAL(f(c,f(f(e,e),e)),c). ** KEPT: 6298 (3996,4109) EQUAL(f(c,f(e,f(e,f(e,e)))),c). ---> New Demodulator: 6299 (6298) EQUAL(f(c,f(e,f(e,f(e,e)))),c). ** KEPT: 6300 (1804,4109) EQUAL(f(f(e,c),f(e,f(e,e))),c). ---> New Demodulator: 6301 (6300) EQUAL(f(f(e,c),f(e,f(e,e))),c). ** KEPT: 6302 (1803,4109) EQUAL(f(f(c,e),f(e,f(e,e))),c). ---> New Demodulator: 6303 (6302) EQUAL(f(f(c,e),f(e,f(e,e))),c). >>>> Starting back demodulation with: 6283 (6282) EQUAL(f(f(a,b),f(e,f(e,e))),c). >>>> Starting back demodulation with: 6285 (6284) EQUAL(f(c,f(f(x,g(x)),f(e,e))),c). >>>> Starting back demodulation with: 6287 (6286) EQUAL(f(c,f(f(g(x),x),f(e,e))),c). >>>> Starting back demodulation with: 6289 (6288) EQUAL(f(c,f(e,f(f(x,g(x)),e))),c). >>>> Starting back demodulation with: 6291 (6290) EQUAL(f(c,f(e,f(f(g(x),x),e))),c). >>>> Starting back demodulation with: 6293 (6292) EQUAL(f(c,f(e,f(e,f(x,g(x))))),c). >>>> Starting back demodulation with: 6295 (6294) EQUAL(f(c,f(e,f(e,f(g(x),x)))),c). >>>> Starting back demodulation with: 6297 (6296) EQUAL(f(c,f(f(e,e),e)),c). >>>> Starting back demodulation with: 6299 (6298) EQUAL(f(c,f(e,f(e,f(e,e)))),c). >>>> Starting back demodulation with: 6301 (6300) EQUAL(f(f(e,c),f(e,f(e,e))),c). >>>> Starting back demodulation with: 6303 (6302) EQUAL(f(f(c,e),f(e,f(e,e))),c). ** KEPT: 6304 (4109,5) EQUAL(f(f(x,c),f(e,f(e,e))),f(x,c)). ** KEPT: 6305 (4109,5) EQUAL(f(c,f(f(e,f(e,e)),x)),f(c,x)). new given clause: 4160 (1924,1900) EQUAL(f(f(a,e),f(e,e)),a). ** KEPT: 6306 (4,4160) EQUAL(f(f(a,e),f(f(x,g(x)),e)),a). ---> New Demodulator: 6307 (6306) EQUAL(f(f(a,e),f(f(x,g(x)),e)),a). ** KEPT: 6308 (3,4160) EQUAL(f(f(a,e),f(f(g(x),x),e)),a). ---> New Demodulator: 6309 (6308) EQUAL(f(f(a,e),f(f(g(x),x),e)),a). ** KEPT: 6310 (4,4160) EQUAL(f(f(a,e),f(e,f(x,g(x)))),a). ---> New Demodulator: 6311 (6310) EQUAL(f(f(a,e),f(e,f(x,g(x)))),a). ** KEPT: 6312 (3,4160) EQUAL(f(f(a,e),f(e,f(g(x),x))),a). ---> New Demodulator: 6313 (6312) EQUAL(f(f(a,e),f(e,f(g(x),x))),a). >>>> Starting back demodulation with: 6307 (6306) EQUAL(f(f(a,e),f(f(x,g(x)),e)),a). >>>> Starting back demodulation with: 6309 (6308) EQUAL(f(f(a,e),f(f(g(x),x),e)),a). >>>> Starting back demodulation with: 6311 (6310) EQUAL(f(f(a,e),f(e,f(x,g(x)))),a). >>>> Starting back demodulation with: 6313 (6312) EQUAL(f(f(a,e),f(e,f(g(x),x))),a). ** KEPT: 6314 (4160,5) EQUAL(f(f(x,f(a,e)),f(e,e)),f(x,a)). ** KEPT: 6315 (4160,5) EQUAL(f(f(a,e),f(f(e,e),x)),f(a,x)). new given clause: 4208 (4198,1581) EQUAL(f(b,f(a,e)),f(b,a)). ** KEPT: 6316 (3768,4208) EQUAL(f(b,f(a,e)),f(f(b,e),a)). ** KEPT: 6317 (1581,4208) EQUAL(f(b,f(a,e)),f(b,f(e,a))). ** KEPT: 6318 (4208,1719) EQUAL(f(f(b,a),g(f(a,e))),b). ---> New Demodulator: 6319 (6318) EQUAL(f(f(b,a),g(f(a,e))),b). ** KEPT: 6320 (4208,73) EQUAL(f(h,f(b,a)),f(d,f(a,e))). ** KEPT: 6321 (4208,16) EQUAL(f(c,f(a,e)),f(a,f(b,a))). ** KEPT: 6322 (4208,5) EQUAL(f(f(x,b),f(a,e)),f(x,f(b,a))). ** KEPT: 6323 (4208,1719) EQUAL(f(f(b,f(a,e)),g(a)),b). ---> New Demodulator: 6324 (6323) EQUAL(f(f(b,f(a,e)),g(a)),b). ** KEPT: 6325 (4208,73) EQUAL(f(h,f(b,f(a,e))),f(d,a)). ** KEPT: 6326 (4208,16) EQUAL(f(a,f(b,f(a,e))),f(c,a)). ** KEPT: 6327 (4208,2126) EQUAL(f(g(b),f(b,f(a,e))),a). ---> New Demodulator: 6328 (6327) EQUAL(f(g(b),f(b,f(a,e))),a). ** KEPT: 6329 (4208,5) EQUAL(f(x,f(b,f(a,e))),f(f(x,b),a)). >>>> Starting back demodulation with: 6319 (6318) EQUAL(f(f(b,a),g(f(a,e))),b). >>>> Starting back demodulation with: 6324 (6323) EQUAL(f(f(b,f(a,e)),g(a)),b). >>>> Starting back demodulation with: 6328 (6327) EQUAL(f(g(b),f(b,f(a,e))),a). new given clause: 4209 (4198,483) EQUAL(f(a,f(a,e)),f(a,a)). ** KEPT: 6330 (2013,4209) EQUAL(f(a,f(a,e)),f(f(a,e),a)). ** KEPT: 6331 (483,4209) EQUAL(f(a,f(a,e)),f(a,f(e,a))). ** KEPT: 6332 (4209,526) EQUAL(f(f(a,a),g(f(a,e))),a). ---> New Demodulator: 6333 (6332) EQUAL(f(f(a,a),g(f(a,e))),a). ** KEPT: 6334 (4209,5) EQUAL(f(f(x,a),f(a,e)),f(x,f(a,a))). ** KEPT: 6335 (4209,526) EQUAL(f(f(a,f(a,e)),g(a)),a). ---> New Demodulator: 6336 (6335) EQUAL(f(f(a,f(a,e)),g(a)),a). ** KEPT: 6337 (4209,2126) EQUAL(f(g(a),f(a,f(a,e))),a). ---> New Demodulator: 6338 (6337) EQUAL(f(g(a),f(a,f(a,e))),a). ** KEPT: 6339 (4209,5) EQUAL(f(x,f(a,f(a,e))),f(f(x,a),a)). >>>> Starting back demodulation with: 6333 (6332) EQUAL(f(f(a,a),g(f(a,e))),a). >>>> Starting back demodulation with: 6336 (6335) EQUAL(f(f(a,f(a,e)),g(a)),a). >>>> Starting back demodulation with: 6338 (6337) EQUAL(f(g(a),f(a,f(a,e))),a). new given clause: 4210 (4198,92) EQUAL(f(d,f(a,e)),f(d,a)). ** KEPT: 6340 (8,4210) EQUAL(f(f(c,g(a)),f(a,e)),f(d,a)). ** KEPT: 6341 (132,4210) EQUAL(f(k,f(h,f(a,e))),f(d,a)). ** KEPT: 6342 (8,4210) EQUAL(f(f(c,g(a)),a),f(d,f(a,e))). ** KEPT: 6343 (2013,4210) EQUAL(f(d,f(a,e)),f(f(d,e),a)). ** KEPT: 6344 (132,4210) EQUAL(f(k,f(h,a)),f(d,f(a,e))). ** KEPT: 6345 (92,4210) EQUAL(f(d,f(a,e)),f(d,f(e,a))). ** KEPT: 6346 (4210,113) EQUAL(f(f(d,a),g(f(a,e))),d). ---> New Demodulator: 6347 (6346) EQUAL(f(f(d,a),g(f(a,e))),d). ** KEPT: 6348 (4210,5) EQUAL(f(f(x,d),f(a,e)),f(x,f(d,a))). ** KEPT: 6349 (4210,2126) EQUAL(f(g(d),f(d,f(a,e))),a). ---> New Demodulator: 6350 (6349) EQUAL(f(g(d),f(d,f(a,e))),a). ** KEPT: 6351 (4210,113) EQUAL(f(f(d,f(a,e)),g(a)),d). ---> New Demodulator: 6352 (6351) EQUAL(f(f(d,f(a,e)),g(a)),d). ** KEPT: 6353 (4210,5) EQUAL(f(x,f(d,f(a,e))),f(f(x,d),a)). >>>> Starting back demodulation with: 6347 (6346) EQUAL(f(f(d,a),g(f(a,e))),d). >>>> Starting back demodulation with: 6350 (6349) EQUAL(f(g(d),f(d,f(a,e))),a). >>>> Starting back demodulation with: 6352 (6351) EQUAL(f(f(d,f(a,e)),g(a)),d). new given clause: 4213 (4206,1071) EQUAL(f(f(e,a),h),f(a,h)). ** KEPT: 6354 (9,4213) EQUAL(f(f(e,a),f(d,g(b))),f(a,h)). ** KEPT: 6355 (9,4213) EQUAL(f(a,f(d,g(b))),f(f(e,a),h)). ** KEPT: 6356 (4213,1125) EQUAL(f(g(f(e,a)),f(a,h)),h). ---> New Demodulator: 6357 (6356) EQUAL(f(g(f(e,a)),f(a,h)),h). ** KEPT: 6358 (4213,72) EQUAL(f(f(a,h),b),f(f(e,a),d)). ** KEPT: 6359 (4213,5) EQUAL(f(f(x,f(e,a)),h),f(x,f(a,h))). ** KEPT: 6360 (4213,5) EQUAL(f(f(e,a),f(h,x)),f(f(a,h),x)). ** KEPT: 6361 (4213,1125) EQUAL(f(g(a),f(f(e,a),h)),h). ---> New Demodulator: 6362 (6361) EQUAL(f(g(a),f(f(e,a),h)),h). ** KEPT: 6363 (4213,72) EQUAL(f(f(f(e,a),h),b),f(a,d)). ** KEPT: 6364 (4213,5) EQUAL(f(x,f(f(e,a),h)),f(f(x,a),h)). ** KEPT: 6365 (4213,5) EQUAL(f(f(f(e,a),h),x),f(a,f(h,x))). >>>> Starting back demodulation with: 6357 (6356) EQUAL(f(g(f(e,a)),f(a,h)),h). >>>> Starting back demodulation with: 6362 (6361) EQUAL(f(g(a),f(f(e,a),h)),h). new given clause: 4227 (5,1944) EQUAL(f(a,f(f(e,e),e)),a). ** KEPT: 6366 (4,4227) EQUAL(f(a,f(f(f(x,g(x)),e),e)),a). ---> New Demodulator: 6367 (6366) EQUAL(f(a,f(f(f(x,g(x)),e),e)),a). ** KEPT: 6368 (3,4227) EQUAL(f(a,f(f(f(g(x),x),e),e)),a). ---> New Demodulator: 6369 (6368) EQUAL(f(a,f(f(f(g(x),x),e),e)),a). ** KEPT: 6370 (4,4227) EQUAL(f(a,f(f(e,f(x,g(x))),e)),a). ---> New Demodulator: 6371 (6370) EQUAL(f(a,f(f(e,f(x,g(x))),e)),a). ** KEPT: 6372 (3,4227) EQUAL(f(a,f(f(e,f(g(x),x)),e)),a). ---> New Demodulator: 6373 (6372) EQUAL(f(a,f(f(e,f(g(x),x)),e)),a). ** KEPT: 6374 (4,4227) EQUAL(f(a,f(f(e,e),f(x,g(x)))),a). ---> New Demodulator: 6375 (6374) EQUAL(f(a,f(f(e,e),f(x,g(x)))),a). ** KEPT: 6376 (3,4227) EQUAL(f(a,f(f(e,e),f(g(x),x))),a). ---> New Demodulator: 6377 (6376) EQUAL(f(a,f(f(e,e),f(g(x),x))),a). ** KEPT: 6378 (1900,4227) EQUAL(f(f(a,e),f(f(e,e),e)),a). ---> New Demodulator: 6379 (6378) EQUAL(f(f(a,e),f(f(e,e),e)),a). ** KEPT: 6380 (483,4227) EQUAL(f(a,f(e,f(f(e,e),e))),a). ---> New Demodulator: 6381 (6380) EQUAL(f(a,f(e,f(f(e,e),e))),a). >>>> Starting back demodulation with: 6367 (6366) EQUAL(f(a,f(f(f(x,g(x)),e),e)),a). >>>> Starting back demodulation with: 6369 (6368) EQUAL(f(a,f(f(f(g(x),x),e),e)),a). >>>> Starting back demodulation with: 6371 (6370) EQUAL(f(a,f(f(e,f(x,g(x))),e)),a). >>>> Starting back demodulation with: 6373 (6372) EQUAL(f(a,f(f(e,f(g(x),x)),e)),a). >>>> Starting back demodulation with: 6375 (6374) EQUAL(f(a,f(f(e,e),f(x,g(x)))),a). >>>> Starting back demodulation with: 6377 (6376) EQUAL(f(a,f(f(e,e),f(g(x),x))),a). >>>> Starting back demodulation with: 6379 (6378) EQUAL(f(f(a,e),f(f(e,e),e)),a). >>>> Starting back demodulation with: 6381 (6380) EQUAL(f(a,f(e,f(f(e,e),e))),a). ** KEPT: 6382 (4227,526) EQUAL(f(a,g(f(f(e,e),e))),a). ---> New Demodulator: 6383 (6382) EQUAL(f(a,g(f(f(e,e),e))),a). ** KEPT: 6384 (4227,5) EQUAL(f(f(x,a),f(f(e,e),e)),f(x,a)). ** KEPT: 6385 (4227,5) EQUAL(f(a,f(f(f(e,e),e),x)),f(a,x)). >>>> Starting back demodulation with: 6383 (6382) EQUAL(f(a,g(f(f(e,e),e))),a). new given clause: 4371 (4206,2013) EQUAL(f(f(e,a),a),f(a,a)). ** KEPT: 6386 (4209,4371) EQUAL(f(a,f(a,e)),f(f(e,a),a)). ** KEPT: 6387 (4371,2126) EQUAL(f(g(f(e,a)),f(a,a)),a). ---> New Demodulator: 6388 (6387) EQUAL(f(g(f(e,a)),f(a,a)),a). ** KEPT: 6389 (4371,15) EQUAL(f(f(a,a),b),f(f(e,a),c)). ** KEPT: 6390 (4371,5) EQUAL(f(f(x,f(e,a)),a),f(x,f(a,a))). ** KEPT: 6391 (4371,5) EQUAL(f(f(e,a),f(a,x)),f(f(a,a),x)). ** KEPT: 6392 (4371,2126) EQUAL(f(g(a),f(f(e,a),a)),a). ---> New Demodulator: 6393 (6392) EQUAL(f(g(a),f(f(e,a),a)),a). ** KEPT: 6394 (4371,15) EQUAL(f(f(f(e,a),a),b),f(a,c)). ** KEPT: 6395 (4371,5) EQUAL(f(x,f(f(e,a),a)),f(f(x,a),a)). ** KEPT: 6396 (4371,5) EQUAL(f(f(f(e,a),a),x),f(a,f(a,x))). >>>> Starting back demodulation with: 6388 (6387) EQUAL(f(g(f(e,a)),f(a,a)),a). >>>> Starting back demodulation with: 6393 (6392) EQUAL(f(g(a),f(f(e,a),a)),a). new given clause: 4372 (3608,2013) EQUAL(f(f(e,b),a),f(b,a)). ** KEPT: 6397 (4208,4372) EQUAL(f(b,f(a,e)),f(f(e,b),a)). ** KEPT: 6398 (4372,2126) EQUAL(f(g(f(e,b)),f(b,a)),a). ---> New Demodulator: 6399 (6398) EQUAL(f(g(f(e,b)),f(b,a)),a). ** KEPT: 6400 (4372,15) EQUAL(f(f(b,a),b),f(f(e,b),c)). ** KEPT: 6401 (4372,5) EQUAL(f(f(e,b),f(a,x)),f(f(b,a),x)). ** KEPT: 6402 (4372,2126) EQUAL(f(g(b),f(f(e,b),a)),a). ---> New Demodulator: 6403 (6402) EQUAL(f(g(b),f(f(e,b),a)),a). ** KEPT: 6404 (4372,15) EQUAL(f(f(f(e,b),a),b),f(b,c)). ** KEPT: 6405 (4372,5) EQUAL(f(f(f(e,b),a),x),f(b,f(a,x))). >>>> Starting back demodulation with: 6399 (6398) EQUAL(f(g(f(e,b)),f(b,a)),a). >>>> Starting back demodulation with: 6403 (6402) EQUAL(f(g(b),f(f(e,b),a)),a). new given clause: 4374 (2397,2013) EQUAL(f(f(e,d),a),f(d,a)). ** KEPT: 6406 (8,4374) EQUAL(f(f(c,g(a)),a),f(f(e,d),a)). ** KEPT: 6407 (4210,4374) EQUAL(f(d,f(a,e)),f(f(e,d),a)). ** KEPT: 6408 (4374,2126) EQUAL(f(g(f(e,d)),f(d,a)),a). ---> New Demodulator: 6409 (6408) EQUAL(f(g(f(e,d)),f(d,a)),a). ** KEPT: 6410 (4374,15) EQUAL(f(f(d,a),b),f(f(e,d),c)). ** KEPT: 6411 (4374,5) EQUAL(f(f(x,f(e,d)),a),f(x,f(d,a))). ** KEPT: 6412 (4374,5) EQUAL(f(f(e,d),f(a,x)),f(f(d,a),x)). ** KEPT: 6413 (4374,2126) EQUAL(f(g(d),f(f(e,d),a)),a). ---> New Demodulator: 6414 (6413) EQUAL(f(g(d),f(f(e,d),a)),a). ** KEPT: 6415 (4374,15) EQUAL(f(f(f(e,d),a),b),f(d,c)). ** KEPT: 6416 (4374,5) EQUAL(f(x,f(f(e,d),a)),f(f(x,d),a)). ** KEPT: 6417 (4374,5) EQUAL(f(f(f(e,d),a),x),f(d,f(a,x))). >>>> Starting back demodulation with: 6409 (6408) EQUAL(f(g(f(e,d)),f(d,a)),a). >>>> Starting back demodulation with: 6414 (6413) EQUAL(f(g(d),f(f(e,d),a)),a). new given clause: 4375 (1112,2013) EQUAL(f(f(e,h),a),f(h,a)). ** KEPT: 6418 (9,4375) EQUAL(f(f(d,g(b)),a),f(f(e,h),a)). ** KEPT: 6419 (2989,4375) EQUAL(f(h,f(e,a)),f(f(e,h),a)). ** KEPT: 6420 (2013,4375) EQUAL(f(f(h,e),a),f(f(e,h),a)). ** KEPT: 6421 (4375,2126) EQUAL(f(g(f(e,h)),f(h,a)),a). ---> New Demodulator: 6422 (6421) EQUAL(f(g(f(e,h)),f(h,a)),a). ** KEPT: 6423 (4375,15) EQUAL(f(f(h,a),b),f(f(e,h),c)). ** KEPT: 6424 (4375,5) EQUAL(f(f(e,h),f(a,x)),f(f(h,a),x)). ** KEPT: 6425 (4375,3118) EQUAL(f(f(f(e,h),a),g(a)),h). ---> New Demodulator: 6426 (6425) EQUAL(f(f(f(e,h),a),g(a)),h). ** KEPT: 6427 (4375,2126) EQUAL(f(g(h),f(f(e,h),a)),a). ---> New Demodulator: 6428 (6427) EQUAL(f(g(h),f(f(e,h),a)),a). ** KEPT: 6429 (4375,15) EQUAL(f(f(f(e,h),a),b),f(h,c)). ** KEPT: 6430 (4375,5) EQUAL(f(f(f(e,h),a),x),f(h,f(a,x))). >>>> Starting back demodulation with: 6422 (6421) EQUAL(f(g(f(e,h)),f(h,a)),a). >>>> Starting back demodulation with: 6426 (6425) EQUAL(f(f(f(e,h),a),g(a)),h). >>>> Starting back demodulation with: 6428 (6427) EQUAL(f(g(h),f(f(e,h),a)),a). new given clause: 4379 (5,2013) EQUAL(f(x,f(e,a)),f(x,a)). ** KEPT: 6431 (3126,4379) EQUAL(f(f(h,g(f(e,a))),a),h). ---> New Demodulator: 6432 (6431) EQUAL(f(f(h,g(f(e,a))),a),h). ** KEPT: 6433 (1725,4379) EQUAL(f(f(b,g(f(e,a))),a),b). ---> New Demodulator: 6434 (6433) EQUAL(f(f(b,g(f(e,a))),a),b). ** KEPT: 6435 (520,4379) EQUAL(f(f(a,g(f(e,a))),a),a). ---> New Demodulator: 6436 (6435) EQUAL(f(f(a,g(f(e,a))),a),a). ** KEPT: 6437 (105,4379) EQUAL(f(f(d,g(f(e,a))),a),d). ---> New Demodulator: 6438 (6437) EQUAL(f(f(d,g(f(e,a))),a),d). ** KEPT: 6439 (5,4379) EQUAL(f(x,f(y,f(e,a))),f(f(x,y),a)). ** KEPT: 6440 (3,4379) EQUAL(f(g(f(e,a)),a),e). ---> New Demodulator: 6441 (6440) EQUAL(f(g(f(e,a)),a),e). ** KEPT: 6442 (2156,4379) EQUAL(f(g(f(x,g(x))),f(e,a)),a). ---> New Demodulator: 6443 (6442) EQUAL(f(g(f(x,g(x))),f(e,a)),a). ** KEPT: 6444 (2154,4379) EQUAL(f(g(f(g(x),x)),f(e,a)),a). ---> New Demodulator: 6445 (6444) EQUAL(f(g(f(g(x),x)),f(e,a)),a). ** KEPT: 6446 (4404,4379) EQUAL(f(f(g(a),e),f(e,a)),e). ---> New Demodulator: 6447 (6446) EQUAL(f(f(g(a),e),f(e,a)),e). ** KEPT: 6448 (4406,4379) EQUAL(f(f(e,e),f(e,a)),a). ---> New Demodulator: 6449 (6448) EQUAL(f(f(e,e),f(e,a)),a). ** KEPT: 6450 (4355,4379) EQUAL(f(f(e,g(a)),f(e,a)),e). ---> New Demodulator: 6451 (6450) EQUAL(f(f(e,g(a)),f(e,a)),e). ** KEPT: 6452 (3126,4379) EQUAL(f(f(h,g(a)),f(e,a)),h). ---> New Demodulator: 6453 (6452) EQUAL(f(f(h,g(a)),f(e,a)),h). ** KEPT: 6454 (1725,4379) EQUAL(f(f(b,g(a)),f(e,a)),b). ---> New Demodulator: 6455 (6454) EQUAL(f(f(b,g(a)),f(e,a)),b). ** KEPT: 6456 (105,4379) EQUAL(f(f(d,g(a)),f(e,a)),d). ---> New Demodulator: 6457 (6456) EQUAL(f(f(d,g(a)),f(e,a)),d). ** KEPT: 6458 (5,4379) EQUAL(f(f(x,y),f(e,a)),f(x,f(y,a))). >>>> Starting back demodulation with: 6432 (6431) EQUAL(f(f(h,g(f(e,a))),a),h). >>>> Starting back demodulation with: 6434 (6433) EQUAL(f(f(b,g(f(e,a))),a),b). >>>> Starting back demodulation with: 6436 (6435) EQUAL(f(f(a,g(f(e,a))),a),a). >>>> Starting back demodulation with: 6438 (6437) EQUAL(f(f(d,g(f(e,a))),a),d). >>>> Starting back demodulation with: 6441 (6440) EQUAL(f(g(f(e,a)),a),e). >> back demodulating: 326 (15,286) EQUAL(f(f(g(f(e,a)),a),b),b). >> back demodulating: 327 (326) EQUAL(f(f(g(f(e,a)),a),b),b). >>>> Starting back demodulation with: 6443 (6442) EQUAL(f(g(f(x,g(x))),f(e,a)),a). >>>> Starting back demodulation with: 6445 (6444) EQUAL(f(g(f(g(x),x)),f(e,a)),a). >>>> Starting back demodulation with: 6447 (6446) EQUAL(f(f(g(a),e),f(e,a)),e). >>>> Starting back demodulation with: 6449 (6448) EQUAL(f(f(e,e),f(e,a)),a). >> back demodulating: 2052 (566,223,2008) EQUAL(f(f(f(e,e),f(e,a)),b),c). >> back demodulating: 2053 (2052) EQUAL(f(f(f(e,e),f(e,a)),b),c). >>>> Starting back demodulation with: 6451 (6450) EQUAL(f(f(e,g(a)),f(e,a)),e). >>>> Starting back demodulation with: 6453 (6452) EQUAL(f(f(h,g(a)),f(e,a)),h). >>>> Starting back demodulation with: 6455 (6454) EQUAL(f(f(b,g(a)),f(e,a)),b). >>>> Starting back demodulation with: 6457 (6456) EQUAL(f(f(d,g(a)),f(e,a)),d). ** KEPT: 6459 (4379,5) EQUAL(f(x,f(f(e,a),y)),f(f(x,a),y)). ** KEPT: 6460 (4379,3884) EQUAL(g(f(g(f(e,c)),f(e,a))),b). ---> New Demodulator: 6461 (6460) EQUAL(g(f(g(f(e,c)),f(e,a))),b). ** KEPT: 6462 (4379,3882) EQUAL(g(f(g(f(c,e)),f(e,a))),b). ---> New Demodulator: 6463 (6462) EQUAL(g(f(g(f(c,e)),f(e,a))),b). ** KEPT: 6464 (4379,3151) EQUAL(f(a,g(f(g(h),f(e,a)))),h). ---> New Demodulator: 6465 (6464) EQUAL(f(a,g(f(g(h),f(e,a)))),h). ** KEPT: 6466 (4379,2148) EQUAL(f(a,g(f(g(d),f(e,a)))),d). ---> New Demodulator: 6467 (6466) EQUAL(f(a,g(f(g(d),f(e,a)))),d). ** KEPT: 6468 (4379,2146) EQUAL(f(a,g(f(g(b),f(e,a)))),b). ---> New Demodulator: 6469 (6468) EQUAL(f(a,g(f(g(b),f(e,a)))),b). ** KEPT: 6470 (4379,5) EQUAL(f(f(x,f(e,a)),y),f(x,f(a,y))). 6459 back subsumes: 6395 (4371,5) EQUAL(f(x,f(f(e,a),a)),f(f(x,a),a)). 6459 back subsumes: 6364 (4213,5) EQUAL(f(x,f(f(e,a),h)),f(f(x,a),h)). >>>> Starting back demodulation with: 6461 (6460) EQUAL(g(f(g(f(e,c)),f(e,a))),b). >>>> Starting back demodulation with: 6463 (6462) EQUAL(g(f(g(f(c,e)),f(e,a))),b). >>>> Starting back demodulation with: 6465 (6464) EQUAL(f(a,g(f(g(h),f(e,a)))),h). >>>> Starting back demodulation with: 6467 (6466) EQUAL(f(a,g(f(g(d),f(e,a)))),d). >>>> Starting back demodulation with: 6469 (6468) EQUAL(f(a,g(f(g(b),f(e,a)))),b). 6470 back subsumes: 6390 (4371,5) EQUAL(f(f(x,f(e,a)),a),f(x,f(a,a))). 6470 back subsumes: 6359 (4213,5) EQUAL(f(f(x,f(e,a)),h),f(x,f(a,h))). new given clause: 6440 (3,4379) EQUAL(f(g(f(e,a)),a),e). ** KEPT: 6471 (2013,6440) EQUAL(f(f(g(f(e,a)),e),a),e). ---> New Demodulator: 6472 (6471) EQUAL(f(f(g(f(e,a)),e),a),e). >>>> Starting back demodulation with: 6472 (6471) EQUAL(f(f(g(f(e,a)),e),a),e). ** KEPT: 6473 (6440,5) EQUAL(f(f(x,g(f(e,a))),a),f(x,e)). ** KEPT: 6474 (6440,5) EQUAL(f(g(f(e,a)),f(a,x)),f(e,x)). new given clause: 4423 (2013,1575) EQUAL(g(f(f(g(c),e),a)),b). ** KEPT: 6475 (4,4423) EQUAL(g(f(f(g(c),f(x,g(x))),a)),b). ---> New Demodulator: 6476 (6475) EQUAL(g(f(f(g(c),f(x,g(x))),a)),b). ** KEPT: 6477 (3,4423) EQUAL(g(f(f(g(c),f(g(x),x)),a)),b). ---> New Demodulator: 6478 (6477) EQUAL(g(f(f(g(c),f(g(x),x)),a)),b). ** KEPT: 6479 (4379,4423) EQUAL(g(f(f(g(c),e),f(e,a))),b). ---> New Demodulator: 6480 (6479) EQUAL(g(f(f(g(c),e),f(e,a))),b). ** KEPT: 6481 (2013,4423) EQUAL(g(f(f(f(g(c),e),e),a)),b). ---> New Demodulator: 6482 (6481) EQUAL(g(f(f(f(g(c),e),e),a)),b). >>>> Starting back demodulation with: 6476 (6475) EQUAL(g(f(f(g(c),f(x,g(x))),a)),b). >>>> Starting back demodulation with: 6478 (6477) EQUAL(g(f(f(g(c),f(g(x),x)),a)),b). >>>> Starting back demodulation with: 6480 (6479) EQUAL(g(f(f(g(c),e),f(e,a))),b). >>>> Starting back demodulation with: 6482 (6481) EQUAL(g(f(f(f(g(c),e),e),a)),b). ** KEPT: 6483 (4423,3118) EQUAL(f(f(h,f(f(g(c),e),a)),b),h). ---> New Demodulator: 6484 (6483) EQUAL(f(f(h,f(f(g(c),e),a)),b),h). ** KEPT: 6485 (4423,2126) EQUAL(f(b,f(f(f(g(c),e),a),a)),a). ---> New Demodulator: 6486 (6485) EQUAL(f(b,f(f(f(g(c),e),a),a)),a). ** KEPT: 6487 (4423,2120) EQUAL(f(f(f(g(c),e),a),f(b,a)),a). ---> New Demodulator: 6488 (6487) EQUAL(f(f(f(g(c),e),a),f(b,a)),a). ** KEPT: 6489 (4423,1197) EQUAL(f(f(f(g(c),e),a),f(b,d)),d). ---> New Demodulator: 6490 (6489) EQUAL(f(f(f(g(c),e),a),f(b,d)),d). ** KEPT: 6491 (4423,1175) EQUAL(f(b,f(f(f(g(c),e),a),d)),d). ---> New Demodulator: 6492 (6491) EQUAL(f(b,f(f(f(g(c),e),a),d)),d). ** KEPT: 6493 (4423,1133) EQUAL(f(f(f(g(c),e),a),f(b,h)),h). ---> New Demodulator: 6494 (6493) EQUAL(f(f(f(g(c),e),a),f(b,h)),h). ** KEPT: 6495 (4423,1125) EQUAL(f(b,f(f(f(g(c),e),a),h)),h). ---> New Demodulator: 6496 (6495) EQUAL(f(b,f(f(f(g(c),e),a),h)),h). ** KEPT: 6497 (4423,1725) EQUAL(f(f(b,b),f(f(g(c),e),a)),b). ---> New Demodulator: 6498 (6497) EQUAL(f(f(b,b),f(f(g(c),e),a)),b). ** KEPT: 6499 (4423,526) EQUAL(f(f(a,f(f(g(c),e),a)),b),a). ---> New Demodulator: 6500 (6499) EQUAL(f(f(a,f(f(g(c),e),a)),b),a). ** KEPT: 6501 (4423,520) EQUAL(f(f(a,b),f(f(g(c),e),a)),a). ---> New Demodulator: 6502 (6501) EQUAL(f(f(a,b),f(f(g(c),e),a)),a). ** KEPT: 6503 (4423,266) EQUAL(f(f(f(g(c),e),a),f(b,b)),b). ---> New Demodulator: 6504 (6503) EQUAL(f(f(f(g(c),e),a),f(b,b)),b). ** KEPT: 6505 (4423,105) EQUAL(f(f(d,b),f(f(g(c),e),a)),d). ---> New Demodulator: 6506 (6505) EQUAL(f(f(d,b),f(f(g(c),e),a)),d). >>>> Starting back demodulation with: 6484 (6483) EQUAL(f(f(h,f(f(g(c),e),a)),b),h). >>>> Starting back demodulation with: 6486 (6485) EQUAL(f(b,f(f(f(g(c),e),a),a)),a). >>>> Starting back demodulation with: 6488 (6487) EQUAL(f(f(f(g(c),e),a),f(b,a)),a). >>>> Starting back demodulation with: 6490 (6489) EQUAL(f(f(f(g(c),e),a),f(b,d)),d). >>>> Starting back demodulation with: 6492 (6491) EQUAL(f(b,f(f(f(g(c),e),a),d)),d). >>>> Starting back demodulation with: 6494 (6493) EQUAL(f(f(f(g(c),e),a),f(b,h)),h). >>>> Starting back demodulation with: 6496 (6495) EQUAL(f(b,f(f(f(g(c),e),a),h)),h). >>>> Starting back demodulation with: 6498 (6497) EQUAL(f(f(b,b),f(f(g(c),e),a)),b). >>>> Starting back demodulation with: 6500 (6499) EQUAL(f(f(a,f(f(g(c),e),a)),b),a). >>>> Starting back demodulation with: 6502 (6501) EQUAL(f(f(a,b),f(f(g(c),e),a)),a). >>>> Starting back demodulation with: 6504 (6503) EQUAL(f(f(f(g(c),e),a),f(b,b)),b). >>>> Starting back demodulation with: 6506 (6505) EQUAL(f(f(d,b),f(f(g(c),e),a)),d). new given clause: 4434 (2013,4406) EQUAL(f(f(f(e,e),e),a),a). ** KEPT: 6507 (4,4434) EQUAL(f(f(f(f(x,g(x)),e),e),a),a). ---> New Demodulator: 6508 (6507) EQUAL(f(f(f(f(x,g(x)),e),e),a),a). ** KEPT: 6509 (3,4434) EQUAL(f(f(f(f(g(x),x),e),e),a),a). ---> New Demodulator: 6510 (6509) EQUAL(f(f(f(f(g(x),x),e),e),a),a). ** KEPT: 6511 (4,4434) EQUAL(f(f(f(e,f(x,g(x))),e),a),a). ---> New Demodulator: 6512 (6511) EQUAL(f(f(f(e,f(x,g(x))),e),a),a). ** KEPT: 6513 (3,4434) EQUAL(f(f(f(e,f(g(x),x)),e),a),a). ---> New Demodulator: 6514 (6513) EQUAL(f(f(f(e,f(g(x),x)),e),a),a). ** KEPT: 6515 (4,4434) EQUAL(f(f(f(e,e),f(x,g(x))),a),a). ---> New Demodulator: 6516 (6515) EQUAL(f(f(f(e,e),f(x,g(x))),a),a). ** KEPT: 6517 (3,4434) EQUAL(f(f(f(e,e),f(g(x),x)),a),a). ---> New Demodulator: 6518 (6517) EQUAL(f(f(f(e,e),f(g(x),x)),a),a). ** KEPT: 6519 (5,4434) EQUAL(f(f(e,f(e,e)),a),a). ---> New Demodulator: 6520 (6519) EQUAL(f(f(e,f(e,e)),a),a). ** KEPT: 6521 (4379,4434) EQUAL(f(f(f(e,e),e),f(e,a)),a). ---> New Demodulator: 6522 (6521) EQUAL(f(f(f(e,e),e),f(e,a)),a). ** KEPT: 6523 (2013,4434) EQUAL(f(f(f(f(e,e),e),e),a),a). ---> New Demodulator: 6524 (6523) EQUAL(f(f(f(f(e,e),e),e),a),a). >>>> Starting back demodulation with: 6508 (6507) EQUAL(f(f(f(f(x,g(x)),e),e),a),a). >>>> Starting back demodulation with: 6510 (6509) EQUAL(f(f(f(f(g(x),x),e),e),a),a). >>>> Starting back demodulation with: 6512 (6511) EQUAL(f(f(f(e,f(x,g(x))),e),a),a). >>>> Starting back demodulation with: 6514 (6513) EQUAL(f(f(f(e,f(g(x),x)),e),a),a). >>>> Starting back demodulation with: 6516 (6515) EQUAL(f(f(f(e,e),f(x,g(x))),a),a). >>>> Starting back demodulation with: 6518 (6517) EQUAL(f(f(f(e,e),f(g(x),x)),a),a). >>>> Starting back demodulation with: 6520 (6519) EQUAL(f(f(e,f(e,e)),a),a). >>>> Starting back demodulation with: 6522 (6521) EQUAL(f(f(f(e,e),e),f(e,a)),a). >>>> Starting back demodulation with: 6524 (6523) EQUAL(f(f(f(f(e,e),e),e),a),a). ** KEPT: 6525 (4434,2126) EQUAL(f(g(f(f(e,e),e)),a),a). ---> New Demodulator: 6526 (6525) EQUAL(f(g(f(f(e,e),e)),a),a). ** KEPT: 6527 (4434,5) EQUAL(f(f(x,f(f(e,e),e)),a),f(x,a)). ** KEPT: 6528 (4434,5) EQUAL(f(f(f(e,e),e),f(a,x)),f(a,x)). >>>> Starting back demodulation with: 6526 (6525) EQUAL(f(g(f(f(e,e),e)),a),a). new given clause: 4452 (4404,2126) EQUAL(f(g(f(g(a),e)),e),a). ** KEPT: 6529 (4,4452) EQUAL(f(g(f(g(a),f(x,g(x)))),e),a). ---> New Demodulator: 6530 (6529) EQUAL(f(g(f(g(a),f(x,g(x)))),e),a). ** KEPT: 6531 (3,4452) EQUAL(f(g(f(g(a),f(g(x),x))),e),a). ---> New Demodulator: 6532 (6531) EQUAL(f(g(f(g(a),f(g(x),x))),e),a). ** KEPT: 6533 (4,4452) EQUAL(f(g(f(g(a),e)),f(x,g(x))),a). ---> New Demodulator: 6534 (6533) EQUAL(f(g(f(g(a),e)),f(x,g(x))),a). ** KEPT: 6535 (3,4452) EQUAL(f(g(f(g(a),e)),f(g(x),x)),a). ---> New Demodulator: 6536 (6535) EQUAL(f(g(f(g(a),e)),f(g(x),x)),a). ** KEPT: 6537 (2,4452) EQUAL(g(f(g(a),e)),a). ---> New Demodulator: 6538 (6537) EQUAL(g(f(g(a),e)),a). >>>> Starting back demodulation with: 6530 (6529) EQUAL(f(g(f(g(a),f(x,g(x)))),e),a). >>>> Starting back demodulation with: 6532 (6531) EQUAL(f(g(f(g(a),f(g(x),x))),e),a). >>>> Starting back demodulation with: 6534 (6533) EQUAL(f(g(f(g(a),e)),f(x,g(x))),a). >>>> Starting back demodulation with: 6536 (6535) EQUAL(f(g(f(g(a),e)),f(g(x),x)),a). >>>> Starting back demodulation with: 6538 (6537) EQUAL(g(f(g(a),e)),a). >> back demodulating: 4452 (4404,2126) EQUAL(f(g(f(g(a),e)),e),a). >> back demodulating: 4453 (4452) EQUAL(f(g(f(g(a),e)),e),a). >> back demodulating: 6533 (4,4452) EQUAL(f(g(f(g(a),e)),f(x,g(x))),a). >> back demodulating: 6534 (6533) EQUAL(f(g(f(g(a),e)),f(x,g(x))),a). >> back demodulating: 6535 (3,4452) EQUAL(f(g(f(g(a),e)),f(g(x),x)),a). >> back demodulating: 6536 (6535) EQUAL(f(g(f(g(a),e)),f(g(x),x)),a). ** KEPT: 6539 (4452,6440,6538) EQUAL(f(g(f(e,a)),f(a,e)),e). ---> New Demodulator: 6540 (6539) EQUAL(f(g(f(e,a)),f(a,e)),e). ** KEPT: 6541 (4452,4438,6538) EQUAL(f(g(f(e,e)),f(a,e)),a). ---> New Demodulator: 6542 (6541) EQUAL(f(g(f(e,e)),f(a,e)),a). ** KEPT: 6543 (4452,4434,6538) EQUAL(f(f(f(e,e),e),f(a,e)),a). ---> New Demodulator: 6544 (6543) EQUAL(f(f(f(e,e),e),f(a,e)),a). ** KEPT: 6545 (4452,4406,6538) EQUAL(f(f(e,e),f(a,e)),a). ---> New Demodulator: 6546 (6545) EQUAL(f(f(e,e),f(a,e)),a). ** KEPT: 6547 (4452,4404,6538) EQUAL(f(f(g(a),e),f(a,e)),e). ---> New Demodulator: 6548 (6547) EQUAL(f(f(g(a),e),f(a,e)),e). ** KEPT: 6549 (4452,4379,6538) EQUAL(f(x,f(a,e)),f(x,f(e,a))). ** KEPT: 6550 (4452,4375,6538) EQUAL(f(h,f(a,e)),f(f(e,h),a)). ** KEPT: 6551 (4452,4375,6538) EQUAL(f(f(e,h),f(a,e)),f(h,a)). ** KEPT: 6552 (4452,4374,6538) EQUAL(f(f(e,d),f(a,e)),f(d,a)). ** KEPT: 6553 (4452,4372,6538) EQUAL(f(f(e,b),f(a,e)),f(b,a)). ** KEPT: 6554 (4452,4371,6538) EQUAL(f(f(e,a),f(a,e)),f(a,a)). ** KEPT: 6555 (4452,4355,6538) EQUAL(f(f(e,g(a)),f(a,e)),e). ---> New Demodulator: 6556 (6555) EQUAL(f(f(e,g(a)),f(a,e)),e). ** KEPT: 6557 (4452,3275,6538) EQUAL(f(f(d,g(c)),f(a,e)),h). ---> New Demodulator: 6558 (6557) EQUAL(f(f(d,g(c)),f(a,e)),h). ** KEPT: 6559 (4452,3151,6538) EQUAL(f(a,g(f(g(h),f(a,e)))),h). ---> New Demodulator: 6560 (6559) EQUAL(f(a,g(f(g(h),f(a,e)))),h). ** KEPT: 6561 (4452,2156,6538) EQUAL(f(g(f(x,g(x))),f(a,e)),a). ---> New Demodulator: 6562 (6561) EQUAL(f(g(f(x,g(x))),f(a,e)),a). ** KEPT: 6563 (4452,2154,6538) EQUAL(f(g(f(g(x),x)),f(a,e)),a). ---> New Demodulator: 6564 (6563) EQUAL(f(g(f(g(x),x)),f(a,e)),a). ** KEPT: 6565 (4452,2146,6538) EQUAL(f(a,g(f(g(b),f(a,e)))),b). ---> New Demodulator: 6566 (6565) EQUAL(f(a,g(f(g(b),f(a,e)))),b). ** KEPT: 6567 (4452,2148,6538) EQUAL(f(a,g(f(g(d),f(a,e)))),d). ---> New Demodulator: 6568 (6567) EQUAL(f(a,g(f(g(d),f(a,e)))),d). ** KEPT: 6569 (4452,2120,6538) EQUAL(f(x,f(g(x),f(a,e))),a). ---> New Demodulator: 6570 (6569) EQUAL(f(x,f(g(x),f(a,e))),a). ** KEPT: 6571 (4452,2013,6538) EQUAL(f(f(x,e),a),f(x,f(a,e))). ** KEPT: 6572 (4452,1733,6538) EQUAL(f(f(b,g(c)),f(a,e)),e). ---> New Demodulator: 6573 (6572) EQUAL(f(f(b,g(c)),f(a,e)),e). ** KEPT: 6574 (4452,3884,6538) EQUAL(g(f(g(f(e,c)),f(a,e))),b). ---> New Demodulator: 6575 (6574) EQUAL(g(f(g(f(e,c)),f(a,e))),b). ** KEPT: 6576 (4452,3882,6538) EQUAL(g(f(g(f(c,e)),f(a,e))),b). ---> New Demodulator: 6577 (6576) EQUAL(g(f(g(f(c,e)),f(a,e))),b). ** KEPT: 6578 (4452,1231,6538) EQUAL(f(g(f(a,g(d))),f(a,e)),d). ---> New Demodulator: 6579 (6578) EQUAL(f(g(f(a,g(d))),f(a,e)),d). ** KEPT: 6580 (4452,1165,6538) EQUAL(f(g(f(a,g(h))),f(a,e)),h). ---> New Demodulator: 6581 (6580) EQUAL(f(g(f(a,g(h))),f(a,e)),h). ** KEPT: 6582 (4452,558,6538) EQUAL(f(g(f(a,g(b))),f(a,e)),b). ---> New Demodulator: 6583 (6582) EQUAL(f(g(f(a,g(b))),f(a,e)),b). ** KEPT: 6584 (4452,4423,6538) EQUAL(g(f(f(g(c),e),f(a,e))),b). ---> New Demodulator: 6585 (6584) EQUAL(g(f(f(g(c),e),f(a,e))),b). ** KEPT: 6586 (4452,1680,6538) EQUAL(g(f(g(f(a,b)),f(a,e))),b). ---> New Demodulator: 6587 (6586) EQUAL(g(f(g(f(a,b)),f(a,e))),b). ** KEPT: 6588 (4452,4361,6538) EQUAL(f(e,f(g(a),f(a,e))),e). ---> New Demodulator: 6589 (6588) EQUAL(f(e,f(g(a),f(a,e))),e). ** KEPT: 6590 (4452,3195,6538) EQUAL(f(d,f(g(c),f(a,e))),h). ---> New Demodulator: 6591 (6590) EQUAL(f(d,f(g(c),f(a,e))),h). ** KEPT: 6592 (4452,1715,6538) EQUAL(f(b,f(g(c),f(a,e))),e). ---> New Demodulator: 6593 (6592) EQUAL(f(b,f(g(c),f(a,e))),e). ** KEPT: 6594 (4452,1575,6538) EQUAL(g(f(g(c),f(a,e))),b). ---> New Demodulator: 6595 (6594) EQUAL(g(f(g(c),f(a,e))),b). ** KEPT: 6596 (4452,167,6538) EQUAL(f(f(g(c),f(a,e)),b),e). ---> New Demodulator: 6597 (6596) EQUAL(f(f(g(c),f(a,e)),b),e). ** KEPT: 6598 (4452,2126,6538) EQUAL(f(g(x),f(x,f(a,e))),a). ---> New Demodulator: 6599 (6598) EQUAL(f(g(x),f(x,f(a,e))),a). ** KEPT: 6600 (4452,4450,6538) EQUAL(f(g(f(a,e)),f(e,a)),e). ---> New Demodulator: 6601 (6600) EQUAL(f(g(f(a,e)),f(e,a)),e). ** KEPT: 6602 (4452,3215,6538) EQUAL(f(f(h,g(f(a,e))),c),d). ---> New Demodulator: 6603 (6602) EQUAL(f(f(h,g(f(a,e))),c),d). ** KEPT: 6604 (4452,3213,6538) EQUAL(f(g(f(h,g(f(a,e)))),h),a). ---> New Demodulator: 6605 (6604) EQUAL(f(g(f(h,g(f(a,e)))),h),a). ** KEPT: 6606 (4452,2924,6538) EQUAL(f(f(g(k),c),g(f(a,e))),h). ---> New Demodulator: 6607 (6606) EQUAL(f(f(g(k),c),g(f(a,e))),h). ** KEPT: 6608 (4452,2489,6538) EQUAL(f(c,g(f(a,e))),f(e,d)). ** KEPT: 6609 (4452,1791,6538) EQUAL(f(f(g(h),c),g(f(a,e))),b). ---> New Demodulator: 6610 (6609) EQUAL(f(f(g(h),c),g(f(a,e))),b). ** KEPT: 6611 (4452,1249,6538) EQUAL(f(d,g(f(g(f(a,e)),d))),a). ---> New Demodulator: 6612 (6611) EQUAL(f(d,g(f(g(f(a,e)),d))),a). ** KEPT: 6613 (4452,1189,6538) EQUAL(f(h,g(f(g(f(a,e)),h))),a). ---> New Demodulator: 6614 (6613) EQUAL(f(h,g(f(g(f(a,e)),h))),a). ** KEPT: 6615 (4452,997,6538) EQUAL(f(c,f(g(f(a,e)),g(h))),k). ---> New Demodulator: 6616 (6615) EQUAL(f(c,f(g(f(a,e)),g(h))),k). ** KEPT: 6617 (4452,660,6538) EQUAL(f(c,f(g(f(a,e)),g(b))),h). ---> New Demodulator: 6618 (6617) EQUAL(f(c,f(g(f(a,e)),g(b))),h). ** KEPT: 6619 (4452,574,6538) EQUAL(f(b,g(f(g(f(a,e)),b))),a). ---> New Demodulator: 6620 (6619) EQUAL(f(b,g(f(g(f(a,e)),b))),a). ** KEPT: 6621 (4452,4355,6538) EQUAL(f(f(e,g(f(a,e))),a),e). ---> New Demodulator: 6622 (6621) EQUAL(f(f(e,g(f(a,e))),a),e). ** KEPT: 6623 (4452,4245,6538) EQUAL(g(f(e,g(f(a,e)))),a). ---> New Demodulator: 6624 (6623) EQUAL(g(f(e,g(f(a,e)))),a). ** KEPT: 6625 (4452,514,6538) EQUAL(f(c,f(e,g(f(a,e)))),d). ---> New Demodulator: 6626 (6625) EQUAL(f(c,f(e,g(f(a,e)))),d). ** KEPT: 6627 (4452,395,6538) EQUAL(f(f(c,e),g(f(a,e))),d). ---> New Demodulator: 6628 (6627) EQUAL(f(f(c,e),g(f(a,e))),d). ** KEPT: 6629 (4452,4361,6538) EQUAL(f(e,f(g(f(a,e)),a)),e). ---> New Demodulator: 6630 (6629) EQUAL(f(e,f(g(f(a,e)),a)),e). ** KEPT: 6631 (4452,179,6538) EQUAL(f(f(e,c),g(f(a,e))),d). ---> New Demodulator: 6632 (6631) EQUAL(f(f(e,c),g(f(a,e))),d). ** KEPT: 6633 (4452,2174,6538) EQUAL(f(g(f(d,g(f(a,e)))),d),a). ---> New Demodulator: 6634 (6633) EQUAL(f(g(f(d,g(f(a,e)))),d),a). ** KEPT: 6635 (4452,4404,6538) EQUAL(f(f(g(f(a,e)),e),a),e). ---> New Demodulator: 6636 (6635) EQUAL(f(f(g(f(a,e)),e),a),e). ** KEPT: 6637 (4452,117,6538) EQUAL(f(c,f(g(f(a,e)),e)),d). ---> New Demodulator: 6638 (6637) EQUAL(f(c,f(g(f(a,e)),e)),d). ** KEPT: 6639 (4452,2164,6538) EQUAL(f(g(f(b,g(f(a,e)))),b),a). ---> New Demodulator: 6640 (6639) EQUAL(f(g(f(b,g(f(a,e)))),b),a). ** KEPT: 6641 (4452,580,6538) EQUAL(f(d,g(f(b,g(f(a,e))))),a). ---> New Demodulator: 6642 (6641) EQUAL(f(d,g(f(b,g(f(a,e))))),a). ** KEPT: 6643 (4452,38,6538) EQUAL(f(a,f(b,g(f(a,e)))),d). ---> New Demodulator: 6644 (6643) EQUAL(f(a,f(b,g(f(a,e)))),d). ** KEPT: 6645 (4452,1072,6538) EQUAL(f(g(k),f(c,g(f(a,e)))),h). ---> New Demodulator: 6646 (6645) EQUAL(f(g(k),f(c,g(f(a,e)))),h). ** KEPT: 6647 (4452,300,6538) EQUAL(f(g(h),f(c,g(f(a,e)))),b). ---> New Demodulator: 6648 (6647) EQUAL(f(g(h),f(c,g(f(a,e)))),b). ** KEPT: 6649 (4452,254,6538) EQUAL(f(e,f(c,g(f(a,e)))),d). ---> New Demodulator: 6650 (6649) EQUAL(f(e,f(c,g(f(a,e)))),d). ** KEPT: 6651 (4452,93,6538) EQUAL(f(f(c,g(f(a,e))),g(h)),k). ---> New Demodulator: 6652 (6651) EQUAL(f(f(c,g(f(a,e))),g(h)),k). ** KEPT: 6653 (4452,86,6538) EQUAL(f(f(c,g(f(a,e))),e),d). ---> New Demodulator: 6654 (6653) EQUAL(f(f(c,g(f(a,e))),e),d). ** KEPT: 6655 (4452,23,6538) EQUAL(f(f(c,g(f(a,e))),g(b)),h). ---> New Demodulator: 6656 (6655) EQUAL(f(f(c,g(f(a,e))),g(b)),h). ** KEPT: 6657 (4452,19,6538) EQUAL(f(f(a,b),g(f(a,e))),d). ---> New Demodulator: 6658 (6657) EQUAL(f(f(a,b),g(f(a,e))),d). ** KEPT: 6659 (4452,8,6538) EQUAL(f(c,g(f(a,e))),d). ---> New Demodulator: 6660 (6659) EQUAL(f(c,g(f(a,e))),d). >>>> Starting back demodulation with: 6540 (6539) EQUAL(f(g(f(e,a)),f(a,e)),e). >>>> Starting back demodulation with: 6542 (6541) EQUAL(f(g(f(e,e)),f(a,e)),a). >>>> Starting back demodulation with: 6544 (6543) EQUAL(f(f(f(e,e),e),f(a,e)),a). >>>> Starting back demodulation with: 6546 (6545) EQUAL(f(f(e,e),f(a,e)),a). >>>> Starting back demodulation with: 6548 (6547) EQUAL(f(f(g(a),e),f(a,e)),e). 6549 back subsumes: 6345 (92,4210) EQUAL(f(d,f(a,e)),f(d,f(e,a))). 6549 back subsumes: 6331 (483,4209) EQUAL(f(a,f(a,e)),f(a,f(e,a))). 6549 back subsumes: 6317 (1581,4208) EQUAL(f(b,f(a,e)),f(b,f(e,a))). >>>> Starting back demodulation with: 6556 (6555) EQUAL(f(f(e,g(a)),f(a,e)),e). >>>> Starting back demodulation with: 6558 (6557) EQUAL(f(f(d,g(c)),f(a,e)),h). >>>> Starting back demodulation with: 6560 (6559) EQUAL(f(a,g(f(g(h),f(a,e)))),h). >>>> Starting back demodulation with: 6562 (6561) EQUAL(f(g(f(x,g(x))),f(a,e)),a). >>>> Starting back demodulation with: 6564 (6563) EQUAL(f(g(f(g(x),x)),f(a,e)),a). >>>> Starting back demodulation with: 6566 (6565) EQUAL(f(a,g(f(g(b),f(a,e)))),b). >>>> Starting back demodulation with: 6568 (6567) EQUAL(f(a,g(f(g(d),f(a,e)))),d). >>>> Starting back demodulation with: 6570 (6569) EQUAL(f(x,f(g(x),f(a,e))),a). >>>> Starting back demodulation with: 6573 (6572) EQUAL(f(f(b,g(c)),f(a,e)),e). >>>> Starting back demodulation with: 6575 (6574) EQUAL(g(f(g(f(e,c)),f(a,e))),b). >>>> Starting back demodulation with: 6577 (6576) EQUAL(g(f(g(f(c,e)),f(a,e))),b). >>>> Starting back demodulation with: 6579 (6578) EQUAL(f(g(f(a,g(d))),f(a,e)),d). >>>> Starting back demodulation with: 6581 (6580) EQUAL(f(g(f(a,g(h))),f(a,e)),h). >>>> Starting back demodulation with: 6583 (6582) EQUAL(f(g(f(a,g(b))),f(a,e)),b). >>>> Starting back demodulation with: 6585 (6584) EQUAL(g(f(f(g(c),e),f(a,e))),b). >>>> Starting back demodulation with: 6587 (6586) EQUAL(g(f(g(f(a,b)),f(a,e))),b). >>>> Starting back demodulation with: 6589 (6588) EQUAL(f(e,f(g(a),f(a,e))),e). >>>> Starting back demodulation with: 6591 (6590) EQUAL(f(d,f(g(c),f(a,e))),h). >>>> Starting back demodulation with: 6593 (6592) EQUAL(f(b,f(g(c),f(a,e))),e). >>>> Starting back demodulation with: 6595 (6594) EQUAL(g(f(g(c),f(a,e))),b). >>>> Starting back demodulation with: 6597 (6596) EQUAL(f(f(g(c),f(a,e)),b),e). >>>> Starting back demodulation with: 6599 (6598) EQUAL(f(g(x),f(x,f(a,e))),a). >> back demodulating: 6350 (6349) EQUAL(f(g(d),f(d,f(a,e))),a). >> back demodulating: 6349 (4210,2126) EQUAL(f(g(d),f(d,f(a,e))),a). >> back demodulating: 6338 (6337) EQUAL(f(g(a),f(a,f(a,e))),a). >> back demodulating: 6337 (4209,2126) EQUAL(f(g(a),f(a,f(a,e))),a). >> back demodulating: 6328 (6327) EQUAL(f(g(b),f(b,f(a,e))),a). >> back demodulating: 6327 (4208,2126) EQUAL(f(g(b),f(b,f(a,e))),a). >>>> Starting back demodulation with: 6601 (6600) EQUAL(f(g(f(a,e)),f(e,a)),e). >>>> Starting back demodulation with: 6603 (6602) EQUAL(f(f(h,g(f(a,e))),c),d). >>>> Starting back demodulation with: 6605 (6604) EQUAL(f(g(f(h,g(f(a,e)))),h),a). >>>> Starting back demodulation with: 6607 (6606) EQUAL(f(f(g(k),c),g(f(a,e))),h). >>>> Starting back demodulation with: 6610 (6609) EQUAL(f(f(g(h),c),g(f(a,e))),b). >>>> Starting back demodulation with: 6612 (6611) EQUAL(f(d,g(f(g(f(a,e)),d))),a). >>>> Starting back demodulation with: 6614 (6613) EQUAL(f(h,g(f(g(f(a,e)),h))),a). >>>> Starting back demodulation with: 6616 (6615) EQUAL(f(c,f(g(f(a,e)),g(h))),k). >>>> Starting back demodulation with: 6618 (6617) EQUAL(f(c,f(g(f(a,e)),g(b))),h). >>>> Starting back demodulation with: 6620 (6619) EQUAL(f(b,g(f(g(f(a,e)),b))),a). >>>> Starting back demodulation with: 6622 (6621) EQUAL(f(f(e,g(f(a,e))),a),e). >>>> Starting back demodulation with: 6624 (6623) EQUAL(g(f(e,g(f(a,e)))),a). >>>> Starting back demodulation with: 6626 (6625) EQUAL(f(c,f(e,g(f(a,e)))),d). >>>> Starting back demodulation with: 6628 (6627) EQUAL(f(f(c,e),g(f(a,e))),d). >>>> Starting back demodulation with: 6630 (6629) EQUAL(f(e,f(g(f(a,e)),a)),e). >>>> Starting back demodulation with: 6632 (6631) EQUAL(f(f(e,c),g(f(a,e))),d). >>>> Starting back demodulation with: 6634 (6633) EQUAL(f(g(f(d,g(f(a,e)))),d),a). >>>> Starting back demodulation with: 6636 (6635) EQUAL(f(f(g(f(a,e)),e),a),e). >>>> Starting back demodulation with: 6638 (6637) EQUAL(f(c,f(g(f(a,e)),e)),d). >>>> Starting back demodulation with: 6640 (6639) EQUAL(f(g(f(b,g(f(a,e)))),b),a). >>>> Starting back demodulation with: 6642 (6641) EQUAL(f(d,g(f(b,g(f(a,e))))),a). >>>> Starting back demodulation with: 6644 (6643) EQUAL(f(a,f(b,g(f(a,e)))),d). >>>> Starting back demodulation with: 6646 (6645) EQUAL(f(g(k),f(c,g(f(a,e)))),h). >>>> Starting back demodulation with: 6648 (6647) EQUAL(f(g(h),f(c,g(f(a,e)))),b). >>>> Starting back demodulation with: 6650 (6649) EQUAL(f(e,f(c,g(f(a,e)))),d). >>>> Starting back demodulation with: 6652 (6651) EQUAL(f(f(c,g(f(a,e))),g(h)),k). >>>> Starting back demodulation with: 6654 (6653) EQUAL(f(f(c,g(f(a,e))),e),d). >>>> Starting back demodulation with: 6656 (6655) EQUAL(f(f(c,g(f(a,e))),g(b)),h). >>>> Starting back demodulation with: 6658 (6657) EQUAL(f(f(a,b),g(f(a,e))),d). >>>> Starting back demodulation with: 6660 (6659) EQUAL(f(c,g(f(a,e))),d). >> back demodulating: 6645 (4452,1072,6538) EQUAL(f(g(k),f(c,g(f(a,e)))),h). >> back demodulating: 6646 (6645) EQUAL(f(g(k),f(c,g(f(a,e)))),h). >> back demodulating: 6647 (4452,300,6538) EQUAL(f(g(h),f(c,g(f(a,e)))),b). >> back demodulating: 6648 (6647) EQUAL(f(g(h),f(c,g(f(a,e)))),b). >> back demodulating: 6649 (4452,254,6538) EQUAL(f(e,f(c,g(f(a,e)))),d). >> back demodulating: 6650 (6649) EQUAL(f(e,f(c,g(f(a,e)))),d). >> back demodulating: 6651 (4452,93,6538) EQUAL(f(f(c,g(f(a,e))),g(h)),k). >> back demodulating: 6652 (6651) EQUAL(f(f(c,g(f(a,e))),g(h)),k). >> back demodulating: 6653 (4452,86,6538) EQUAL(f(f(c,g(f(a,e))),e),d). >> back demodulating: 6654 (6653) EQUAL(f(f(c,g(f(a,e))),e),d). >> back demodulating: 6655 (4452,23,6538) EQUAL(f(f(c,g(f(a,e))),g(b)),h). >> back demodulating: 6656 (6655) EQUAL(f(f(c,g(f(a,e))),g(b)),h). >> back demodulating: 6608 (4452,2489,6538) EQUAL(f(c,g(f(a,e))),f(e,d)). new given clause: 6537 (2,4452) EQUAL(g(f(g(a),e)),a). ** KEPT: 6661 (4,6537) EQUAL(g(f(g(a),f(x,g(x)))),a). ---> New Demodulator: 6662 (6661) EQUAL(g(f(g(a),f(x,g(x)))),a). ** KEPT: 6663 (3,6537) EQUAL(g(f(g(a),f(g(x),x))),a). ---> New Demodulator: 6664 (6663) EQUAL(g(f(g(a),f(g(x),x))),a). >>>> Starting back demodulation with: 6662 (6661) EQUAL(g(f(g(a),f(x,g(x)))),a). >> back demodulating: 6529 (4,4452) EQUAL(f(g(f(g(a),f(x,g(x)))),e),a). >> back demodulating: 6530 (6529) EQUAL(f(g(f(g(a),f(x,g(x)))),e),a). >>>> Starting back demodulation with: 6664 (6663) EQUAL(g(f(g(a),f(g(x),x))),a). >> back demodulating: 6531 (3,4452) EQUAL(f(g(f(g(a),f(g(x),x))),e),a). >> back demodulating: 6532 (6531) EQUAL(f(g(f(g(a),f(g(x),x))),e),a). ** KEPT: 6665 (6537,3118) EQUAL(f(f(h,f(g(a),e)),a),h). ---> New Demodulator: 6666 (6665) EQUAL(f(f(h,f(g(a),e)),a),h). ** KEPT: 6667 (6537,2120) EQUAL(f(f(g(a),e),f(a,a)),a). ---> New Demodulator: 6668 (6667) EQUAL(f(f(g(a),e),f(a,a)),a). ** KEPT: 6669 (6537,1719) EQUAL(f(f(b,f(g(a),e)),a),b). ---> New Demodulator: 6670 (6669) EQUAL(f(f(b,f(g(a),e)),a),b). ** KEPT: 6671 (6537,3126) EQUAL(f(f(h,a),f(g(a),e)),h). ---> New Demodulator: 6672 (6671) EQUAL(f(f(h,a),f(g(a),e)),h). ** KEPT: 6673 (6537,1197) EQUAL(f(f(g(a),e),f(a,d)),d). ---> New Demodulator: 6674 (6673) EQUAL(f(f(g(a),e),f(a,d)),d). ** KEPT: 6675 (6537,1133) EQUAL(f(f(g(a),e),f(a,h)),h). ---> New Demodulator: 6676 (6675) EQUAL(f(f(g(a),e),f(a,h)),h). ** KEPT: 6677 (6537,1725) EQUAL(f(f(b,a),f(g(a),e)),b). ---> New Demodulator: 6678 (6677) EQUAL(f(f(b,a),f(g(a),e)),b). ** KEPT: 6679 (6537,526) EQUAL(f(f(a,f(g(a),e)),a),a). ---> New Demodulator: 6680 (6679) EQUAL(f(f(a,f(g(a),e)),a),a). ** KEPT: 6681 (6537,520) EQUAL(f(f(a,a),f(g(a),e)),a). ---> New Demodulator: 6682 (6681) EQUAL(f(f(a,a),f(g(a),e)),a). ** KEPT: 6683 (6537,113) EQUAL(f(f(d,f(g(a),e)),a),d). ---> New Demodulator: 6684 (6683) EQUAL(f(f(d,f(g(a),e)),a),d). ** KEPT: 6685 (6537,105) EQUAL(f(f(d,a),f(g(a),e)),d). ---> New Demodulator: 6686 (6685) EQUAL(f(f(d,a),f(g(a),e)),d). ** KEPT: 6687 (6537,2987) EQUAL(f(h,f(a,f(g(a),e))),h). ---> New Demodulator: 6688 (6687) EQUAL(f(h,f(a,f(g(a),e))),h). ** KEPT: 6689 (6537,1579) EQUAL(f(b,f(a,f(g(a),e))),b). ---> New Demodulator: 6690 (6689) EQUAL(f(b,f(a,f(g(a),e))),b). ** KEPT: 6691 (6537,1127) EQUAL(f(f(a,f(g(a),e)),d),d). ---> New Demodulator: 6692 (6691) EQUAL(f(f(a,f(g(a),e)),d),d). ** KEPT: 6693 (6537,1065) EQUAL(f(f(a,f(g(a),e)),h),h). ---> New Demodulator: 6694 (6693) EQUAL(f(f(a,f(g(a),e)),h),h). ** KEPT: 6695 (6537,477) EQUAL(f(a,f(a,f(g(a),e))),a). ---> New Demodulator: 6696 (6695) EQUAL(f(a,f(a,f(g(a),e))),a). ** KEPT: 6697 (6537,233) EQUAL(f(f(a,f(g(a),e)),b),b). ---> New Demodulator: 6698 (6697) EQUAL(f(f(a,f(g(a),e)),b),b). ** KEPT: 6699 (6537,3141) EQUAL(f(h,g(f(a,f(g(a),e)))),h). ---> New Demodulator: 6700 (6699) EQUAL(f(h,g(f(a,f(g(a),e)))),h). ** KEPT: 6701 (6537,2154) EQUAL(f(g(f(a,f(g(a),e))),a),a). ---> New Demodulator: 6702 (6701) EQUAL(f(g(f(a,f(g(a),e))),a),a). ** KEPT: 6703 (6537,1739) EQUAL(f(b,g(f(a,f(g(a),e)))),b). ---> New Demodulator: 6704 (6703) EQUAL(f(b,g(f(a,f(g(a),e)))),b). ** KEPT: 6705 (6537,1217) EQUAL(f(g(f(a,f(g(a),e))),d),d). ---> New Demodulator: 6706 (6705) EQUAL(f(g(f(a,f(g(a),e))),d),d). ** KEPT: 6707 (6537,1151) EQUAL(f(g(f(a,f(g(a),e))),h),h). ---> New Demodulator: 6708 (6707) EQUAL(f(g(f(a,f(g(a),e))),h),h). ** KEPT: 6709 (6537,564) EQUAL(f(a,g(f(a,f(g(a),e)))),a). ---> New Demodulator: 6710 (6709) EQUAL(f(a,g(f(a,f(g(a),e)))),a). ** KEPT: 6711 (6537,282) EQUAL(f(g(f(a,f(g(a),e))),b),b). ---> New Demodulator: 6712 (6711) EQUAL(f(g(f(a,f(g(a),e))),b),b). ** KEPT: 6713 (6537,137) EQUAL(f(d,g(f(a,f(g(a),e)))),d). ---> New Demodulator: 6714 (6713) EQUAL(f(d,g(f(a,f(g(a),e)))),d). ** KEPT: 6715 (6537,82) EQUAL(f(d,f(a,f(g(a),e))),d). ---> New Demodulator: 6716 (6715) EQUAL(f(d,f(a,f(g(a),e))),d). ** KEPT: 6717 (6537,37) -EQUAL(f(a,f(g(a),e)),f(k,g(b))). ** KEPT: 6718 (6537,3) EQUAL(f(a,f(g(a),e)),e). ---> New Demodulator: 6719 (6718) EQUAL(f(a,f(g(a),e)),e). >>>> Starting back demodulation with: 6666 (6665) EQUAL(f(f(h,f(g(a),e)),a),h). >>>> Starting back demodulation with: 6668 (6667) EQUAL(f(f(g(a),e),f(a,a)),a). >>>> Starting back demodulation with: 6670 (6669) EQUAL(f(f(b,f(g(a),e)),a),b). >>>> Starting back demodulation with: 6672 (6671) EQUAL(f(f(h,a),f(g(a),e)),h). >>>> Starting back demodulation with: 6674 (6673) EQUAL(f(f(g(a),e),f(a,d)),d). >>>> Starting back demodulation with: 6676 (6675) EQUAL(f(f(g(a),e),f(a,h)),h). >>>> Starting back demodulation with: 6678 (6677) EQUAL(f(f(b,a),f(g(a),e)),b). >>>> Starting back demodulation with: 6680 (6679) EQUAL(f(f(a,f(g(a),e)),a),a). >>>> Starting back demodulation with: 6682 (6681) EQUAL(f(f(a,a),f(g(a),e)),a). >>>> Starting back demodulation with: 6684 (6683) EQUAL(f(f(d,f(g(a),e)),a),d). >>>> Starting back demodulation with: 6686 (6685) EQUAL(f(f(d,a),f(g(a),e)),d). >>>> Starting back demodulation with: 6688 (6687) EQUAL(f(h,f(a,f(g(a),e))),h). >>>> Starting back demodulation with: 6690 (6689) EQUAL(f(b,f(a,f(g(a),e))),b). >>>> Starting back demodulation with: 6692 (6691) EQUAL(f(f(a,f(g(a),e)),d),d). >>>> Starting back demodulation with: 6694 (6693) EQUAL(f(f(a,f(g(a),e)),h),h). >>>> Starting back demodulation with: 6696 (6695) EQUAL(f(a,f(a,f(g(a),e))),a). >>>> Starting back demodulation with: 6698 (6697) EQUAL(f(f(a,f(g(a),e)),b),b). >>>> Starting back demodulation with: 6700 (6699) EQUAL(f(h,g(f(a,f(g(a),e)))),h). >>>> Starting back demodulation with: 6702 (6701) EQUAL(f(g(f(a,f(g(a),e))),a),a). >>>> Starting back demodulation with: 6704 (6703) EQUAL(f(b,g(f(a,f(g(a),e)))),b). >>>> Starting back demodulation with: 6706 (6705) EQUAL(f(g(f(a,f(g(a),e))),d),d). >>>> Starting back demodulation with: 6708 (6707) EQUAL(f(g(f(a,f(g(a),e))),h),h). >>>> Starting back demodulation with: 6710 (6709) EQUAL(f(a,g(f(a,f(g(a),e)))),a). >>>> Starting back demodulation with: 6712 (6711) EQUAL(f(g(f(a,f(g(a),e))),b),b). >>>> Starting back demodulation with: 6714 (6713) EQUAL(f(d,g(f(a,f(g(a),e)))),d). >>>> Starting back demodulation with: 6716 (6715) EQUAL(f(d,f(a,f(g(a),e))),d). >>>> Starting back demodulation with: 6719 (6718) EQUAL(f(a,f(g(a),e)),e). >> back demodulating: 6679 (6537,526) EQUAL(f(f(a,f(g(a),e)),a),a). >> back demodulating: 6680 (6679) EQUAL(f(f(a,f(g(a),e)),a),a). >> back demodulating: 6687 (6537,2987) EQUAL(f(h,f(a,f(g(a),e))),h). >> back demodulating: 6688 (6687) EQUAL(f(h,f(a,f(g(a),e))),h). >> back demodulating: 6689 (6537,1579) EQUAL(f(b,f(a,f(g(a),e))),b). >> back demodulating: 6690 (6689) EQUAL(f(b,f(a,f(g(a),e))),b). >> back demodulating: 6691 (6537,1127) EQUAL(f(f(a,f(g(a),e)),d),d). >> back demodulating: 6692 (6691) EQUAL(f(f(a,f(g(a),e)),d),d). >> back demodulating: 6693 (6537,1065) EQUAL(f(f(a,f(g(a),e)),h),h). >> back demodulating: 6694 (6693) EQUAL(f(f(a,f(g(a),e)),h),h). >> back demodulating: 6695 (6537,477) EQUAL(f(a,f(a,f(g(a),e))),a). >> back demodulating: 6696 (6695) EQUAL(f(a,f(a,f(g(a),e))),a). >> back demodulating: 6697 (6537,233) EQUAL(f(f(a,f(g(a),e)),b),b). >> back demodulating: 6698 (6697) EQUAL(f(f(a,f(g(a),e)),b),b). >> back demodulating: 6699 (6537,3141) EQUAL(f(h,g(f(a,f(g(a),e)))),h). >> back demodulating: 6700 (6699) EQUAL(f(h,g(f(a,f(g(a),e)))),h). >> back demodulating: 6701 (6537,2154) EQUAL(f(g(f(a,f(g(a),e))),a),a). >> back demodulating: 6702 (6701) EQUAL(f(g(f(a,f(g(a),e))),a),a). >> back demodulating: 6703 (6537,1739) EQUAL(f(b,g(f(a,f(g(a),e)))),b). >> back demodulating: 6704 (6703) EQUAL(f(b,g(f(a,f(g(a),e)))),b). >> back demodulating: 6705 (6537,1217) EQUAL(f(g(f(a,f(g(a),e))),d),d). >> back demodulating: 6706 (6705) EQUAL(f(g(f(a,f(g(a),e))),d),d). >> back demodulating: 6707 (6537,1151) EQUAL(f(g(f(a,f(g(a),e))),h),h). >> back demodulating: 6708 (6707) EQUAL(f(g(f(a,f(g(a),e))),h),h). >> back demodulating: 6709 (6537,564) EQUAL(f(a,g(f(a,f(g(a),e)))),a). >> back demodulating: 6710 (6709) EQUAL(f(a,g(f(a,f(g(a),e)))),a). >> back demodulating: 6711 (6537,282) EQUAL(f(g(f(a,f(g(a),e))),b),b). >> back demodulating: 6712 (6711) EQUAL(f(g(f(a,f(g(a),e))),b),b). >> back demodulating: 6713 (6537,137) EQUAL(f(d,g(f(a,f(g(a),e)))),d). >> back demodulating: 6714 (6713) EQUAL(f(d,g(f(a,f(g(a),e)))),d). >> back demodulating: 6715 (6537,82) EQUAL(f(d,f(a,f(g(a),e))),d). >> back demodulating: 6716 (6715) EQUAL(f(d,f(a,f(g(a),e))),d). >> back demodulating: 6717 (6537,37) -EQUAL(f(a,f(g(a),e)),f(k,g(b))). new given clause: 6659 (4452,8,6538) EQUAL(f(c,g(f(a,e))),d). ** KEPT: 6720 (6659,5) EQUAL(f(f(x,c),g(f(a,e))),f(x,d)). ** KEPT: 6721 (6659,5) EQUAL(f(c,f(g(f(a,e)),x)),f(d,x)). new given clause: 6718 (6537,3) EQUAL(f(a,f(g(a),e)),e). ** KEPT: 6722 (4,6718) EQUAL(f(a,f(g(a),f(x,g(x)))),e). ---> New Demodulator: 6723 (6722) EQUAL(f(a,f(g(a),f(x,g(x)))),e). ** KEPT: 6724 (3,6718) EQUAL(f(a,f(g(a),f(g(x),x))),e). ---> New Demodulator: 6725 (6724) EQUAL(f(a,f(g(a),f(g(x),x))),e). ** KEPT: 6726 (1900,6718) EQUAL(f(f(a,e),f(g(a),e)),e). ---> New Demodulator: 6727 (6726) EQUAL(f(f(a,e),f(g(a),e)),e). ** KEPT: 6728 (483,6718) EQUAL(f(a,f(e,f(g(a),e))),e). ---> New Demodulator: 6729 (6728) EQUAL(f(a,f(e,f(g(a),e))),e). ** KEPT: 6730 (5,6718) EQUAL(f(f(a,g(a)),e),e). ---> New Demodulator: 6731 (6730) EQUAL(f(f(a,g(a)),e),e). >>>> Starting back demodulation with: 6723 (6722) EQUAL(f(a,f(g(a),f(x,g(x)))),e). >>>> Starting back demodulation with: 6725 (6724) EQUAL(f(a,f(g(a),f(g(x),x))),e). >>>> Starting back demodulation with: 6727 (6726) EQUAL(f(f(a,e),f(g(a),e)),e). >>>> Starting back demodulation with: 6729 (6728) EQUAL(f(a,f(e,f(g(a),e))),e). >>>> Starting back demodulation with: 6731 (6730) EQUAL(f(f(a,g(a)),e),e). ** KEPT: 6732 (6718,5) EQUAL(f(f(x,a),f(g(a),e)),f(x,e)). ** KEPT: 6733 (6718,5) EQUAL(f(a,f(f(g(a),e),x)),f(e,x)). new given clause: 6730 (5,6718) EQUAL(f(f(a,g(a)),e),e). ** KEPT: 6734 (4,6730) EQUAL(f(f(a,g(a)),f(x,g(x))),e). ---> New Demodulator: 6735 (6734) EQUAL(f(f(a,g(a)),f(x,g(x))),e). ** KEPT: 6736 (3,6730) EQUAL(f(f(a,g(a)),f(g(x),x)),e). ---> New Demodulator: 6737 (6736) EQUAL(f(f(a,g(a)),f(g(x),x)),e). >>>> Starting back demodulation with: 6735 (6734) EQUAL(f(f(a,g(a)),f(x,g(x))),e). >>>> Starting back demodulation with: 6737 (6736) EQUAL(f(f(a,g(a)),f(g(x),x)),e). ** KEPT: 6738 (6730,3480) EQUAL(f(f(a,g(a)),c),f(e,c)). ** KEPT: 6739 (6730,5) EQUAL(f(f(x,f(a,g(a))),e),f(x,e)). ** KEPT: 6740 (6730,5) EQUAL(f(f(a,g(a)),f(e,x)),f(e,x)). new given clause: 4507 (364,2096) EQUAL(g(f(b,g(f(c,e)))),a). ** KEPT: 6741 (4,4507) EQUAL(g(f(b,g(f(c,f(x,g(x)))))),a). ---> New Demodulator: 6742 (6741) EQUAL(g(f(b,g(f(c,f(x,g(x)))))),a). ** KEPT: 6743 (3,4507) EQUAL(g(f(b,g(f(c,f(g(x),x))))),a). ---> New Demodulator: 6744 (6743) EQUAL(g(f(b,g(f(c,f(g(x),x))))),a). ** KEPT: 6745 (3768,4507) EQUAL(g(f(f(b,e),g(f(c,e)))),a). ---> New Demodulator: 6746 (6745) EQUAL(g(f(f(b,e),g(f(c,e)))),a). ** KEPT: 6747 (1581,4507) EQUAL(g(f(b,f(e,g(f(c,e))))),a). ---> New Demodulator: 6748 (6747) EQUAL(g(f(b,f(e,g(f(c,e))))),a). >>>> Starting back demodulation with: 6742 (6741) EQUAL(g(f(b,g(f(c,f(x,g(x)))))),a). >>>> Starting back demodulation with: 6744 (6743) EQUAL(g(f(b,g(f(c,f(g(x),x))))),a). >>>> Starting back demodulation with: 6746 (6745) EQUAL(g(f(f(b,e),g(f(c,e)))),a). >>>> Starting back demodulation with: 6748 (6747) EQUAL(g(f(b,f(e,g(f(c,e))))),a). ** KEPT: 6749 (4507,3118) EQUAL(f(f(h,f(b,g(f(c,e)))),a),h). ---> New Demodulator: 6750 (6749) EQUAL(f(f(h,f(b,g(f(c,e)))),a),h). ** KEPT: 6751 (4507,2126) EQUAL(f(a,f(f(b,g(f(c,e))),a)),a). ---> New Demodulator: 6752 (6751) EQUAL(f(a,f(f(b,g(f(c,e))),a)),a). ** KEPT: 6753 (4507,2120) EQUAL(f(f(b,g(f(c,e))),f(a,a)),a). ---> New Demodulator: 6754 (6753) EQUAL(f(f(b,g(f(c,e))),f(a,a)),a). ** KEPT: 6755 (4507,1719) EQUAL(f(f(b,f(b,g(f(c,e)))),a),b). ---> New Demodulator: 6756 (6755) EQUAL(f(f(b,f(b,g(f(c,e)))),a),b). ** KEPT: 6757 (4507,3126) EQUAL(f(f(h,a),f(b,g(f(c,e)))),h). ---> New Demodulator: 6758 (6757) EQUAL(f(f(h,a),f(b,g(f(c,e)))),h). ** KEPT: 6759 (4507,1197) EQUAL(f(f(b,g(f(c,e))),f(a,d)),d). ---> New Demodulator: 6760 (6759) EQUAL(f(f(b,g(f(c,e))),f(a,d)),d). ** KEPT: 6761 (4507,1175) EQUAL(f(a,f(f(b,g(f(c,e))),d)),d). ---> New Demodulator: 6762 (6761) EQUAL(f(a,f(f(b,g(f(c,e))),d)),d). ** KEPT: 6763 (4507,1133) EQUAL(f(f(b,g(f(c,e))),f(a,h)),h). ---> New Demodulator: 6764 (6763) EQUAL(f(f(b,g(f(c,e))),f(a,h)),h). ** KEPT: 6765 (4507,1125) EQUAL(f(a,f(f(b,g(f(c,e))),h)),h). ---> New Demodulator: 6766 (6765) EQUAL(f(a,f(f(b,g(f(c,e))),h)),h). ** KEPT: 6767 (4507,1725) EQUAL(f(f(b,a),f(b,g(f(c,e)))),b). ---> New Demodulator: 6768 (6767) EQUAL(f(f(b,a),f(b,g(f(c,e)))),b). ** KEPT: 6769 (4507,520) EQUAL(f(f(a,a),f(b,g(f(c,e)))),a). ---> New Demodulator: 6770 (6769) EQUAL(f(f(a,a),f(b,g(f(c,e)))),a). ** KEPT: 6771 (4507,266) EQUAL(f(f(b,g(f(c,e))),f(a,b)),b). ---> New Demodulator: 6772 (6771) EQUAL(f(f(b,g(f(c,e))),f(a,b)),b). ** KEPT: 6773 (4507,260) EQUAL(f(a,f(f(b,g(f(c,e))),b)),b). ---> New Demodulator: 6774 (6773) EQUAL(f(a,f(f(b,g(f(c,e))),b)),b). ** KEPT: 6775 (4507,113) EQUAL(f(f(d,f(b,g(f(c,e)))),a),d). ---> New Demodulator: 6776 (6775) EQUAL(f(f(d,f(b,g(f(c,e)))),a),d). ** KEPT: 6777 (4507,105) EQUAL(f(f(d,a),f(b,g(f(c,e)))),d). ---> New Demodulator: 6778 (6777) EQUAL(f(f(d,a),f(b,g(f(c,e)))),d). ** KEPT: 6779 (4507,2985) EQUAL(f(h,f(f(b,g(f(c,e))),a)),h). ---> New Demodulator: 6780 (6779) EQUAL(f(h,f(f(b,g(f(c,e))),a)),h). ** KEPT: 6781 (4507,2009) EQUAL(f(f(f(b,g(f(c,e))),a),a),a). ---> New Demodulator: 6782 (6781) EQUAL(f(f(f(b,g(f(c,e))),a),a),a). ** KEPT: 6783 (4507,1577) EQUAL(f(b,f(f(b,g(f(c,e))),a)),b). ---> New Demodulator: 6784 (6783) EQUAL(f(b,f(f(b,g(f(c,e))),a)),b). ** KEPT: 6785 (4507,1135) EQUAL(f(f(f(b,g(f(c,e))),a),d),d). ---> New Demodulator: 6786 (6785) EQUAL(f(f(f(b,g(f(c,e))),a),d),d). ** KEPT: 6787 (4507,1067) EQUAL(f(f(f(b,g(f(c,e))),a),h),h). ---> New Demodulator: 6788 (6787) EQUAL(f(f(f(b,g(f(c,e))),a),h),h). ** KEPT: 6789 (4507,235) EQUAL(f(f(f(b,g(f(c,e))),a),b),b). ---> New Demodulator: 6790 (6789) EQUAL(f(f(f(b,g(f(c,e))),a),b),b). ** KEPT: 6791 (4507,3143) EQUAL(f(h,g(f(f(b,g(f(c,e))),a))),h). ---> New Demodulator: 6792 (6791) EQUAL(f(h,g(f(f(b,g(f(c,e))),a))),h). ** KEPT: 6793 (4507,2156) EQUAL(f(g(f(f(b,g(f(c,e))),a)),a),a). ---> New Demodulator: 6794 (6793) EQUAL(f(g(f(f(b,g(f(c,e))),a)),a),a). ** KEPT: 6795 (4507,1741) EQUAL(f(b,g(f(f(b,g(f(c,e))),a))),b). ---> New Demodulator: 6796 (6795) EQUAL(f(b,g(f(f(b,g(f(c,e))),a))),b). ** KEPT: 6797 (4507,1215) EQUAL(f(g(f(f(b,g(f(c,e))),a)),d),d). ---> New Demodulator: 6798 (6797) EQUAL(f(g(f(f(b,g(f(c,e))),a)),d),d). ** KEPT: 6799 (4507,1149) EQUAL(f(g(f(f(b,g(f(c,e))),a)),h),h). ---> New Demodulator: 6800 (6799) EQUAL(f(g(f(f(b,g(f(c,e))),a)),h),h). ** KEPT: 6801 (4507,562) EQUAL(f(a,g(f(f(b,g(f(c,e))),a))),a). ---> New Demodulator: 6802 (6801) EQUAL(f(a,g(f(f(b,g(f(c,e))),a))),a). ** KEPT: 6803 (4507,280) EQUAL(f(g(f(f(b,g(f(c,e))),a)),b),b). ---> New Demodulator: 6804 (6803) EQUAL(f(g(f(f(b,g(f(c,e))),a)),b),b). ** KEPT: 6805 (4507,135) EQUAL(f(d,g(f(f(b,g(f(c,e))),a))),d). ---> New Demodulator: 6806 (6805) EQUAL(f(d,g(f(f(b,g(f(c,e))),a))),d). ** KEPT: 6807 (4507,84) EQUAL(f(d,f(f(b,g(f(c,e))),a)),d). ---> New Demodulator: 6808 (6807) EQUAL(f(d,f(f(b,g(f(c,e))),a)),d). ** KEPT: 6809 (4507,36) -EQUAL(f(f(b,g(f(c,e))),a),f(k,g(b))). ** KEPT: 6810 (4507,4) EQUAL(f(f(b,g(f(c,e))),a),e). ---> New Demodulator: 6811 (6810) EQUAL(f(f(b,g(f(c,e))),a),e). >>>> Starting back demodulation with: 6750 (6749) EQUAL(f(f(h,f(b,g(f(c,e)))),a),h). >>>> Starting back demodulation with: 6752 (6751) EQUAL(f(a,f(f(b,g(f(c,e))),a)),a). >>>> Starting back demodulation with: 6754 (6753) EQUAL(f(f(b,g(f(c,e))),f(a,a)),a). >>>> Starting back demodulation with: 6756 (6755) EQUAL(f(f(b,f(b,g(f(c,e)))),a),b). >>>> Starting back demodulation with: 6758 (6757) EQUAL(f(f(h,a),f(b,g(f(c,e)))),h). >>>> Starting back demodulation with: 6760 (6759) EQUAL(f(f(b,g(f(c,e))),f(a,d)),d). >>>> Starting back demodulation with: 6762 (6761) EQUAL(f(a,f(f(b,g(f(c,e))),d)),d). >>>> Starting back demodulation with: 6764 (6763) EQUAL(f(f(b,g(f(c,e))),f(a,h)),h). >>>> Starting back demodulation with: 6766 (6765) EQUAL(f(a,f(f(b,g(f(c,e))),h)),h). >>>> Starting back demodulation with: 6768 (6767) EQUAL(f(f(b,a),f(b,g(f(c,e)))),b). >>>> Starting back demodulation with: 6770 (6769) EQUAL(f(f(a,a),f(b,g(f(c,e)))),a). >>>> Starting back demodulation with: 6772 (6771) EQUAL(f(f(b,g(f(c,e))),f(a,b)),b). >>>> Starting back demodulation with: 6774 (6773) EQUAL(f(a,f(f(b,g(f(c,e))),b)),b). >>>> Starting back demodulation with: 6776 (6775) EQUAL(f(f(d,f(b,g(f(c,e)))),a),d). >>>> Starting back demodulation with: 6778 (6777) EQUAL(f(f(d,a),f(b,g(f(c,e)))),d). >>>> Starting back demodulation with: 6780 (6779) EQUAL(f(h,f(f(b,g(f(c,e))),a)),h). >>>> Starting back demodulation with: 6782 (6781) EQUAL(f(f(f(b,g(f(c,e))),a),a),a). >>>> Starting back demodulation with: 6784 (6783) EQUAL(f(b,f(f(b,g(f(c,e))),a)),b). >>>> Starting back demodulation with: 6786 (6785) EQUAL(f(f(f(b,g(f(c,e))),a),d),d). >>>> Starting back demodulation with: 6788 (6787) EQUAL(f(f(f(b,g(f(c,e))),a),h),h). >>>> Starting back demodulation with: 6790 (6789) EQUAL(f(f(f(b,g(f(c,e))),a),b),b). >>>> Starting back demodulation with: 6792 (6791) EQUAL(f(h,g(f(f(b,g(f(c,e))),a))),h). >>>> Starting back demodulation with: 6794 (6793) EQUAL(f(g(f(f(b,g(f(c,e))),a)),a),a). >>>> Starting back demodulation with: 6796 (6795) EQUAL(f(b,g(f(f(b,g(f(c,e))),a))),b). >>>> Starting back demodulation with: 6798 (6797) EQUAL(f(g(f(f(b,g(f(c,e))),a)),d),d). >>>> Starting back demodulation with: 6800 (6799) EQUAL(f(g(f(f(b,g(f(c,e))),a)),h),h). >>>> Starting back demodulation with: 6802 (6801) EQUAL(f(a,g(f(f(b,g(f(c,e))),a))),a). >>>> Starting back demodulation with: 6804 (6803) EQUAL(f(g(f(f(b,g(f(c,e))),a)),b),b). >>>> Starting back demodulation with: 6806 (6805) EQUAL(f(d,g(f(f(b,g(f(c,e))),a))),d). >>>> Starting back demodulation with: 6808 (6807) EQUAL(f(d,f(f(b,g(f(c,e))),a)),d). >>>> Starting back demodulation with: 6811 (6810) EQUAL(f(f(b,g(f(c,e))),a),e). >> back demodulating: 6751 (4507,2126) EQUAL(f(a,f(f(b,g(f(c,e))),a)),a). >> back demodulating: 6752 (6751) EQUAL(f(a,f(f(b,g(f(c,e))),a)),a). >> back demodulating: 6779 (4507,2985) EQUAL(f(h,f(f(b,g(f(c,e))),a)),h). >> back demodulating: 6780 (6779) EQUAL(f(h,f(f(b,g(f(c,e))),a)),h). >> back demodulating: 6781 (4507,2009) EQUAL(f(f(f(b,g(f(c,e))),a),a),a). >> back demodulating: 6782 (6781) EQUAL(f(f(f(b,g(f(c,e))),a),a),a). >> back demodulating: 6783 (4507,1577) EQUAL(f(b,f(f(b,g(f(c,e))),a)),b). >> back demodulating: 6784 (6783) EQUAL(f(b,f(f(b,g(f(c,e))),a)),b). >> back demodulating: 6785 (4507,1135) EQUAL(f(f(f(b,g(f(c,e))),a),d),d). >> back demodulating: 6786 (6785) EQUAL(f(f(f(b,g(f(c,e))),a),d),d). >> back demodulating: 6787 (4507,1067) EQUAL(f(f(f(b,g(f(c,e))),a),h),h). >> back demodulating: 6788 (6787) EQUAL(f(f(f(b,g(f(c,e))),a),h),h). >> back demodulating: 6789 (4507,235) EQUAL(f(f(f(b,g(f(c,e))),a),b),b). >> back demodulating: 6790 (6789) EQUAL(f(f(f(b,g(f(c,e))),a),b),b). >> back demodulating: 6791 (4507,3143) EQUAL(f(h,g(f(f(b,g(f(c,e))),a))),h). >> back demodulating: 6792 (6791) EQUAL(f(h,g(f(f(b,g(f(c,e))),a))),h). >> back demodulating: 6793 (4507,2156) EQUAL(f(g(f(f(b,g(f(c,e))),a)),a),a). >> back demodulating: 6794 (6793) EQUAL(f(g(f(f(b,g(f(c,e))),a)),a),a). >> back demodulating: 6795 (4507,1741) EQUAL(f(b,g(f(f(b,g(f(c,e))),a))),b). >> back demodulating: 6796 (6795) EQUAL(f(b,g(f(f(b,g(f(c,e))),a))),b). >> back demodulating: 6797 (4507,1215) EQUAL(f(g(f(f(b,g(f(c,e))),a)),d),d). >> back demodulating: 6798 (6797) EQUAL(f(g(f(f(b,g(f(c,e))),a)),d),d). >> back demodulating: 6799 (4507,1149) EQUAL(f(g(f(f(b,g(f(c,e))),a)),h),h). >> back demodulating: 6800 (6799) EQUAL(f(g(f(f(b,g(f(c,e))),a)),h),h). >> back demodulating: 6801 (4507,562) EQUAL(f(a,g(f(f(b,g(f(c,e))),a))),a). >> back demodulating: 6802 (6801) EQUAL(f(a,g(f(f(b,g(f(c,e))),a))),a). >> back demodulating: 6803 (4507,280) EQUAL(f(g(f(f(b,g(f(c,e))),a)),b),b). >> back demodulating: 6804 (6803) EQUAL(f(g(f(f(b,g(f(c,e))),a)),b),b). >> back demodulating: 6805 (4507,135) EQUAL(f(d,g(f(f(b,g(f(c,e))),a))),d). >> back demodulating: 6806 (6805) EQUAL(f(d,g(f(f(b,g(f(c,e))),a))),d). >> back demodulating: 6807 (4507,84) EQUAL(f(d,f(f(b,g(f(c,e))),a)),d). >> back demodulating: 6808 (6807) EQUAL(f(d,f(f(b,g(f(c,e))),a)),d). >> back demodulating: 6809 (4507,36) -EQUAL(f(f(b,g(f(c,e))),a),f(k,g(b))). new given clause: 4509 (162,2096) EQUAL(g(f(b,g(f(e,c)))),a). ** KEPT: 6812 (4,4509) EQUAL(g(f(b,g(f(f(x,g(x)),c)))),a). ---> New Demodulator: 6813 (6812) EQUAL(g(f(b,g(f(f(x,g(x)),c)))),a). ** KEPT: 6814 (3,4509) EQUAL(g(f(b,g(f(f(g(x),x),c)))),a). ---> New Demodulator: 6815 (6814) EQUAL(g(f(b,g(f(f(g(x),x),c)))),a). ** KEPT: 6816 (3768,4509) EQUAL(g(f(f(b,e),g(f(e,c)))),a). ---> New Demodulator: 6817 (6816) EQUAL(g(f(f(b,e),g(f(e,c)))),a). ** KEPT: 6818 (1581,4509) EQUAL(g(f(b,f(e,g(f(e,c))))),a). ---> New Demodulator: 6819 (6818) EQUAL(g(f(b,f(e,g(f(e,c))))),a). >>>> Starting back demodulation with: 6813 (6812) EQUAL(g(f(b,g(f(f(x,g(x)),c)))),a). >>>> Starting back demodulation with: 6815 (6814) EQUAL(g(f(b,g(f(f(g(x),x),c)))),a). >>>> Starting back demodulation with: 6817 (6816) EQUAL(g(f(f(b,e),g(f(e,c)))),a). >>>> Starting back demodulation with: 6819 (6818) EQUAL(g(f(b,f(e,g(f(e,c))))),a). ** KEPT: 6820 (4509,3118) EQUAL(f(f(h,f(b,g(f(e,c)))),a),h). ---> New Demodulator: 6821 (6820) EQUAL(f(f(h,f(b,g(f(e,c)))),a),h). ** KEPT: 6822 (4509,2126) EQUAL(f(a,f(f(b,g(f(e,c))),a)),a). ---> New Demodulator: 6823 (6822) EQUAL(f(a,f(f(b,g(f(e,c))),a)),a). ** KEPT: 6824 (4509,2120) EQUAL(f(f(b,g(f(e,c))),f(a,a)),a). ---> New Demodulator: 6825 (6824) EQUAL(f(f(b,g(f(e,c))),f(a,a)),a). ** KEPT: 6826 (4509,1719) EQUAL(f(f(b,f(b,g(f(e,c)))),a),b). ---> New Demodulator: 6827 (6826) EQUAL(f(f(b,f(b,g(f(e,c)))),a),b). ** KEPT: 6828 (4509,3126) EQUAL(f(f(h,a),f(b,g(f(e,c)))),h). ---> New Demodulator: 6829 (6828) EQUAL(f(f(h,a),f(b,g(f(e,c)))),h). ** KEPT: 6830 (4509,1197) EQUAL(f(f(b,g(f(e,c))),f(a,d)),d). ---> New Demodulator: 6831 (6830) EQUAL(f(f(b,g(f(e,c))),f(a,d)),d). ** KEPT: 6832 (4509,1175) EQUAL(f(a,f(f(b,g(f(e,c))),d)),d). ---> New Demodulator: 6833 (6832) EQUAL(f(a,f(f(b,g(f(e,c))),d)),d). ** KEPT: 6834 (4509,1133) EQUAL(f(f(b,g(f(e,c))),f(a,h)),h). ---> New Demodulator: 6835 (6834) EQUAL(f(f(b,g(f(e,c))),f(a,h)),h). ** KEPT: 6836 (4509,1125) EQUAL(f(a,f(f(b,g(f(e,c))),h)),h). ---> New Demodulator: 6837 (6836) EQUAL(f(a,f(f(b,g(f(e,c))),h)),h). ** KEPT: 6838 (4509,1725) EQUAL(f(f(b,a),f(b,g(f(e,c)))),b). ---> New Demodulator: 6839 (6838) EQUAL(f(f(b,a),f(b,g(f(e,c)))),b). ** KEPT: 6840 (4509,520) EQUAL(f(f(a,a),f(b,g(f(e,c)))),a). ---> New Demodulator: 6841 (6840) EQUAL(f(f(a,a),f(b,g(f(e,c)))),a). ** KEPT: 6842 (4509,266) EQUAL(f(f(b,g(f(e,c))),f(a,b)),b). ---> New Demodulator: 6843 (6842) EQUAL(f(f(b,g(f(e,c))),f(a,b)),b). ** KEPT: 6844 (4509,260) EQUAL(f(a,f(f(b,g(f(e,c))),b)),b). ---> New Demodulator: 6845 (6844) EQUAL(f(a,f(f(b,g(f(e,c))),b)),b). ** KEPT: 6846 (4509,113) EQUAL(f(f(d,f(b,g(f(e,c)))),a),d). ---> New Demodulator: 6847 (6846) EQUAL(f(f(d,f(b,g(f(e,c)))),a),d). ** KEPT: 6848 (4509,105) EQUAL(f(f(d,a),f(b,g(f(e,c)))),d). ---> New Demodulator: 6849 (6848) EQUAL(f(f(d,a),f(b,g(f(e,c)))),d). ** KEPT: 6850 (4509,2985) EQUAL(f(h,f(f(b,g(f(e,c))),a)),h). ---> New Demodulator: 6851 (6850) EQUAL(f(h,f(f(b,g(f(e,c))),a)),h). ** KEPT: 6852 (4509,2009) EQUAL(f(f(f(b,g(f(e,c))),a),a),a). ---> New Demodulator: 6853 (6852) EQUAL(f(f(f(b,g(f(e,c))),a),a),a). ** KEPT: 6854 (4509,1577) EQUAL(f(b,f(f(b,g(f(e,c))),a)),b). ---> New Demodulator: 6855 (6854) EQUAL(f(b,f(f(b,g(f(e,c))),a)),b). ** KEPT: 6856 (4509,1135) EQUAL(f(f(f(b,g(f(e,c))),a),d),d). ---> New Demodulator: 6857 (6856) EQUAL(f(f(f(b,g(f(e,c))),a),d),d). ** KEPT: 6858 (4509,1067) EQUAL(f(f(f(b,g(f(e,c))),a),h),h). ---> New Demodulator: 6859 (6858) EQUAL(f(f(f(b,g(f(e,c))),a),h),h). ** KEPT: 6860 (4509,235) EQUAL(f(f(f(b,g(f(e,c))),a),b),b). ---> New Demodulator: 6861 (6860) EQUAL(f(f(f(b,g(f(e,c))),a),b),b). ** KEPT: 6862 (4509,3143) EQUAL(f(h,g(f(f(b,g(f(e,c))),a))),h). ---> New Demodulator: 6863 (6862) EQUAL(f(h,g(f(f(b,g(f(e,c))),a))),h). ** KEPT: 6864 (4509,2156) EQUAL(f(g(f(f(b,g(f(e,c))),a)),a),a). ---> New Demodulator: 6865 (6864) EQUAL(f(g(f(f(b,g(f(e,c))),a)),a),a). ** KEPT: 6866 (4509,1741) EQUAL(f(b,g(f(f(b,g(f(e,c))),a))),b). ---> New Demodulator: 6867 (6866) EQUAL(f(b,g(f(f(b,g(f(e,c))),a))),b). ** KEPT: 6868 (4509,1215) EQUAL(f(g(f(f(b,g(f(e,c))),a)),d),d). ---> New Demodulator: 6869 (6868) EQUAL(f(g(f(f(b,g(f(e,c))),a)),d),d). ** KEPT: 6870 (4509,1149) EQUAL(f(g(f(f(b,g(f(e,c))),a)),h),h). ---> New Demodulator: 6871 (6870) EQUAL(f(g(f(f(b,g(f(e,c))),a)),h),h). ** KEPT: 6872 (4509,562) EQUAL(f(a,g(f(f(b,g(f(e,c))),a))),a). ---> New Demodulator: 6873 (6872) EQUAL(f(a,g(f(f(b,g(f(e,c))),a))),a). ** KEPT: 6874 (4509,280) EQUAL(f(g(f(f(b,g(f(e,c))),a)),b),b). ---> New Demodulator: 6875 (6874) EQUAL(f(g(f(f(b,g(f(e,c))),a)),b),b). ** KEPT: 6876 (4509,135) EQUAL(f(d,g(f(f(b,g(f(e,c))),a))),d). ---> New Demodulator: 6877 (6876) EQUAL(f(d,g(f(f(b,g(f(e,c))),a))),d). ** KEPT: 6878 (4509,84) EQUAL(f(d,f(f(b,g(f(e,c))),a)),d). ---> New Demodulator: 6879 (6878) EQUAL(f(d,f(f(b,g(f(e,c))),a)),d). ** KEPT: 6880 (4509,36) -EQUAL(f(f(b,g(f(e,c))),a),f(k,g(b))). ** KEPT: 6881 (4509,4) EQUAL(f(f(b,g(f(e,c))),a),e). ---> New Demodulator: 6882 (6881) EQUAL(f(f(b,g(f(e,c))),a),e). >>>> Starting back demodulation with: 6821 (6820) EQUAL(f(f(h,f(b,g(f(e,c)))),a),h). >>>> Starting back demodulation with: 6823 (6822) EQUAL(f(a,f(f(b,g(f(e,c))),a)),a). >>>> Starting back demodulation with: 6825 (6824) EQUAL(f(f(b,g(f(e,c))),f(a,a)),a). >>>> Starting back demodulation with: 6827 (6826) EQUAL(f(f(b,f(b,g(f(e,c)))),a),b). >>>> Starting back demodulation with: 6829 (6828) EQUAL(f(f(h,a),f(b,g(f(e,c)))),h). >>>> Starting back demodulation with: 6831 (6830) EQUAL(f(f(b,g(f(e,c))),f(a,d)),d). >>>> Starting back demodulation with: 6833 (6832) EQUAL(f(a,f(f(b,g(f(e,c))),d)),d). >>>> Starting back demodulation with: 6835 (6834) EQUAL(f(f(b,g(f(e,c))),f(a,h)),h). >>>> Starting back demodulation with: 6837 (6836) EQUAL(f(a,f(f(b,g(f(e,c))),h)),h). >>>> Starting back demodulation with: 6839 (6838) EQUAL(f(f(b,a),f(b,g(f(e,c)))),b). >>>> Starting back demodulation with: 6841 (6840) EQUAL(f(f(a,a),f(b,g(f(e,c)))),a). >>>> Starting back demodulation with: 6843 (6842) EQUAL(f(f(b,g(f(e,c))),f(a,b)),b). >>>> Starting back demodulation with: 6845 (6844) EQUAL(f(a,f(f(b,g(f(e,c))),b)),b). >>>> Starting back demodulation with: 6847 (6846) EQUAL(f(f(d,f(b,g(f(e,c)))),a),d). >>>> Starting back demodulation with: 6849 (6848) EQUAL(f(f(d,a),f(b,g(f(e,c)))),d). >>>> Starting back demodulation with: 6851 (6850) EQUAL(f(h,f(f(b,g(f(e,c))),a)),h). >>>> Starting back demodulation with: 6853 (6852) EQUAL(f(f(f(b,g(f(e,c))),a),a),a). >>>> Starting back demodulation with: 6855 (6854) EQUAL(f(b,f(f(b,g(f(e,c))),a)),b). >>>> Starting back demodulation with: 6857 (6856) EQUAL(f(f(f(b,g(f(e,c))),a),d),d). >>>> Starting back demodulation with: 6859 (6858) EQUAL(f(f(f(b,g(f(e,c))),a),h),h). >>>> Starting back demodulation with: 6861 (6860) EQUAL(f(f(f(b,g(f(e,c))),a),b),b). >>>> Starting back demodulation with: 6863 (6862) EQUAL(f(h,g(f(f(b,g(f(e,c))),a))),h). >>>> Starting back demodulation with: 6865 (6864) EQUAL(f(g(f(f(b,g(f(e,c))),a)),a),a). >>>> Starting back demodulation with: 6867 (6866) EQUAL(f(b,g(f(f(b,g(f(e,c))),a))),b). >>>> Starting back demodulation with: 6869 (6868) EQUAL(f(g(f(f(b,g(f(e,c))),a)),d),d). >>>> Starting back demodulation with: 6871 (6870) EQUAL(f(g(f(f(b,g(f(e,c))),a)),h),h). >>>> Starting back demodulation with: 6873 (6872) EQUAL(f(a,g(f(f(b,g(f(e,c))),a))),a). >>>> Starting back demodulation with: 6875 (6874) EQUAL(f(g(f(f(b,g(f(e,c))),a)),b),b). >>>> Starting back demodulation with: 6877 (6876) EQUAL(f(d,g(f(f(b,g(f(e,c))),a))),d). >>>> Starting back demodulation with: 6879 (6878) EQUAL(f(d,f(f(b,g(f(e,c))),a)),d). >>>> Starting back demodulation with: 6882 (6881) EQUAL(f(f(b,g(f(e,c))),a),e). >> back demodulating: 6822 (4509,2126) EQUAL(f(a,f(f(b,g(f(e,c))),a)),a). >> back demodulating: 6823 (6822) EQUAL(f(a,f(f(b,g(f(e,c))),a)),a). >> back demodulating: 6850 (4509,2985) EQUAL(f(h,f(f(b,g(f(e,c))),a)),h). >> back demodulating: 6851 (6850) EQUAL(f(h,f(f(b,g(f(e,c))),a)),h). >> back demodulating: 6852 (4509,2009) EQUAL(f(f(f(b,g(f(e,c))),a),a),a). >> back demodulating: 6853 (6852) EQUAL(f(f(f(b,g(f(e,c))),a),a),a). >> back demodulating: 6854 (4509,1577) EQUAL(f(b,f(f(b,g(f(e,c))),a)),b). >> back demodulating: 6855 (6854) EQUAL(f(b,f(f(b,g(f(e,c))),a)),b). >> back demodulating: 6856 (4509,1135) EQUAL(f(f(f(b,g(f(e,c))),a),d),d). >> back demodulating: 6857 (6856) EQUAL(f(f(f(b,g(f(e,c))),a),d),d). >> back demodulating: 6858 (4509,1067) EQUAL(f(f(f(b,g(f(e,c))),a),h),h). >> back demodulating: 6859 (6858) EQUAL(f(f(f(b,g(f(e,c))),a),h),h). >> back demodulating: 6860 (4509,235) EQUAL(f(f(f(b,g(f(e,c))),a),b),b). >> back demodulating: 6861 (6860) EQUAL(f(f(f(b,g(f(e,c))),a),b),b). >> back demodulating: 6862 (4509,3143) EQUAL(f(h,g(f(f(b,g(f(e,c))),a))),h). >> back demodulating: 6863 (6862) EQUAL(f(h,g(f(f(b,g(f(e,c))),a))),h). >> back demodulating: 6864 (4509,2156) EQUAL(f(g(f(f(b,g(f(e,c))),a)),a),a). >> back demodulating: 6865 (6864) EQUAL(f(g(f(f(b,g(f(e,c))),a)),a),a). >> back demodulating: 6866 (4509,1741) EQUAL(f(b,g(f(f(b,g(f(e,c))),a))),b). >> back demodulating: 6867 (6866) EQUAL(f(b,g(f(f(b,g(f(e,c))),a))),b). >> back demodulating: 6868 (4509,1215) EQUAL(f(g(f(f(b,g(f(e,c))),a)),d),d). >> back demodulating: 6869 (6868) EQUAL(f(g(f(f(b,g(f(e,c))),a)),d),d). >> back demodulating: 6870 (4509,1149) EQUAL(f(g(f(f(b,g(f(e,c))),a)),h),h). >> back demodulating: 6871 (6870) EQUAL(f(g(f(f(b,g(f(e,c))),a)),h),h). >> back demodulating: 6872 (4509,562) EQUAL(f(a,g(f(f(b,g(f(e,c))),a))),a). >> back demodulating: 6873 (6872) EQUAL(f(a,g(f(f(b,g(f(e,c))),a))),a). >> back demodulating: 6874 (4509,280) EQUAL(f(g(f(f(b,g(f(e,c))),a)),b),b). >> back demodulating: 6875 (6874) EQUAL(f(g(f(f(b,g(f(e,c))),a)),b),b). >> back demodulating: 6876 (4509,135) EQUAL(f(d,g(f(f(b,g(f(e,c))),a))),d). >> back demodulating: 6877 (6876) EQUAL(f(d,g(f(f(b,g(f(e,c))),a))),d). >> back demodulating: 6878 (4509,84) EQUAL(f(d,f(f(b,g(f(e,c))),a)),d). >> back demodulating: 6879 (6878) EQUAL(f(d,f(f(b,g(f(e,c))),a)),d). >> back demodulating: 6880 (4509,36) -EQUAL(f(f(b,g(f(e,c))),a),f(k,g(b))). new given clause: 4639 (2305,3247,4636) EQUAL(f(f(h,e),f(e,e)),h). ** KEPT: 6883 (4,4639) EQUAL(f(f(h,e),f(f(x,g(x)),e)),h). ---> New Demodulator: 6884 (6883) EQUAL(f(f(h,e),f(f(x,g(x)),e)),h). ** KEPT: 6885 (3,4639) EQUAL(f(f(h,e),f(f(g(x),x),e)),h). ---> New Demodulator: 6886 (6885) EQUAL(f(f(h,e),f(f(g(x),x),e)),h). ** KEPT: 6887 (4,4639) EQUAL(f(f(h,e),f(e,f(x,g(x)))),h). ---> New Demodulator: 6888 (6887) EQUAL(f(f(h,e),f(e,f(x,g(x)))),h). ** KEPT: 6889 (3,4639) EQUAL(f(f(h,e),f(e,f(g(x),x))),h). ---> New Demodulator: 6890 (6889) EQUAL(f(f(h,e),f(e,f(g(x),x))),h). >>>> Starting back demodulation with: 6884 (6883) EQUAL(f(f(h,e),f(f(x,g(x)),e)),h). >>>> Starting back demodulation with: 6886 (6885) EQUAL(f(f(h,e),f(f(g(x),x),e)),h). >>>> Starting back demodulation with: 6888 (6887) EQUAL(f(f(h,e),f(e,f(x,g(x)))),h). >>>> Starting back demodulation with: 6890 (6889) EQUAL(f(f(h,e),f(e,f(g(x),x))),h). ** KEPT: 6891 (4639,5) EQUAL(f(f(x,f(h,e)),f(e,e)),f(x,h)). ** KEPT: 6892 (4639,5) EQUAL(f(f(h,e),f(f(e,e),x)),f(h,x)). new given clause: 4669 (1581,4635) EQUAL(g(f(b,f(e,g(d)))),h). ** KEPT: 6893 (4,4669) EQUAL(g(f(b,f(f(x,g(x)),g(d)))),h). ---> New Demodulator: 6894 (6893) EQUAL(g(f(b,f(f(x,g(x)),g(d)))),h). ** KEPT: 6895 (3,4669) EQUAL(g(f(b,f(f(g(x),x),g(d)))),h). ---> New Demodulator: 6896 (6895) EQUAL(g(f(b,f(f(g(x),x),g(d)))),h). ** KEPT: 6897 (8,4669) EQUAL(g(f(b,f(e,g(f(c,g(a)))))),h). ---> New Demodulator: 6898 (6897) EQUAL(g(f(b,f(e,g(f(c,g(a)))))),h). ** KEPT: 6899 (3768,4669) EQUAL(g(f(f(b,e),f(e,g(d)))),h). ---> New Demodulator: 6900 (6899) EQUAL(g(f(f(b,e),f(e,g(d)))),h). ** KEPT: 6901 (1581,4669) EQUAL(g(f(b,f(e,f(e,g(d))))),h). ---> New Demodulator: 6902 (6901) EQUAL(g(f(b,f(e,f(e,g(d))))),h). >>>> Starting back demodulation with: 6894 (6893) EQUAL(g(f(b,f(f(x,g(x)),g(d)))),h). >>>> Starting back demodulation with: 6896 (6895) EQUAL(g(f(b,f(f(g(x),x),g(d)))),h). >>>> Starting back demodulation with: 6898 (6897) EQUAL(g(f(b,f(e,g(f(c,g(a)))))),h). >>>> Starting back demodulation with: 6900 (6899) EQUAL(g(f(f(b,e),f(e,g(d)))),h). >>>> Starting back demodulation with: 6902 (6901) EQUAL(g(f(b,f(e,f(e,g(d))))),h). ** KEPT: 6903 (4669,2126) EQUAL(f(h,f(f(b,f(e,g(d))),a)),a). ---> New Demodulator: 6904 (6903) EQUAL(f(h,f(f(b,f(e,g(d))),a)),a). ** KEPT: 6905 (4669,2120) EQUAL(f(f(b,f(e,g(d))),f(h,a)),a). ---> New Demodulator: 6906 (6905) EQUAL(f(f(b,f(e,g(d))),f(h,a)),a). ** KEPT: 6907 (4669,1719) EQUAL(f(f(b,f(b,f(e,g(d)))),h),b). ---> New Demodulator: 6908 (6907) EQUAL(f(f(b,f(b,f(e,g(d)))),h),b). ** KEPT: 6909 (4669,3126) EQUAL(f(f(h,h),f(b,f(e,g(d)))),h). ---> New Demodulator: 6910 (6909) EQUAL(f(f(h,h),f(b,f(e,g(d)))),h). ** KEPT: 6911 (4669,1197) EQUAL(f(f(b,f(e,g(d))),f(h,d)),d). ---> New Demodulator: 6912 (6911) EQUAL(f(f(b,f(e,g(d))),f(h,d)),d). ** KEPT: 6913 (4669,1133) EQUAL(f(f(b,f(e,g(d))),f(h,h)),h). ---> New Demodulator: 6914 (6913) EQUAL(f(f(b,f(e,g(d))),f(h,h)),h). ** KEPT: 6915 (4669,1725) EQUAL(f(f(b,h),f(b,f(e,g(d)))),b). ---> New Demodulator: 6916 (6915) EQUAL(f(f(b,h),f(b,f(e,g(d)))),b). ** KEPT: 6917 (4669,526) EQUAL(f(f(a,f(b,f(e,g(d)))),h),a). ---> New Demodulator: 6918 (6917) EQUAL(f(f(a,f(b,f(e,g(d)))),h),a). ** KEPT: 6919 (4669,520) EQUAL(f(f(a,h),f(b,f(e,g(d)))),a). ---> New Demodulator: 6920 (6919) EQUAL(f(f(a,h),f(b,f(e,g(d)))),a). ** KEPT: 6921 (4669,260) EQUAL(f(h,f(f(b,f(e,g(d))),b)),b). ---> New Demodulator: 6922 (6921) EQUAL(f(h,f(f(b,f(e,g(d))),b)),b). ** KEPT: 6923 (4669,113) EQUAL(f(f(d,f(b,f(e,g(d)))),h),d). ---> New Demodulator: 6924 (6923) EQUAL(f(f(d,f(b,f(e,g(d)))),h),d). ** KEPT: 6925 (4669,105) EQUAL(f(f(d,h),f(b,f(e,g(d)))),d). ---> New Demodulator: 6926 (6925) EQUAL(f(f(d,h),f(b,f(e,g(d)))),d). >>>> Starting back demodulation with: 6904 (6903) EQUAL(f(h,f(f(b,f(e,g(d))),a)),a). >>>> Starting back demodulation with: 6906 (6905) EQUAL(f(f(b,f(e,g(d))),f(h,a)),a). >>>> Starting back demodulation with: 6908 (6907) EQUAL(f(f(b,f(b,f(e,g(d)))),h),b). >>>> Starting back demodulation with: 6910 (6909) EQUAL(f(f(h,h),f(b,f(e,g(d)))),h). >>>> Starting back demodulation with: 6912 (6911) EQUAL(f(f(b,f(e,g(d))),f(h,d)),d). >>>> Starting back demodulation with: 6914 (6913) EQUAL(f(f(b,f(e,g(d))),f(h,h)),h). >>>> Starting back demodulation with: 6916 (6915) EQUAL(f(f(b,h),f(b,f(e,g(d)))),b). >>>> Starting back demodulation with: 6918 (6917) EQUAL(f(f(a,f(b,f(e,g(d)))),h),a). >>>> Starting back demodulation with: 6920 (6919) EQUAL(f(f(a,h),f(b,f(e,g(d)))),a). >>>> Starting back demodulation with: 6922 (6921) EQUAL(f(h,f(f(b,f(e,g(d))),b)),b). >>>> Starting back demodulation with: 6924 (6923) EQUAL(f(f(d,f(b,f(e,g(d)))),h),d). >>>> Starting back demodulation with: 6926 (6925) EQUAL(f(f(d,h),f(b,f(e,g(d)))),d). new given clause: 4773 (4206,2490) EQUAL(f(f(e,a),d),f(a,d)). ** KEPT: 6927 (8,4773) EQUAL(f(f(e,a),f(c,g(a))),f(a,d)). ** KEPT: 6928 (131,4773) EQUAL(f(f(f(e,a),k),h),f(a,d)). ** KEPT: 6929 (8,4773) EQUAL(f(a,f(c,g(a))),f(f(e,a),d)). ** KEPT: 6930 (2399,4773) EQUAL(f(a,f(d,e)),f(f(e,a),d)). ** KEPT: 6931 (131,4773) EQUAL(f(f(a,k),h),f(f(e,a),d)). ** KEPT: 6932 (4773,1175) EQUAL(f(g(f(e,a)),f(a,d)),d). ---> New Demodulator: 6933 (6932) EQUAL(f(g(f(e,a)),f(a,d)),d). ** KEPT: 6934 (4773,5) EQUAL(f(f(e,a),f(d,x)),f(f(a,d),x)). ** KEPT: 6935 (4773,1175) EQUAL(f(g(a),f(f(e,a),d)),d). ---> New Demodulator: 6936 (6935) EQUAL(f(g(a),f(f(e,a),d)),d). ** KEPT: 6937 (4773,5) EQUAL(f(f(f(e,a),d),x),f(a,f(d,x))). >>>> Starting back demodulation with: 6933 (6932) EQUAL(f(g(f(e,a)),f(a,d)),d). >>>> Starting back demodulation with: 6936 (6935) EQUAL(f(g(a),f(f(e,a),d)),d). new given clause: 4774 (3608,2490) EQUAL(f(f(e,b),d),f(b,d)). ** KEPT: 6938 (8,4774) EQUAL(f(f(e,b),f(c,g(a))),f(b,d)). ** KEPT: 6939 (131,4774) EQUAL(f(f(f(e,b),k),h),f(b,d)). ** KEPT: 6940 (8,4774) EQUAL(f(b,f(c,g(a))),f(f(e,b),d)). ** KEPT: 6941 (131,4774) EQUAL(f(f(b,k),h),f(f(e,b),d)). ** KEPT: 6942 (4774,1175) EQUAL(f(g(f(e,b)),f(b,d)),d). ---> New Demodulator: 6943 (6942) EQUAL(f(g(f(e,b)),f(b,d)),d). ** KEPT: 6944 (4774,5) EQUAL(f(f(e,b),f(d,x)),f(f(b,d),x)). ** KEPT: 6945 (4774,1175) EQUAL(f(g(b),f(f(e,b),d)),d). ---> New Demodulator: 6946 (6945) EQUAL(f(g(b),f(f(e,b),d)),d). ** KEPT: 6947 (4774,5) EQUAL(f(f(f(e,b),d),x),f(b,f(d,x))). >>>> Starting back demodulation with: 6943 (6942) EQUAL(f(g(f(e,b)),f(b,d)),d). >>>> Starting back demodulation with: 6946 (6945) EQUAL(f(g(b),f(f(e,b),d)),d). new given clause: 4776 (2397,2490) EQUAL(f(f(e,d),d),f(d,d)). ** KEPT: 6948 (8,4776) EQUAL(f(f(e,d),f(c,g(a))),f(d,d)). ** KEPT: 6949 (131,4776) EQUAL(f(f(f(e,d),k),h),f(d,d)). ** KEPT: 6950 (8,4776) EQUAL(f(f(c,g(a)),d),f(f(e,d),d)). ** KEPT: 6951 (8,4776) EQUAL(f(d,f(c,g(a))),f(f(e,d),d)). ** KEPT: 6952 (2400,4776) EQUAL(f(d,f(d,e)),f(f(e,d),d)). ** KEPT: 6953 (131,4776) EQUAL(f(f(d,k),h),f(f(e,d),d)). ** KEPT: 6954 (4776,1175) EQUAL(f(g(f(e,d)),f(d,d)),d). ---> New Demodulator: 6955 (6954) EQUAL(f(g(f(e,d)),f(d,d)),d). ** KEPT: 6956 (4776,5) EQUAL(f(f(x,f(e,d)),d),f(x,f(d,d))). ** KEPT: 6957 (4776,5) EQUAL(f(f(e,d),f(d,x)),f(f(d,d),x)). ** KEPT: 6958 (4776,1175) EQUAL(f(g(d),f(f(e,d),d)),d). ---> New Demodulator: 6959 (6958) EQUAL(f(g(d),f(f(e,d),d)),d). ** KEPT: 6960 (4776,5) EQUAL(f(x,f(f(e,d),d)),f(f(x,d),d)). ** KEPT: 6961 (4776,5) EQUAL(f(f(f(e,d),d),x),f(d,f(d,x))). >>>> Starting back demodulation with: 6955 (6954) EQUAL(f(g(f(e,d)),f(d,d)),d). >>>> Starting back demodulation with: 6959 (6958) EQUAL(f(g(d),f(f(e,d),d)),d). new given clause: 4777 (1112,2490) EQUAL(f(f(e,h),d),f(h,d)). ** KEPT: 6962 (8,4777) EQUAL(f(f(e,h),f(c,g(a))),f(h,d)). ** KEPT: 6963 (131,4777) EQUAL(f(f(f(e,h),k),h),f(h,d)). ** KEPT: 6964 (9,4777) EQUAL(f(f(d,g(b)),d),f(f(e,h),d)). ** KEPT: 6965 (8,4777) EQUAL(f(h,f(c,g(a))),f(f(e,h),d)). ** KEPT: 6966 (2989,4777) EQUAL(f(h,f(e,d)),f(f(e,h),d)). ** KEPT: 6967 (2490,4777) EQUAL(f(f(h,e),d),f(f(e,h),d)). ** KEPT: 6968 (131,4777) EQUAL(f(f(h,k),h),f(f(e,h),d)). ** KEPT: 6969 (4777,1175) EQUAL(f(g(f(e,h)),f(h,d)),d). ---> New Demodulator: 6970 (6969) EQUAL(f(g(f(e,h)),f(h,d)),d). ** KEPT: 6971 (4777,5) EQUAL(f(f(e,h),f(d,x)),f(f(h,d),x)). ** KEPT: 6972 (4777,3118) EQUAL(f(f(f(e,h),d),g(d)),h). ---> New Demodulator: 6973 (6972) EQUAL(f(f(f(e,h),d),g(d)),h). ** KEPT: 6974 (4777,1175) EQUAL(f(g(h),f(f(e,h),d)),d). ---> New Demodulator: 6975 (6974) EQUAL(f(g(h),f(f(e,h),d)),d). ** KEPT: 6976 (4777,5) EQUAL(f(f(f(e,h),d),x),f(h,f(d,x))). >>>> Starting back demodulation with: 6970 (6969) EQUAL(f(g(f(e,h)),f(h,d)),d). >>>> Starting back demodulation with: 6973 (6972) EQUAL(f(f(f(e,h),d),g(d)),h). >>>> Starting back demodulation with: 6975 (6974) EQUAL(f(g(h),f(f(e,h),d)),d). new given clause: 4782 (5,2490) EQUAL(f(x,f(e,d)),f(x,d)). ** KEPT: 6977 (2489,4782) EQUAL(f(x,f(c,g(a))),f(x,d)). ** KEPT: 6978 (3126,4782) EQUAL(f(f(h,g(f(e,d))),d),h). ---> New Demodulator: 6979 (6978) EQUAL(f(f(h,g(f(e,d))),d),h). ** KEPT: 6980 (1725,4782) EQUAL(f(f(b,g(f(e,d))),d),b). ---> New Demodulator: 6981 (6980) EQUAL(f(f(b,g(f(e,d))),d),b). ** KEPT: 6982 (520,4782) EQUAL(f(f(a,g(f(e,d))),d),a). ---> New Demodulator: 6983 (6982) EQUAL(f(f(a,g(f(e,d))),d),a). ** KEPT: 6984 (105,4782) EQUAL(f(f(d,g(f(e,d))),d),d). ---> New Demodulator: 6985 (6984) EQUAL(f(f(d,g(f(e,d))),d),d). ** KEPT: 6986 (5,4782) EQUAL(f(x,f(y,f(e,d))),f(f(x,y),d)). ** KEPT: 6987 (3,4782) EQUAL(f(g(f(e,d)),d),e). ---> New Demodulator: 6988 (6987) EQUAL(f(g(f(e,d)),d),e). ** KEPT: 6989 (8,4782) EQUAL(f(x,f(c,g(a))),f(x,f(e,d))). ** KEPT: 6990 (3397,4782) EQUAL(f(k,f(e,d)),f(f(d,b),e)). ** KEPT: 6991 (2853,4782) EQUAL(f(f(k,e),f(e,d)),f(d,b)). ** KEPT: 6992 (2771,4782) EQUAL(f(f(e,k),f(e,d)),f(k,d)). ** KEPT: 6993 (4821,4782) EQUAL(f(f(g(d),e),f(e,d)),e). ---> New Demodulator: 6994 (6993) EQUAL(f(f(g(d),e),f(e,d)),e). ** KEPT: 6995 (2174,4782) EQUAL(f(g(f(d,g(a))),f(e,d)),a). ---> New Demodulator: 6996 (6995) EQUAL(f(g(f(d,g(a))),f(e,d)),a). ** KEPT: 6997 (1217,4782) EQUAL(f(g(f(g(x),x)),f(e,d)),d). ---> New Demodulator: 6998 (6997) EQUAL(f(g(f(g(x),x)),f(e,d)),d). ** KEPT: 6999 (1215,4782) EQUAL(f(g(f(x,g(x))),f(e,d)),d). ---> New Demodulator: 7000 (6999) EQUAL(f(g(f(x,g(x))),f(e,d)),d). ** KEPT: 7001 (3126,4782) EQUAL(f(f(h,g(d)),f(e,d)),h). ---> New Demodulator: 7002 (7001) EQUAL(f(f(h,g(d)),f(e,d)),h). ** KEPT: 7003 (2851,4782) EQUAL(f(g(f(k,e)),f(e,d)),h). ---> New Demodulator: 7004 (7003) EQUAL(f(g(f(k,e)),f(e,d)),h). ** KEPT: 7005 (1052,4782) EQUAL(f(f(e,k),f(e,d)),f(d,b)). ** KEPT: 7006 (2667,4782) EQUAL(f(f(g(h),e),f(e,d)),b). ---> New Demodulator: 7007 (7006) EQUAL(f(f(g(h),e),f(e,d)),b). ** KEPT: 7008 (2663,4782) EQUAL(f(f(g(k),e),f(e,d)),h). ---> New Demodulator: 7009 (7008) EQUAL(f(f(g(k),e),f(e,d)),h). ** KEPT: 7010 (2633,4782) EQUAL(f(f(e,g(d)),f(e,d)),e). ---> New Demodulator: 7011 (7010) EQUAL(f(f(e,g(d)),f(e,d)),e). ** KEPT: 7012 (2641,4782) EQUAL(f(f(e,e),f(e,d)),d). ---> New Demodulator: 7013 (7012) EQUAL(f(f(e,e),f(e,d)),d). ** KEPT: 7014 (1725,4782) EQUAL(f(f(b,g(d)),f(e,d)),b). ---> New Demodulator: 7015 (7014) EQUAL(f(f(b,g(d)),f(e,d)),b). ** KEPT: 7016 (520,4782) EQUAL(f(f(a,g(d)),f(e,d)),a). ---> New Demodulator: 7017 (7016) EQUAL(f(f(a,g(d)),f(e,d)),a). ** KEPT: 7018 (5,4782) EQUAL(f(f(x,y),f(e,d)),f(x,f(y,d))). 6977 back subsumes: 6240 (2489,3996) EQUAL(f(c,f(c,g(a))),f(c,d)). 6977 back subsumes: 5348 (2489,2989) EQUAL(f(h,f(c,g(a))),f(h,d)). 6977 back subsumes: 3762 (2489,1581) EQUAL(f(b,f(c,g(a))),f(b,d)). 6977 back subsumes: 1897 (254,483) EQUAL(f(a,f(c,g(a))),f(a,d)). 6977 back subsumes: 857 (254,92) EQUAL(f(d,f(c,g(a))),f(d,d)). >>>> Starting back demodulation with: 6979 (6978) EQUAL(f(f(h,g(f(e,d))),d),h). >>>> Starting back demodulation with: 6981 (6980) EQUAL(f(f(b,g(f(e,d))),d),b). >>>> Starting back demodulation with: 6983 (6982) EQUAL(f(f(a,g(f(e,d))),d),a). >>>> Starting back demodulation with: 6985 (6984) EQUAL(f(f(d,g(f(e,d))),d),d). >>>> Starting back demodulation with: 6988 (6987) EQUAL(f(g(f(e,d)),d),e). >>>> Starting back demodulation with: 6994 (6993) EQUAL(f(f(g(d),e),f(e,d)),e). >>>> Starting back demodulation with: 6996 (6995) EQUAL(f(g(f(d,g(a))),f(e,d)),a). >>>> Starting back demodulation with: 6998 (6997) EQUAL(f(g(f(g(x),x)),f(e,d)),d). >>>> Starting back demodulation with: 7000 (6999) EQUAL(f(g(f(x,g(x))),f(e,d)),d). >>>> Starting back demodulation with: 7002 (7001) EQUAL(f(f(h,g(d)),f(e,d)),h). >>>> Starting back demodulation with: 7004 (7003) EQUAL(f(g(f(k,e)),f(e,d)),h). >>>> Starting back demodulation with: 7007 (7006) EQUAL(f(f(g(h),e),f(e,d)),b). >>>> Starting back demodulation with: 7009 (7008) EQUAL(f(f(g(k),e),f(e,d)),h). >>>> Starting back demodulation with: 7011 (7010) EQUAL(f(f(e,g(d)),f(e,d)),e). >>>> Starting back demodulation with: 7013 (7012) EQUAL(f(f(e,e),f(e,d)),d). >>>> Starting back demodulation with: 7015 (7014) EQUAL(f(f(b,g(d)),f(e,d)),b). >>>> Starting back demodulation with: 7017 (7016) EQUAL(f(f(a,g(d)),f(e,d)),a). ** KEPT: 7019 (4782,5) EQUAL(f(x,f(f(e,d),y)),f(f(x,d),y)). ** KEPT: 7020 (4782,1749) EQUAL(f(d,g(f(g(b),f(e,d)))),b). ---> New Demodulator: 7021 (7020) EQUAL(f(d,g(f(g(b),f(e,d)))),b). ** KEPT: 7022 (4782,1249) EQUAL(f(d,g(f(g(a),f(e,d)))),a). ---> New Demodulator: 7023 (7022) EQUAL(f(d,g(f(g(a),f(e,d)))),a). ** KEPT: 7024 (4782,2767) EQUAL(f(e,f(k,f(e,d))),f(d,b)). ** KEPT: 7025 (4782,5) EQUAL(f(f(x,f(e,d)),y),f(x,f(d,y))). 7019 back subsumes: 6960 (4776,5) EQUAL(f(x,f(f(e,d),d)),f(f(x,d),d)). 7019 back subsumes: 6416 (4374,5) EQUAL(f(x,f(f(e,d),a)),f(f(x,d),a)). 7019 back subsumes: 5015 (2786,5) EQUAL(f(x,f(f(e,d),h)),f(f(x,d),h)). 7019 back subsumes: 4745 (2407,5) EQUAL(f(x,f(f(e,d),b)),f(f(x,d),b)). >>>> Starting back demodulation with: 7021 (7020) EQUAL(f(d,g(f(g(b),f(e,d)))),b). >>>> Starting back demodulation with: 7023 (7022) EQUAL(f(d,g(f(g(a),f(e,d)))),a). 7025 back subsumes: 6956 (4776,5) EQUAL(f(f(x,f(e,d)),d),f(x,f(d,d))). 7025 back subsumes: 6411 (4374,5) EQUAL(f(f(x,f(e,d)),a),f(x,f(d,a))). 7025 back subsumes: 5010 (2786,5) EQUAL(f(f(x,f(e,d)),h),f(x,f(d,h))). 7025 back subsumes: 4741 (2407,5) EQUAL(f(f(x,f(e,d)),b),f(x,f(d,b))). new given clause: 6987 (3,4782) EQUAL(f(g(f(e,d)),d),e). ** KEPT: 7026 (2489,6987) EQUAL(f(g(f(c,g(a))),d),e). ---> New Demodulator: 7027 (7026) EQUAL(f(g(f(c,g(a))),d),e). ** KEPT: 7028 (8,6987) EQUAL(f(g(f(e,d)),f(c,g(a))),e). ---> New Demodulator: 7029 (7028) EQUAL(f(g(f(e,d)),f(c,g(a))),e). ** KEPT: 7030 (2490,6987) EQUAL(f(f(g(f(e,d)),e),d),e). ---> New Demodulator: 7031 (7030) EQUAL(f(f(g(f(e,d)),e),d),e). >>>> Starting back demodulation with: 7027 (7026) EQUAL(f(g(f(c,g(a))),d),e). >> back demodulating: 2739 (8,2685) EQUAL(f(e,f(g(f(c,g(a))),d)),e). >> back demodulating: 2740 (2739) EQUAL(f(e,f(g(f(c,g(a))),d)),e). >>>> Starting back demodulation with: 7029 (7028) EQUAL(f(g(f(e,d)),f(c,g(a))),e). >>>> Starting back demodulation with: 7031 (7030) EQUAL(f(f(g(f(e,d)),e),d),e). ** KEPT: 7032 (6987,5) EQUAL(f(f(x,g(f(e,d))),d),f(x,e)). ** KEPT: 7033 (6987,5) EQUAL(f(g(f(e,d)),f(d,x)),f(e,x)). new given clause: 4805 (2641,2490) EQUAL(f(f(f(e,e),e),d),d). ** KEPT: 7034 (4,4805) EQUAL(f(f(f(f(x,g(x)),e),e),d),d). ---> New Demodulator: 7035 (7034) EQUAL(f(f(f(f(x,g(x)),e),e),d),d). ** KEPT: 7036 (3,4805) EQUAL(f(f(f(f(g(x),x),e),e),d),d). ---> New Demodulator: 7037 (7036) EQUAL(f(f(f(f(g(x),x),e),e),d),d). ** KEPT: 7038 (4,4805) EQUAL(f(f(f(e,f(x,g(x))),e),d),d). ---> New Demodulator: 7039 (7038) EQUAL(f(f(f(e,f(x,g(x))),e),d),d). ** KEPT: 7040 (3,4805) EQUAL(f(f(f(e,f(g(x),x)),e),d),d). ---> New Demodulator: 7041 (7040) EQUAL(f(f(f(e,f(g(x),x)),e),d),d). ** KEPT: 7042 (4,4805) EQUAL(f(f(f(e,e),f(x,g(x))),d),d). ---> New Demodulator: 7043 (7042) EQUAL(f(f(f(e,e),f(x,g(x))),d),d). ** KEPT: 7044 (3,4805) EQUAL(f(f(f(e,e),f(g(x),x)),d),d). ---> New Demodulator: 7045 (7044) EQUAL(f(f(f(e,e),f(g(x),x)),d),d). ** KEPT: 7046 (5,4805) EQUAL(f(f(e,f(e,e)),d),d). ---> New Demodulator: 7047 (7046) EQUAL(f(f(e,f(e,e)),d),d). ** KEPT: 7048 (8,4805) EQUAL(f(f(f(e,e),e),f(c,g(a))),d). ---> New Demodulator: 7049 (7048) EQUAL(f(f(f(e,e),e),f(c,g(a))),d). ** KEPT: 7050 (4782,4805) EQUAL(f(f(f(e,e),e),f(e,d)),d). ---> New Demodulator: 7051 (7050) EQUAL(f(f(f(e,e),e),f(e,d)),d). ** KEPT: 7052 (2490,4805) EQUAL(f(f(f(f(e,e),e),e),d),d). ---> New Demodulator: 7053 (7052) EQUAL(f(f(f(f(e,e),e),e),d),d). ** KEPT: 7054 (131,4805) EQUAL(f(f(f(f(e,e),e),k),h),d). ---> New Demodulator: 7055 (7054) EQUAL(f(f(f(f(e,e),e),k),h),d). >>>> Starting back demodulation with: 7035 (7034) EQUAL(f(f(f(f(x,g(x)),e),e),d),d). >>>> Starting back demodulation with: 7037 (7036) EQUAL(f(f(f(f(g(x),x),e),e),d),d). >>>> Starting back demodulation with: 7039 (7038) EQUAL(f(f(f(e,f(x,g(x))),e),d),d). >>>> Starting back demodulation with: 7041 (7040) EQUAL(f(f(f(e,f(g(x),x)),e),d),d). >>>> Starting back demodulation with: 7043 (7042) EQUAL(f(f(f(e,e),f(x,g(x))),d),d). >>>> Starting back demodulation with: 7045 (7044) EQUAL(f(f(f(e,e),f(g(x),x)),d),d). >>>> Starting back demodulation with: 7047 (7046) EQUAL(f(f(e,f(e,e)),d),d). >>>> Starting back demodulation with: 7049 (7048) EQUAL(f(f(f(e,e),e),f(c,g(a))),d). >>>> Starting back demodulation with: 7051 (7050) EQUAL(f(f(f(e,e),e),f(e,d)),d). >>>> Starting back demodulation with: 7053 (7052) EQUAL(f(f(f(f(e,e),e),e),d),d). >>>> Starting back demodulation with: 7055 (7054) EQUAL(f(f(f(f(e,e),e),k),h),d). ** KEPT: 7056 (4805,1175) EQUAL(f(g(f(f(e,e),e)),d),d). ---> New Demodulator: 7057 (7056) EQUAL(f(g(f(f(e,e),e)),d),d). ** KEPT: 7058 (4805,5) EQUAL(f(f(x,f(f(e,e),e)),d),f(x,d)). ** KEPT: 7059 (4805,5) EQUAL(f(f(f(e,e),e),f(d,x)),f(d,x)). >>>> Starting back demodulation with: 7057 (7056) EQUAL(f(g(f(f(e,e),e)),d),d). new given clause: 4855 (4821,1175) EQUAL(f(g(f(g(d),e)),e),d). ** KEPT: 7060 (8,4855) EQUAL(f(g(f(g(f(c,g(a))),e)),e),d). ---> New Demodulator: 7061 (7060) EQUAL(f(g(f(g(f(c,g(a))),e)),e),d). ** KEPT: 7062 (4,4855) EQUAL(f(g(f(g(d),f(x,g(x)))),e),d). ---> New Demodulator: 7063 (7062) EQUAL(f(g(f(g(d),f(x,g(x)))),e),d). ** KEPT: 7064 (3,4855) EQUAL(f(g(f(g(d),f(g(x),x))),e),d). ---> New Demodulator: 7065 (7064) EQUAL(f(g(f(g(d),f(g(x),x))),e),d). ** KEPT: 7066 (4,4855) EQUAL(f(g(f(g(d),e)),f(x,g(x))),d). ---> New Demodulator: 7067 (7066) EQUAL(f(g(f(g(d),e)),f(x,g(x))),d). ** KEPT: 7068 (3,4855) EQUAL(f(g(f(g(d),e)),f(g(x),x)),d). ---> New Demodulator: 7069 (7068) EQUAL(f(g(f(g(d),e)),f(g(x),x)),d). ** KEPT: 7070 (2,4855) EQUAL(g(f(g(d),e)),d). ---> New Demodulator: 7071 (7070) EQUAL(g(f(g(d),e)),d). ** KEPT: 7072 (8,4855,7071) EQUAL(f(c,g(a)),f(d,e)). >>>> Starting back demodulation with: 7061 (7060) EQUAL(f(g(f(g(f(c,g(a))),e)),e),d). >>>> Starting back demodulation with: 7063 (7062) EQUAL(f(g(f(g(d),f(x,g(x)))),e),d). >>>> Starting back demodulation with: 7065 (7064) EQUAL(f(g(f(g(d),f(g(x),x))),e),d). >>>> Starting back demodulation with: 7067 (7066) EQUAL(f(g(f(g(d),e)),f(x,g(x))),d). >>>> Starting back demodulation with: 7069 (7068) EQUAL(f(g(f(g(d),e)),f(g(x),x)),d). >>>> Starting back demodulation with: 7071 (7070) EQUAL(g(f(g(d),e)),d). >> back demodulating: 4855 (4821,1175) EQUAL(f(g(f(g(d),e)),e),d). >> back demodulating: 4856 (4855) EQUAL(f(g(f(g(d),e)),e),d). >> back demodulating: 7066 (4,4855) EQUAL(f(g(f(g(d),e)),f(x,g(x))),d). >> back demodulating: 7067 (7066) EQUAL(f(g(f(g(d),e)),f(x,g(x))),d). >> back demodulating: 7068 (3,4855) EQUAL(f(g(f(g(d),e)),f(g(x),x)),d). >> back demodulating: 7069 (7068) EQUAL(f(g(f(g(d),e)),f(g(x),x)),d). ** KEPT: 7073 (4855,6987,7071) EQUAL(f(g(f(e,d)),f(d,e)),e). ---> New Demodulator: 7074 (7073) EQUAL(f(g(f(e,d)),f(d,e)),e). ** KEPT: 7075 (4855,4821,7071) EQUAL(f(f(g(d),e),f(d,e)),e). ---> New Demodulator: 7076 (7075) EQUAL(f(f(g(d),e),f(d,e)),e). ** KEPT: 7077 (4855,4805,7071) EQUAL(f(f(f(e,e),e),f(d,e)),d). ---> New Demodulator: 7078 (7077) EQUAL(f(f(f(e,e),e),f(d,e)),d). ** KEPT: 7079 (4855,4782,7071) EQUAL(f(x,f(d,e)),f(x,f(e,d))). ** KEPT: 7080 (4855,4777,7071) EQUAL(f(h,f(d,e)),f(f(e,h),d)). ** KEPT: 7081 (4855,4777,7071) EQUAL(f(f(e,h),f(d,e)),f(h,d)). ** KEPT: 7082 (4855,4776,7071) EQUAL(f(f(e,d),f(d,e)),f(d,d)). ** KEPT: 7083 (4855,4773,7071) EQUAL(f(f(e,a),f(d,e)),f(a,d)). ** KEPT: 7084 (4855,2853,7071) EQUAL(f(f(k,e),f(d,e)),f(d,b)). ** KEPT: 7085 (4855,2851,7071) EQUAL(f(g(f(k,e)),f(d,e)),h). ---> New Demodulator: 7086 (7085) EQUAL(f(g(f(k,e)),f(d,e)),h). ** KEPT: 7087 (4855,2771,7071) EQUAL(f(k,f(d,e)),f(f(e,k),d)). ** KEPT: 7088 (4855,2771,7071) EQUAL(f(f(e,k),f(d,e)),f(k,d)). ** KEPT: 7089 (4855,2685,7071) EQUAL(f(e,f(g(d),f(d,e))),e). ---> New Demodulator: 7090 (7089) EQUAL(f(e,f(g(d),f(d,e))),e). ** KEPT: 7091 (4855,2667,7071) EQUAL(f(f(g(h),e),f(d,e)),b). ---> New Demodulator: 7092 (7091) EQUAL(f(f(g(h),e),f(d,e)),b). ** KEPT: 7093 (4855,2663,7071) EQUAL(f(f(g(k),e),f(d,e)),h). ---> New Demodulator: 7094 (7093) EQUAL(f(f(g(k),e),f(d,e)),h). ** KEPT: 7095 (4855,2659,7071) EQUAL(f(g(f(e,e)),f(d,e)),d). ---> New Demodulator: 7096 (7095) EQUAL(f(g(f(e,e)),f(d,e)),d). ** KEPT: 7097 (4855,2641,7071) EQUAL(f(f(e,e),f(d,e)),d). ---> New Demodulator: 7098 (7097) EQUAL(f(f(e,e),f(d,e)),d). ** KEPT: 7099 (4855,2633,7071) EQUAL(f(f(e,g(d)),f(d,e)),e). ---> New Demodulator: 7100 (7099) EQUAL(f(f(e,g(d)),f(d,e)),e). ** KEPT: 7101 (4855,2529,7071) EQUAL(f(k,f(d,e)),f(f(e,d),b)). ** KEPT: 7102 (4855,2490,7071) EQUAL(f(f(x,e),d),f(x,f(d,e))). ** KEPT: 7103 (4855,2174,7071) EQUAL(f(g(f(d,g(a))),f(d,e)),a). ---> New Demodulator: 7104 (7103) EQUAL(f(g(f(d,g(a))),f(d,e)),a). ** KEPT: 7105 (4855,1749,7071) EQUAL(f(d,g(f(g(b),f(d,e)))),b). ---> New Demodulator: 7106 (7105) EQUAL(f(d,g(f(g(b),f(d,e)))),b). ** KEPT: 7107 (4855,1447,7071) EQUAL(f(k,f(d,e)),f(f(d,e),b)). ** KEPT: 7108 (4855,1249,7071) EQUAL(f(d,g(f(g(a),f(d,e)))),a). ---> New Demodulator: 7109 (7108) EQUAL(f(d,g(f(g(a),f(d,e)))),a). ** KEPT: 7110 (4855,1217,7071) EQUAL(f(g(f(g(x),x)),f(d,e)),d). ---> New Demodulator: 7111 (7110) EQUAL(f(g(f(g(x),x)),f(d,e)),d). ** KEPT: 7112 (4855,1215,7071) EQUAL(f(g(f(x,g(x))),f(d,e)),d). ---> New Demodulator: 7113 (7112) EQUAL(f(g(f(x,g(x))),f(d,e)),d). ** KEPT: 7114 (4855,1197,7071) EQUAL(f(x,f(g(x),f(d,e))),d). ---> New Demodulator: 7115 (7114) EQUAL(f(x,f(g(x),f(d,e))),d). ** KEPT: 7116 (4855,1157,7071) EQUAL(f(g(f(e,k)),f(d,e)),h). ---> New Demodulator: 7117 (7116) EQUAL(f(g(f(e,k)),f(d,e)),h). ** KEPT: 7118 (4855,1061,7071) EQUAL(f(g(k),f(d,e)),h). ---> New Demodulator: 7119 (7118) EQUAL(f(g(k),f(d,e)),h). ** KEPT: 7120 (4855,1052,7071) EQUAL(f(f(e,k),f(d,e)),f(d,b)). ** KEPT: 7121 (4855,869,7071) EQUAL(f(k,f(d,e)),f(d,f(e,b))). ** KEPT: 7122 (4855,800,7071) EQUAL(f(g(f(h,e)),f(d,e)),b). ---> New Demodulator: 7123 (7122) EQUAL(f(g(f(h,e)),f(d,e)),b). ** KEPT: 7124 (4855,750,7071) EQUAL(f(k,f(d,e)),f(h,f(b,b))). ** KEPT: 7125 (4855,721,7071) EQUAL(f(f(g(d),k),f(d,e)),b). ---> New Demodulator: 7126 (7125) EQUAL(f(f(g(d),k),f(d,e)),b). ** KEPT: 7127 (4855,705,7071) EQUAL(f(g(f(e,h)),f(d,e)),b). ---> New Demodulator: 7128 (7127) EQUAL(f(g(f(e,h)),f(d,e)),b). ** KEPT: 7129 (4855,667,7071) EQUAL(f(k,f(d,e)),f(d,b)). ** KEPT: 7130 (4855,4853,7071) EQUAL(f(g(f(d,e)),f(e,d)),e). ---> New Demodulator: 7131 (7130) EQUAL(f(g(f(d,e)),f(e,d)),e). ** KEPT: 7132 (4855,3047,7071) EQUAL(g(f(g(f(d,e)),f(h,e))),b). ---> New Demodulator: 7133 (7132) EQUAL(g(f(g(f(d,e)),f(h,e))),b). ** KEPT: 7134 (4855,2685,7071) EQUAL(f(e,f(g(f(d,e)),d)),e). ---> New Demodulator: 7135 (7134) EQUAL(f(e,f(g(f(d,e)),d)),e). ** KEPT: 7136 (4855,2148,7071) EQUAL(f(a,g(f(g(f(d,e)),a))),d). ---> New Demodulator: 7137 (7136) EQUAL(f(a,g(f(g(f(d,e)),a))),d). ** KEPT: 7138 (4855,4821,7071) EQUAL(f(f(g(f(d,e)),e),d),e). ---> New Demodulator: 7139 (7138) EQUAL(f(f(g(f(d,e)),e),d),e). ** KEPT: 7140 (4855,2830,7071) EQUAL(g(f(f(g(f(d,e)),e),h)),b). ---> New Demodulator: 7141 (7140) EQUAL(g(f(f(g(f(d,e)),e),h)),b). ** KEPT: 7142 (4855,3209,7071) EQUAL(f(g(f(h,g(f(d,e)))),h),d). ---> New Demodulator: 7143 (7142) EQUAL(f(g(f(h,g(f(d,e)))),h),d). ** KEPT: 7144 (4855,3134,7071) EQUAL(f(f(h,g(f(d,e))),k),e). ---> New Demodulator: 7145 (7144) EQUAL(f(f(h,g(f(d,e))),k),e). ** KEPT: 7146 (4855,2633,7071) EQUAL(f(f(e,g(f(d,e))),d),e). ---> New Demodulator: 7147 (7146) EQUAL(f(f(e,g(f(d,e))),d),e). ** KEPT: 7148 (4855,2487,7071) EQUAL(g(f(e,g(f(d,e)))),d). ---> New Demodulator: 7149 (7148) EQUAL(g(f(e,g(f(d,e)))),d). ** KEPT: 7150 (4855,4669,7071) EQUAL(g(f(b,f(e,g(f(d,e))))),h). ---> New Demodulator: 7151 (7150) EQUAL(g(f(b,f(e,g(f(d,e))))),h). ** KEPT: 7152 (4855,4635,7071) EQUAL(g(f(b,g(f(d,e)))),h). ---> New Demodulator: 7153 (7152) EQUAL(g(f(b,g(f(d,e)))),h). ** KEPT: 7154 (4855,2296,7071) EQUAL(f(f(b,g(f(d,e))),h),e). ---> New Demodulator: 7155 (7154) EQUAL(f(f(b,g(f(d,e))),h),e). ** KEPT: 7156 (4855,3112,7071) EQUAL(f(h,f(g(f(d,e)),k)),e). ---> New Demodulator: 7157 (7156) EQUAL(f(h,f(g(f(d,e)),k)),e). ** KEPT: 7158 (4855,2983,7071) EQUAL(g(f(g(f(d,e)),k)),h). ---> New Demodulator: 7159 (7158) EQUAL(g(f(g(f(d,e)),k)),h). ** KEPT: 7160 (4855,1027,7071) EQUAL(f(f(g(f(d,e)),k),h),e). ---> New Demodulator: 7161 (7160) EQUAL(f(f(g(f(d,e)),k),h),e). ** KEPT: 7162 (4855,721,7071) EQUAL(f(f(g(f(d,e)),k),d),b). ---> New Demodulator: 7163 (7162) EQUAL(f(f(g(f(d,e)),k),d),b). ** KEPT: 7164 (4855,2290,7071) EQUAL(f(b,f(g(f(d,e)),h)),e). ---> New Demodulator: 7165 (7164) EQUAL(f(b,f(g(f(d,e)),h)),e). ** KEPT: 7166 (4855,2208,7071) EQUAL(g(f(g(f(d,e)),h)),b). ---> New Demodulator: 7167 (7166) EQUAL(g(f(g(f(d,e)),h)),b). ** KEPT: 7168 (4855,676,7071) EQUAL(f(f(g(f(d,e)),h),b),e). ---> New Demodulator: 7169 (7168) EQUAL(f(f(g(f(d,e)),h),b),e). ** KEPT: 7170 (4855,1231,7071) EQUAL(f(g(f(a,g(f(d,e)))),a),d). ---> New Demodulator: 7171 (7170) EQUAL(f(g(f(a,g(f(d,e)))),a),d). ** KEPT: 7172 (4855,306,7071) EQUAL(f(b,g(f(g(f(d,e)),b))),d). ---> New Demodulator: 7173 (7172) EQUAL(f(b,g(f(g(f(d,e)),b))),d). ** KEPT: 7174 (4855,294,7071) EQUAL(f(g(h),f(d,e)),b). ---> New Demodulator: 7175 (7174) EQUAL(f(g(h),f(d,e)),b). ** KEPT: 7176 (4855,292,7071) EQUAL(f(g(f(d,g(b))),f(d,e)),b). ---> New Demodulator: 7177 (7176) EQUAL(f(g(f(d,g(b))),f(d,e)),b). ** KEPT: 7178 (4855,2767,7071) EQUAL(f(e,f(k,f(d,e))),f(d,b)). ** KEPT: 7179 (4855,695,7071) EQUAL(f(g(d),f(k,f(d,e))),b). ---> New Demodulator: 7180 (7179) EQUAL(f(g(d),f(k,f(d,e))),b). ** KEPT: 7181 (4855,151,7071) EQUAL(f(f(k,f(d,e)),g(b)),d). ---> New Demodulator: 7182 (7181) EQUAL(f(f(k,f(d,e)),g(b)),d). ** KEPT: 7183 (4855,131,7071) EQUAL(f(f(x,k),h),f(x,f(d,e))). ** KEPT: 7184 (4855,72,7071) EQUAL(f(f(x,h),b),f(x,f(d,e))). ** KEPT: 7185 (4855,1175,7071) EQUAL(f(g(x),f(x,f(d,e))),d). ---> New Demodulator: 7186 (7185) EQUAL(f(g(x),f(x,f(d,e))),d). >>>> Starting back demodulation with: 7074 (7073) EQUAL(f(g(f(e,d)),f(d,e)),e). >>>> Starting back demodulation with: 7076 (7075) EQUAL(f(f(g(d),e),f(d,e)),e). >>>> Starting back demodulation with: 7078 (7077) EQUAL(f(f(f(e,e),e),f(d,e)),d). 7079 back subsumes: 5785 (1581,3763) EQUAL(f(b,f(d,e)),f(b,f(e,d))). 7079 back subsumes: 4726 (92,2400) EQUAL(f(d,f(d,e)),f(d,f(e,d))). 7079 back subsumes: 4707 (483,2399) EQUAL(f(a,f(d,e)),f(a,f(e,d))). >>>> Starting back demodulation with: 7086 (7085) EQUAL(f(g(f(k,e)),f(d,e)),h). >>>> Starting back demodulation with: 7090 (7089) EQUAL(f(e,f(g(d),f(d,e))),e). >>>> Starting back demodulation with: 7092 (7091) EQUAL(f(f(g(h),e),f(d,e)),b). >>>> Starting back demodulation with: 7094 (7093) EQUAL(f(f(g(k),e),f(d,e)),h). >>>> Starting back demodulation with: 7096 (7095) EQUAL(f(g(f(e,e)),f(d,e)),d). >>>> Starting back demodulation with: 7098 (7097) EQUAL(f(f(e,e),f(d,e)),d). >>>> Starting back demodulation with: 7100 (7099) EQUAL(f(f(e,g(d)),f(d,e)),e). >>>> Starting back demodulation with: 7104 (7103) EQUAL(f(g(f(d,g(a))),f(d,e)),a). >>>> Starting back demodulation with: 7106 (7105) EQUAL(f(d,g(f(g(b),f(d,e)))),b). >>>> Starting back demodulation with: 7109 (7108) EQUAL(f(d,g(f(g(a),f(d,e)))),a). >>>> Starting back demodulation with: 7111 (7110) EQUAL(f(g(f(g(x),x)),f(d,e)),d). >>>> Starting back demodulation with: 7113 (7112) EQUAL(f(g(f(x,g(x))),f(d,e)),d). >>>> Starting back demodulation with: 7115 (7114) EQUAL(f(x,f(g(x),f(d,e))),d). >>>> Starting back demodulation with: 7117 (7116) EQUAL(f(g(f(e,k)),f(d,e)),h). >>>> Starting back demodulation with: 7119 (7118) EQUAL(f(g(k),f(d,e)),h). >>>> Starting back demodulation with: 7123 (7122) EQUAL(f(g(f(h,e)),f(d,e)),b). >>>> Starting back demodulation with: 7126 (7125) EQUAL(f(f(g(d),k),f(d,e)),b). >>>> Starting back demodulation with: 7128 (7127) EQUAL(f(g(f(e,h)),f(d,e)),b). >>>> Starting back demodulation with: 7131 (7130) EQUAL(f(g(f(d,e)),f(e,d)),e). >>>> Starting back demodulation with: 7133 (7132) EQUAL(g(f(g(f(d,e)),f(h,e))),b). >>>> Starting back demodulation with: 7135 (7134) EQUAL(f(e,f(g(f(d,e)),d)),e). >>>> Starting back demodulation with: 7137 (7136) EQUAL(f(a,g(f(g(f(d,e)),a))),d). >>>> Starting back demodulation with: 7139 (7138) EQUAL(f(f(g(f(d,e)),e),d),e). >>>> Starting back demodulation with: 7141 (7140) EQUAL(g(f(f(g(f(d,e)),e),h)),b). >>>> Starting back demodulation with: 7143 (7142) EQUAL(f(g(f(h,g(f(d,e)))),h),d). >>>> Starting back demodulation with: 7145 (7144) EQUAL(f(f(h,g(f(d,e))),k),e). >>>> Starting back demodulation with: 7147 (7146) EQUAL(f(f(e,g(f(d,e))),d),e). >>>> Starting back demodulation with: 7149 (7148) EQUAL(g(f(e,g(f(d,e)))),d). >>>> Starting back demodulation with: 7151 (7150) EQUAL(g(f(b,f(e,g(f(d,e))))),h). >>>> Starting back demodulation with: 7153 (7152) EQUAL(g(f(b,g(f(d,e)))),h). >>>> Starting back demodulation with: 7155 (7154) EQUAL(f(f(b,g(f(d,e))),h),e). >>>> Starting back demodulation with: 7157 (7156) EQUAL(f(h,f(g(f(d,e)),k)),e). >>>> Starting back demodulation with: 7159 (7158) EQUAL(g(f(g(f(d,e)),k)),h). >>>> Starting back demodulation with: 7161 (7160) EQUAL(f(f(g(f(d,e)),k),h),e). >>>> Starting back demodulation with: 7163 (7162) EQUAL(f(f(g(f(d,e)),k),d),b). >>>> Starting back demodulation with: 7165 (7164) EQUAL(f(b,f(g(f(d,e)),h)),e). >>>> Starting back demodulation with: 7167 (7166) EQUAL(g(f(g(f(d,e)),h)),b). >>>> Starting back demodulation with: 7169 (7168) EQUAL(f(f(g(f(d,e)),h),b),e). >>>> Starting back demodulation with: 7171 (7170) EQUAL(f(g(f(a,g(f(d,e)))),a),d). >>>> Starting back demodulation with: 7173 (7172) EQUAL(f(b,g(f(g(f(d,e)),b))),d). >>>> Starting back demodulation with: 7175 (7174) EQUAL(f(g(h),f(d,e)),b). >>>> Starting back demodulation with: 7177 (7176) EQUAL(f(g(f(d,g(b))),f(d,e)),b). >>>> Starting back demodulation with: 7180 (7179) EQUAL(f(g(d),f(k,f(d,e))),b). >>>> Starting back demodulation with: 7182 (7181) EQUAL(f(f(k,f(d,e)),g(b)),d). >>>> Starting back demodulation with: 7186 (7185) EQUAL(f(g(x),f(x,f(d,e))),d). >> back demodulating: 5793 (5792) EQUAL(f(g(b),f(b,f(d,e))),d). >> back demodulating: 5792 (3763,1175) EQUAL(f(g(b),f(b,f(d,e))),d). >> back demodulating: 4733 (4732) EQUAL(f(g(d),f(d,f(d,e))),d). >> back demodulating: 4732 (2400,1175) EQUAL(f(g(d),f(d,f(d,e))),d). >> back demodulating: 4714 (4713) EQUAL(f(g(a),f(a,f(d,e))),d). >> back demodulating: 4713 (2399,1175) EQUAL(f(g(a),f(a,f(d,e))),d). new given clause: 7070 (2,4855) EQUAL(g(f(g(d),e)),d). ** KEPT: 7187 (8,7070) EQUAL(g(f(g(f(c,g(a))),e)),d). ---> New Demodulator: 7188 (7187) EQUAL(g(f(g(f(c,g(a))),e)),d). ** KEPT: 7189 (4,7070) EQUAL(g(f(g(d),f(x,g(x)))),d). ---> New Demodulator: 7190 (7189) EQUAL(g(f(g(d),f(x,g(x)))),d). ** KEPT: 7191 (3,7070) EQUAL(g(f(g(d),f(g(x),x))),d). ---> New Demodulator: 7192 (7191) EQUAL(g(f(g(d),f(g(x),x))),d). >>>> Starting back demodulation with: 7188 (7187) EQUAL(g(f(g(f(c,g(a))),e)),d). >> back demodulating: 7060 (8,4855) EQUAL(f(g(f(g(f(c,g(a))),e)),e),d). >> back demodulating: 7061 (7060) EQUAL(f(g(f(g(f(c,g(a))),e)),e),d). >>>> Starting back demodulation with: 7190 (7189) EQUAL(g(f(g(d),f(x,g(x)))),d). >> back demodulating: 7062 (4,4855) EQUAL(f(g(f(g(d),f(x,g(x)))),e),d). >> back demodulating: 7063 (7062) EQUAL(f(g(f(g(d),f(x,g(x)))),e),d). >>>> Starting back demodulation with: 7192 (7191) EQUAL(g(f(g(d),f(g(x),x))),d). >> back demodulating: 7064 (3,4855) EQUAL(f(g(f(g(d),f(g(x),x))),e),d). >> back demodulating: 7065 (7064) EQUAL(f(g(f(g(d),f(g(x),x))),e),d). ** KEPT: 7193 (7070,3118) EQUAL(f(f(h,f(g(d),e)),d),h). ---> New Demodulator: 7194 (7193) EQUAL(f(f(h,f(g(d),e)),d),h). ** KEPT: 7195 (7070,2120) EQUAL(f(f(g(d),e),f(d,a)),a). ---> New Demodulator: 7196 (7195) EQUAL(f(f(g(d),e),f(d,a)),a). ** KEPT: 7197 (7070,1719) EQUAL(f(f(b,f(g(d),e)),d),b). ---> New Demodulator: 7198 (7197) EQUAL(f(f(b,f(g(d),e)),d),b). ** KEPT: 7199 (7070,3126) EQUAL(f(f(h,d),f(g(d),e)),h). ---> New Demodulator: 7200 (7199) EQUAL(f(f(h,d),f(g(d),e)),h). ** KEPT: 7201 (7070,1197) EQUAL(f(f(g(d),e),f(d,d)),d). ---> New Demodulator: 7202 (7201) EQUAL(f(f(g(d),e),f(d,d)),d). ** KEPT: 7203 (7070,1133) EQUAL(f(f(g(d),e),f(d,h)),h). ---> New Demodulator: 7204 (7203) EQUAL(f(f(g(d),e),f(d,h)),h). ** KEPT: 7205 (7070,1725) EQUAL(f(f(b,d),f(g(d),e)),b). ---> New Demodulator: 7206 (7205) EQUAL(f(f(b,d),f(g(d),e)),b). ** KEPT: 7207 (7070,526) EQUAL(f(f(a,f(g(d),e)),d),a). ---> New Demodulator: 7208 (7207) EQUAL(f(f(a,f(g(d),e)),d),a). ** KEPT: 7209 (7070,520) EQUAL(f(f(a,d),f(g(d),e)),a). ---> New Demodulator: 7210 (7209) EQUAL(f(f(a,d),f(g(d),e)),a). ** KEPT: 7211 (7070,266) EQUAL(f(f(g(d),e),f(d,b)),b). ---> New Demodulator: 7212 (7211) EQUAL(f(f(g(d),e),f(d,b)),b). ** KEPT: 7213 (7070,113) EQUAL(f(f(d,f(g(d),e)),d),d). ---> New Demodulator: 7214 (7213) EQUAL(f(f(d,f(g(d),e)),d),d). ** KEPT: 7215 (7070,105) EQUAL(f(f(d,d),f(g(d),e)),d). ---> New Demodulator: 7216 (7215) EQUAL(f(f(d,d),f(g(d),e)),d). ** KEPT: 7217 (7070,2987) EQUAL(f(h,f(d,f(g(d),e))),h). ---> New Demodulator: 7218 (7217) EQUAL(f(h,f(d,f(g(d),e))),h). ** KEPT: 7219 (7070,2011) EQUAL(f(f(d,f(g(d),e)),a),a). ---> New Demodulator: 7220 (7219) EQUAL(f(f(d,f(g(d),e)),a),a). ** KEPT: 7221 (7070,1579) EQUAL(f(b,f(d,f(g(d),e))),b). ---> New Demodulator: 7222 (7221) EQUAL(f(b,f(d,f(g(d),e))),b). ** KEPT: 7223 (7070,1065) EQUAL(f(f(d,f(g(d),e)),h),h). ---> New Demodulator: 7224 (7223) EQUAL(f(f(d,f(g(d),e)),h),h). ** KEPT: 7225 (7070,477) EQUAL(f(a,f(d,f(g(d),e))),a). ---> New Demodulator: 7226 (7225) EQUAL(f(a,f(d,f(g(d),e))),a). ** KEPT: 7227 (7070,233) EQUAL(f(f(d,f(g(d),e)),b),b). ---> New Demodulator: 7228 (7227) EQUAL(f(f(d,f(g(d),e)),b),b). ** KEPT: 7229 (7070,3141) EQUAL(f(h,g(f(d,f(g(d),e)))),h). ---> New Demodulator: 7230 (7229) EQUAL(f(h,g(f(d,f(g(d),e)))),h). ** KEPT: 7231 (7070,2154) EQUAL(f(g(f(d,f(g(d),e))),a),a). ---> New Demodulator: 7232 (7231) EQUAL(f(g(f(d,f(g(d),e))),a),a). ** KEPT: 7233 (7070,1739) EQUAL(f(b,g(f(d,f(g(d),e)))),b). ---> New Demodulator: 7234 (7233) EQUAL(f(b,g(f(d,f(g(d),e)))),b). ** KEPT: 7235 (7070,1217) EQUAL(f(g(f(d,f(g(d),e))),d),d). ---> New Demodulator: 7236 (7235) EQUAL(f(g(f(d,f(g(d),e))),d),d). ** KEPT: 7237 (7070,1151) EQUAL(f(g(f(d,f(g(d),e))),h),h). ---> New Demodulator: 7238 (7237) EQUAL(f(g(f(d,f(g(d),e))),h),h). ** KEPT: 7239 (7070,564) EQUAL(f(a,g(f(d,f(g(d),e)))),a). ---> New Demodulator: 7240 (7239) EQUAL(f(a,g(f(d,f(g(d),e)))),a). ** KEPT: 7241 (7070,282) EQUAL(f(g(f(d,f(g(d),e))),b),b). ---> New Demodulator: 7242 (7241) EQUAL(f(g(f(d,f(g(d),e))),b),b). ** KEPT: 7243 (7070,137) EQUAL(f(d,g(f(d,f(g(d),e)))),d). ---> New Demodulator: 7244 (7243) EQUAL(f(d,g(f(d,f(g(d),e)))),d). ** KEPT: 7245 (7070,82) EQUAL(f(d,f(d,f(g(d),e))),d). ---> New Demodulator: 7246 (7245) EQUAL(f(d,f(d,f(g(d),e))),d). ** KEPT: 7247 (7070,37) -EQUAL(f(d,f(g(d),e)),f(k,g(b))). ** KEPT: 7248 (7070,3) EQUAL(f(d,f(g(d),e)),e). ---> New Demodulator: 7249 (7248) EQUAL(f(d,f(g(d),e)),e). >>>> Starting back demodulation with: 7194 (7193) EQUAL(f(f(h,f(g(d),e)),d),h). >>>> Starting back demodulation with: 7196 (7195) EQUAL(f(f(g(d),e),f(d,a)),a). >>>> Starting back demodulation with: 7198 (7197) EQUAL(f(f(b,f(g(d),e)),d),b). >>>> Starting back demodulation with: 7200 (7199) EQUAL(f(f(h,d),f(g(d),e)),h). >>>> Starting back demodulation with: 7202 (7201) EQUAL(f(f(g(d),e),f(d,d)),d). >>>> Starting back demodulation with: 7204 (7203) EQUAL(f(f(g(d),e),f(d,h)),h). >>>> Starting back demodulation with: 7206 (7205) EQUAL(f(f(b,d),f(g(d),e)),b). >>>> Starting back demodulation with: 7208 (7207) EQUAL(f(f(a,f(g(d),e)),d),a). >>>> Starting back demodulation with: 7210 (7209) EQUAL(f(f(a,d),f(g(d),e)),a). >>>> Starting back demodulation with: 7212 (7211) EQUAL(f(f(g(d),e),f(d,b)),b). >>>> Starting back demodulation with: 7214 (7213) EQUAL(f(f(d,f(g(d),e)),d),d). >>>> Starting back demodulation with: 7216 (7215) EQUAL(f(f(d,d),f(g(d),e)),d). >>>> Starting back demodulation with: 7218 (7217) EQUAL(f(h,f(d,f(g(d),e))),h). >>>> Starting back demodulation with: 7220 (7219) EQUAL(f(f(d,f(g(d),e)),a),a). >>>> Starting back demodulation with: 7222 (7221) EQUAL(f(b,f(d,f(g(d),e))),b). >>>> Starting back demodulation with: 7224 (7223) EQUAL(f(f(d,f(g(d),e)),h),h). >>>> Starting back demodulation with: 7226 (7225) EQUAL(f(a,f(d,f(g(d),e))),a). >>>> Starting back demodulation with: 7228 (7227) EQUAL(f(f(d,f(g(d),e)),b),b). >>>> Starting back demodulation with: 7230 (7229) EQUAL(f(h,g(f(d,f(g(d),e)))),h). >>>> Starting back demodulation with: 7232 (7231) EQUAL(f(g(f(d,f(g(d),e))),a),a). >>>> Starting back demodulation with: 7234 (7233) EQUAL(f(b,g(f(d,f(g(d),e)))),b). >>>> Starting back demodulation with: 7236 (7235) EQUAL(f(g(f(d,f(g(d),e))),d),d). >>>> Starting back demodulation with: 7238 (7237) EQUAL(f(g(f(d,f(g(d),e))),h),h). >>>> Starting back demodulation with: 7240 (7239) EQUAL(f(a,g(f(d,f(g(d),e)))),a). >>>> Starting back demodulation with: 7242 (7241) EQUAL(f(g(f(d,f(g(d),e))),b),b). >>>> Starting back demodulation with: 7244 (7243) EQUAL(f(d,g(f(d,f(g(d),e)))),d). >>>> Starting back demodulation with: 7246 (7245) EQUAL(f(d,f(d,f(g(d),e))),d). >>>> Starting back demodulation with: 7249 (7248) EQUAL(f(d,f(g(d),e)),e). >> back demodulating: 7213 (7070,113) EQUAL(f(f(d,f(g(d),e)),d),d). >> back demodulating: 7214 (7213) EQUAL(f(f(d,f(g(d),e)),d),d). >> back demodulating: 7217 (7070,2987) EQUAL(f(h,f(d,f(g(d),e))),h). >> back demodulating: 7218 (7217) EQUAL(f(h,f(d,f(g(d),e))),h). >> back demodulating: 7219 (7070,2011) EQUAL(f(f(d,f(g(d),e)),a),a). >> back demodulating: 7220 (7219) EQUAL(f(f(d,f(g(d),e)),a),a). >> back demodulating: 7221 (7070,1579) EQUAL(f(b,f(d,f(g(d),e))),b). >> back demodulating: 7222 (7221) EQUAL(f(b,f(d,f(g(d),e))),b). >> back demodulating: 7223 (7070,1065) EQUAL(f(f(d,f(g(d),e)),h),h). >> back demodulating: 7224 (7223) EQUAL(f(f(d,f(g(d),e)),h),h). >> back demodulating: 7225 (7070,477) EQUAL(f(a,f(d,f(g(d),e))),a). >> back demodulating: 7226 (7225) EQUAL(f(a,f(d,f(g(d),e))),a). >> back demodulating: 7227 (7070,233) EQUAL(f(f(d,f(g(d),e)),b),b). >> back demodulating: 7228 (7227) EQUAL(f(f(d,f(g(d),e)),b),b). >> back demodulating: 7229 (7070,3141) EQUAL(f(h,g(f(d,f(g(d),e)))),h). >> back demodulating: 7230 (7229) EQUAL(f(h,g(f(d,f(g(d),e)))),h). >> back demodulating: 7231 (7070,2154) EQUAL(f(g(f(d,f(g(d),e))),a),a). >> back demodulating: 7232 (7231) EQUAL(f(g(f(d,f(g(d),e))),a),a). >> back demodulating: 7233 (7070,1739) EQUAL(f(b,g(f(d,f(g(d),e)))),b). >> back demodulating: 7234 (7233) EQUAL(f(b,g(f(d,f(g(d),e)))),b). >> back demodulating: 7235 (7070,1217) EQUAL(f(g(f(d,f(g(d),e))),d),d). >> back demodulating: 7236 (7235) EQUAL(f(g(f(d,f(g(d),e))),d),d). >> back demodulating: 7237 (7070,1151) EQUAL(f(g(f(d,f(g(d),e))),h),h). >> back demodulating: 7238 (7237) EQUAL(f(g(f(d,f(g(d),e))),h),h). >> back demodulating: 7239 (7070,564) EQUAL(f(a,g(f(d,f(g(d),e)))),a). >> back demodulating: 7240 (7239) EQUAL(f(a,g(f(d,f(g(d),e)))),a). >> back demodulating: 7241 (7070,282) EQUAL(f(g(f(d,f(g(d),e))),b),b). >> back demodulating: 7242 (7241) EQUAL(f(g(f(d,f(g(d),e))),b),b). >> back demodulating: 7243 (7070,137) EQUAL(f(d,g(f(d,f(g(d),e)))),d). >> back demodulating: 7244 (7243) EQUAL(f(d,g(f(d,f(g(d),e)))),d). >> back demodulating: 7245 (7070,82) EQUAL(f(d,f(d,f(g(d),e))),d). >> back demodulating: 7246 (7245) EQUAL(f(d,f(d,f(g(d),e))),d). >> back demodulating: 7247 (7070,37) -EQUAL(f(d,f(g(d),e)),f(k,g(b))). new given clause: 7072 (8,4855,7071) EQUAL(f(c,g(a)),f(d,e)). ** KEPT: 7250 (2489,7072) EQUAL(f(d,e),f(e,d)). ** KEPT: 7251 (7072,5) EQUAL(f(f(x,c),g(a)),f(x,f(d,e))). ** KEPT: 7252 (7072,5) EQUAL(f(c,f(g(a),x)),f(f(d,e),x)). ** KEPT: 7253 (7072,2331) EQUAL(f(d,g(f(c,g(a)))),e). ---> New Demodulator: 7254 (7253) EQUAL(f(d,g(f(c,g(a)))),e). ** KEPT: 7255 (7072,965) EQUAL(f(f(c,g(a)),g(d)),e). ---> New Demodulator: 7256 (7255) EQUAL(f(f(c,g(a)),g(d)),e). ** KEPT: 7257 (7072,861) EQUAL(f(f(c,g(a)),x),f(d,x)). ** KEPT: 7258 (7072,5) EQUAL(f(x,f(c,g(a))),f(f(x,d),e)). >>>> Starting back demodulation with: 7254 (7253) EQUAL(f(d,g(f(c,g(a)))),e). >>>> Starting back demodulation with: 7256 (7255) EQUAL(f(f(c,g(a)),g(d)),e). 7257 back subsumes: 5652 (86,3480) EQUAL(f(f(c,g(a)),c),f(d,c)). 7257 back subsumes: 4778 (86,2490) EQUAL(f(f(c,g(a)),d),f(d,d)). 7257 back subsumes: 4376 (86,2013) EQUAL(f(f(c,g(a)),a),f(d,a)). 7257 back subsumes: 2790 (86,1071) EQUAL(f(f(c,g(a)),h),f(d,h)). 7257 back subsumes: 1441 (86,239) EQUAL(f(f(c,g(a)),b),f(d,b)). new given clause: 7250 (2489,7072) EQUAL(f(d,e),f(e,d)). ** KEPT: 7259 (7250,2331) EQUAL(f(d,g(f(e,d))),e). ---> New Demodulator: 7260 (7259) EQUAL(f(d,g(f(e,d))),e). ** KEPT: 7261 (7250,965) EQUAL(f(f(e,d),g(d)),e). ---> New Demodulator: 7262 (7261) EQUAL(f(f(e,d),g(d)),e). ** KEPT: 7263 (7250,861) EQUAL(f(f(e,d),x),f(d,x)). ** KEPT: 7264 (7250,5) EQUAL(f(f(x,d),e),f(x,f(e,d))). ** KEPT: 7265 (7250,4853) EQUAL(f(g(d),f(d,e)),e). ---> New Demodulator: 7266 (7265) EQUAL(f(g(d),f(d,e)),e). ** KEPT: 7267 (7250,4782) EQUAL(f(x,f(d,e)),f(x,d)). ** KEPT: 7268 (7250,6987) EQUAL(f(g(f(d,e)),d),e). ---> New Demodulator: 7269 (7268) EQUAL(f(g(f(d,e)),d),e). ** KEPT: 7270 (7250,5) EQUAL(f(f(d,e),x),f(e,f(d,x))). >>>> Starting back demodulation with: 7260 (7259) EQUAL(f(d,g(f(e,d))),e). >> back demodulating: 6984 (105,4782) EQUAL(f(f(d,g(f(e,d))),d),d). >> back demodulating: 6985 (6984) EQUAL(f(f(d,g(f(e,d))),d),d). >>>> Starting back demodulation with: 7262 (7261) EQUAL(f(f(e,d),g(d)),e). 7263 back subsumes: 5649 (2397,3480) EQUAL(f(f(e,d),c),f(d,c)). 7263 back subsumes: 4776 (2397,2490) EQUAL(f(f(e,d),d),f(d,d)). 7263 back subsumes: 4374 (2397,2013) EQUAL(f(f(e,d),a),f(d,a)). 7263 back subsumes: 2786 (2397,1071) EQUAL(f(f(e,d),h),f(d,h)). 7263 back subsumes: 2407 (2397,239) EQUAL(f(f(e,d),b),f(d,b)). >>>> Starting back demodulation with: 7266 (7265) EQUAL(f(g(d),f(d,e)),e). >> back demodulating: 7089 (4855,2685,7071) EQUAL(f(e,f(g(d),f(d,e))),e). >> back demodulating: 7090 (7089) EQUAL(f(e,f(g(d),f(d,e))),e). 7267 back subsumes: 6241 (2389,3996) EQUAL(f(c,f(d,e)),f(c,d)). 7267 back subsumes: 5349 (2389,2989) EQUAL(f(h,f(d,e)),f(h,d)). 7267 back subsumes: 3763 (2389,1581) EQUAL(f(b,f(d,e)),f(b,d)). 7267 back subsumes: 2400 (2389,92) EQUAL(f(d,f(d,e)),f(d,d)). 7267 back subsumes: 2399 (2389,483) EQUAL(f(a,f(d,e)),f(a,d)). >>>> Starting back demodulation with: 7269 (7268) EQUAL(f(g(f(d,e)),d),e). >> back demodulating: 2321 (1197,861) EQUAL(f(d,f(g(f(d,e)),d)),d). >> back demodulating: 2322 (2321) EQUAL(f(d,f(g(f(d,e)),d)),d). >> back demodulating: 7134 (4855,2685,7071) EQUAL(f(e,f(g(f(d,e)),d)),e). >> back demodulating: 7135 (7134) EQUAL(f(e,f(g(f(d,e)),d)),e). new given clause: 7118 (4855,1061,7071) EQUAL(f(g(k),f(d,e)),h). ** KEPT: 7271 (7118,5) EQUAL(f(f(x,g(k)),f(d,e)),f(x,h)). ** KEPT: 7272 (7118,5) EQUAL(f(g(k),f(f(d,e),x)),f(h,x)). new given clause: 7174 (4855,294,7071) EQUAL(f(g(h),f(d,e)),b). ** KEPT: 7273 (7174,5) EQUAL(f(f(x,g(h)),f(d,e)),f(x,b)). ** KEPT: 7274 (7174,5) EQUAL(f(g(h),f(f(d,e),x)),f(b,x)). new given clause: 7248 (7070,3) EQUAL(f(d,f(g(d),e)),e). ** KEPT: 7275 (8,7248) EQUAL(f(f(c,g(a)),f(g(d),e)),e). ---> New Demodulator: 7276 (7275) EQUAL(f(f(c,g(a)),f(g(d),e)),e). ** KEPT: 7277 (8,7248) EQUAL(f(d,f(g(f(c,g(a))),e)),e). ---> New Demodulator: 7278 (7277) EQUAL(f(d,f(g(f(c,g(a))),e)),e). ** KEPT: 7279 (4,7248) EQUAL(f(d,f(g(d),f(x,g(x)))),e). ---> New Demodulator: 7280 (7279) EQUAL(f(d,f(g(d),f(x,g(x)))),e). ** KEPT: 7281 (3,7248) EQUAL(f(d,f(g(d),f(g(x),x))),e). ---> New Demodulator: 7282 (7281) EQUAL(f(d,f(g(d),f(g(x),x))),e). ** KEPT: 7283 (861,7248) EQUAL(f(f(d,e),f(g(d),e)),e). ---> New Demodulator: 7284 (7283) EQUAL(f(f(d,e),f(g(d),e)),e). ** KEPT: 7285 (132,7248) EQUAL(f(k,f(h,f(g(d),e))),e). ---> New Demodulator: 7286 (7285) EQUAL(f(k,f(h,f(g(d),e))),e). ** KEPT: 7287 (92,7248) EQUAL(f(d,f(e,f(g(d),e))),e). ---> New Demodulator: 7288 (7287) EQUAL(f(d,f(e,f(g(d),e))),e). ** KEPT: 7289 (73,7248) EQUAL(f(h,f(b,f(g(d),e))),e). ---> New Demodulator: 7290 (7289) EQUAL(f(h,f(b,f(g(d),e))),e). ** KEPT: 7291 (5,7248) EQUAL(f(f(d,g(d)),e),e). ---> New Demodulator: 7292 (7291) EQUAL(f(f(d,g(d)),e),e). >>>> Starting back demodulation with: 7276 (7275) EQUAL(f(f(c,g(a)),f(g(d),e)),e). >>>> Starting back demodulation with: 7278 (7277) EQUAL(f(d,f(g(f(c,g(a))),e)),e). >>>> Starting back demodulation with: 7280 (7279) EQUAL(f(d,f(g(d),f(x,g(x)))),e). >>>> Starting back demodulation with: 7282 (7281) EQUAL(f(d,f(g(d),f(g(x),x))),e). >>>> Starting back demodulation with: 7284 (7283) EQUAL(f(f(d,e),f(g(d),e)),e). >>>> Starting back demodulation with: 7286 (7285) EQUAL(f(k,f(h,f(g(d),e))),e). >>>> Starting back demodulation with: 7288 (7287) EQUAL(f(d,f(e,f(g(d),e))),e). >>>> Starting back demodulation with: 7290 (7289) EQUAL(f(h,f(b,f(g(d),e))),e). >>>> Starting back demodulation with: 7292 (7291) EQUAL(f(f(d,g(d)),e),e). ** KEPT: 7293 (7248,5) EQUAL(f(f(x,d),f(g(d),e)),f(x,e)). ** KEPT: 7294 (7248,5) EQUAL(f(d,f(f(g(d),e),x)),f(e,x)). new given clause: 7259 (7250,2331) EQUAL(f(d,g(f(e,d))),e). ** KEPT: 7295 (8,7259) EQUAL(f(f(c,g(a)),g(f(e,d))),e). ---> New Demodulator: 7296 (7295) EQUAL(f(f(c,g(a)),g(f(e,d))),e). >>>> Starting back demodulation with: 7296 (7295) EQUAL(f(f(c,g(a)),g(f(e,d))),e). ** KEPT: 7297 (7259,5) EQUAL(f(f(x,d),g(f(e,d))),f(x,e)). ** KEPT: 7298 (7259,5) EQUAL(f(d,f(g(f(e,d)),x)),f(e,x)). new given clause: 7261 (7250,965) EQUAL(f(f(e,d),g(d)),e). ** KEPT: 7299 (8,7261) EQUAL(f(f(e,d),g(f(c,g(a)))),e). ---> New Demodulator: 7300 (7299) EQUAL(f(f(e,d),g(f(c,g(a)))),e). ** KEPT: 7301 (5,7261) EQUAL(f(e,f(d,g(d))),e). ---> New Demodulator: 7302 (7301) EQUAL(f(e,f(d,g(d))),e). >>>> Starting back demodulation with: 7300 (7299) EQUAL(f(f(e,d),g(f(c,g(a)))),e). >>>> Starting back demodulation with: 7302 (7301) EQUAL(f(e,f(d,g(d))),e). ** KEPT: 7303 (7261,5) EQUAL(f(f(x,f(e,d)),g(d)),f(x,e)). ** KEPT: 7304 (7261,5) EQUAL(f(f(e,d),f(g(d),x)),f(e,x)). new given clause: 7265 (7250,4853) EQUAL(f(g(d),f(d,e)),e). ** KEPT: 7305 (8,7265) EQUAL(f(g(f(c,g(a))),f(d,e)),e). ---> New Demodulator: 7306 (7305) EQUAL(f(g(f(c,g(a))),f(d,e)),e). ** KEPT: 7307 (5,7265) EQUAL(f(f(g(d),d),e),e). ---> New Demodulator: 7308 (7307) EQUAL(f(f(g(d),d),e),e). >>>> Starting back demodulation with: 7306 (7305) EQUAL(f(g(f(c,g(a))),f(d,e)),e). >>>> Starting back demodulation with: 7308 (7307) EQUAL(f(f(g(d),d),e),e). ** KEPT: 7309 (7265,5) EQUAL(f(f(x,g(d)),f(d,e)),f(x,e)). ** KEPT: 7310 (7265,5) EQUAL(f(g(d),f(f(d,e),x)),f(e,x)). new given clause: 7268 (7250,6987) EQUAL(f(g(f(d,e)),d),e). ** KEPT: 7311 (8,7268) EQUAL(f(g(f(d,e)),f(c,g(a))),e). ---> New Demodulator: 7312 (7311) EQUAL(f(g(f(d,e)),f(c,g(a))),e). >>>> Starting back demodulation with: 7312 (7311) EQUAL(f(g(f(d,e)),f(c,g(a))),e). ** KEPT: 7313 (7268,5) EQUAL(f(f(x,g(f(d,e))),d),f(x,e)). ** KEPT: 7314 (7268,5) EQUAL(f(g(f(d,e)),f(d,x)),f(e,x)). new given clause: 7291 (5,7248) EQUAL(f(f(d,g(d)),e),e). ** KEPT: 7315 (4,7291) EQUAL(f(f(d,g(d)),f(x,g(x))),e). ---> New Demodulator: 7316 (7315) EQUAL(f(f(d,g(d)),f(x,g(x))),e). ** KEPT: 7317 (3,7291) EQUAL(f(f(d,g(d)),f(g(x),x)),e). ---> New Demodulator: 7318 (7317) EQUAL(f(f(d,g(d)),f(g(x),x)),e). >>>> Starting back demodulation with: 7316 (7315) EQUAL(f(f(d,g(d)),f(x,g(x))),e). >>>> Starting back demodulation with: 7318 (7317) EQUAL(f(f(d,g(d)),f(g(x),x)),e). ** KEPT: 7319 (7291,3480) EQUAL(f(f(d,g(d)),c),f(e,c)). ** KEPT: 7320 (7291,5) EQUAL(f(f(x,f(d,g(d))),e),f(x,e)). ** KEPT: 7321 (7291,5) EQUAL(f(f(d,g(d)),f(e,x)),f(e,x)). new given clause: 7301 (5,7261) EQUAL(f(e,f(d,g(d))),e). ** KEPT: 7322 (4,7301) EQUAL(f(f(x,g(x)),f(d,g(d))),e). ---> New Demodulator: 7323 (7322) EQUAL(f(f(x,g(x)),f(d,g(d))),e). ** KEPT: 7324 (3,7301) EQUAL(f(f(g(x),x),f(d,g(d))),e). ---> New Demodulator: 7325 (7324) EQUAL(f(f(g(x),x),f(d,g(d))),e). >>>> Starting back demodulation with: 7323 (7322) EQUAL(f(f(x,g(x)),f(d,g(d))),e). >>>> Starting back demodulation with: 7325 (7324) EQUAL(f(f(g(x),x),f(d,g(d))),e). ** KEPT: 7326 (7301,3996) EQUAL(f(c,f(d,g(d))),f(c,e)). ** KEPT: 7327 (7301,5) EQUAL(f(f(x,e),f(d,g(d))),f(x,e)). ** KEPT: 7328 (7301,5) EQUAL(f(e,f(f(d,g(d)),x)),f(e,x)). new given clause: 7307 (5,7265) EQUAL(f(f(g(d),d),e),e). ** KEPT: 7329 (4,7307) EQUAL(f(f(g(d),d),f(x,g(x))),e). ---> New Demodulator: 7330 (7329) EQUAL(f(f(g(d),d),f(x,g(x))),e). ** KEPT: 7331 (3,7307) EQUAL(f(f(g(d),d),f(g(x),x)),e). ---> New Demodulator: 7332 (7331) EQUAL(f(f(g(d),d),f(g(x),x)),e). >>>> Starting back demodulation with: 7330 (7329) EQUAL(f(f(g(d),d),f(x,g(x))),e). >>>> Starting back demodulation with: 7332 (7331) EQUAL(f(f(g(d),d),f(g(x),x)),e). ** KEPT: 7333 (7307,3480) EQUAL(f(f(g(d),d),c),f(e,c)). ** KEPT: 7334 (7307,5) EQUAL(f(f(x,f(g(d),d)),e),f(x,e)). ** KEPT: 7335 (7307,5) EQUAL(f(f(g(d),d),f(e,x)),f(e,x)). new given clause: 4861 (2489,4853) EQUAL(f(g(d),f(c,g(a))),e). ** KEPT: 7336 (5,4861) EQUAL(f(f(g(d),c),g(a)),e). ---> New Demodulator: 7337 (7336) EQUAL(f(f(g(d),c),g(a)),e). >>>> Starting back demodulation with: 7337 (7336) EQUAL(f(f(g(d),c),g(a)),e). ** KEPT: 7338 (4861,5) EQUAL(f(f(x,g(d)),f(c,g(a))),f(x,e)). ** KEPT: 7339 (4861,5) EQUAL(f(g(d),f(f(c,g(a)),x)),f(e,x)). new given clause: 4875 (5,2529) EQUAL(f(e,f(d,b)),f(k,d)). ** KEPT: 7340 (4,4875) EQUAL(f(f(x,g(x)),f(d,b)),f(k,d)). ** KEPT: 7341 (3,4875) EQUAL(f(f(g(x),x),f(d,b)),f(k,d)). ** KEPT: 7342 (8,4875) EQUAL(f(e,f(f(c,g(a)),b)),f(k,d)). ** KEPT: 7343 (3402,4875) EQUAL(f(e,f(d,f(b,e))),f(k,d)). ** KEPT: 7344 (2853,4875) EQUAL(f(e,f(f(k,e),d)),f(k,d)). ** KEPT: 7345 (2767,4875) EQUAL(f(e,f(e,f(k,d))),f(k,d)). ** KEPT: 7346 (2530,4875) EQUAL(f(e,f(k,f(e,d))),f(k,d)). ** KEPT: 7347 (1444,4875) EQUAL(f(e,f(d,f(e,b))),f(k,d)). ** KEPT: 7348 (1052,4875) EQUAL(f(e,f(f(e,k),d)),f(k,d)). ** KEPT: 7349 (1017,4875) EQUAL(f(e,f(f(k,k),h)),f(k,d)). ** KEPT: 7350 (861,4875) EQUAL(f(e,f(f(d,e),b)),f(k,d)). ** KEPT: 7351 (73,4875) EQUAL(f(e,f(h,f(b,b))),f(k,d)). ** KEPT: 7352 (8,4875) EQUAL(f(k,f(c,g(a))),f(e,f(d,b))). ** KEPT: 7353 (4782,4875) EQUAL(f(k,f(e,d)),f(e,f(d,b))). ** KEPT: 7354 (3397,4875) EQUAL(f(f(d,b),e),f(e,f(d,b))). ** KEPT: 7355 (2490,4875) EQUAL(f(f(k,e),d),f(e,f(d,b))). ** KEPT: 7356 (1263,4875) EQUAL(f(d,f(b,e)),f(e,f(d,b))). ** KEPT: 7357 (869,4875) EQUAL(f(d,f(e,b)),f(e,f(d,b))). ** KEPT: 7358 (750,4875) EQUAL(f(h,f(b,b)),f(e,f(d,b))). ** KEPT: 7359 (131,4875) EQUAL(f(f(k,k),h),f(e,f(d,b))). ** KEPT: 7360 (4875,5) EQUAL(f(f(x,e),f(d,b)),f(x,f(k,d))). ** KEPT: 7361 (4875,5) EQUAL(f(e,f(f(d,b),x)),f(f(k,d),x)). ** KEPT: 7362 (4875,1175) EQUAL(f(g(k),f(e,f(d,b))),d). ---> New Demodulator: 7363 (7362) EQUAL(f(g(k),f(e,f(d,b))),d). ** KEPT: 7364 (4875,2767) EQUAL(f(e,f(e,f(d,b))),f(d,b)). ** KEPT: 7365 (4875,695) EQUAL(f(g(d),f(e,f(d,b))),b). ---> New Demodulator: 7366 (7365) EQUAL(f(g(d),f(e,f(d,b))),b). ** KEPT: 7367 (4875,151) EQUAL(f(f(e,f(d,b)),g(b)),d). ---> New Demodulator: 7368 (7367) EQUAL(f(f(e,f(d,b)),g(b)),d). ** KEPT: 7369 (4875,5) EQUAL(f(x,f(e,f(d,b))),f(f(x,k),d)). ** KEPT: 7370 (4875,5) EQUAL(f(f(e,f(d,b)),x),f(k,f(d,x))). >>>> Starting back demodulation with: 7363 (7362) EQUAL(f(g(k),f(e,f(d,b))),d). >>>> Starting back demodulation with: 7366 (7365) EQUAL(f(g(d),f(e,f(d,b))),b). >>>> Starting back demodulation with: 7368 (7367) EQUAL(f(f(e,f(d,b)),g(b)),d). new given clause: 4930 (5,2655) EQUAL(f(f(e,f(e,k)),h),d). ** KEPT: 7371 (4,4930) EQUAL(f(f(f(x,g(x)),f(e,k)),h),d). ---> New Demodulator: 7372 (7371) EQUAL(f(f(f(x,g(x)),f(e,k)),h),d). ** KEPT: 7373 (3,4930) EQUAL(f(f(f(g(x),x),f(e,k)),h),d). ---> New Demodulator: 7374 (7373) EQUAL(f(f(f(g(x),x),f(e,k)),h),d). ** KEPT: 7375 (4,4930) EQUAL(f(f(e,f(f(x,g(x)),k)),h),d). ---> New Demodulator: 7376 (7375) EQUAL(f(f(e,f(f(x,g(x)),k)),h),d). ** KEPT: 7377 (3,4930) EQUAL(f(f(e,f(f(g(x),x),k)),h),d). ---> New Demodulator: 7378 (7377) EQUAL(f(f(e,f(f(g(x),x),k)),h),d). ** KEPT: 7379 (9,4930) EQUAL(f(f(e,f(e,k)),f(d,g(b))),d). ---> New Demodulator: 7380 (7379) EQUAL(f(f(e,f(e,k)),f(d,g(b))),d). ** KEPT: 7381 (2793,4930) EQUAL(f(f(e,f(e,k)),f(e,h)),d). ---> New Demodulator: 7382 (7381) EQUAL(f(f(e,f(e,k)),f(e,h)),d). ** KEPT: 7383 (1071,4930) EQUAL(f(f(f(e,f(e,k)),e),h),d). ---> New Demodulator: 7384 (7383) EQUAL(f(f(f(e,f(e,k)),e),h),d). >>>> Starting back demodulation with: 7372 (7371) EQUAL(f(f(f(x,g(x)),f(e,k)),h),d). >>>> Starting back demodulation with: 7374 (7373) EQUAL(f(f(f(g(x),x),f(e,k)),h),d). >>>> Starting back demodulation with: 7376 (7375) EQUAL(f(f(e,f(f(x,g(x)),k)),h),d). >>>> Starting back demodulation with: 7378 (7377) EQUAL(f(f(e,f(f(g(x),x),k)),h),d). >>>> Starting back demodulation with: 7380 (7379) EQUAL(f(f(e,f(e,k)),f(d,g(b))),d). >>>> Starting back demodulation with: 7382 (7381) EQUAL(f(f(e,f(e,k)),f(e,h)),d). >>>> Starting back demodulation with: 7384 (7383) EQUAL(f(f(f(e,f(e,k)),e),h),d). ** KEPT: 7385 (4930,1125) EQUAL(f(g(f(e,f(e,k))),d),h). ---> New Demodulator: 7386 (7385) EQUAL(f(g(f(e,f(e,k))),d),h). ** KEPT: 7387 (4930,72) EQUAL(f(f(e,f(e,k)),d),f(d,b)). ** KEPT: 7388 (4930,5) EQUAL(f(f(x,f(e,f(e,k))),h),f(x,d)). ** KEPT: 7389 (4930,5) EQUAL(f(f(e,f(e,k)),f(h,x)),f(d,x)). >>>> Starting back demodulation with: 7386 (7385) EQUAL(f(g(f(e,f(e,k))),d),h). new given clause: 5059 (2819,2793) EQUAL(f(f(e,e),f(e,h)),h). ** KEPT: 7390 (4,5059) EQUAL(f(f(f(x,g(x)),e),f(e,h)),h). ---> New Demodulator: 7391 (7390) EQUAL(f(f(f(x,g(x)),e),f(e,h)),h). ** KEPT: 7392 (3,5059) EQUAL(f(f(f(g(x),x),e),f(e,h)),h). ---> New Demodulator: 7393 (7392) EQUAL(f(f(f(g(x),x),e),f(e,h)),h). ** KEPT: 7394 (4,5059) EQUAL(f(f(e,f(x,g(x))),f(e,h)),h). ---> New Demodulator: 7395 (7394) EQUAL(f(f(e,f(x,g(x))),f(e,h)),h). ** KEPT: 7396 (3,5059) EQUAL(f(f(e,f(g(x),x)),f(e,h)),h). ---> New Demodulator: 7397 (7396) EQUAL(f(f(e,f(g(x),x)),f(e,h)),h). >>>> Starting back demodulation with: 7391 (7390) EQUAL(f(f(f(x,g(x)),e),f(e,h)),h). >>>> Starting back demodulation with: 7393 (7392) EQUAL(f(f(f(g(x),x),e),f(e,h)),h). >>>> Starting back demodulation with: 7395 (7394) EQUAL(f(f(e,f(x,g(x))),f(e,h)),h). >>>> Starting back demodulation with: 7397 (7396) EQUAL(f(f(e,f(g(x),x)),f(e,h)),h). ** KEPT: 7398 (5059,5) EQUAL(f(f(x,f(e,e)),f(e,h)),f(x,h)). ** KEPT: 7399 (5059,5) EQUAL(f(f(e,e),f(f(e,h),x)),f(h,x)). new given clause: 5061 (2814,2793) EQUAL(f(f(k,e),f(e,h)),d). ** KEPT: 7400 (4,5061) EQUAL(f(f(k,f(x,g(x))),f(e,h)),d). ---> New Demodulator: 7401 (7400) EQUAL(f(f(k,f(x,g(x))),f(e,h)),d). ** KEPT: 7402 (3,5061) EQUAL(f(f(k,f(g(x),x)),f(e,h)),d). ---> New Demodulator: 7403 (7402) EQUAL(f(f(k,f(g(x),x)),f(e,h)),d). >>>> Starting back demodulation with: 7401 (7400) EQUAL(f(f(k,f(x,g(x))),f(e,h)),d). >>>> Starting back demodulation with: 7403 (7402) EQUAL(f(f(k,f(g(x),x)),f(e,h)),d). ** KEPT: 7404 (5061,5) EQUAL(f(f(x,f(k,e)),f(e,h)),f(x,d)). ** KEPT: 7405 (5061,5) EQUAL(f(f(k,e),f(f(e,h),x)),f(d,x)). new given clause: 5072 (1029,2793) EQUAL(f(f(e,k),f(e,h)),d). ** KEPT: 7406 (4,5072) EQUAL(f(f(f(x,g(x)),k),f(e,h)),d). ---> New Demodulator: 7407 (7406) EQUAL(f(f(f(x,g(x)),k),f(e,h)),d). ** KEPT: 7408 (3,5072) EQUAL(f(f(f(g(x),x),k),f(e,h)),d). ---> New Demodulator: 7409 (7408) EQUAL(f(f(f(g(x),x),k),f(e,h)),d). >>>> Starting back demodulation with: 7407 (7406) EQUAL(f(f(f(x,g(x)),k),f(e,h)),d). >>>> Starting back demodulation with: 7409 (7408) EQUAL(f(f(f(g(x),x),k),f(e,h)),d). ** KEPT: 7410 (5072,5) EQUAL(f(f(x,f(e,k)),f(e,h)),f(x,d)). ** KEPT: 7411 (5072,5) EQUAL(f(f(e,k),f(f(e,h),x)),f(d,x)). new given clause: 5096 (2793,2208) EQUAL(g(f(g(d),f(e,h))),b). ** KEPT: 7412 (8,5096) EQUAL(g(f(g(f(c,g(a))),f(e,h))),b). ---> New Demodulator: 7413 (7412) EQUAL(g(f(g(f(c,g(a))),f(e,h))),b). >>>> Starting back demodulation with: 7413 (7412) EQUAL(g(f(g(f(c,g(a))),f(e,h))),b). ** KEPT: 7414 (5096,3118) EQUAL(f(f(h,f(g(d),f(e,h))),b),h). ---> New Demodulator: 7415 (7414) EQUAL(f(f(h,f(g(d),f(e,h))),b),h). ** KEPT: 7416 (5096,2126) EQUAL(f(b,f(f(g(d),f(e,h)),a)),a). ---> New Demodulator: 7417 (7416) EQUAL(f(b,f(f(g(d),f(e,h)),a)),a). ** KEPT: 7418 (5096,2120) EQUAL(f(f(g(d),f(e,h)),f(b,a)),a). ---> New Demodulator: 7419 (7418) EQUAL(f(f(g(d),f(e,h)),f(b,a)),a). ** KEPT: 7420 (5096,1197) EQUAL(f(f(g(d),f(e,h)),f(b,d)),d). ---> New Demodulator: 7421 (7420) EQUAL(f(f(g(d),f(e,h)),f(b,d)),d). ** KEPT: 7422 (5096,1175) EQUAL(f(b,f(f(g(d),f(e,h)),d)),d). ---> New Demodulator: 7423 (7422) EQUAL(f(b,f(f(g(d),f(e,h)),d)),d). ** KEPT: 7424 (5096,1133) EQUAL(f(f(g(d),f(e,h)),f(b,h)),h). ---> New Demodulator: 7425 (7424) EQUAL(f(f(g(d),f(e,h)),f(b,h)),h). ** KEPT: 7426 (5096,1125) EQUAL(f(b,f(f(g(d),f(e,h)),h)),h). ---> New Demodulator: 7427 (7426) EQUAL(f(b,f(f(g(d),f(e,h)),h)),h). ** KEPT: 7428 (5096,1725) EQUAL(f(f(b,b),f(g(d),f(e,h))),b). ---> New Demodulator: 7429 (7428) EQUAL(f(f(b,b),f(g(d),f(e,h))),b). ** KEPT: 7430 (5096,526) EQUAL(f(f(a,f(g(d),f(e,h))),b),a). ---> New Demodulator: 7431 (7430) EQUAL(f(f(a,f(g(d),f(e,h))),b),a). ** KEPT: 7432 (5096,520) EQUAL(f(f(a,b),f(g(d),f(e,h))),a). ---> New Demodulator: 7433 (7432) EQUAL(f(f(a,b),f(g(d),f(e,h))),a). ** KEPT: 7434 (5096,266) EQUAL(f(f(g(d),f(e,h)),f(b,b)),b). ---> New Demodulator: 7435 (7434) EQUAL(f(f(g(d),f(e,h)),f(b,b)),b). ** KEPT: 7436 (5096,105) EQUAL(f(f(d,b),f(g(d),f(e,h))),d). ---> New Demodulator: 7437 (7436) EQUAL(f(f(d,b),f(g(d),f(e,h))),d). >>>> Starting back demodulation with: 7415 (7414) EQUAL(f(f(h,f(g(d),f(e,h))),b),h). >>>> Starting back demodulation with: 7417 (7416) EQUAL(f(b,f(f(g(d),f(e,h)),a)),a). >>>> Starting back demodulation with: 7419 (7418) EQUAL(f(f(g(d),f(e,h)),f(b,a)),a). >>>> Starting back demodulation with: 7421 (7420) EQUAL(f(f(g(d),f(e,h)),f(b,d)),d). >>>> Starting back demodulation with: 7423 (7422) EQUAL(f(b,f(f(g(d),f(e,h)),d)),d). >>>> Starting back demodulation with: 7425 (7424) EQUAL(f(f(g(d),f(e,h)),f(b,h)),h). >>>> Starting back demodulation with: 7427 (7426) EQUAL(f(b,f(f(g(d),f(e,h)),h)),h). >>>> Starting back demodulation with: 7429 (7428) EQUAL(f(f(b,b),f(g(d),f(e,h))),b). >>>> Starting back demodulation with: 7431 (7430) EQUAL(f(f(a,f(g(d),f(e,h))),b),a). >>>> Starting back demodulation with: 7433 (7432) EQUAL(f(f(a,b),f(g(d),f(e,h))),a). >>>> Starting back demodulation with: 7435 (7434) EQUAL(f(f(g(d),f(e,h)),f(b,b)),b). >>>> Starting back demodulation with: 7437 (7436) EQUAL(f(f(d,b),f(g(d),f(e,h))),d). new given clause: 5117 (5,2809) EQUAL(f(f(e,f(k,e)),h),d). ** KEPT: 7438 (4,5117) EQUAL(f(f(f(x,g(x)),f(k,e)),h),d). ---> New Demodulator: 7439 (7438) EQUAL(f(f(f(x,g(x)),f(k,e)),h),d). ** KEPT: 7440 (3,5117) EQUAL(f(f(f(g(x),x),f(k,e)),h),d). ---> New Demodulator: 7441 (7440) EQUAL(f(f(f(g(x),x),f(k,e)),h),d). ** KEPT: 7442 (4,5117) EQUAL(f(f(e,f(k,f(x,g(x)))),h),d). ---> New Demodulator: 7443 (7442) EQUAL(f(f(e,f(k,f(x,g(x)))),h),d). ** KEPT: 7444 (3,5117) EQUAL(f(f(e,f(k,f(g(x),x))),h),d). ---> New Demodulator: 7445 (7444) EQUAL(f(f(e,f(k,f(g(x),x))),h),d). ** KEPT: 7446 (9,5117) EQUAL(f(f(e,f(k,e)),f(d,g(b))),d). ---> New Demodulator: 7447 (7446) EQUAL(f(f(e,f(k,e)),f(d,g(b))),d). ** KEPT: 7448 (2793,5117) EQUAL(f(f(e,f(k,e)),f(e,h)),d). ---> New Demodulator: 7449 (7448) EQUAL(f(f(e,f(k,e)),f(e,h)),d). ** KEPT: 7450 (1071,5117) EQUAL(f(f(f(e,f(k,e)),e),h),d). ---> New Demodulator: 7451 (7450) EQUAL(f(f(f(e,f(k,e)),e),h),d). >>>> Starting back demodulation with: 7439 (7438) EQUAL(f(f(f(x,g(x)),f(k,e)),h),d). >>>> Starting back demodulation with: 7441 (7440) EQUAL(f(f(f(g(x),x),f(k,e)),h),d). >>>> Starting back demodulation with: 7443 (7442) EQUAL(f(f(e,f(k,f(x,g(x)))),h),d). >>>> Starting back demodulation with: 7445 (7444) EQUAL(f(f(e,f(k,f(g(x),x))),h),d). >>>> Starting back demodulation with: 7447 (7446) EQUAL(f(f(e,f(k,e)),f(d,g(b))),d). >>>> Starting back demodulation with: 7449 (7448) EQUAL(f(f(e,f(k,e)),f(e,h)),d). >>>> Starting back demodulation with: 7451 (7450) EQUAL(f(f(f(e,f(k,e)),e),h),d). ** KEPT: 7452 (5117,1125) EQUAL(f(g(f(e,f(k,e))),d),h). ---> New Demodulator: 7453 (7452) EQUAL(f(g(f(e,f(k,e))),d),h). ** KEPT: 7454 (5117,72) EQUAL(f(f(e,f(k,e)),d),f(d,b)). ** KEPT: 7455 (5117,5) EQUAL(f(f(x,f(e,f(k,e))),h),f(x,d)). ** KEPT: 7456 (5117,5) EQUAL(f(f(e,f(k,e)),f(h,x)),f(d,x)). >>>> Starting back demodulation with: 7453 (7452) EQUAL(f(g(f(e,f(k,e))),d),h). new given clause: 5173 (5,2847) EQUAL(f(f(k,f(e,e)),h),d). ** KEPT: 7457 (4,5173) EQUAL(f(f(k,f(f(x,g(x)),e)),h),d). ---> New Demodulator: 7458 (7457) EQUAL(f(f(k,f(f(x,g(x)),e)),h),d). ** KEPT: 7459 (3,5173) EQUAL(f(f(k,f(f(g(x),x),e)),h),d). ---> New Demodulator: 7460 (7459) EQUAL(f(f(k,f(f(g(x),x),e)),h),d). ** KEPT: 7461 (4,5173) EQUAL(f(f(k,f(e,f(x,g(x)))),h),d). ---> New Demodulator: 7462 (7461) EQUAL(f(f(k,f(e,f(x,g(x)))),h),d). ** KEPT: 7463 (3,5173) EQUAL(f(f(k,f(e,f(g(x),x))),h),d). ---> New Demodulator: 7464 (7463) EQUAL(f(f(k,f(e,f(g(x),x))),h),d). ** KEPT: 7465 (9,5173) EQUAL(f(f(k,f(e,e)),f(d,g(b))),d). ---> New Demodulator: 7466 (7465) EQUAL(f(f(k,f(e,e)),f(d,g(b))),d). ** KEPT: 7467 (2793,5173) EQUAL(f(f(k,f(e,e)),f(e,h)),d). ---> New Demodulator: 7468 (7467) EQUAL(f(f(k,f(e,e)),f(e,h)),d). ** KEPT: 7469 (1071,5173) EQUAL(f(f(f(k,f(e,e)),e),h),d). ---> New Demodulator: 7470 (7469) EQUAL(f(f(f(k,f(e,e)),e),h),d). >>>> Starting back demodulation with: 7458 (7457) EQUAL(f(f(k,f(f(x,g(x)),e)),h),d). >>>> Starting back demodulation with: 7460 (7459) EQUAL(f(f(k,f(f(g(x),x),e)),h),d). >>>> Starting back demodulation with: 7462 (7461) EQUAL(f(f(k,f(e,f(x,g(x)))),h),d). >>>> Starting back demodulation with: 7464 (7463) EQUAL(f(f(k,f(e,f(g(x),x))),h),d). >>>> Starting back demodulation with: 7466 (7465) EQUAL(f(f(k,f(e,e)),f(d,g(b))),d). >>>> Starting back demodulation with: 7468 (7467) EQUAL(f(f(k,f(e,e)),f(e,h)),d). >>>> Starting back demodulation with: 7470 (7469) EQUAL(f(f(f(k,f(e,e)),e),h),d). ** KEPT: 7471 (5173,1125) EQUAL(f(g(f(k,f(e,e))),d),h). ---> New Demodulator: 7472 (7471) EQUAL(f(g(f(k,f(e,e))),d),h). ** KEPT: 7473 (5173,72) EQUAL(f(f(k,f(e,e)),d),f(d,b)). ** KEPT: 7474 (5173,5) EQUAL(f(f(x,f(k,f(e,e))),h),f(x,d)). ** KEPT: 7475 (5173,5) EQUAL(f(f(k,f(e,e)),f(h,x)),f(d,x)). >>>> Starting back demodulation with: 7472 (7471) EQUAL(f(g(f(k,f(e,e))),d),h). new given clause: 5211 (5,2862) EQUAL(f(f(e,f(e,e)),h),h). ** KEPT: 7476 (4,5211) EQUAL(f(f(f(x,g(x)),f(e,e)),h),h). ---> New Demodulator: 7477 (7476) EQUAL(f(f(f(x,g(x)),f(e,e)),h),h). ** KEPT: 7478 (3,5211) EQUAL(f(f(f(g(x),x),f(e,e)),h),h). ---> New Demodulator: 7479 (7478) EQUAL(f(f(f(g(x),x),f(e,e)),h),h). ** KEPT: 7480 (4,5211) EQUAL(f(f(e,f(f(x,g(x)),e)),h),h). ---> New Demodulator: 7481 (7480) EQUAL(f(f(e,f(f(x,g(x)),e)),h),h). ** KEPT: 7482 (3,5211) EQUAL(f(f(e,f(f(g(x),x),e)),h),h). ---> New Demodulator: 7483 (7482) EQUAL(f(f(e,f(f(g(x),x),e)),h),h). ** KEPT: 7484 (4,5211) EQUAL(f(f(e,f(e,f(x,g(x)))),h),h). ---> New Demodulator: 7485 (7484) EQUAL(f(f(e,f(e,f(x,g(x)))),h),h). ** KEPT: 7486 (3,5211) EQUAL(f(f(e,f(e,f(g(x),x))),h),h). ---> New Demodulator: 7487 (7486) EQUAL(f(f(e,f(e,f(g(x),x))),h),h). ** KEPT: 7488 (9,5211) EQUAL(f(f(e,f(e,e)),f(d,g(b))),h). ---> New Demodulator: 7489 (7488) EQUAL(f(f(e,f(e,e)),f(d,g(b))),h). ** KEPT: 7490 (2793,5211) EQUAL(f(f(e,f(e,e)),f(e,h)),h). ---> New Demodulator: 7491 (7490) EQUAL(f(f(e,f(e,e)),f(e,h)),h). ** KEPT: 7492 (1071,5211) EQUAL(f(f(f(e,f(e,e)),e),h),h). ---> New Demodulator: 7493 (7492) EQUAL(f(f(f(e,f(e,e)),e),h),h). >>>> Starting back demodulation with: 7477 (7476) EQUAL(f(f(f(x,g(x)),f(e,e)),h),h). >>>> Starting back demodulation with: 7479 (7478) EQUAL(f(f(f(g(x),x),f(e,e)),h),h). >>>> Starting back demodulation with: 7481 (7480) EQUAL(f(f(e,f(f(x,g(x)),e)),h),h). >>>> Starting back demodulation with: 7483 (7482) EQUAL(f(f(e,f(f(g(x),x),e)),h),h). >>>> Starting back demodulation with: 7485 (7484) EQUAL(f(f(e,f(e,f(x,g(x)))),h),h). >>>> Starting back demodulation with: 7487 (7486) EQUAL(f(f(e,f(e,f(g(x),x))),h),h). >>>> Starting back demodulation with: 7489 (7488) EQUAL(f(f(e,f(e,e)),f(d,g(b))),h). >>>> Starting back demodulation with: 7491 (7490) EQUAL(f(f(e,f(e,e)),f(e,h)),h). >>>> Starting back demodulation with: 7493 (7492) EQUAL(f(f(f(e,f(e,e)),e),h),h). ** KEPT: 7494 (5211,1125) EQUAL(f(g(f(e,f(e,e))),h),h). ---> New Demodulator: 7495 (7494) EQUAL(f(g(f(e,f(e,e))),h),h). ** KEPT: 7496 (5211,5) EQUAL(f(f(x,f(e,f(e,e))),h),f(x,h)). ** KEPT: 7497 (5211,5) EQUAL(f(f(e,f(e,e)),f(h,x)),f(h,x)). >>>> Starting back demodulation with: 7495 (7494) EQUAL(f(g(f(e,f(e,e))),h),h). new given clause: 5347 (4198,2989) EQUAL(f(h,f(a,e)),f(h,a)). ** KEPT: 7498 (9,5347) EQUAL(f(f(d,g(b)),f(a,e)),f(h,a)). ** KEPT: 7499 (9,5347) EQUAL(f(f(d,g(b)),a),f(h,f(a,e))). ** KEPT: 7500 (2013,5347) EQUAL(f(h,f(a,e)),f(f(h,e),a)). ** KEPT: 7501 (5347,3118) EQUAL(f(f(h,a),g(f(a,e))),h). ---> New Demodulator: 7502 (7501) EQUAL(f(f(h,a),g(f(a,e))),h). ** KEPT: 7503 (5347,5) EQUAL(f(f(x,h),f(a,e)),f(x,f(h,a))). ** KEPT: 7504 (5347,3118) EQUAL(f(f(h,f(a,e)),g(a)),h). ---> New Demodulator: 7505 (7504) EQUAL(f(f(h,f(a,e)),g(a)),h). ** KEPT: 7506 (5347,5) EQUAL(f(x,f(h,f(a,e))),f(f(x,h),a)). >>>> Starting back demodulation with: 7502 (7501) EQUAL(f(f(h,a),g(f(a,e))),h). >>>> Starting back demodulation with: 7505 (7504) EQUAL(f(f(h,f(a,e)),g(a)),h). new given clause: 5350 (1095,2989) EQUAL(f(h,f(h,e)),f(h,h)). ** KEPT: 7507 (9,5350) EQUAL(f(f(d,g(b)),f(h,e)),f(h,h)). ** KEPT: 7508 (9,5350) EQUAL(f(f(d,g(b)),h),f(h,f(h,e))). ** KEPT: 7509 (9,5350) EQUAL(f(h,f(d,g(b))),f(h,f(h,e))). ** KEPT: 7510 (1071,5350) EQUAL(f(h,f(h,e)),f(f(h,e),h)). ** KEPT: 7511 (5350,3118) EQUAL(f(f(h,h),g(f(h,e))),h). ---> New Demodulator: 7512 (7511) EQUAL(f(f(h,h),g(f(h,e))),h). ** KEPT: 7513 (5350,5) EQUAL(f(f(x,h),f(h,e)),f(x,f(h,h))). ** KEPT: 7514 (5350,5) EQUAL(f(h,f(f(h,e),x)),f(f(h,h),x)). ** KEPT: 7515 (5350,3118) EQUAL(f(f(h,f(h,e)),g(h)),h). ---> New Demodulator: 7516 (7515) EQUAL(f(f(h,f(h,e)),g(h)),h). ** KEPT: 7517 (5350,5) EQUAL(f(x,f(h,f(h,e))),f(f(x,h),h)). ** KEPT: 7518 (5350,5) EQUAL(f(f(h,f(h,e)),x),f(h,f(h,x))). >>>> Starting back demodulation with: 7512 (7511) EQUAL(f(f(h,h),g(f(h,e))),h). >>>> Starting back demodulation with: 7516 (7515) EQUAL(f(f(h,f(h,e)),g(h)),h). new given clause: 5354 (5,2989) EQUAL(f(f(h,e),x),f(h,x)). ** KEPT: 7519 (748,5354) EQUAL(f(f(d,g(b)),x),f(h,x)). ** KEPT: 7520 (1355,5354) EQUAL(f(h,f(c,e)),f(f(h,e),c)). ** KEPT: 7521 (2120,5354) EQUAL(f(h,f(g(f(h,e)),a)),a). ---> New Demodulator: 7522 (7521) EQUAL(f(h,f(g(f(h,e)),a)),a). ** KEPT: 7523 (163,5354) EQUAL(f(h,f(a,b)),f(f(h,e),c)). ** KEPT: 7524 (1133,5354) EQUAL(f(h,f(g(f(h,e)),h)),h). ---> New Demodulator: 7525 (7524) EQUAL(f(h,f(g(f(h,e)),h)),h). ** KEPT: 7526 (266,5354) EQUAL(f(h,f(g(f(h,e)),b)),b). ---> New Demodulator: 7527 (7526) EQUAL(f(h,f(g(f(h,e)),b)),b). ** KEPT: 7528 (5,5354) EQUAL(f(f(f(h,e),x),y),f(h,f(x,y))). ** KEPT: 7529 (4,5354) EQUAL(f(h,g(f(h,e))),e). ---> New Demodulator: 7530 (7529) EQUAL(f(h,g(f(h,e))),e). ** KEPT: 7531 (9,5354) EQUAL(f(f(d,g(b)),x),f(f(h,e),x)). ** KEPT: 7532 (3143,5354) EQUAL(f(f(h,e),g(f(x,g(x)))),h). ---> New Demodulator: 7533 (7532) EQUAL(f(f(h,e),g(f(x,g(x)))),h). ** KEPT: 7534 (3141,5354) EQUAL(f(f(h,e),g(f(g(x),x))),h). ---> New Demodulator: 7535 (7534) EQUAL(f(f(h,e),g(f(g(x),x))),h). ** KEPT: 7536 (5384,5354) EQUAL(f(f(h,e),f(e,g(h))),e). ---> New Demodulator: 7537 (7536) EQUAL(f(f(h,e),f(e,g(h))),e). ** KEPT: 7538 (2989,5354) EQUAL(f(h,f(e,x)),f(f(h,e),x)). ** KEPT: 7539 (5312,5354) EQUAL(f(f(h,e),f(g(h),e)),e). ---> New Demodulator: 7540 (7539) EQUAL(f(f(h,e),f(g(h),e)),e). ** KEPT: 7541 (2120,5354) EQUAL(f(f(h,e),f(g(h),a)),a). ---> New Demodulator: 7542 (7541) EQUAL(f(f(h,e),f(g(h),a)),a). ** KEPT: 7543 (266,5354) EQUAL(f(f(h,e),f(g(h),b)),b). ---> New Demodulator: 7544 (7543) EQUAL(f(f(h,e),f(g(h),b)),b). ** KEPT: 7545 (5,5354) EQUAL(f(f(h,e),f(x,y)),f(f(h,x),y)). 7519 back subsumes: 5648 (3163,3480) EQUAL(f(f(d,g(b)),c),f(h,c)). 7519 back subsumes: 4775 (3163,2490) EQUAL(f(f(d,g(b)),d),f(h,d)). 7519 back subsumes: 4373 (3163,2013) EQUAL(f(f(d,g(b)),a),f(h,a)). 7519 back subsumes: 2789 (748,1071) EQUAL(f(f(d,g(b)),h),f(h,h)). >>>> Starting back demodulation with: 7522 (7521) EQUAL(f(h,f(g(f(h,e)),a)),a). >>>> Starting back demodulation with: 7525 (7524) EQUAL(f(h,f(g(f(h,e)),h)),h). >>>> Starting back demodulation with: 7527 (7526) EQUAL(f(h,f(g(f(h,e)),b)),b). >>>> Starting back demodulation with: 7530 (7529) EQUAL(f(h,g(f(h,e))),e). >> back demodulating: 1285 (840,132) EQUAL(f(k,f(h,g(f(h,e)))),k). >> back demodulating: 1286 (1285) EQUAL(f(k,f(h,g(f(h,e)))),k). >>>> Starting back demodulation with: 7533 (7532) EQUAL(f(f(h,e),g(f(x,g(x)))),h). >>>> Starting back demodulation with: 7535 (7534) EQUAL(f(f(h,e),g(f(g(x),x))),h). >>>> Starting back demodulation with: 7537 (7536) EQUAL(f(f(h,e),f(e,g(h))),e). 7538 back subsumes: 5657 (2989,3480) EQUAL(f(h,f(e,c)),f(f(h,e),c)). 7538 back subsumes: 5369 (1071,2989) EQUAL(f(h,f(e,h)),f(f(h,e),h)). 7538 back subsumes: 5358 (2013,2989) EQUAL(f(h,f(e,a)),f(f(h,e),a)). 7538 back subsumes: 5357 (2490,2989) EQUAL(f(h,f(e,d)),f(f(h,e),d)). >>>> Starting back demodulation with: 7540 (7539) EQUAL(f(f(h,e),f(g(h),e)),e). >>>> Starting back demodulation with: 7542 (7541) EQUAL(f(f(h,e),f(g(h),a)),a). >>>> Starting back demodulation with: 7544 (7543) EQUAL(f(f(h,e),f(g(h),b)),b). ** KEPT: 7546 (5354,5) EQUAL(f(f(x,f(h,e)),y),f(x,f(h,y))). ** KEPT: 7547 (5354,3213) EQUAL(f(g(f(f(h,e),g(a))),h),a). ---> New Demodulator: 7548 (7547) EQUAL(f(g(f(f(h,e),g(a))),h),a). ** KEPT: 7549 (5354,3209) EQUAL(f(g(f(f(h,e),g(d))),h),d). ---> New Demodulator: 7550 (7549) EQUAL(f(g(f(f(h,e),g(d))),h),d). ** KEPT: 7551 (5354,3211) EQUAL(f(g(f(f(h,e),g(b))),h),b). ---> New Demodulator: 7552 (7551) EQUAL(f(g(f(f(h,e),g(b))),h),b). ** KEPT: 7553 (5354,5) EQUAL(f(x,f(f(h,e),y)),f(f(x,h),y)). 7546 back subsumes: 7518 (5350,5) EQUAL(f(f(h,f(h,e)),x),f(h,f(h,x))). 7546 back subsumes: 5810 (3764,5) EQUAL(f(f(b,f(h,e)),x),f(b,f(h,x))). 7546 back subsumes: 4137 (1895,5) EQUAL(f(f(a,f(h,e)),x),f(a,f(h,x))). 7546 back subsumes: 2949 (1114,5) EQUAL(f(f(d,f(h,e)),x),f(d,f(h,x))). >>>> Starting back demodulation with: 7548 (7547) EQUAL(f(g(f(f(h,e),g(a))),h),a). >>>> Starting back demodulation with: 7550 (7549) EQUAL(f(g(f(f(h,e),g(d))),h),d). >>>> Starting back demodulation with: 7552 (7551) EQUAL(f(g(f(f(h,e),g(b))),h),b). 7553 back subsumes: 7514 (5350,5) EQUAL(f(h,f(f(h,e),x)),f(f(h,h),x)). 7553 back subsumes: 5805 (3764,5) EQUAL(f(b,f(f(h,e),x)),f(f(b,h),x)). 7553 back subsumes: 4133 (1895,5) EQUAL(f(a,f(f(h,e),x)),f(f(a,h),x)). 7553 back subsumes: 2943 (1114,5) EQUAL(f(d,f(f(h,e),x)),f(f(d,h),x)). new given clause: 7529 (4,5354) EQUAL(f(h,g(f(h,e))),e). ** KEPT: 7554 (9,7529) EQUAL(f(f(d,g(b)),g(f(h,e))),e). ---> New Demodulator: 7555 (7554) EQUAL(f(f(d,g(b)),g(f(h,e))),e). ** KEPT: 7556 (748,7529) EQUAL(f(h,g(f(d,g(b)))),e). ---> New Demodulator: 7557 (7556) EQUAL(f(h,g(f(d,g(b)))),e). ** KEPT: 7558 (2989,7529) EQUAL(f(h,f(e,g(f(h,e)))),e). ---> New Demodulator: 7559 (7558) EQUAL(f(h,f(e,g(f(h,e)))),e). >>>> Starting back demodulation with: 7555 (7554) EQUAL(f(f(d,g(b)),g(f(h,e))),e). >>>> Starting back demodulation with: 7557 (7556) EQUAL(f(h,g(f(d,g(b)))),e). >> back demodulating: 1287 (74,132) EQUAL(f(k,f(h,g(f(d,g(b))))),k). >> back demodulating: 1288 (1287) EQUAL(f(k,f(h,g(f(d,g(b))))),k). >> back demodulating: 5328 (9,5322) EQUAL(f(f(h,g(f(d,g(b)))),e),e). >> back demodulating: 5329 (5328) EQUAL(f(f(h,g(f(d,g(b)))),e),e). >>>> Starting back demodulation with: 7559 (7558) EQUAL(f(h,f(e,g(f(h,e)))),e). ** KEPT: 7560 (7529,5) EQUAL(f(f(x,h),g(f(h,e))),f(x,e)). ** KEPT: 7561 (7529,5) EQUAL(f(h,f(g(f(h,e)),x)),f(e,x)). new given clause: 5365 (3247,2989) EQUAL(f(h,f(e,f(e,e))),h). ** KEPT: 7562 (9,5365) EQUAL(f(f(d,g(b)),f(e,f(e,e))),h). ---> New Demodulator: 7563 (7562) EQUAL(f(f(d,g(b)),f(e,f(e,e))),h). ** KEPT: 7564 (4,5365) EQUAL(f(h,f(f(x,g(x)),f(e,e))),h). ---> New Demodulator: 7565 (7564) EQUAL(f(h,f(f(x,g(x)),f(e,e))),h). ** KEPT: 7566 (3,5365) EQUAL(f(h,f(f(g(x),x),f(e,e))),h). ---> New Demodulator: 7567 (7566) EQUAL(f(h,f(f(g(x),x),f(e,e))),h). ** KEPT: 7568 (4,5365) EQUAL(f(h,f(e,f(f(x,g(x)),e))),h). ---> New Demodulator: 7569 (7568) EQUAL(f(h,f(e,f(f(x,g(x)),e))),h). ** KEPT: 7570 (3,5365) EQUAL(f(h,f(e,f(f(g(x),x),e))),h). ---> New Demodulator: 7571 (7570) EQUAL(f(h,f(e,f(f(g(x),x),e))),h). ** KEPT: 7572 (4,5365) EQUAL(f(h,f(e,f(e,f(x,g(x))))),h). ---> New Demodulator: 7573 (7572) EQUAL(f(h,f(e,f(e,f(x,g(x))))),h). ** KEPT: 7574 (3,5365) EQUAL(f(h,f(e,f(e,f(g(x),x)))),h). ---> New Demodulator: 7575 (7574) EQUAL(f(h,f(e,f(e,f(g(x),x)))),h). ** KEPT: 7576 (5,5365) EQUAL(f(h,f(f(e,e),e)),h). ---> New Demodulator: 7577 (7576) EQUAL(f(h,f(f(e,e),e)),h). ** KEPT: 7578 (5354,5365) EQUAL(f(f(h,e),f(e,f(e,e))),h). ---> New Demodulator: 7579 (7578) EQUAL(f(f(h,e),f(e,f(e,e))),h). ** KEPT: 7580 (2989,5365) EQUAL(f(h,f(e,f(e,f(e,e)))),h). ---> New Demodulator: 7581 (7580) EQUAL(f(h,f(e,f(e,f(e,e)))),h). >>>> Starting back demodulation with: 7563 (7562) EQUAL(f(f(d,g(b)),f(e,f(e,e))),h). >>>> Starting back demodulation with: 7565 (7564) EQUAL(f(h,f(f(x,g(x)),f(e,e))),h). >>>> Starting back demodulation with: 7567 (7566) EQUAL(f(h,f(f(g(x),x),f(e,e))),h). >>>> Starting back demodulation with: 7569 (7568) EQUAL(f(h,f(e,f(f(x,g(x)),e))),h). >>>> Starting back demodulation with: 7571 (7570) EQUAL(f(h,f(e,f(f(g(x),x),e))),h). >>>> Starting back demodulation with: 7573 (7572) EQUAL(f(h,f(e,f(e,f(x,g(x))))),h). >>>> Starting back demodulation with: 7575 (7574) EQUAL(f(h,f(e,f(e,f(g(x),x)))),h). >>>> Starting back demodulation with: 7577 (7576) EQUAL(f(h,f(f(e,e),e)),h). >> back demodulating: 4763 (132,2435) EQUAL(f(k,f(h,f(f(e,e),e))),d). >> back demodulating: 4764 (4763) EQUAL(f(k,f(h,f(f(e,e),e))),d). >>>> Starting back demodulation with: 7579 (7578) EQUAL(f(f(h,e),f(e,f(e,e))),h). >>>> Starting back demodulation with: 7581 (7580) EQUAL(f(h,f(e,f(e,f(e,e)))),h). ** KEPT: 7582 (5365,3118) EQUAL(f(h,g(f(e,f(e,e)))),h). ---> New Demodulator: 7583 (7582) EQUAL(f(h,g(f(e,f(e,e)))),h). ** KEPT: 7584 (5365,5) EQUAL(f(f(x,h),f(e,f(e,e))),f(x,h)). ** KEPT: 7585 (5365,5) EQUAL(f(h,f(f(e,f(e,e)),x)),f(h,x)). >>>> Starting back demodulation with: 7583 (7582) EQUAL(f(h,g(f(e,f(e,e)))),h). new given clause: 5412 (5384,3118) EQUAL(f(e,g(f(e,g(h)))),h). ** KEPT: 7586 (4,5412) EQUAL(f(f(x,g(x)),g(f(e,g(h)))),h). ---> New Demodulator: 7587 (7586) EQUAL(f(f(x,g(x)),g(f(e,g(h)))),h). ** KEPT: 7588 (3,5412) EQUAL(f(f(g(x),x),g(f(e,g(h)))),h). ---> New Demodulator: 7589 (7588) EQUAL(f(f(g(x),x),g(f(e,g(h)))),h). ** KEPT: 7590 (4,5412) EQUAL(f(e,g(f(f(x,g(x)),g(h)))),h). ---> New Demodulator: 7591 (7590) EQUAL(f(e,g(f(f(x,g(x)),g(h)))),h). ** KEPT: 7592 (3,5412) EQUAL(f(e,g(f(f(g(x),x),g(h)))),h). ---> New Demodulator: 7593 (7592) EQUAL(f(e,g(f(f(g(x),x),g(h)))),h). ** KEPT: 7594 (9,5412) EQUAL(f(e,g(f(e,g(f(d,g(b)))))),h). ---> New Demodulator: 7595 (7594) EQUAL(f(e,g(f(e,g(f(d,g(b)))))),h). ** KEPT: 7596 (1,5412) EQUAL(g(f(e,g(h))),h). ---> New Demodulator: 7597 (7596) EQUAL(g(f(e,g(h))),h). ** KEPT: 7598 (9,5412,7597) EQUAL(f(d,g(b)),f(e,h)). >>>> Starting back demodulation with: 7587 (7586) EQUAL(f(f(x,g(x)),g(f(e,g(h)))),h). >>>> Starting back demodulation with: 7589 (7588) EQUAL(f(f(g(x),x),g(f(e,g(h)))),h). >>>> Starting back demodulation with: 7591 (7590) EQUAL(f(e,g(f(f(x,g(x)),g(h)))),h). >>>> Starting back demodulation with: 7593 (7592) EQUAL(f(e,g(f(f(g(x),x),g(h)))),h). >>>> Starting back demodulation with: 7595 (7594) EQUAL(f(e,g(f(e,g(f(d,g(b)))))),h). >>>> Starting back demodulation with: 7597 (7596) EQUAL(g(f(e,g(h))),h). >> back demodulating: 933 (878,113) EQUAL(f(k,g(f(e,g(h)))),d). >> back demodulating: 934 (933) EQUAL(f(k,g(f(e,g(h)))),d). >> back demodulating: 2468 (933,5) EQUAL(f(f(x,k),g(f(e,g(h)))),f(x,d)). >> back demodulating: 2469 (933,5) EQUAL(f(k,f(g(f(e,g(h))),x)),f(d,x)). >> back demodulating: 5412 (5384,3118) EQUAL(f(e,g(f(e,g(h)))),h). >> back demodulating: 5413 (5412) EQUAL(f(e,g(f(e,g(h)))),h). >> back demodulating: 7586 (4,5412) EQUAL(f(f(x,g(x)),g(f(e,g(h)))),h). >> back demodulating: 7587 (7586) EQUAL(f(f(x,g(x)),g(f(e,g(h)))),h). >> back demodulating: 7588 (3,5412) EQUAL(f(f(g(x),x),g(f(e,g(h)))),h). >> back demodulating: 7589 (7588) EQUAL(f(f(g(x),x),g(f(e,g(h)))),h). ** KEPT: 7599 (5412,7529,7597) EQUAL(f(f(e,h),g(f(h,e))),e). ---> New Demodulator: 7600 (7599) EQUAL(f(f(e,h),g(f(h,e))),e). ** KEPT: 7601 (5412,5384,7597) EQUAL(f(f(e,h),f(e,g(h))),e). ---> New Demodulator: 7602 (7601) EQUAL(f(f(e,h),f(e,g(h))),e). ** KEPT: 7603 (5412,5365,7597) EQUAL(f(f(e,h),f(e,f(e,e))),h). ---> New Demodulator: 7604 (7603) EQUAL(f(f(e,h),f(e,f(e,e))),h). ** KEPT: 7605 (5412,5354,7597) EQUAL(f(f(h,e),x),f(f(e,h),x)). ** KEPT: 7606 (5412,5312,7597) EQUAL(f(f(e,h),f(g(h),e)),e). ---> New Demodulator: 7607 (7606) EQUAL(f(f(e,h),f(g(h),e)),e). ** KEPT: 7608 (5412,3261,7597) EQUAL(f(f(e,h),g(f(e,e))),h). ---> New Demodulator: 7609 (7608) EQUAL(f(f(e,h),g(f(e,e))),h). ** KEPT: 7610 (5412,3247,7597) EQUAL(f(f(e,h),f(e,e)),h). ---> New Demodulator: 7611 (7610) EQUAL(f(f(e,h),f(e,e)),h). ** KEPT: 7612 (5412,3215,7597) EQUAL(f(f(f(e,h),g(a)),c),d). ---> New Demodulator: 7613 (7612) EQUAL(f(f(f(e,h),g(a)),c),d). ** KEPT: 7614 (5412,3213,7597) EQUAL(f(g(f(f(e,h),g(a))),h),a). ---> New Demodulator: 7615 (7614) EQUAL(f(g(f(f(e,h),g(a))),h),a). ** KEPT: 7616 (5412,3143,7597) EQUAL(f(f(e,h),g(f(x,g(x)))),h). ---> New Demodulator: 7617 (7616) EQUAL(f(f(e,h),g(f(x,g(x)))),h). ** KEPT: 7618 (5412,3141,7597) EQUAL(f(f(e,h),g(f(g(x),x))),h). ---> New Demodulator: 7619 (7618) EQUAL(f(f(e,h),g(f(g(x),x))),h). ** KEPT: 7620 (5412,3112,7597) EQUAL(f(f(e,h),f(g(d),k)),e). ---> New Demodulator: 7621 (7620) EQUAL(f(f(e,h),f(g(d),k)),e). ** KEPT: 7622 (5412,2989,7597) EQUAL(f(h,f(e,x)),f(f(e,h),x)). ** KEPT: 7623 (5412,1751,7597) EQUAL(f(f(e,h),g(f(g(b),h))),b). ---> New Demodulator: 7624 (7623) EQUAL(f(f(e,h),g(f(g(b),h))),b). ** KEPT: 7625 (5412,3126,7597) EQUAL(f(f(f(e,h),g(x)),x),h). ---> New Demodulator: 7626 (7625) EQUAL(f(f(f(e,h),g(x)),x),h). ** KEPT: 7627 (5412,3209,7597) EQUAL(f(g(f(f(e,h),g(d))),h),d). ---> New Demodulator: 7628 (7627) EQUAL(f(g(f(f(e,h),g(d))),h),d). ** KEPT: 7629 (5412,3134,7597) EQUAL(f(f(f(e,h),g(d)),k),e). ---> New Demodulator: 7630 (7629) EQUAL(f(f(f(e,h),g(d)),k),e). ** KEPT: 7631 (5412,1300,7597) EQUAL(f(k,f(f(e,h),g(d))),e). ---> New Demodulator: 7632 (7631) EQUAL(f(k,f(f(e,h),g(d))),e). ** KEPT: 7633 (5412,5322,7597) EQUAL(f(f(f(e,h),g(h)),e),e). ---> New Demodulator: 7634 (7633) EQUAL(f(f(f(e,h),g(h)),e),e). ** KEPT: 7635 (5412,1295,7597) EQUAL(f(k,f(f(e,h),g(h))),k). ---> New Demodulator: 7636 (7635) EQUAL(f(k,f(f(e,h),g(h))),k). ** KEPT: 7637 (5412,3211,7597) EQUAL(f(g(f(f(e,h),g(b))),h),b). ---> New Demodulator: 7638 (7637) EQUAL(f(g(f(f(e,h),g(b))),h),b). ** KEPT: 7639 (5412,1297,7597) EQUAL(f(k,f(f(e,h),g(b))),h). ---> New Demodulator: 7640 (7639) EQUAL(f(k,f(f(e,h),g(b))),h). ** KEPT: 7641 (5412,1189,7597) EQUAL(f(f(e,h),g(f(g(a),h))),a). ---> New Demodulator: 7642 (7641) EQUAL(f(f(e,h),g(f(g(a),h))),a). ** KEPT: 7643 (5412,762,7597) EQUAL(f(f(e,h),f(b,g(d))),e). ---> New Demodulator: 7644 (7643) EQUAL(f(f(e,h),f(b,g(d))),e). ** KEPT: 7645 (5412,750,7597) EQUAL(f(f(e,h),f(b,b)),f(k,d)). ** KEPT: 7646 (5412,3118,7597) EQUAL(f(f(f(e,h),x),g(x)),h). ---> New Demodulator: 7647 (7646) EQUAL(f(f(f(e,h),x),g(x)),h). ** KEPT: 7648 (5412,48,7597) EQUAL(f(f(e,h),f(b,g(h))),k). ---> New Demodulator: 7649 (7648) EQUAL(f(f(e,h),f(b,g(h))),k). ** KEPT: 7650 (5412,5410,7597) EQUAL(f(f(h,e),g(f(e,h))),e). ---> New Demodulator: 7651 (7650) EQUAL(f(f(h,e),g(f(e,h))),e). ** KEPT: 7652 (5412,3169,7597) EQUAL(f(b,g(f(g(f(e,h)),b))),h). ---> New Demodulator: 7653 (7652) EQUAL(f(b,g(f(g(f(e,h)),b))),h). ** KEPT: 7654 (5412,3151,7597) EQUAL(f(a,g(f(g(f(e,h)),a))),h). ---> New Demodulator: 7655 (7654) EQUAL(f(a,g(f(g(f(e,h)),a))),h). ** KEPT: 7656 (5412,5312,7597) EQUAL(f(h,f(g(f(e,h)),e)),e). ---> New Demodulator: 7657 (7656) EQUAL(f(h,f(g(f(e,h)),e)),e). ** KEPT: 7658 (5412,5233,7597) EQUAL(g(f(g(f(e,h)),e)),h). ---> New Demodulator: 7659 (7658) EQUAL(g(f(g(f(e,h)),e)),h). ** KEPT: 7660 (5412,2580,7597) EQUAL(f(f(e,d),g(f(e,h))),k). ---> New Demodulator: 7661 (7660) EQUAL(f(f(e,d),g(f(e,h))),k). ** KEPT: 7662 (5412,1791,7597) EQUAL(f(f(g(f(e,h)),c),g(a)),b). ---> New Demodulator: 7663 (7662) EQUAL(f(f(g(f(e,h)),c),g(a)),b). ** KEPT: 7664 (5412,5322,7597) EQUAL(f(f(h,g(f(e,h))),e),e). ---> New Demodulator: 7665 (7664) EQUAL(f(f(h,g(f(e,h))),e),e). ** KEPT: 7666 (5412,1295,7597) EQUAL(f(k,f(h,g(f(e,h)))),k). ---> New Demodulator: 7667 (7666) EQUAL(f(k,f(h,g(f(e,h)))),k). ** KEPT: 7668 (5412,3339,7597) EQUAL(f(g(f(a,g(f(e,h)))),c),d). ---> New Demodulator: 7669 (7668) EQUAL(f(g(f(a,g(f(e,h)))),c),d). ** KEPT: 7670 (5412,1165,7597) EQUAL(f(g(f(a,g(f(e,h)))),a),h). ---> New Demodulator: 7671 (7670) EQUAL(f(g(f(a,g(f(e,h)))),a),h). ** KEPT: 7672 (5412,1155,7597) EQUAL(f(g(f(g(f(e,h)),k)),b),h). ---> New Demodulator: 7673 (7672) EQUAL(f(g(f(g(f(e,h)),k)),b),h). ** KEPT: 7674 (5412,997,7597) EQUAL(f(c,f(g(a),g(f(e,h)))),k). ---> New Demodulator: 7675 (7674) EQUAL(f(c,f(g(a),g(f(e,h)))),k). ** KEPT: 7676 (5412,931,7597) EQUAL(f(f(d,e),g(f(e,h))),k). ---> New Demodulator: 7677 (7676) EQUAL(f(f(d,e),g(f(e,h))),k). ** KEPT: 7678 (5412,5384,7597) EQUAL(f(h,f(e,g(f(e,h)))),e). ---> New Demodulator: 7679 (7678) EQUAL(f(h,f(e,g(f(e,h)))),e). ** KEPT: 7680 (5412,878,7597) EQUAL(f(d,f(e,g(f(e,h)))),k). ---> New Demodulator: 7681 (7680) EQUAL(f(d,f(e,g(f(e,h)))),k). ** KEPT: 7682 (5412,93,7597) EQUAL(f(f(c,g(a)),g(f(e,h))),k). ---> New Demodulator: 7683 (7682) EQUAL(f(f(c,g(a)),g(f(e,h))),k). ** KEPT: 7684 (5412,70,7597) EQUAL(f(d,g(f(e,h))),k). ---> New Demodulator: 7685 (7684) EQUAL(f(d,g(f(e,h))),k). ** KEPT: 7686 (5412,3173,7597) EQUAL(f(k,g(f(b,g(f(e,h))))),h). ---> New Demodulator: 7687 (7686) EQUAL(f(k,g(f(b,g(f(e,h))))),h). ** KEPT: 7688 (5412,1777,7597) EQUAL(f(g(f(b,g(f(e,h)))),b),h). ---> New Demodulator: 7689 (7688) EQUAL(f(g(f(b,g(f(e,h)))),b),h). ** KEPT: 7690 (5412,48,7597) EQUAL(f(h,f(b,g(f(e,h)))),k). ---> New Demodulator: 7691 (7690) EQUAL(f(h,f(b,g(f(e,h)))),k). >>>> Starting back demodulation with: 7600 (7599) EQUAL(f(f(e,h),g(f(h,e))),e). >>>> Starting back demodulation with: 7602 (7601) EQUAL(f(f(e,h),f(e,g(h))),e). >>>> Starting back demodulation with: 7604 (7603) EQUAL(f(f(e,h),f(e,f(e,e))),h). 7605 back subsumes: 6967 (2490,4777) EQUAL(f(f(h,e),d),f(f(e,h),d)). 7605 back subsumes: 6420 (2013,4375) EQUAL(f(f(h,e),a),f(f(e,h),a)). 7605 back subsumes: 5020 (1071,2788) EQUAL(f(f(h,e),h),f(f(e,h),h)). >>>> Starting back demodulation with: 7607 (7606) EQUAL(f(f(e,h),f(g(h),e)),e). >>>> Starting back demodulation with: 7609 (7608) EQUAL(f(f(e,h),g(f(e,e))),h). >>>> Starting back demodulation with: 7611 (7610) EQUAL(f(f(e,h),f(e,e)),h). >>>> Starting back demodulation with: 7613 (7612) EQUAL(f(f(f(e,h),g(a)),c),d). >>>> Starting back demodulation with: 7615 (7614) EQUAL(f(g(f(f(e,h),g(a))),h),a). >>>> Starting back demodulation with: 7617 (7616) EQUAL(f(f(e,h),g(f(x,g(x)))),h). >>>> Starting back demodulation with: 7619 (7618) EQUAL(f(f(e,h),g(f(g(x),x))),h). >>>> Starting back demodulation with: 7621 (7620) EQUAL(f(f(e,h),f(g(d),k)),e). 7622 back subsumes: 6966 (2989,4777) EQUAL(f(h,f(e,d)),f(f(e,h),d)). 7622 back subsumes: 6419 (2989,4375) EQUAL(f(h,f(e,a)),f(f(e,h),a)). 7622 back subsumes: 5046 (2788,2793) EQUAL(f(h,f(e,h)),f(f(e,h),h)). >>>> Starting back demodulation with: 7624 (7623) EQUAL(f(f(e,h),g(f(g(b),h))),b). >>>> Starting back demodulation with: 7626 (7625) EQUAL(f(f(f(e,h),g(x)),x),h). >>>> Starting back demodulation with: 7628 (7627) EQUAL(f(g(f(f(e,h),g(d))),h),d). >>>> Starting back demodulation with: 7630 (7629) EQUAL(f(f(f(e,h),g(d)),k),e). >>>> Starting back demodulation with: 7632 (7631) EQUAL(f(k,f(f(e,h),g(d))),e). >>>> Starting back demodulation with: 7634 (7633) EQUAL(f(f(f(e,h),g(h)),e),e). >>>> Starting back demodulation with: 7636 (7635) EQUAL(f(k,f(f(e,h),g(h))),k). >>>> Starting back demodulation with: 7638 (7637) EQUAL(f(g(f(f(e,h),g(b))),h),b). >>>> Starting back demodulation with: 7640 (7639) EQUAL(f(k,f(f(e,h),g(b))),h). >>>> Starting back demodulation with: 7642 (7641) EQUAL(f(f(e,h),g(f(g(a),h))),a). >>>> Starting back demodulation with: 7644 (7643) EQUAL(f(f(e,h),f(b,g(d))),e). >>>> Starting back demodulation with: 7647 (7646) EQUAL(f(f(f(e,h),x),g(x)),h). >> back demodulating: 6973 (6972) EQUAL(f(f(f(e,h),d),g(d)),h). >> back demodulating: 6972 (4777,3118) EQUAL(f(f(f(e,h),d),g(d)),h). >> back demodulating: 6426 (6425) EQUAL(f(f(f(e,h),a),g(a)),h). >> back demodulating: 6425 (4375,3118) EQUAL(f(f(f(e,h),a),g(a)),h). >> back demodulating: 5027 (5026) EQUAL(f(f(f(e,h),h),g(h)),h). >> back demodulating: 5026 (2788,3118) EQUAL(f(f(f(e,h),h),g(h)),h). >>>> Starting back demodulation with: 7649 (7648) EQUAL(f(f(e,h),f(b,g(h))),k). >>>> Starting back demodulation with: 7651 (7650) EQUAL(f(f(h,e),g(f(e,h))),e). >>>> Starting back demodulation with: 7653 (7652) EQUAL(f(b,g(f(g(f(e,h)),b))),h). >>>> Starting back demodulation with: 7655 (7654) EQUAL(f(a,g(f(g(f(e,h)),a))),h). >>>> Starting back demodulation with: 7657 (7656) EQUAL(f(h,f(g(f(e,h)),e)),e). >>>> Starting back demodulation with: 7659 (7658) EQUAL(g(f(g(f(e,h)),e)),h). >>>> Starting back demodulation with: 7661 (7660) EQUAL(f(f(e,d),g(f(e,h))),k). >>>> Starting back demodulation with: 7663 (7662) EQUAL(f(f(g(f(e,h)),c),g(a)),b). >>>> Starting back demodulation with: 7665 (7664) EQUAL(f(f(h,g(f(e,h))),e),e). >>>> Starting back demodulation with: 7667 (7666) EQUAL(f(k,f(h,g(f(e,h)))),k). >>>> Starting back demodulation with: 7669 (7668) EQUAL(f(g(f(a,g(f(e,h)))),c),d). >>>> Starting back demodulation with: 7671 (7670) EQUAL(f(g(f(a,g(f(e,h)))),a),h). >>>> Starting back demodulation with: 7673 (7672) EQUAL(f(g(f(g(f(e,h)),k)),b),h). >>>> Starting back demodulation with: 7675 (7674) EQUAL(f(c,f(g(a),g(f(e,h)))),k). >>>> Starting back demodulation with: 7677 (7676) EQUAL(f(f(d,e),g(f(e,h))),k). >>>> Starting back demodulation with: 7679 (7678) EQUAL(f(h,f(e,g(f(e,h)))),e). >>>> Starting back demodulation with: 7681 (7680) EQUAL(f(d,f(e,g(f(e,h)))),k). >>>> Starting back demodulation with: 7683 (7682) EQUAL(f(f(c,g(a)),g(f(e,h))),k). >>>> Starting back demodulation with: 7685 (7684) EQUAL(f(d,g(f(e,h))),k). >> back demodulating: 5040 (105,2793) EQUAL(f(f(d,g(f(e,h))),h),d). >> back demodulating: 5041 (5040) EQUAL(f(f(d,g(f(e,h))),h),d). >>>> Starting back demodulation with: 7687 (7686) EQUAL(f(k,g(f(b,g(f(e,h))))),h). >>>> Starting back demodulation with: 7689 (7688) EQUAL(f(g(f(b,g(f(e,h)))),b),h). >>>> Starting back demodulation with: 7691 (7690) EQUAL(f(h,f(b,g(f(e,h)))),k). new given clause: 7596 (1,5412) EQUAL(g(f(e,g(h))),h). ** KEPT: 7692 (4,7596) EQUAL(g(f(f(x,g(x)),g(h))),h). ---> New Demodulator: 7693 (7692) EQUAL(g(f(f(x,g(x)),g(h))),h). ** KEPT: 7694 (3,7596) EQUAL(g(f(f(g(x),x),g(h))),h). ---> New Demodulator: 7695 (7694) EQUAL(g(f(f(g(x),x),g(h))),h). ** KEPT: 7696 (9,7596) EQUAL(g(f(e,g(f(d,g(b))))),h). ---> New Demodulator: 7697 (7696) EQUAL(g(f(e,g(f(d,g(b))))),h). >>>> Starting back demodulation with: 7693 (7692) EQUAL(g(f(f(x,g(x)),g(h))),h). >> back demodulating: 2462 (4,933) EQUAL(f(k,g(f(f(x,g(x)),g(h)))),d). >> back demodulating: 2463 (2462) EQUAL(f(k,g(f(f(x,g(x)),g(h)))),d). >> back demodulating: 7590 (4,5412) EQUAL(f(e,g(f(f(x,g(x)),g(h)))),h). >> back demodulating: 7591 (7590) EQUAL(f(e,g(f(f(x,g(x)),g(h)))),h). >>>> Starting back demodulation with: 7695 (7694) EQUAL(g(f(f(g(x),x),g(h))),h). >> back demodulating: 2464 (3,933) EQUAL(f(k,g(f(f(g(x),x),g(h)))),d). >> back demodulating: 2465 (2464) EQUAL(f(k,g(f(f(g(x),x),g(h)))),d). >> back demodulating: 7592 (3,5412) EQUAL(f(e,g(f(f(g(x),x),g(h)))),h). >> back demodulating: 7593 (7592) EQUAL(f(e,g(f(f(g(x),x),g(h)))),h). >>>> Starting back demodulation with: 7697 (7696) EQUAL(g(f(e,g(f(d,g(b))))),h). >> back demodulating: 2466 (9,933) EQUAL(f(k,g(f(e,g(f(d,g(b)))))),d). >> back demodulating: 2467 (2466) EQUAL(f(k,g(f(e,g(f(d,g(b)))))),d). >> back demodulating: 7594 (9,5412) EQUAL(f(e,g(f(e,g(f(d,g(b)))))),h). >> back demodulating: 7595 (7594) EQUAL(f(e,g(f(e,g(f(d,g(b)))))),h). ** KEPT: 7698 (7596,2126) EQUAL(f(h,f(f(e,g(h)),a)),a). ---> New Demodulator: 7699 (7698) EQUAL(f(h,f(f(e,g(h)),a)),a). ** KEPT: 7700 (7596,2120) EQUAL(f(f(e,g(h)),f(h,a)),a). ---> New Demodulator: 7701 (7700) EQUAL(f(f(e,g(h)),f(h,a)),a). ** KEPT: 7702 (7596,3126) EQUAL(f(f(h,h),f(e,g(h))),h). ---> New Demodulator: 7703 (7702) EQUAL(f(f(h,h),f(e,g(h))),h). ** KEPT: 7704 (7596,1197) EQUAL(f(f(e,g(h)),f(h,d)),d). ---> New Demodulator: 7705 (7704) EQUAL(f(f(e,g(h)),f(h,d)),d). ** KEPT: 7706 (7596,1175) EQUAL(f(h,f(f(e,g(h)),d)),d). ---> New Demodulator: 7707 (7706) EQUAL(f(h,f(f(e,g(h)),d)),d). ** KEPT: 7708 (7596,1133) EQUAL(f(f(e,g(h)),f(h,h)),h). ---> New Demodulator: 7709 (7708) EQUAL(f(f(e,g(h)),f(h,h)),h). ** KEPT: 7710 (7596,1125) EQUAL(f(h,f(f(e,g(h)),h)),h). ---> New Demodulator: 7711 (7710) EQUAL(f(h,f(f(e,g(h)),h)),h). ** KEPT: 7712 (7596,1725) EQUAL(f(f(b,h),f(e,g(h))),b). ---> New Demodulator: 7713 (7712) EQUAL(f(f(b,h),f(e,g(h))),b). ** KEPT: 7714 (7596,520) EQUAL(f(f(a,h),f(e,g(h))),a). ---> New Demodulator: 7715 (7714) EQUAL(f(f(a,h),f(e,g(h))),a). ** KEPT: 7716 (7596,266,69) EQUAL(f(f(e,g(h)),d),b). ---> New Demodulator: 7717 (7716) EQUAL(f(f(e,g(h)),d),b). ** KEPT: 7718 (7596,260) EQUAL(f(h,f(f(e,g(h)),b)),b). ---> New Demodulator: 7719 (7718) EQUAL(f(h,f(f(e,g(h)),b)),b). ** KEPT: 7720 (7596,105) EQUAL(f(f(d,h),f(e,g(h))),d). ---> New Demodulator: 7721 (7720) EQUAL(f(f(d,h),f(e,g(h))),d). ** KEPT: 7722 (7596,2009) EQUAL(f(f(f(e,g(h)),h),a),a). ---> New Demodulator: 7723 (7722) EQUAL(f(f(f(e,g(h)),h),a),a). ** KEPT: 7724 (7596,1577) EQUAL(f(b,f(f(e,g(h)),h)),b). ---> New Demodulator: 7725 (7724) EQUAL(f(b,f(f(e,g(h)),h)),b). ** KEPT: 7726 (7596,1135) EQUAL(f(f(f(e,g(h)),h),d),d). ---> New Demodulator: 7727 (7726) EQUAL(f(f(f(e,g(h)),h),d),d). ** KEPT: 7728 (7596,1067) EQUAL(f(f(f(e,g(h)),h),h),h). ---> New Demodulator: 7729 (7728) EQUAL(f(f(f(e,g(h)),h),h),h). ** KEPT: 7730 (7596,479) EQUAL(f(a,f(f(e,g(h)),h)),a). ---> New Demodulator: 7731 (7730) EQUAL(f(a,f(f(e,g(h)),h)),a). ** KEPT: 7732 (7596,235) EQUAL(f(f(f(e,g(h)),h),b),b). ---> New Demodulator: 7733 (7732) EQUAL(f(f(f(e,g(h)),h),b),b). ** KEPT: 7734 (7596,3143) EQUAL(f(h,g(f(f(e,g(h)),h))),h). ---> New Demodulator: 7735 (7734) EQUAL(f(h,g(f(f(e,g(h)),h))),h). ** KEPT: 7736 (7596,2156) EQUAL(f(g(f(f(e,g(h)),h)),a),a). ---> New Demodulator: 7737 (7736) EQUAL(f(g(f(f(e,g(h)),h)),a),a). ** KEPT: 7738 (7596,1741) EQUAL(f(b,g(f(f(e,g(h)),h))),b). ---> New Demodulator: 7739 (7738) EQUAL(f(b,g(f(f(e,g(h)),h))),b). ** KEPT: 7740 (7596,1215) EQUAL(f(g(f(f(e,g(h)),h)),d),d). ---> New Demodulator: 7741 (7740) EQUAL(f(g(f(f(e,g(h)),h)),d),d). ** KEPT: 7742 (7596,1149) EQUAL(f(g(f(f(e,g(h)),h)),h),h). ---> New Demodulator: 7743 (7742) EQUAL(f(g(f(f(e,g(h)),h)),h),h). ** KEPT: 7744 (7596,562) EQUAL(f(a,g(f(f(e,g(h)),h))),a). ---> New Demodulator: 7745 (7744) EQUAL(f(a,g(f(f(e,g(h)),h))),a). ** KEPT: 7746 (7596,280) EQUAL(f(g(f(f(e,g(h)),h)),b),b). ---> New Demodulator: 7747 (7746) EQUAL(f(g(f(f(e,g(h)),h)),b),b). ** KEPT: 7748 (7596,135) EQUAL(f(d,g(f(f(e,g(h)),h))),d). ---> New Demodulator: 7749 (7748) EQUAL(f(d,g(f(f(e,g(h)),h))),d). ** KEPT: 7750 (7596,84) EQUAL(f(d,f(f(e,g(h)),h)),d). ---> New Demodulator: 7751 (7750) EQUAL(f(d,f(f(e,g(h)),h)),d). ** KEPT: 7752 (7596,36) -EQUAL(f(f(e,g(h)),h),f(k,g(b))). ** KEPT: 7753 (7596,4) EQUAL(f(f(e,g(h)),h),e). ---> New Demodulator: 7754 (7753) EQUAL(f(f(e,g(h)),h),e). >>>> Starting back demodulation with: 7699 (7698) EQUAL(f(h,f(f(e,g(h)),a)),a). >>>> Starting back demodulation with: 7701 (7700) EQUAL(f(f(e,g(h)),f(h,a)),a). >>>> Starting back demodulation with: 7703 (7702) EQUAL(f(f(h,h),f(e,g(h))),h). >>>> Starting back demodulation with: 7705 (7704) EQUAL(f(f(e,g(h)),f(h,d)),d). >>>> Starting back demodulation with: 7707 (7706) EQUAL(f(h,f(f(e,g(h)),d)),d). >>>> Starting back demodulation with: 7709 (7708) EQUAL(f(f(e,g(h)),f(h,h)),h). >>>> Starting back demodulation with: 7711 (7710) EQUAL(f(h,f(f(e,g(h)),h)),h). >>>> Starting back demodulation with: 7713 (7712) EQUAL(f(f(b,h),f(e,g(h))),b). >>>> Starting back demodulation with: 7715 (7714) EQUAL(f(f(a,h),f(e,g(h))),a). >>>> Starting back demodulation with: 7717 (7716) EQUAL(f(f(e,g(h)),d),b). >> back demodulating: 7706 (7596,1175) EQUAL(f(h,f(f(e,g(h)),d)),d). >> back demodulating: 7707 (7706) EQUAL(f(h,f(f(e,g(h)),d)),d). >>>> Starting back demodulation with: 7719 (7718) EQUAL(f(h,f(f(e,g(h)),b)),b). >>>> Starting back demodulation with: 7721 (7720) EQUAL(f(f(d,h),f(e,g(h))),d). >>>> Starting back demodulation with: 7723 (7722) EQUAL(f(f(f(e,g(h)),h),a),a). >>>> Starting back demodulation with: 7725 (7724) EQUAL(f(b,f(f(e,g(h)),h)),b). >>>> Starting back demodulation with: 7727 (7726) EQUAL(f(f(f(e,g(h)),h),d),d). >>>> Starting back demodulation with: 7729 (7728) EQUAL(f(f(f(e,g(h)),h),h),h). >>>> Starting back demodulation with: 7731 (7730) EQUAL(f(a,f(f(e,g(h)),h)),a). >>>> Starting back demodulation with: 7733 (7732) EQUAL(f(f(f(e,g(h)),h),b),b). >>>> Starting back demodulation with: 7735 (7734) EQUAL(f(h,g(f(f(e,g(h)),h))),h). >>>> Starting back demodulation with: 7737 (7736) EQUAL(f(g(f(f(e,g(h)),h)),a),a). >>>> Starting back demodulation with: 7739 (7738) EQUAL(f(b,g(f(f(e,g(h)),h))),b). >>>> Starting back demodulation with: 7741 (7740) EQUAL(f(g(f(f(e,g(h)),h)),d),d). >>>> Starting back demodulation with: 7743 (7742) EQUAL(f(g(f(f(e,g(h)),h)),h),h). >>>> Starting back demodulation with: 7745 (7744) EQUAL(f(a,g(f(f(e,g(h)),h))),a). >>>> Starting back demodulation with: 7747 (7746) EQUAL(f(g(f(f(e,g(h)),h)),b),b). >>>> Starting back demodulation with: 7749 (7748) EQUAL(f(d,g(f(f(e,g(h)),h))),d). >>>> Starting back demodulation with: 7751 (7750) EQUAL(f(d,f(f(e,g(h)),h)),d). >>>> Starting back demodulation with: 7754 (7753) EQUAL(f(f(e,g(h)),h),e). >> back demodulating: 7710 (7596,1125) EQUAL(f(h,f(f(e,g(h)),h)),h). >> back demodulating: 7711 (7710) EQUAL(f(h,f(f(e,g(h)),h)),h). >> back demodulating: 7722 (7596,2009) EQUAL(f(f(f(e,g(h)),h),a),a). >> back demodulating: 7723 (7722) EQUAL(f(f(f(e,g(h)),h),a),a). >> back demodulating: 7724 (7596,1577) EQUAL(f(b,f(f(e,g(h)),h)),b). >> back demodulating: 7725 (7724) EQUAL(f(b,f(f(e,g(h)),h)),b). >> back demodulating: 7726 (7596,1135) EQUAL(f(f(f(e,g(h)),h),d),d). >> back demodulating: 7727 (7726) EQUAL(f(f(f(e,g(h)),h),d),d). >> back demodulating: 7728 (7596,1067) EQUAL(f(f(f(e,g(h)),h),h),h). >> back demodulating: 7729 (7728) EQUAL(f(f(f(e,g(h)),h),h),h). >> back demodulating: 7730 (7596,479) EQUAL(f(a,f(f(e,g(h)),h)),a). >> back demodulating: 7731 (7730) EQUAL(f(a,f(f(e,g(h)),h)),a). >> back demodulating: 7732 (7596,235) EQUAL(f(f(f(e,g(h)),h),b),b). >> back demodulating: 7733 (7732) EQUAL(f(f(f(e,g(h)),h),b),b). >> back demodulating: 7734 (7596,3143) EQUAL(f(h,g(f(f(e,g(h)),h))),h). >> back demodulating: 7735 (7734) EQUAL(f(h,g(f(f(e,g(h)),h))),h). >> back demodulating: 7736 (7596,2156) EQUAL(f(g(f(f(e,g(h)),h)),a),a). >> back demodulating: 7737 (7736) EQUAL(f(g(f(f(e,g(h)),h)),a),a). >> back demodulating: 7738 (7596,1741) EQUAL(f(b,g(f(f(e,g(h)),h))),b). >> back demodulating: 7739 (7738) EQUAL(f(b,g(f(f(e,g(h)),h))),b). >> back demodulating: 7740 (7596,1215) EQUAL(f(g(f(f(e,g(h)),h)),d),d). >> back demodulating: 7741 (7740) EQUAL(f(g(f(f(e,g(h)),h)),d),d). >> back demodulating: 7742 (7596,1149) EQUAL(f(g(f(f(e,g(h)),h)),h),h). >> back demodulating: 7743 (7742) EQUAL(f(g(f(f(e,g(h)),h)),h),h). >> back demodulating: 7744 (7596,562) EQUAL(f(a,g(f(f(e,g(h)),h))),a). >> back demodulating: 7745 (7744) EQUAL(f(a,g(f(f(e,g(h)),h))),a). >> back demodulating: 7746 (7596,280) EQUAL(f(g(f(f(e,g(h)),h)),b),b). >> back demodulating: 7747 (7746) EQUAL(f(g(f(f(e,g(h)),h)),b),b). >> back demodulating: 7748 (7596,135) EQUAL(f(d,g(f(f(e,g(h)),h))),d). >> back demodulating: 7749 (7748) EQUAL(f(d,g(f(f(e,g(h)),h))),d). >> back demodulating: 7750 (7596,84) EQUAL(f(d,f(f(e,g(h)),h)),d). >> back demodulating: 7751 (7750) EQUAL(f(d,f(f(e,g(h)),h)),d). >> back demodulating: 7752 (7596,36) -EQUAL(f(f(e,g(h)),h),f(k,g(b))). new given clause: 7598 (9,5412,7597) EQUAL(f(d,g(b)),f(e,h)). ** KEPT: 7755 (748,7598) EQUAL(f(h,e),f(e,h)). ** KEPT: 7756 (7598,5) EQUAL(f(f(x,d),g(b)),f(x,f(e,h))). ** KEPT: 7757 (7598,5) EQUAL(f(d,f(g(b),x)),f(f(e,h),x)). ** KEPT: 7758 (7598,2888) EQUAL(f(g(h),f(d,g(b))),e). ---> New Demodulator: 7759 (7758) EQUAL(f(g(h),f(d,g(b))),e). ** KEPT: 7760 (7598,2793) EQUAL(f(x,f(d,g(b))),f(x,h)). ** KEPT: 7761 (7598,5043) EQUAL(f(g(f(d,g(b))),h),e). ---> New Demodulator: 7762 (7761) EQUAL(f(g(f(d,g(b))),h),e). ** KEPT: 7763 (7598,5) EQUAL(f(f(d,g(b)),x),f(e,f(h,x))). >>>> Starting back demodulation with: 7759 (7758) EQUAL(f(g(h),f(d,g(b))),e). 7760 back subsumes: 6243 (1063,3996) EQUAL(f(c,f(d,g(b))),f(c,h)). 7760 back subsumes: 5351 (1063,2989) EQUAL(f(h,f(d,g(b))),f(h,h)). 7760 back subsumes: 3765 (1063,1581) EQUAL(f(b,f(d,g(b))),f(b,h)). 7760 back subsumes: 1896 (1063,483) EQUAL(f(a,f(d,g(b))),f(a,h)). 7760 back subsumes: 1099 (1063,92) EQUAL(f(d,f(d,g(b))),f(d,h)). >>>> Starting back demodulation with: 7762 (7761) EQUAL(f(g(f(d,g(b))),h),e). >> back demodulating: 1787 (72,292) EQUAL(f(f(g(f(d,g(b))),h),b),b). >> back demodulating: 1788 (1787) EQUAL(f(f(g(f(d,g(b))),h),b),b). new given clause: 7755 (748,7598) EQUAL(f(h,e),f(e,h)). ** KEPT: 7764 (7755,5410) EQUAL(f(f(e,h),g(h)),e). ---> New Demodulator: 7765 (7764) EQUAL(f(f(e,h),g(h)),e). ** KEPT: 7766 (7755,5354) EQUAL(f(f(e,h),x),f(h,x)). ** KEPT: 7767 (7755,7529) EQUAL(f(h,g(f(e,h))),e). ---> New Demodulator: 7768 (7767) EQUAL(f(h,g(f(e,h))),e). ** KEPT: 7769 (7755,5) EQUAL(f(f(x,h),e),f(x,f(e,h))). ** KEPT: 7770 (7755,2888) EQUAL(f(g(h),f(h,e)),e). ---> New Demodulator: 7771 (7770) EQUAL(f(g(h),f(h,e)),e). ** KEPT: 7772 (7755,2793) EQUAL(f(x,f(h,e)),f(x,h)). ** KEPT: 7773 (7755,5043) EQUAL(f(g(f(h,e)),h),e). ---> New Demodulator: 7774 (7773) EQUAL(f(g(f(h,e)),h),e). ** KEPT: 7775 (7755,5) EQUAL(f(f(h,e),x),f(e,f(h,x))). >>>> Starting back demodulation with: 7765 (7764) EQUAL(f(f(e,h),g(h)),e). >> back demodulating: 7633 (5412,5322,7597) EQUAL(f(f(f(e,h),g(h)),e),e). >> back demodulating: 7634 (7633) EQUAL(f(f(f(e,h),g(h)),e),e). >> back demodulating: 7635 (5412,1295,7597) EQUAL(f(k,f(f(e,h),g(h))),k). >> back demodulating: 7636 (7635) EQUAL(f(k,f(f(e,h),g(h))),k). 7766 back subsumes: 5650 (1112,3480) EQUAL(f(f(e,h),c),f(h,c)). 7766 back subsumes: 4777 (1112,2490) EQUAL(f(f(e,h),d),f(h,d)). 7766 back subsumes: 4375 (1112,2013) EQUAL(f(f(e,h),a),f(h,a)). 7766 back subsumes: 2788 (1112,1071) EQUAL(f(f(e,h),h),f(h,h)). >>>> Starting back demodulation with: 7768 (7767) EQUAL(f(h,g(f(e,h))),e). >> back demodulating: 5034 (3126,2793) EQUAL(f(f(h,g(f(e,h))),h),h). >> back demodulating: 5035 (5034) EQUAL(f(f(h,g(f(e,h))),h),h). >> back demodulating: 7664 (5412,5322,7597) EQUAL(f(f(h,g(f(e,h))),e),e). >> back demodulating: 7665 (7664) EQUAL(f(f(h,g(f(e,h))),e),e). >> back demodulating: 7666 (5412,1295,7597) EQUAL(f(k,f(h,g(f(e,h)))),k). >> back demodulating: 7667 (7666) EQUAL(f(k,f(h,g(f(e,h)))),k). >>>> Starting back demodulation with: 7771 (7770) EQUAL(f(g(h),f(h,e)),e). 7772 back subsumes: 6242 (1095,3996) EQUAL(f(c,f(h,e)),f(c,h)). 7772 back subsumes: 5350 (1095,2989) EQUAL(f(h,f(h,e)),f(h,h)). 7772 back subsumes: 3764 (1095,1581) EQUAL(f(b,f(h,e)),f(b,h)). 7772 back subsumes: 1895 (1095,483) EQUAL(f(a,f(h,e)),f(a,h)). 7772 back subsumes: 1114 (1095,92) EQUAL(f(d,f(h,e)),f(d,h)). >>>> Starting back demodulation with: 7774 (7773) EQUAL(f(g(f(h,e)),h),e). >> back demodulating: 834 (72,800) EQUAL(f(f(g(f(h,e)),h),b),b). >> back demodulating: 835 (834) EQUAL(f(f(g(f(h,e)),h),b),b). >> back demodulating: 7524 (1133,5354) EQUAL(f(h,f(g(f(h,e)),h)),h). >> back demodulating: 7525 (7524) EQUAL(f(h,f(g(f(h,e)),h)),h). new given clause: 7684 (5412,70,7597) EQUAL(f(d,g(f(e,h))),k). ** KEPT: 7776 (7684,5) EQUAL(f(f(x,d),g(f(e,h))),f(x,k)). ** KEPT: 7777 (7684,5) EQUAL(f(d,f(g(f(e,h)),x)),f(k,x)). new given clause: 7716 (7596,266,69) EQUAL(f(f(e,g(h)),d),b). ** KEPT: 7778 (4,7716) EQUAL(f(f(f(x,g(x)),g(h)),d),b). ---> New Demodulator: 7779 (7778) EQUAL(f(f(f(x,g(x)),g(h)),d),b). ** KEPT: 7780 (3,7716) EQUAL(f(f(f(g(x),x),g(h)),d),b). ---> New Demodulator: 7781 (7780) EQUAL(f(f(f(g(x),x),g(h)),d),b). ** KEPT: 7782 (9,7716) EQUAL(f(f(e,g(f(d,g(b)))),d),b). ---> New Demodulator: 7783 (7782) EQUAL(f(f(e,g(f(d,g(b)))),d),b). ** KEPT: 7784 (8,7716) EQUAL(f(f(e,g(h)),f(c,g(a))),b). ---> New Demodulator: 7785 (7784) EQUAL(f(f(e,g(h)),f(c,g(a))),b). ** KEPT: 7786 (4782,7716) EQUAL(f(f(e,g(h)),f(e,d)),b). ---> New Demodulator: 7787 (7786) EQUAL(f(f(e,g(h)),f(e,d)),b). ** KEPT: 7788 (2490,7716) EQUAL(f(f(f(e,g(h)),e),d),b). ---> New Demodulator: 7789 (7788) EQUAL(f(f(f(e,g(h)),e),d),b). ** KEPT: 7790 (131,7716) EQUAL(f(f(f(e,g(h)),k),h),b). ---> New Demodulator: 7791 (7790) EQUAL(f(f(f(e,g(h)),k),h),b). >>>> Starting back demodulation with: 7779 (7778) EQUAL(f(f(f(x,g(x)),g(h)),d),b). >>>> Starting back demodulation with: 7781 (7780) EQUAL(f(f(f(g(x),x),g(h)),d),b). >>>> Starting back demodulation with: 7783 (7782) EQUAL(f(f(e,g(f(d,g(b)))),d),b). >>>> Starting back demodulation with: 7785 (7784) EQUAL(f(f(e,g(h)),f(c,g(a))),b). >>>> Starting back demodulation with: 7787 (7786) EQUAL(f(f(e,g(h)),f(e,d)),b). >>>> Starting back demodulation with: 7789 (7788) EQUAL(f(f(f(e,g(h)),e),d),b). >>>> Starting back demodulation with: 7791 (7790) EQUAL(f(f(f(e,g(h)),k),h),b). ** KEPT: 7792 (7716,5) EQUAL(f(f(x,f(e,g(h))),d),f(x,b)). ** KEPT: 7793 (7716,5) EQUAL(f(f(e,g(h)),f(d,x)),f(b,x)). new given clause: 7753 (7596,4) EQUAL(f(f(e,g(h)),h),e). ** KEPT: 7794 (4,7753) EQUAL(f(f(f(x,g(x)),g(h)),h),e). ---> New Demodulator: 7795 (7794) EQUAL(f(f(f(x,g(x)),g(h)),h),e). ** KEPT: 7796 (3,7753) EQUAL(f(f(f(g(x),x),g(h)),h),e). ---> New Demodulator: 7797 (7796) EQUAL(f(f(f(g(x),x),g(h)),h),e). ** KEPT: 7798 (9,7753) EQUAL(f(f(e,g(f(d,g(b)))),h),e). ---> New Demodulator: 7799 (7798) EQUAL(f(f(e,g(f(d,g(b)))),h),e). ** KEPT: 7800 (9,7753) EQUAL(f(f(e,g(h)),f(d,g(b))),e). ---> New Demodulator: 7801 (7800) EQUAL(f(f(e,g(h)),f(d,g(b))),e). ** KEPT: 7802 (2793,7753) EQUAL(f(f(e,g(h)),f(e,h)),e). ---> New Demodulator: 7803 (7802) EQUAL(f(f(e,g(h)),f(e,h)),e). ** KEPT: 7804 (1071,7753) EQUAL(f(f(f(e,g(h)),e),h),e). ---> New Demodulator: 7805 (7804) EQUAL(f(f(f(e,g(h)),e),h),e). ** KEPT: 7806 (5,7753) EQUAL(f(e,f(g(h),h)),e). ---> New Demodulator: 7807 (7806) EQUAL(f(e,f(g(h),h)),e). >>>> Starting back demodulation with: 7795 (7794) EQUAL(f(f(f(x,g(x)),g(h)),h),e). >>>> Starting back demodulation with: 7797 (7796) EQUAL(f(f(f(g(x),x),g(h)),h),e). >>>> Starting back demodulation with: 7799 (7798) EQUAL(f(f(e,g(f(d,g(b)))),h),e). >>>> Starting back demodulation with: 7801 (7800) EQUAL(f(f(e,g(h)),f(d,g(b))),e). >>>> Starting back demodulation with: 7803 (7802) EQUAL(f(f(e,g(h)),f(e,h)),e). >>>> Starting back demodulation with: 7805 (7804) EQUAL(f(f(f(e,g(h)),e),h),e). >>>> Starting back demodulation with: 7807 (7806) EQUAL(f(e,f(g(h),h)),e). ** KEPT: 7808 (7753,5) EQUAL(f(f(x,f(e,g(h))),h),f(x,e)). ** KEPT: 7809 (7753,5) EQUAL(f(f(e,g(h)),f(h,x)),f(e,x)). new given clause: 7764 (7755,5410) EQUAL(f(f(e,h),g(h)),e). ** KEPT: 7810 (9,7764) EQUAL(f(f(e,h),g(f(d,g(b)))),e). ---> New Demodulator: 7811 (7810) EQUAL(f(f(e,h),g(f(d,g(b)))),e). ** KEPT: 7812 (5,7764) EQUAL(f(e,f(h,g(h))),e). ---> New Demodulator: 7813 (7812) EQUAL(f(e,f(h,g(h))),e). >>>> Starting back demodulation with: 7811 (7810) EQUAL(f(f(e,h),g(f(d,g(b)))),e). >>>> Starting back demodulation with: 7813 (7812) EQUAL(f(e,f(h,g(h))),e). ** KEPT: 7814 (7764,5) EQUAL(f(f(x,f(e,h)),g(h)),f(x,e)). ** KEPT: 7815 (7764,5) EQUAL(f(f(e,h),f(g(h),x)),f(e,x)). new given clause: 7767 (7755,7529) EQUAL(f(h,g(f(e,h))),e). ** KEPT: 7816 (9,7767) EQUAL(f(f(d,g(b)),g(f(e,h))),e). ---> New Demodulator: 7817 (7816) EQUAL(f(f(d,g(b)),g(f(e,h))),e). >>>> Starting back demodulation with: 7817 (7816) EQUAL(f(f(d,g(b)),g(f(e,h))),e). ** KEPT: 7818 (7767,5) EQUAL(f(f(x,h),g(f(e,h))),f(x,e)). ** KEPT: 7819 (7767,5) EQUAL(f(h,f(g(f(e,h)),x)),f(e,x)). new given clause: 7770 (7755,2888) EQUAL(f(g(h),f(h,e)),e). ** KEPT: 7820 (9,7770) EQUAL(f(g(f(d,g(b))),f(h,e)),e). ---> New Demodulator: 7821 (7820) EQUAL(f(g(f(d,g(b))),f(h,e)),e). ** KEPT: 7822 (5,7770) EQUAL(f(f(g(h),h),e),e). ---> New Demodulator: 7823 (7822) EQUAL(f(f(g(h),h),e),e). >>>> Starting back demodulation with: 7821 (7820) EQUAL(f(g(f(d,g(b))),f(h,e)),e). >>>> Starting back demodulation with: 7823 (7822) EQUAL(f(f(g(h),h),e),e). ** KEPT: 7824 (7770,5) EQUAL(f(f(x,g(h)),f(h,e)),f(x,e)). ** KEPT: 7825 (7770,5) EQUAL(f(g(h),f(f(h,e),x)),f(e,x)). new given clause: 7773 (7755,5043) EQUAL(f(g(f(h,e)),h),e). ** KEPT: 7826 (9,7773) EQUAL(f(g(f(h,e)),f(d,g(b))),e). ---> New Demodulator: 7827 (7826) EQUAL(f(g(f(h,e)),f(d,g(b))),e). >>>> Starting back demodulation with: 7827 (7826) EQUAL(f(g(f(h,e)),f(d,g(b))),e). ** KEPT: 7828 (7773,5) EQUAL(f(f(x,g(f(h,e))),h),f(x,e)). ** KEPT: 7829 (7773,5) EQUAL(f(g(f(h,e)),f(h,x)),f(e,x)). new given clause: 7806 (5,7753) EQUAL(f(e,f(g(h),h)),e). ** KEPT: 7830 (4,7806) EQUAL(f(f(x,g(x)),f(g(h),h)),e). ---> New Demodulator: 7831 (7830) EQUAL(f(f(x,g(x)),f(g(h),h)),e). ** KEPT: 7832 (3,7806) EQUAL(f(f(g(x),x),f(g(h),h)),e). ---> New Demodulator: 7833 (7832) EQUAL(f(f(g(x),x),f(g(h),h)),e). >>>> Starting back demodulation with: 7831 (7830) EQUAL(f(f(x,g(x)),f(g(h),h)),e). >>>> Starting back demodulation with: 7833 (7832) EQUAL(f(f(g(x),x),f(g(h),h)),e). ** KEPT: 7834 (7806,3996) EQUAL(f(c,f(g(h),h)),f(c,e)). ** KEPT: 7835 (7806,5) EQUAL(f(f(x,e),f(g(h),h)),f(x,e)). ** KEPT: 7836 (7806,5) EQUAL(f(e,f(f(g(h),h),x)),f(e,x)). new given clause: 7812 (5,7764) EQUAL(f(e,f(h,g(h))),e). ** KEPT: 7837 (4,7812) EQUAL(f(f(x,g(x)),f(h,g(h))),e). ---> New Demodulator: 7838 (7837) EQUAL(f(f(x,g(x)),f(h,g(h))),e). ** KEPT: 7839 (3,7812) EQUAL(f(f(g(x),x),f(h,g(h))),e). ---> New Demodulator: 7840 (7839) EQUAL(f(f(g(x),x),f(h,g(h))),e). >>>> Starting back demodulation with: 7838 (7837) EQUAL(f(f(x,g(x)),f(h,g(h))),e). >>>> Starting back demodulation with: 7840 (7839) EQUAL(f(f(g(x),x),f(h,g(h))),e). ** KEPT: 7841 (7812,3996) EQUAL(f(c,f(h,g(h))),f(c,e)). ** KEPT: 7842 (7812,5) EQUAL(f(f(x,e),f(h,g(h))),f(x,e)). ** KEPT: 7843 (7812,5) EQUAL(f(e,f(f(h,g(h)),x)),f(e,x)). new given clause: 7822 (5,7770) EQUAL(f(f(g(h),h),e),e). ** KEPT: 7844 (4,7822) EQUAL(f(f(g(h),h),f(x,g(x))),e). ---> New Demodulator: 7845 (7844) EQUAL(f(f(g(h),h),f(x,g(x))),e). ** KEPT: 7846 (3,7822) EQUAL(f(f(g(h),h),f(g(x),x)),e). ---> New Demodulator: 7847 (7846) EQUAL(f(f(g(h),h),f(g(x),x)),e). >>>> Starting back demodulation with: 7845 (7844) EQUAL(f(f(g(h),h),f(x,g(x))),e). >>>> Starting back demodulation with: 7847 (7846) EQUAL(f(f(g(h),h),f(g(x),x)),e). ** KEPT: 7848 (7822,3480) EQUAL(f(f(g(h),h),c),f(e,c)). ** KEPT: 7849 (7822,5) EQUAL(f(f(x,f(g(h),h)),e),f(x,e)). ** KEPT: 7850 (7822,5) EQUAL(f(f(g(h),h),f(e,x)),f(e,x)). new given clause: 5416 (748,5410) EQUAL(f(f(d,g(b)),g(h)),e). ** KEPT: 7851 (5,5416) EQUAL(f(d,f(g(b),g(h))),e). ---> New Demodulator: 7852 (7851) EQUAL(f(d,f(g(b),g(h))),e). >>>> Starting back demodulation with: 7852 (7851) EQUAL(f(d,f(g(b),g(h))),e). ** KEPT: 7853 (5416,5) EQUAL(f(f(x,f(d,g(b))),g(h)),f(x,e)). ** KEPT: 7854 (5416,5) EQUAL(f(f(d,g(b)),f(g(h),x)),f(e,x)). new given clause: 5448 (5,3047) EQUAL(g(f(f(g(d),h),e)),b). ** KEPT: 7855 (8,5448) EQUAL(g(f(f(g(f(c,g(a))),h),e)),b). ---> New Demodulator: 7856 (7855) EQUAL(g(f(f(g(f(c,g(a))),h),e)),b). ** KEPT: 7857 (9,5448) EQUAL(g(f(f(g(d),f(d,g(b))),e)),b). ---> New Demodulator: 7858 (7857) EQUAL(g(f(f(g(d),f(d,g(b))),e)),b). ** KEPT: 7859 (2793,5448) EQUAL(g(f(f(g(d),f(e,h)),e)),b). ---> New Demodulator: 7860 (7859) EQUAL(g(f(f(g(d),f(e,h)),e)),b). ** KEPT: 7861 (1071,5448) EQUAL(g(f(f(f(g(d),e),h),e)),b). ---> New Demodulator: 7862 (7861) EQUAL(g(f(f(f(g(d),e),h),e)),b). ** KEPT: 7863 (4,5448) EQUAL(g(f(f(g(d),h),f(x,g(x)))),b). ---> New Demodulator: 7864 (7863) EQUAL(g(f(f(g(d),h),f(x,g(x)))),b). ** KEPT: 7865 (3,5448) EQUAL(g(f(f(g(d),h),f(g(x),x))),b). ---> New Demodulator: 7866 (7865) EQUAL(g(f(f(g(d),h),f(g(x),x))),b). >>>> Starting back demodulation with: 7856 (7855) EQUAL(g(f(f(g(f(c,g(a))),h),e)),b). >>>> Starting back demodulation with: 7858 (7857) EQUAL(g(f(f(g(d),f(d,g(b))),e)),b). >>>> Starting back demodulation with: 7860 (7859) EQUAL(g(f(f(g(d),f(e,h)),e)),b). >>>> Starting back demodulation with: 7862 (7861) EQUAL(g(f(f(f(g(d),e),h),e)),b). >>>> Starting back demodulation with: 7864 (7863) EQUAL(g(f(f(g(d),h),f(x,g(x)))),b). >>>> Starting back demodulation with: 7866 (7865) EQUAL(g(f(f(g(d),h),f(g(x),x))),b). ** KEPT: 7867 (5448,3118) EQUAL(f(f(h,f(f(g(d),h),e)),b),h). ---> New Demodulator: 7868 (7867) EQUAL(f(f(h,f(f(g(d),h),e)),b),h). ** KEPT: 7869 (5448,2126) EQUAL(f(b,f(f(f(g(d),h),e),a)),a). ---> New Demodulator: 7870 (7869) EQUAL(f(b,f(f(f(g(d),h),e),a)),a). ** KEPT: 7871 (5448,2120) EQUAL(f(f(f(g(d),h),e),f(b,a)),a). ---> New Demodulator: 7872 (7871) EQUAL(f(f(f(g(d),h),e),f(b,a)),a). ** KEPT: 7873 (5448,1719) EQUAL(f(f(b,f(f(g(d),h),e)),b),b). ---> New Demodulator: 7874 (7873) EQUAL(f(f(b,f(f(g(d),h),e)),b),b). ** KEPT: 7875 (5448,3126,69) EQUAL(f(d,f(f(g(d),h),e)),h). ---> New Demodulator: 7876 (7875) EQUAL(f(d,f(f(g(d),h),e)),h). ** KEPT: 7877 (5448,1197) EQUAL(f(f(f(g(d),h),e),f(b,d)),d). ---> New Demodulator: 7878 (7877) EQUAL(f(f(f(g(d),h),e),f(b,d)),d). ** KEPT: 7879 (5448,1175) EQUAL(f(b,f(f(f(g(d),h),e),d)),d). ---> New Demodulator: 7880 (7879) EQUAL(f(b,f(f(f(g(d),h),e),d)),d). ** KEPT: 7881 (5448,1133) EQUAL(f(f(f(g(d),h),e),f(b,h)),h). ---> New Demodulator: 7882 (7881) EQUAL(f(f(f(g(d),h),e),f(b,h)),h). ** KEPT: 7883 (5448,1125) EQUAL(f(b,f(f(f(g(d),h),e),h)),h). ---> New Demodulator: 7884 (7883) EQUAL(f(b,f(f(f(g(d),h),e),h)),h). ** KEPT: 7885 (5448,1725) EQUAL(f(f(b,b),f(f(g(d),h),e)),b). ---> New Demodulator: 7886 (7885) EQUAL(f(f(b,b),f(f(g(d),h),e)),b). ** KEPT: 7887 (5448,526) EQUAL(f(f(a,f(f(g(d),h),e)),b),a). ---> New Demodulator: 7888 (7887) EQUAL(f(f(a,f(f(g(d),h),e)),b),a). ** KEPT: 7889 (5448,520) EQUAL(f(f(a,b),f(f(g(d),h),e)),a). ---> New Demodulator: 7890 (7889) EQUAL(f(f(a,b),f(f(g(d),h),e)),a). ** KEPT: 7891 (5448,266) EQUAL(f(f(f(g(d),h),e),f(b,b)),b). ---> New Demodulator: 7892 (7891) EQUAL(f(f(f(g(d),h),e),f(b,b)),b). ** KEPT: 7893 (5448,105) EQUAL(f(f(d,b),f(f(g(d),h),e)),d). ---> New Demodulator: 7894 (7893) EQUAL(f(f(d,b),f(f(g(d),h),e)),d). ** KEPT: 7895 (5448,2987) EQUAL(f(h,f(b,f(f(g(d),h),e))),h). ---> New Demodulator: 7896 (7895) EQUAL(f(h,f(b,f(f(g(d),h),e))),h). ** KEPT: 7897 (5448,2011) EQUAL(f(f(b,f(f(g(d),h),e)),a),a). ---> New Demodulator: 7898 (7897) EQUAL(f(f(b,f(f(g(d),h),e)),a),a). ** KEPT: 7899 (5448,1579) EQUAL(f(b,f(b,f(f(g(d),h),e))),b). ---> New Demodulator: 7900 (7899) EQUAL(f(b,f(b,f(f(g(d),h),e))),b). ** KEPT: 7901 (5448,1127) EQUAL(f(f(b,f(f(g(d),h),e)),d),d). ---> New Demodulator: 7902 (7901) EQUAL(f(f(b,f(f(g(d),h),e)),d),d). ** KEPT: 7903 (5448,1065) EQUAL(f(f(b,f(f(g(d),h),e)),h),h). ---> New Demodulator: 7904 (7903) EQUAL(f(f(b,f(f(g(d),h),e)),h),h). ** KEPT: 7905 (5448,477) EQUAL(f(a,f(b,f(f(g(d),h),e))),a). ---> New Demodulator: 7906 (7905) EQUAL(f(a,f(b,f(f(g(d),h),e))),a). ** KEPT: 7907 (5448,3141) EQUAL(f(h,g(f(b,f(f(g(d),h),e)))),h). ---> New Demodulator: 7908 (7907) EQUAL(f(h,g(f(b,f(f(g(d),h),e)))),h). ** KEPT: 7909 (5448,2154) EQUAL(f(g(f(b,f(f(g(d),h),e))),a),a). ---> New Demodulator: 7910 (7909) EQUAL(f(g(f(b,f(f(g(d),h),e))),a),a). ** KEPT: 7911 (5448,1739) EQUAL(f(b,g(f(b,f(f(g(d),h),e)))),b). ---> New Demodulator: 7912 (7911) EQUAL(f(b,g(f(b,f(f(g(d),h),e)))),b). ** KEPT: 7913 (5448,1217) EQUAL(f(g(f(b,f(f(g(d),h),e))),d),d). ---> New Demodulator: 7914 (7913) EQUAL(f(g(f(b,f(f(g(d),h),e))),d),d). ** KEPT: 7915 (5448,1151) EQUAL(f(g(f(b,f(f(g(d),h),e))),h),h). ---> New Demodulator: 7916 (7915) EQUAL(f(g(f(b,f(f(g(d),h),e))),h),h). ** KEPT: 7917 (5448,564) EQUAL(f(a,g(f(b,f(f(g(d),h),e)))),a). ---> New Demodulator: 7918 (7917) EQUAL(f(a,g(f(b,f(f(g(d),h),e)))),a). ** KEPT: 7919 (5448,282) EQUAL(f(g(f(b,f(f(g(d),h),e))),b),b). ---> New Demodulator: 7920 (7919) EQUAL(f(g(f(b,f(f(g(d),h),e))),b),b). ** KEPT: 7921 (5448,137) EQUAL(f(d,g(f(b,f(f(g(d),h),e)))),d). ---> New Demodulator: 7922 (7921) EQUAL(f(d,g(f(b,f(f(g(d),h),e)))),d). ** KEPT: 7923 (5448,82) EQUAL(f(d,f(b,f(f(g(d),h),e))),d). ---> New Demodulator: 7924 (7923) EQUAL(f(d,f(b,f(f(g(d),h),e))),d). ** KEPT: 7925 (5448,37) -EQUAL(f(b,f(f(g(d),h),e)),f(k,g(b))). ** KEPT: 7926 (5448,3) EQUAL(f(b,f(f(g(d),h),e)),e). ---> New Demodulator: 7927 (7926) EQUAL(f(b,f(f(g(d),h),e)),e). >>>> Starting back demodulation with: 7868 (7867) EQUAL(f(f(h,f(f(g(d),h),e)),b),h). >>>> Starting back demodulation with: 7870 (7869) EQUAL(f(b,f(f(f(g(d),h),e),a)),a). >>>> Starting back demodulation with: 7872 (7871) EQUAL(f(f(f(g(d),h),e),f(b,a)),a). >>>> Starting back demodulation with: 7874 (7873) EQUAL(f(f(b,f(f(g(d),h),e)),b),b). >>>> Starting back demodulation with: 7876 (7875) EQUAL(f(d,f(f(g(d),h),e)),h). >>>> Starting back demodulation with: 7878 (7877) EQUAL(f(f(f(g(d),h),e),f(b,d)),d). >>>> Starting back demodulation with: 7880 (7879) EQUAL(f(b,f(f(f(g(d),h),e),d)),d). >>>> Starting back demodulation with: 7882 (7881) EQUAL(f(f(f(g(d),h),e),f(b,h)),h). >>>> Starting back demodulation with: 7884 (7883) EQUAL(f(b,f(f(f(g(d),h),e),h)),h). >>>> Starting back demodulation with: 7886 (7885) EQUAL(f(f(b,b),f(f(g(d),h),e)),b). >>>> Starting back demodulation with: 7888 (7887) EQUAL(f(f(a,f(f(g(d),h),e)),b),a). >>>> Starting back demodulation with: 7890 (7889) EQUAL(f(f(a,b),f(f(g(d),h),e)),a). >>>> Starting back demodulation with: 7892 (7891) EQUAL(f(f(f(g(d),h),e),f(b,b)),b). >>>> Starting back demodulation with: 7894 (7893) EQUAL(f(f(d,b),f(f(g(d),h),e)),d). >>>> Starting back demodulation with: 7896 (7895) EQUAL(f(h,f(b,f(f(g(d),h),e))),h). >>>> Starting back demodulation with: 7898 (7897) EQUAL(f(f(b,f(f(g(d),h),e)),a),a). >>>> Starting back demodulation with: 7900 (7899) EQUAL(f(b,f(b,f(f(g(d),h),e))),b). >>>> Starting back demodulation with: 7902 (7901) EQUAL(f(f(b,f(f(g(d),h),e)),d),d). >>>> Starting back demodulation with: 7904 (7903) EQUAL(f(f(b,f(f(g(d),h),e)),h),h). >>>> Starting back demodulation with: 7906 (7905) EQUAL(f(a,f(b,f(f(g(d),h),e))),a). >>>> Starting back demodulation with: 7908 (7907) EQUAL(f(h,g(f(b,f(f(g(d),h),e)))),h). >>>> Starting back demodulation with: 7910 (7909) EQUAL(f(g(f(b,f(f(g(d),h),e))),a),a). >>>> Starting back demodulation with: 7912 (7911) EQUAL(f(b,g(f(b,f(f(g(d),h),e)))),b). >>>> Starting back demodulation with: 7914 (7913) EQUAL(f(g(f(b,f(f(g(d),h),e))),d),d). >>>> Starting back demodulation with: 7916 (7915) EQUAL(f(g(f(b,f(f(g(d),h),e))),h),h). >>>> Starting back demodulation with: 7918 (7917) EQUAL(f(a,g(f(b,f(f(g(d),h),e)))),a). >>>> Starting back demodulation with: 7920 (7919) EQUAL(f(g(f(b,f(f(g(d),h),e))),b),b). >>>> Starting back demodulation with: 7922 (7921) EQUAL(f(d,g(f(b,f(f(g(d),h),e)))),d). >>>> Starting back demodulation with: 7924 (7923) EQUAL(f(d,f(b,f(f(g(d),h),e))),d). >>>> Starting back demodulation with: 7927 (7926) EQUAL(f(b,f(f(g(d),h),e)),e). >> back demodulating: 7873 (5448,1719) EQUAL(f(f(b,f(f(g(d),h),e)),b),b). >> back demodulating: 7874 (7873) EQUAL(f(f(b,f(f(g(d),h),e)),b),b). >> back demodulating: 7895 (5448,2987) EQUAL(f(h,f(b,f(f(g(d),h),e))),h). >> back demodulating: 7896 (7895) EQUAL(f(h,f(b,f(f(g(d),h),e))),h). >> back demodulating: 7897 (5448,2011) EQUAL(f(f(b,f(f(g(d),h),e)),a),a). >> back demodulating: 7898 (7897) EQUAL(f(f(b,f(f(g(d),h),e)),a),a). >> back demodulating: 7899 (5448,1579) EQUAL(f(b,f(b,f(f(g(d),h),e))),b). >> back demodulating: 7900 (7899) EQUAL(f(b,f(b,f(f(g(d),h),e))),b). >> back demodulating: 7901 (5448,1127) EQUAL(f(f(b,f(f(g(d),h),e)),d),d). >> back demodulating: 7902 (7901) EQUAL(f(f(b,f(f(g(d),h),e)),d),d). >> back demodulating: 7903 (5448,1065) EQUAL(f(f(b,f(f(g(d),h),e)),h),h). >> back demodulating: 7904 (7903) EQUAL(f(f(b,f(f(g(d),h),e)),h),h). >> back demodulating: 7905 (5448,477) EQUAL(f(a,f(b,f(f(g(d),h),e))),a). >> back demodulating: 7906 (7905) EQUAL(f(a,f(b,f(f(g(d),h),e))),a). >> back demodulating: 7907 (5448,3141) EQUAL(f(h,g(f(b,f(f(g(d),h),e)))),h). >> back demodulating: 7908 (7907) EQUAL(f(h,g(f(b,f(f(g(d),h),e)))),h). >> back demodulating: 7909 (5448,2154) EQUAL(f(g(f(b,f(f(g(d),h),e))),a),a). >> back demodulating: 7910 (7909) EQUAL(f(g(f(b,f(f(g(d),h),e))),a),a). >> back demodulating: 7911 (5448,1739) EQUAL(f(b,g(f(b,f(f(g(d),h),e)))),b). >> back demodulating: 7912 (7911) EQUAL(f(b,g(f(b,f(f(g(d),h),e)))),b). >> back demodulating: 7913 (5448,1217) EQUAL(f(g(f(b,f(f(g(d),h),e))),d),d). >> back demodulating: 7914 (7913) EQUAL(f(g(f(b,f(f(g(d),h),e))),d),d). >> back demodulating: 7915 (5448,1151) EQUAL(f(g(f(b,f(f(g(d),h),e))),h),h). >> back demodulating: 7916 (7915) EQUAL(f(g(f(b,f(f(g(d),h),e))),h),h). >> back demodulating: 7917 (5448,564) EQUAL(f(a,g(f(b,f(f(g(d),h),e)))),a). >> back demodulating: 7918 (7917) EQUAL(f(a,g(f(b,f(f(g(d),h),e)))),a). >> back demodulating: 7919 (5448,282) EQUAL(f(g(f(b,f(f(g(d),h),e))),b),b). >> back demodulating: 7920 (7919) EQUAL(f(g(f(b,f(f(g(d),h),e))),b),b). >> back demodulating: 7921 (5448,137) EQUAL(f(d,g(f(b,f(f(g(d),h),e)))),d). >> back demodulating: 7922 (7921) EQUAL(f(d,g(f(b,f(f(g(d),h),e)))),d). >> back demodulating: 7923 (5448,82) EQUAL(f(d,f(b,f(f(g(d),h),e))),d). >> back demodulating: 7924 (7923) EQUAL(f(d,f(b,f(f(g(d),h),e))),d). >> back demodulating: 7925 (5448,37) -EQUAL(f(b,f(f(g(d),h),e)),f(k,g(b))). new given clause: 5645 (4206,3480) EQUAL(f(f(e,a),c),f(a,c)). ** KEPT: 7928 (7,5645) EQUAL(f(f(e,a),f(a,b)),f(a,c)). ** KEPT: 7929 (1355,5645) EQUAL(f(f(e,a),f(c,e)),f(a,c)). ** KEPT: 7930 (7,5645) EQUAL(f(a,f(a,b)),f(f(e,a),c)). ** KEPT: 7931 (1355,5645) EQUAL(f(a,f(c,e)),f(f(e,a),c)). ** KEPT: 7932 (5645,5) EQUAL(f(f(e,a),f(c,x)),f(f(a,c),x)). ** KEPT: 7933 (5645,5) EQUAL(f(f(f(e,a),c),x),f(a,f(c,x))). new given clause: 5647 (3608,3480) EQUAL(f(f(e,b),c),f(b,c)). ** KEPT: 7934 (7,5647) EQUAL(f(f(e,b),f(a,b)),f(b,c)). ** KEPT: 7935 (1355,5647) EQUAL(f(f(e,b),f(c,e)),f(b,c)). ** KEPT: 7936 (7,5647) EQUAL(f(b,f(a,b)),f(f(e,b),c)). ** KEPT: 7937 (1355,5647) EQUAL(f(b,f(c,e)),f(f(e,b),c)). ** KEPT: 7938 (5647,5) EQUAL(f(f(e,b),f(c,x)),f(f(b,c),x)). ** KEPT: 7939 (5647,5) EQUAL(f(f(f(e,b),c),x),f(b,f(c,x))). new given clause: 5700 (5,3540) EQUAL(f(f(e,f(e,e)),c),c). ** KEPT: 7940 (4,5700) EQUAL(f(f(f(x,g(x)),f(e,e)),c),c). ---> New Demodulator: 7941 (7940) EQUAL(f(f(f(x,g(x)),f(e,e)),c),c). ** KEPT: 7942 (3,5700) EQUAL(f(f(f(g(x),x),f(e,e)),c),c). ---> New Demodulator: 7943 (7942) EQUAL(f(f(f(g(x),x),f(e,e)),c),c). ** KEPT: 7944 (4,5700) EQUAL(f(f(e,f(f(x,g(x)),e)),c),c). ---> New Demodulator: 7945 (7944) EQUAL(f(f(e,f(f(x,g(x)),e)),c),c). ** KEPT: 7946 (3,5700) EQUAL(f(f(e,f(f(g(x),x),e)),c),c). ---> New Demodulator: 7947 (7946) EQUAL(f(f(e,f(f(g(x),x),e)),c),c). ** KEPT: 7948 (4,5700) EQUAL(f(f(e,f(e,f(x,g(x)))),c),c). ---> New Demodulator: 7949 (7948) EQUAL(f(f(e,f(e,f(x,g(x)))),c),c). ** KEPT: 7950 (3,5700) EQUAL(f(f(e,f(e,f(g(x),x))),c),c). ---> New Demodulator: 7951 (7950) EQUAL(f(f(e,f(e,f(g(x),x))),c),c). ** KEPT: 7952 (7,5700) EQUAL(f(f(e,f(e,e)),f(a,b)),c). ---> New Demodulator: 7953 (7952) EQUAL(f(f(e,f(e,e)),f(a,b)),c). ** KEPT: 7954 (3480,5700) EQUAL(f(f(f(e,f(e,e)),e),c),c). ---> New Demodulator: 7955 (7954) EQUAL(f(f(f(e,f(e,e)),e),c),c). ** KEPT: 7956 (1356,5700) EQUAL(f(f(e,f(e,e)),f(e,c)),c). ---> New Demodulator: 7957 (7956) EQUAL(f(f(e,f(e,e)),f(e,c)),c). ** KEPT: 7958 (1355,5700) EQUAL(f(f(e,f(e,e)),f(c,e)),c). ---> New Demodulator: 7959 (7958) EQUAL(f(f(e,f(e,e)),f(c,e)),c). >>>> Starting back demodulation with: 7941 (7940) EQUAL(f(f(f(x,g(x)),f(e,e)),c),c). >>>> Starting back demodulation with: 7943 (7942) EQUAL(f(f(f(g(x),x),f(e,e)),c),c). >>>> Starting back demodulation with: 7945 (7944) EQUAL(f(f(e,f(f(x,g(x)),e)),c),c). >>>> Starting back demodulation with: 7947 (7946) EQUAL(f(f(e,f(f(g(x),x),e)),c),c). >>>> Starting back demodulation with: 7949 (7948) EQUAL(f(f(e,f(e,f(x,g(x)))),c),c). >>>> Starting back demodulation with: 7951 (7950) EQUAL(f(f(e,f(e,f(g(x),x))),c),c). >>>> Starting back demodulation with: 7953 (7952) EQUAL(f(f(e,f(e,e)),f(a,b)),c). >>>> Starting back demodulation with: 7955 (7954) EQUAL(f(f(f(e,f(e,e)),e),c),c). >>>> Starting back demodulation with: 7957 (7956) EQUAL(f(f(e,f(e,e)),f(e,c)),c). >>>> Starting back demodulation with: 7959 (7958) EQUAL(f(f(e,f(e,e)),f(c,e)),c). ** KEPT: 7960 (5700,5) EQUAL(f(f(x,f(e,f(e,e))),c),f(x,c)). ** KEPT: 7961 (5700,5) EQUAL(f(f(e,f(e,e)),f(c,x)),f(c,x)). new given clause: 5832 (3797,3768) EQUAL(f(f(b,e),f(e,e)),b). ** KEPT: 7962 (4,5832) EQUAL(f(f(b,e),f(f(x,g(x)),e)),b). ---> New Demodulator: 7963 (7962) EQUAL(f(f(b,e),f(f(x,g(x)),e)),b). ** KEPT: 7964 (3,5832) EQUAL(f(f(b,e),f(f(g(x),x),e)),b). ---> New Demodulator: 7965 (7964) EQUAL(f(f(b,e),f(f(g(x),x),e)),b). ** KEPT: 7966 (4,5832) EQUAL(f(f(b,e),f(e,f(x,g(x)))),b). ---> New Demodulator: 7967 (7966) EQUAL(f(f(b,e),f(e,f(x,g(x)))),b). ** KEPT: 7968 (3,5832) EQUAL(f(f(b,e),f(e,f(g(x),x))),b). ---> New Demodulator: 7969 (7968) EQUAL(f(f(b,e),f(e,f(g(x),x))),b). >>>> Starting back demodulation with: 7963 (7962) EQUAL(f(f(b,e),f(f(x,g(x)),e)),b). >>>> Starting back demodulation with: 7965 (7964) EQUAL(f(f(b,e),f(f(g(x),x),e)),b). >>>> Starting back demodulation with: 7967 (7966) EQUAL(f(f(b,e),f(e,f(x,g(x)))),b). >>>> Starting back demodulation with: 7969 (7968) EQUAL(f(f(b,e),f(e,f(g(x),x))),b). ** KEPT: 7970 (5832,5) EQUAL(f(f(x,f(b,e)),f(e,e)),f(x,b)). ** KEPT: 7971 (5832,5) EQUAL(f(f(b,e),f(f(e,e),x)),f(b,x)). new given clause: 5845 (3768,4635) EQUAL(g(f(f(b,e),g(d))),h). ** KEPT: 7972 (8,5845) EQUAL(g(f(f(b,e),g(f(c,g(a))))),h). ---> New Demodulator: 7973 (7972) EQUAL(g(f(f(b,e),g(f(c,g(a))))),h). >>>> Starting back demodulation with: 7973 (7972) EQUAL(g(f(f(b,e),g(f(c,g(a))))),h). ** KEPT: 7974 (5845,2126) EQUAL(f(h,f(f(f(b,e),g(d)),a)),a). ---> New Demodulator: 7975 (7974) EQUAL(f(h,f(f(f(b,e),g(d)),a)),a). ** KEPT: 7976 (5845,2120) EQUAL(f(f(f(b,e),g(d)),f(h,a)),a). ---> New Demodulator: 7977 (7976) EQUAL(f(f(f(b,e),g(d)),f(h,a)),a). ** KEPT: 7978 (5845,1719) EQUAL(f(f(b,f(f(b,e),g(d))),h),b). ---> New Demodulator: 7979 (7978) EQUAL(f(f(b,f(f(b,e),g(d))),h),b). ** KEPT: 7980 (5845,3126) EQUAL(f(f(h,h),f(f(b,e),g(d))),h). ---> New Demodulator: 7981 (7980) EQUAL(f(f(h,h),f(f(b,e),g(d))),h). ** KEPT: 7982 (5845,1197) EQUAL(f(f(f(b,e),g(d)),f(h,d)),d). ---> New Demodulator: 7983 (7982) EQUAL(f(f(f(b,e),g(d)),f(h,d)),d). ** KEPT: 7984 (5845,1133) EQUAL(f(f(f(b,e),g(d)),f(h,h)),h). ---> New Demodulator: 7985 (7984) EQUAL(f(f(f(b,e),g(d)),f(h,h)),h). ** KEPT: 7986 (5845,1725) EQUAL(f(f(b,h),f(f(b,e),g(d))),b). ---> New Demodulator: 7987 (7986) EQUAL(f(f(b,h),f(f(b,e),g(d))),b). ** KEPT: 7988 (5845,526) EQUAL(f(f(a,f(f(b,e),g(d))),h),a). ---> New Demodulator: 7989 (7988) EQUAL(f(f(a,f(f(b,e),g(d))),h),a). ** KEPT: 7990 (5845,520) EQUAL(f(f(a,h),f(f(b,e),g(d))),a). ---> New Demodulator: 7991 (7990) EQUAL(f(f(a,h),f(f(b,e),g(d))),a). ** KEPT: 7992 (5845,260) EQUAL(f(h,f(f(f(b,e),g(d)),b)),b). ---> New Demodulator: 7993 (7992) EQUAL(f(h,f(f(f(b,e),g(d)),b)),b). ** KEPT: 7994 (5845,113) EQUAL(f(f(d,f(f(b,e),g(d))),h),d). ---> New Demodulator: 7995 (7994) EQUAL(f(f(d,f(f(b,e),g(d))),h),d). ** KEPT: 7996 (5845,105) EQUAL(f(f(d,h),f(f(b,e),g(d))),d). ---> New Demodulator: 7997 (7996) EQUAL(f(f(d,h),f(f(b,e),g(d))),d). >>>> Starting back demodulation with: 7975 (7974) EQUAL(f(h,f(f(f(b,e),g(d)),a)),a). >>>> Starting back demodulation with: 7977 (7976) EQUAL(f(f(f(b,e),g(d)),f(h,a)),a). >>>> Starting back demodulation with: 7979 (7978) EQUAL(f(f(b,f(f(b,e),g(d))),h),b). >>>> Starting back demodulation with: 7981 (7980) EQUAL(f(f(h,h),f(f(b,e),g(d))),h). >>>> Starting back demodulation with: 7983 (7982) EQUAL(f(f(f(b,e),g(d)),f(h,d)),d). >>>> Starting back demodulation with: 7985 (7984) EQUAL(f(f(f(b,e),g(d)),f(h,h)),h). >>>> Starting back demodulation with: 7987 (7986) EQUAL(f(f(b,h),f(f(b,e),g(d))),b). >>>> Starting back demodulation with: 7989 (7988) EQUAL(f(f(a,f(f(b,e),g(d))),h),a). >>>> Starting back demodulation with: 7991 (7990) EQUAL(f(f(a,h),f(f(b,e),g(d))),a). >>>> Starting back demodulation with: 7993 (7992) EQUAL(f(h,f(f(f(b,e),g(d)),b)),b). >>>> Starting back demodulation with: 7995 (7994) EQUAL(f(f(d,f(f(b,e),g(d))),h),d). >>>> Starting back demodulation with: 7997 (7996) EQUAL(f(f(d,h),f(f(b,e),g(d))),d). new given clause: 5906 (5,3827) EQUAL(f(b,f(f(e,e),e)),b). ** KEPT: 7998 (4,5906) EQUAL(f(b,f(f(f(x,g(x)),e),e)),b). ---> New Demodulator: 7999 (7998) EQUAL(f(b,f(f(f(x,g(x)),e),e)),b). ** KEPT: 8000 (3,5906) EQUAL(f(b,f(f(f(g(x),x),e),e)),b). ---> New Demodulator: 8001 (8000) EQUAL(f(b,f(f(f(g(x),x),e),e)),b). ** KEPT: 8002 (4,5906) EQUAL(f(b,f(f(e,f(x,g(x))),e)),b). ---> New Demodulator: 8003 (8002) EQUAL(f(b,f(f(e,f(x,g(x))),e)),b). ** KEPT: 8004 (3,5906) EQUAL(f(b,f(f(e,f(g(x),x)),e)),b). ---> New Demodulator: 8005 (8004) EQUAL(f(b,f(f(e,f(g(x),x)),e)),b). ** KEPT: 8006 (4,5906) EQUAL(f(b,f(f(e,e),f(x,g(x)))),b). ---> New Demodulator: 8007 (8006) EQUAL(f(b,f(f(e,e),f(x,g(x)))),b). ** KEPT: 8008 (3,5906) EQUAL(f(b,f(f(e,e),f(g(x),x))),b). ---> New Demodulator: 8009 (8008) EQUAL(f(b,f(f(e,e),f(g(x),x))),b). ** KEPT: 8010 (3768,5906) EQUAL(f(f(b,e),f(f(e,e),e)),b). ---> New Demodulator: 8011 (8010) EQUAL(f(f(b,e),f(f(e,e),e)),b). ** KEPT: 8012 (1581,5906) EQUAL(f(b,f(e,f(f(e,e),e))),b). ---> New Demodulator: 8013 (8012) EQUAL(f(b,f(e,f(f(e,e),e))),b). >>>> Starting back demodulation with: 7999 (7998) EQUAL(f(b,f(f(f(x,g(x)),e),e)),b). >>>> Starting back demodulation with: 8001 (8000) EQUAL(f(b,f(f(f(g(x),x),e),e)),b). >>>> Starting back demodulation with: 8003 (8002) EQUAL(f(b,f(f(e,f(x,g(x))),e)),b). >>>> Starting back demodulation with: 8005 (8004) EQUAL(f(b,f(f(e,f(g(x),x)),e)),b). >>>> Starting back demodulation with: 8007 (8006) EQUAL(f(b,f(f(e,e),f(x,g(x)))),b). >>>> Starting back demodulation with: 8009 (8008) EQUAL(f(b,f(f(e,e),f(g(x),x))),b). >>>> Starting back demodulation with: 8011 (8010) EQUAL(f(f(b,e),f(f(e,e),e)),b). >>>> Starting back demodulation with: 8013 (8012) EQUAL(f(b,f(e,f(f(e,e),e))),b). ** KEPT: 8014 (5906,1719) EQUAL(f(b,g(f(f(e,e),e))),b). ---> New Demodulator: 8015 (8014) EQUAL(f(b,g(f(f(e,e),e))),b). ** KEPT: 8016 (5906,5) EQUAL(f(f(x,b),f(f(e,e),e)),f(x,b)). ** KEPT: 8017 (5906,5) EQUAL(f(b,f(f(f(e,e),e),x)),f(b,x)). >>>> Starting back demodulation with: 8015 (8014) EQUAL(f(b,g(f(f(e,e),e))),b). new given clause: 5932 (3845,3797,5925) EQUAL(f(f(e,b),f(e,e)),b). ** KEPT: 8018 (4,5932) EQUAL(f(f(e,b),f(f(x,g(x)),e)),b). ---> New Demodulator: 8019 (8018) EQUAL(f(f(e,b),f(f(x,g(x)),e)),b). ** KEPT: 8020 (3,5932) EQUAL(f(f(e,b),f(f(g(x),x),e)),b). ---> New Demodulator: 8021 (8020) EQUAL(f(f(e,b),f(f(g(x),x),e)),b). ** KEPT: 8022 (4,5932) EQUAL(f(f(e,b),f(e,f(x,g(x)))),b). ---> New Demodulator: 8023 (8022) EQUAL(f(f(e,b),f(e,f(x,g(x)))),b). ** KEPT: 8024 (3,5932) EQUAL(f(f(e,b),f(e,f(g(x),x))),b). ---> New Demodulator: 8025 (8024) EQUAL(f(f(e,b),f(e,f(g(x),x))),b). >>>> Starting back demodulation with: 8019 (8018) EQUAL(f(f(e,b),f(f(x,g(x)),e)),b). >>>> Starting back demodulation with: 8021 (8020) EQUAL(f(f(e,b),f(f(g(x),x),e)),b). >>>> Starting back demodulation with: 8023 (8022) EQUAL(f(f(e,b),f(e,f(x,g(x)))),b). >>>> Starting back demodulation with: 8025 (8024) EQUAL(f(f(e,b),f(e,f(g(x),x))),b). ** KEPT: 8026 (5932,5) EQUAL(f(f(x,f(e,b)),f(e,e)),f(x,b)). ** KEPT: 8027 (5932,5) EQUAL(f(f(e,b),f(f(e,e),x)),f(b,x)). new given clause: 5956 (3845,4635,5925) EQUAL(g(f(f(e,b),g(d))),h). ** KEPT: 8028 (8,5956) EQUAL(g(f(f(e,b),g(f(c,g(a))))),h). ---> New Demodulator: 8029 (8028) EQUAL(g(f(f(e,b),g(f(c,g(a))))),h). ** KEPT: 8030 (5,5956) EQUAL(g(f(e,f(b,g(d)))),h). ---> New Demodulator: 8031 (8030) EQUAL(g(f(e,f(b,g(d)))),h). >>>> Starting back demodulation with: 8029 (8028) EQUAL(g(f(f(e,b),g(f(c,g(a))))),h). >>>> Starting back demodulation with: 8031 (8030) EQUAL(g(f(e,f(b,g(d)))),h). ** KEPT: 8032 (5956,2126) EQUAL(f(h,f(f(f(e,b),g(d)),a)),a). ---> New Demodulator: 8033 (8032) EQUAL(f(h,f(f(f(e,b),g(d)),a)),a). ** KEPT: 8034 (5956,2120) EQUAL(f(f(f(e,b),g(d)),f(h,a)),a). ---> New Demodulator: 8035 (8034) EQUAL(f(f(f(e,b),g(d)),f(h,a)),a). ** KEPT: 8036 (5956,1719) EQUAL(f(f(b,f(f(e,b),g(d))),h),b). ---> New Demodulator: 8037 (8036) EQUAL(f(f(b,f(f(e,b),g(d))),h),b). ** KEPT: 8038 (5956,3126) EQUAL(f(f(h,h),f(f(e,b),g(d))),h). ---> New Demodulator: 8039 (8038) EQUAL(f(f(h,h),f(f(e,b),g(d))),h). ** KEPT: 8040 (5956,1197) EQUAL(f(f(f(e,b),g(d)),f(h,d)),d). ---> New Demodulator: 8041 (8040) EQUAL(f(f(f(e,b),g(d)),f(h,d)),d). ** KEPT: 8042 (5956,1133) EQUAL(f(f(f(e,b),g(d)),f(h,h)),h). ---> New Demodulator: 8043 (8042) EQUAL(f(f(f(e,b),g(d)),f(h,h)),h). ** KEPT: 8044 (5956,1725) EQUAL(f(f(b,h),f(f(e,b),g(d))),b). ---> New Demodulator: 8045 (8044) EQUAL(f(f(b,h),f(f(e,b),g(d))),b). ** KEPT: 8046 (5956,526) EQUAL(f(f(a,f(f(e,b),g(d))),h),a). ---> New Demodulator: 8047 (8046) EQUAL(f(f(a,f(f(e,b),g(d))),h),a). ** KEPT: 8048 (5956,520) EQUAL(f(f(a,h),f(f(e,b),g(d))),a). ---> New Demodulator: 8049 (8048) EQUAL(f(f(a,h),f(f(e,b),g(d))),a). ** KEPT: 8050 (5956,260) EQUAL(f(h,f(f(f(e,b),g(d)),b)),b). ---> New Demodulator: 8051 (8050) EQUAL(f(h,f(f(f(e,b),g(d)),b)),b). ** KEPT: 8052 (5956,113) EQUAL(f(f(d,f(f(e,b),g(d))),h),d). ---> New Demodulator: 8053 (8052) EQUAL(f(f(d,f(f(e,b),g(d))),h),d). ** KEPT: 8054 (5956,105) EQUAL(f(f(d,h),f(f(e,b),g(d))),d). ---> New Demodulator: 8055 (8054) EQUAL(f(f(d,h),f(f(e,b),g(d))),d). >>>> Starting back demodulation with: 8033 (8032) EQUAL(f(h,f(f(f(e,b),g(d)),a)),a). >>>> Starting back demodulation with: 8035 (8034) EQUAL(f(f(f(e,b),g(d)),f(h,a)),a). >>>> Starting back demodulation with: 8037 (8036) EQUAL(f(f(b,f(f(e,b),g(d))),h),b). >>>> Starting back demodulation with: 8039 (8038) EQUAL(f(f(h,h),f(f(e,b),g(d))),h). >>>> Starting back demodulation with: 8041 (8040) EQUAL(f(f(f(e,b),g(d)),f(h,d)),d). >>>> Starting back demodulation with: 8043 (8042) EQUAL(f(f(f(e,b),g(d)),f(h,h)),h). >>>> Starting back demodulation with: 8045 (8044) EQUAL(f(f(b,h),f(f(e,b),g(d))),b). >>>> Starting back demodulation with: 8047 (8046) EQUAL(f(f(a,f(f(e,b),g(d))),h),a). >>>> Starting back demodulation with: 8049 (8048) EQUAL(f(f(a,h),f(f(e,b),g(d))),a). >>>> Starting back demodulation with: 8051 (8050) EQUAL(f(h,f(f(f(e,b),g(d)),b)),b). >>>> Starting back demodulation with: 8053 (8052) EQUAL(f(f(d,f(f(e,b),g(d))),h),d). >>>> Starting back demodulation with: 8055 (8054) EQUAL(f(f(d,h),f(f(e,b),g(d))),d). new given clause: 5970 (3845,2007,5925) EQUAL(g(f(f(e,b),g(c))),a). ** KEPT: 8056 (5,5970) EQUAL(g(f(e,f(b,g(c)))),a). ---> New Demodulator: 8057 (8056) EQUAL(g(f(e,f(b,g(c)))),a). >>>> Starting back demodulation with: 8057 (8056) EQUAL(g(f(e,f(b,g(c)))),a). ** KEPT: 8058 (5970,3118) EQUAL(f(f(h,f(f(e,b),g(c))),a),h). ---> New Demodulator: 8059 (8058) EQUAL(f(f(h,f(f(e,b),g(c))),a),h). ** KEPT: 8060 (5970,2120) EQUAL(f(f(f(e,b),g(c)),f(a,a)),a). ---> New Demodulator: 8061 (8060) EQUAL(f(f(f(e,b),g(c)),f(a,a)),a). ** KEPT: 8062 (5970,1719) EQUAL(f(f(b,f(f(e,b),g(c))),a),b). ---> New Demodulator: 8063 (8062) EQUAL(f(f(b,f(f(e,b),g(c))),a),b). ** KEPT: 8064 (5970,3126) EQUAL(f(f(h,a),f(f(e,b),g(c))),h). ---> New Demodulator: 8065 (8064) EQUAL(f(f(h,a),f(f(e,b),g(c))),h). ** KEPT: 8066 (5970,1197) EQUAL(f(f(f(e,b),g(c)),f(a,d)),d). ---> New Demodulator: 8067 (8066) EQUAL(f(f(f(e,b),g(c)),f(a,d)),d). ** KEPT: 8068 (5970,1175) EQUAL(f(a,f(f(f(e,b),g(c)),d)),d). ---> New Demodulator: 8069 (8068) EQUAL(f(a,f(f(f(e,b),g(c)),d)),d). ** KEPT: 8070 (5970,1133) EQUAL(f(f(f(e,b),g(c)),f(a,h)),h). ---> New Demodulator: 8071 (8070) EQUAL(f(f(f(e,b),g(c)),f(a,h)),h). ** KEPT: 8072 (5970,1125) EQUAL(f(a,f(f(f(e,b),g(c)),h)),h). ---> New Demodulator: 8073 (8072) EQUAL(f(a,f(f(f(e,b),g(c)),h)),h). ** KEPT: 8074 (5970,1725) EQUAL(f(f(b,a),f(f(e,b),g(c))),b). ---> New Demodulator: 8075 (8074) EQUAL(f(f(b,a),f(f(e,b),g(c))),b). ** KEPT: 8076 (5970,520) EQUAL(f(f(a,a),f(f(e,b),g(c))),a). ---> New Demodulator: 8077 (8076) EQUAL(f(f(a,a),f(f(e,b),g(c))),a). ** KEPT: 8078 (5970,266) EQUAL(f(f(f(e,b),g(c)),f(a,b)),b). ---> New Demodulator: 8079 (8078) EQUAL(f(f(f(e,b),g(c)),f(a,b)),b). ** KEPT: 8080 (5970,260) EQUAL(f(a,f(f(f(e,b),g(c)),b)),b). ---> New Demodulator: 8081 (8080) EQUAL(f(a,f(f(f(e,b),g(c)),b)),b). ** KEPT: 8082 (5970,113) EQUAL(f(f(d,f(f(e,b),g(c))),a),d). ---> New Demodulator: 8083 (8082) EQUAL(f(f(d,f(f(e,b),g(c))),a),d). ** KEPT: 8084 (5970,105) EQUAL(f(f(d,a),f(f(e,b),g(c))),d). ---> New Demodulator: 8085 (8084) EQUAL(f(f(d,a),f(f(e,b),g(c))),d). >>>> Starting back demodulation with: 8059 (8058) EQUAL(f(f(h,f(f(e,b),g(c))),a),h). >>>> Starting back demodulation with: 8061 (8060) EQUAL(f(f(f(e,b),g(c)),f(a,a)),a). >>>> Starting back demodulation with: 8063 (8062) EQUAL(f(f(b,f(f(e,b),g(c))),a),b). >>>> Starting back demodulation with: 8065 (8064) EQUAL(f(f(h,a),f(f(e,b),g(c))),h). >>>> Starting back demodulation with: 8067 (8066) EQUAL(f(f(f(e,b),g(c)),f(a,d)),d). >>>> Starting back demodulation with: 8069 (8068) EQUAL(f(a,f(f(f(e,b),g(c)),d)),d). >>>> Starting back demodulation with: 8071 (8070) EQUAL(f(f(f(e,b),g(c)),f(a,h)),h). >>>> Starting back demodulation with: 8073 (8072) EQUAL(f(a,f(f(f(e,b),g(c)),h)),h). >>>> Starting back demodulation with: 8075 (8074) EQUAL(f(f(b,a),f(f(e,b),g(c))),b). >>>> Starting back demodulation with: 8077 (8076) EQUAL(f(f(a,a),f(f(e,b),g(c))),a). >>>> Starting back demodulation with: 8079 (8078) EQUAL(f(f(f(e,b),g(c)),f(a,b)),b). >>>> Starting back demodulation with: 8081 (8080) EQUAL(f(a,f(f(f(e,b),g(c)),b)),b). >>>> Starting back demodulation with: 8083 (8082) EQUAL(f(f(d,f(f(e,b),g(c))),a),d). >>>> Starting back demodulation with: 8085 (8084) EQUAL(f(f(d,a),f(f(e,b),g(c))),d). new given clause: 6002 (3845,3667,5925) EQUAL(g(f(g(f(e,b)),e)),b). ** KEPT: 8086 (4,6002) EQUAL(g(f(g(f(e,b)),f(x,g(x)))),b). ---> New Demodulator: 8087 (8086) EQUAL(g(f(g(f(e,b)),f(x,g(x)))),b). ** KEPT: 8088 (3,6002) EQUAL(g(f(g(f(e,b)),f(g(x),x))),b). ---> New Demodulator: 8089 (8088) EQUAL(g(f(g(f(e,b)),f(g(x),x))),b). >>>> Starting back demodulation with: 8087 (8086) EQUAL(g(f(g(f(e,b)),f(x,g(x)))),b). >>>> Starting back demodulation with: 8089 (8088) EQUAL(g(f(g(f(e,b)),f(g(x),x))),b). ** KEPT: 8090 (6002,3118) EQUAL(f(f(h,f(g(f(e,b)),e)),b),h). ---> New Demodulator: 8091 (8090) EQUAL(f(f(h,f(g(f(e,b)),e)),b),h). ** KEPT: 8092 (6002,2126) EQUAL(f(b,f(f(g(f(e,b)),e),a)),a). ---> New Demodulator: 8093 (8092) EQUAL(f(b,f(f(g(f(e,b)),e),a)),a). ** KEPT: 8094 (6002,2120) EQUAL(f(f(g(f(e,b)),e),f(b,a)),a). ---> New Demodulator: 8095 (8094) EQUAL(f(f(g(f(e,b)),e),f(b,a)),a). ** KEPT: 8096 (6002,1197) EQUAL(f(f(g(f(e,b)),e),f(b,d)),d). ---> New Demodulator: 8097 (8096) EQUAL(f(f(g(f(e,b)),e),f(b,d)),d). ** KEPT: 8098 (6002,1175) EQUAL(f(b,f(f(g(f(e,b)),e),d)),d). ---> New Demodulator: 8099 (8098) EQUAL(f(b,f(f(g(f(e,b)),e),d)),d). ** KEPT: 8100 (6002,1133) EQUAL(f(f(g(f(e,b)),e),f(b,h)),h). ---> New Demodulator: 8101 (8100) EQUAL(f(f(g(f(e,b)),e),f(b,h)),h). ** KEPT: 8102 (6002,1125) EQUAL(f(b,f(f(g(f(e,b)),e),h)),h). ---> New Demodulator: 8103 (8102) EQUAL(f(b,f(f(g(f(e,b)),e),h)),h). ** KEPT: 8104 (6002,1725) EQUAL(f(f(b,b),f(g(f(e,b)),e)),b). ---> New Demodulator: 8105 (8104) EQUAL(f(f(b,b),f(g(f(e,b)),e)),b). ** KEPT: 8106 (6002,526) EQUAL(f(f(a,f(g(f(e,b)),e)),b),a). ---> New Demodulator: 8107 (8106) EQUAL(f(f(a,f(g(f(e,b)),e)),b),a). ** KEPT: 8108 (6002,520) EQUAL(f(f(a,b),f(g(f(e,b)),e)),a). ---> New Demodulator: 8109 (8108) EQUAL(f(f(a,b),f(g(f(e,b)),e)),a). ** KEPT: 8110 (6002,266) EQUAL(f(f(g(f(e,b)),e),f(b,b)),b). ---> New Demodulator: 8111 (8110) EQUAL(f(f(g(f(e,b)),e),f(b,b)),b). ** KEPT: 8112 (6002,105) EQUAL(f(f(d,b),f(g(f(e,b)),e)),d). ---> New Demodulator: 8113 (8112) EQUAL(f(f(d,b),f(g(f(e,b)),e)),d). >>>> Starting back demodulation with: 8091 (8090) EQUAL(f(f(h,f(g(f(e,b)),e)),b),h). >>>> Starting back demodulation with: 8093 (8092) EQUAL(f(b,f(f(g(f(e,b)),e),a)),a). >>>> Starting back demodulation with: 8095 (8094) EQUAL(f(f(g(f(e,b)),e),f(b,a)),a). >>>> Starting back demodulation with: 8097 (8096) EQUAL(f(f(g(f(e,b)),e),f(b,d)),d). >>>> Starting back demodulation with: 8099 (8098) EQUAL(f(b,f(f(g(f(e,b)),e),d)),d). >>>> Starting back demodulation with: 8101 (8100) EQUAL(f(f(g(f(e,b)),e),f(b,h)),h). >>>> Starting back demodulation with: 8103 (8102) EQUAL(f(b,f(f(g(f(e,b)),e),h)),h). >>>> Starting back demodulation with: 8105 (8104) EQUAL(f(f(b,b),f(g(f(e,b)),e)),b). >>>> Starting back demodulation with: 8107 (8106) EQUAL(f(f(a,f(g(f(e,b)),e)),b),a). >>>> Starting back demodulation with: 8109 (8108) EQUAL(f(f(a,b),f(g(f(e,b)),e)),a). >>>> Starting back demodulation with: 8111 (8110) EQUAL(f(f(g(f(e,b)),e),f(b,b)),b). >>>> Starting back demodulation with: 8113 (8112) EQUAL(f(f(d,b),f(g(f(e,b)),e)),d). new given clause: 6237 (4198,3996) EQUAL(f(c,f(a,e)),f(c,a)). ** KEPT: 8114 (7,6237) EQUAL(f(f(a,b),f(a,e)),f(c,a)). ** KEPT: 8115 (1804,6237) EQUAL(f(f(e,c),f(a,e)),f(c,a)). ** KEPT: 8116 (7,6237) EQUAL(f(c,f(a,e)),f(f(a,b),a)). ** KEPT: 8117 (2013,6237) EQUAL(f(c,f(a,e)),f(f(c,e),a)). ** KEPT: 8118 (1804,6237) EQUAL(f(c,f(a,e)),f(f(e,c),a)). ** KEPT: 8119 (6237,5) EQUAL(f(f(x,c),f(a,e)),f(x,f(c,a))). ** KEPT: 8120 (6237,5) EQUAL(f(x,f(c,f(a,e))),f(f(x,c),a)). new given clause: 6238 (3616,3996) EQUAL(f(c,f(b,e)),f(c,b)). ** KEPT: 8121 (7,6238) EQUAL(f(f(a,b),f(b,e)),f(c,b)). ** KEPT: 8122 (1804,6238) EQUAL(f(f(e,c),f(b,e)),f(c,b)). ** KEPT: 8123 (7,6238) EQUAL(f(c,f(b,e)),f(f(a,b),b)). ** KEPT: 8124 (1804,6238) EQUAL(f(c,f(b,e)),f(f(e,c),b)). ** KEPT: 8125 (1803,6238) EQUAL(f(c,f(b,e)),f(f(c,e),b)). ** KEPT: 8126 (6238,5) EQUAL(f(f(x,c),f(b,e)),f(x,f(c,b))). ** KEPT: 8127 (6238,5) EQUAL(f(x,f(c,f(b,e))),f(f(x,c),b)). new given clause: 6296 (5,4109) EQUAL(f(c,f(f(e,e),e)),c). ** KEPT: 8128 (7,6296) EQUAL(f(f(a,b),f(f(e,e),e)),c). ---> New Demodulator: 8129 (8128) EQUAL(f(f(a,b),f(f(e,e),e)),c). ** KEPT: 8130 (4,6296) EQUAL(f(c,f(f(f(x,g(x)),e),e)),c). ---> New Demodulator: 8131 (8130) EQUAL(f(c,f(f(f(x,g(x)),e),e)),c). ** KEPT: 8132 (3,6296) EQUAL(f(c,f(f(f(g(x),x),e),e)),c). ---> New Demodulator: 8133 (8132) EQUAL(f(c,f(f(f(g(x),x),e),e)),c). ** KEPT: 8134 (4,6296) EQUAL(f(c,f(f(e,f(x,g(x))),e)),c). ---> New Demodulator: 8135 (8134) EQUAL(f(c,f(f(e,f(x,g(x))),e)),c). ** KEPT: 8136 (3,6296) EQUAL(f(c,f(f(e,f(g(x),x)),e)),c). ---> New Demodulator: 8137 (8136) EQUAL(f(c,f(f(e,f(g(x),x)),e)),c). ** KEPT: 8138 (4,6296) EQUAL(f(c,f(f(e,e),f(x,g(x)))),c). ---> New Demodulator: 8139 (8138) EQUAL(f(c,f(f(e,e),f(x,g(x)))),c). ** KEPT: 8140 (3,6296) EQUAL(f(c,f(f(e,e),f(g(x),x))),c). ---> New Demodulator: 8141 (8140) EQUAL(f(c,f(f(e,e),f(g(x),x))),c). ** KEPT: 8142 (3996,6296) EQUAL(f(c,f(e,f(f(e,e),e))),c). ---> New Demodulator: 8143 (8142) EQUAL(f(c,f(e,f(f(e,e),e))),c). ** KEPT: 8144 (1804,6296) EQUAL(f(f(e,c),f(f(e,e),e)),c). ---> New Demodulator: 8145 (8144) EQUAL(f(f(e,c),f(f(e,e),e)),c). ** KEPT: 8146 (1803,6296) EQUAL(f(f(c,e),f(f(e,e),e)),c). ---> New Demodulator: 8147 (8146) EQUAL(f(f(c,e),f(f(e,e),e)),c). >>>> Starting back demodulation with: 8129 (8128) EQUAL(f(f(a,b),f(f(e,e),e)),c). >>>> Starting back demodulation with: 8131 (8130) EQUAL(f(c,f(f(f(x,g(x)),e),e)),c). >>>> Starting back demodulation with: 8133 (8132) EQUAL(f(c,f(f(f(g(x),x),e),e)),c). >>>> Starting back demodulation with: 8135 (8134) EQUAL(f(c,f(f(e,f(x,g(x))),e)),c). >>>> Starting back demodulation with: 8137 (8136) EQUAL(f(c,f(f(e,f(g(x),x)),e)),c). >>>> Starting back demodulation with: 8139 (8138) EQUAL(f(c,f(f(e,e),f(x,g(x)))),c). >>>> Starting back demodulation with: 8141 (8140) EQUAL(f(c,f(f(e,e),f(g(x),x))),c). >>>> Starting back demodulation with: 8143 (8142) EQUAL(f(c,f(e,f(f(e,e),e))),c). >>>> Starting back demodulation with: 8145 (8144) EQUAL(f(f(e,c),f(f(e,e),e)),c). >>>> Starting back demodulation with: 8147 (8146) EQUAL(f(f(c,e),f(f(e,e),e)),c). ** KEPT: 8148 (6296,5) EQUAL(f(f(x,c),f(f(e,e),e)),f(x,c)). ** KEPT: 8149 (6296,5) EQUAL(f(c,f(f(f(e,e),e),x)),f(c,x)). new given clause: 6448 (4406,4379) EQUAL(f(f(e,e),f(e,a)),a). ** KEPT: 8150 (4,6448) EQUAL(f(f(f(x,g(x)),e),f(e,a)),a). ---> New Demodulator: 8151 (8150) EQUAL(f(f(f(x,g(x)),e),f(e,a)),a). ** KEPT: 8152 (3,6448) EQUAL(f(f(f(g(x),x),e),f(e,a)),a). ---> New Demodulator: 8153 (8152) EQUAL(f(f(f(g(x),x),e),f(e,a)),a). ** KEPT: 8154 (4,6448) EQUAL(f(f(e,f(x,g(x))),f(e,a)),a). ---> New Demodulator: 8155 (8154) EQUAL(f(f(e,f(x,g(x))),f(e,a)),a). ** KEPT: 8156 (3,6448) EQUAL(f(f(e,f(g(x),x)),f(e,a)),a). ---> New Demodulator: 8157 (8156) EQUAL(f(f(e,f(g(x),x)),f(e,a)),a). >>>> Starting back demodulation with: 8151 (8150) EQUAL(f(f(f(x,g(x)),e),f(e,a)),a). >>>> Starting back demodulation with: 8153 (8152) EQUAL(f(f(f(g(x),x),e),f(e,a)),a). >>>> Starting back demodulation with: 8155 (8154) EQUAL(f(f(e,f(x,g(x))),f(e,a)),a). >>>> Starting back demodulation with: 8157 (8156) EQUAL(f(f(e,f(g(x),x)),f(e,a)),a). ** KEPT: 8158 (6448,5) EQUAL(f(f(x,f(e,e)),f(e,a)),f(x,a)). ** KEPT: 8159 (6448,5) EQUAL(f(f(e,e),f(f(e,a),x)),f(a,x)). new given clause: 6519 (5,4434) EQUAL(f(f(e,f(e,e)),a),a). ** KEPT: 8160 (4,6519) EQUAL(f(f(f(x,g(x)),f(e,e)),a),a). ---> New Demodulator: 8161 (8160) EQUAL(f(f(f(x,g(x)),f(e,e)),a),a). ** KEPT: 8162 (3,6519) EQUAL(f(f(f(g(x),x),f(e,e)),a),a). ---> New Demodulator: 8163 (8162) EQUAL(f(f(f(g(x),x),f(e,e)),a),a). ** KEPT: 8164 (4,6519) EQUAL(f(f(e,f(f(x,g(x)),e)),a),a). ---> New Demodulator: 8165 (8164) EQUAL(f(f(e,f(f(x,g(x)),e)),a),a). ** KEPT: 8166 (3,6519) EQUAL(f(f(e,f(f(g(x),x),e)),a),a). ---> New Demodulator: 8167 (8166) EQUAL(f(f(e,f(f(g(x),x),e)),a),a). ** KEPT: 8168 (4,6519) EQUAL(f(f(e,f(e,f(x,g(x)))),a),a). ---> New Demodulator: 8169 (8168) EQUAL(f(f(e,f(e,f(x,g(x)))),a),a). ** KEPT: 8170 (3,6519) EQUAL(f(f(e,f(e,f(g(x),x))),a),a). ---> New Demodulator: 8171 (8170) EQUAL(f(f(e,f(e,f(g(x),x))),a),a). ** KEPT: 8172 (4379,6519) EQUAL(f(f(e,f(e,e)),f(e,a)),a). ---> New Demodulator: 8173 (8172) EQUAL(f(f(e,f(e,e)),f(e,a)),a). ** KEPT: 8174 (2013,6519) EQUAL(f(f(f(e,f(e,e)),e),a),a). ---> New Demodulator: 8175 (8174) EQUAL(f(f(f(e,f(e,e)),e),a),a). >>>> Starting back demodulation with: 8161 (8160) EQUAL(f(f(f(x,g(x)),f(e,e)),a),a). >>>> Starting back demodulation with: 8163 (8162) EQUAL(f(f(f(g(x),x),f(e,e)),a),a). >>>> Starting back demodulation with: 8165 (8164) EQUAL(f(f(e,f(f(x,g(x)),e)),a),a). >>>> Starting back demodulation with: 8167 (8166) EQUAL(f(f(e,f(f(g(x),x),e)),a),a). >>>> Starting back demodulation with: 8169 (8168) EQUAL(f(f(e,f(e,f(x,g(x)))),a),a). >>>> Starting back demodulation with: 8171 (8170) EQUAL(f(f(e,f(e,f(g(x),x))),a),a). >>>> Starting back demodulation with: 8173 (8172) EQUAL(f(f(e,f(e,e)),f(e,a)),a). >>>> Starting back demodulation with: 8175 (8174) EQUAL(f(f(f(e,f(e,e)),e),a),a). ** KEPT: 8176 (6519,2126) EQUAL(f(g(f(e,f(e,e))),a),a). ---> New Demodulator: 8177 (8176) EQUAL(f(g(f(e,f(e,e))),a),a). ** KEPT: 8178 (6519,5) EQUAL(f(f(x,f(e,f(e,e))),a),f(x,a)). ** KEPT: 8179 (6519,5) EQUAL(f(f(e,f(e,e)),f(a,x)),f(a,x)). >>>> Starting back demodulation with: 8177 (8176) EQUAL(f(g(f(e,f(e,e))),a),a). new given clause: 6545 (4452,4406,6538) EQUAL(f(f(e,e),f(a,e)),a). ** KEPT: 8180 (4,6545) EQUAL(f(f(f(x,g(x)),e),f(a,e)),a). ---> New Demodulator: 8181 (8180) EQUAL(f(f(f(x,g(x)),e),f(a,e)),a). ** KEPT: 8182 (3,6545) EQUAL(f(f(f(g(x),x),e),f(a,e)),a). ---> New Demodulator: 8183 (8182) EQUAL(f(f(f(g(x),x),e),f(a,e)),a). ** KEPT: 8184 (4,6545) EQUAL(f(f(e,f(x,g(x))),f(a,e)),a). ---> New Demodulator: 8185 (8184) EQUAL(f(f(e,f(x,g(x))),f(a,e)),a). ** KEPT: 8186 (3,6545) EQUAL(f(f(e,f(g(x),x)),f(a,e)),a). ---> New Demodulator: 8187 (8186) EQUAL(f(f(e,f(g(x),x)),f(a,e)),a). >>>> Starting back demodulation with: 8181 (8180) EQUAL(f(f(f(x,g(x)),e),f(a,e)),a). >>>> Starting back demodulation with: 8183 (8182) EQUAL(f(f(f(g(x),x),e),f(a,e)),a). >>>> Starting back demodulation with: 8185 (8184) EQUAL(f(f(e,f(x,g(x))),f(a,e)),a). >>>> Starting back demodulation with: 8187 (8186) EQUAL(f(f(e,f(g(x),x)),f(a,e)),a). ** KEPT: 8188 (6545,5) EQUAL(f(f(x,f(e,e)),f(a,e)),f(x,a)). ** KEPT: 8189 (6545,5) EQUAL(f(f(e,e),f(f(a,e),x)),f(a,x)). new given clause: 6594 (4452,1575,6538) EQUAL(g(f(g(c),f(a,e))),b). ** KEPT: 8190 (5,6594) EQUAL(g(f(f(g(c),a),e)),b). ---> New Demodulator: 8191 (8190) EQUAL(g(f(f(g(c),a),e)),b). >>>> Starting back demodulation with: 8191 (8190) EQUAL(g(f(f(g(c),a),e)),b). ** KEPT: 8192 (6594,3118) EQUAL(f(f(h,f(g(c),f(a,e))),b),h). ---> New Demodulator: 8193 (8192) EQUAL(f(f(h,f(g(c),f(a,e))),b),h). ** KEPT: 8194 (6594,2126) EQUAL(f(b,f(f(g(c),f(a,e)),a)),a). ---> New Demodulator: 8195 (8194) EQUAL(f(b,f(f(g(c),f(a,e)),a)),a). ** KEPT: 8196 (6594,2120) EQUAL(f(f(g(c),f(a,e)),f(b,a)),a). ---> New Demodulator: 8197 (8196) EQUAL(f(f(g(c),f(a,e)),f(b,a)),a). ** KEPT: 8198 (6594,1197) EQUAL(f(f(g(c),f(a,e)),f(b,d)),d). ---> New Demodulator: 8199 (8198) EQUAL(f(f(g(c),f(a,e)),f(b,d)),d). ** KEPT: 8200 (6594,1175) EQUAL(f(b,f(f(g(c),f(a,e)),d)),d). ---> New Demodulator: 8201 (8200) EQUAL(f(b,f(f(g(c),f(a,e)),d)),d). ** KEPT: 8202 (6594,1133) EQUAL(f(f(g(c),f(a,e)),f(b,h)),h). ---> New Demodulator: 8203 (8202) EQUAL(f(f(g(c),f(a,e)),f(b,h)),h). ** KEPT: 8204 (6594,1125) EQUAL(f(b,f(f(g(c),f(a,e)),h)),h). ---> New Demodulator: 8205 (8204) EQUAL(f(b,f(f(g(c),f(a,e)),h)),h). ** KEPT: 8206 (6594,1725) EQUAL(f(f(b,b),f(g(c),f(a,e))),b). ---> New Demodulator: 8207 (8206) EQUAL(f(f(b,b),f(g(c),f(a,e))),b). ** KEPT: 8208 (6594,526) EQUAL(f(f(a,f(g(c),f(a,e))),b),a). ---> New Demodulator: 8209 (8208) EQUAL(f(f(a,f(g(c),f(a,e))),b),a). ** KEPT: 8210 (6594,520) EQUAL(f(f(a,b),f(g(c),f(a,e))),a). ---> New Demodulator: 8211 (8210) EQUAL(f(f(a,b),f(g(c),f(a,e))),a). ** KEPT: 8212 (6594,266) EQUAL(f(f(g(c),f(a,e)),f(b,b)),b). ---> New Demodulator: 8213 (8212) EQUAL(f(f(g(c),f(a,e)),f(b,b)),b). ** KEPT: 8214 (6594,105) EQUAL(f(f(d,b),f(g(c),f(a,e))),d). ---> New Demodulator: 8215 (8214) EQUAL(f(f(d,b),f(g(c),f(a,e))),d). >>>> Starting back demodulation with: 8193 (8192) EQUAL(f(f(h,f(g(c),f(a,e))),b),h). >>>> Starting back demodulation with: 8195 (8194) EQUAL(f(b,f(f(g(c),f(a,e)),a)),a). >>>> Starting back demodulation with: 8197 (8196) EQUAL(f(f(g(c),f(a,e)),f(b,a)),a). >>>> Starting back demodulation with: 8199 (8198) EQUAL(f(f(g(c),f(a,e)),f(b,d)),d). >>>> Starting back demodulation with: 8201 (8200) EQUAL(f(b,f(f(g(c),f(a,e)),d)),d). >>>> Starting back demodulation with: 8203 (8202) EQUAL(f(f(g(c),f(a,e)),f(b,h)),h). >>>> Starting back demodulation with: 8205 (8204) EQUAL(f(b,f(f(g(c),f(a,e)),h)),h). >>>> Starting back demodulation with: 8207 (8206) EQUAL(f(f(b,b),f(g(c),f(a,e))),b). >>>> Starting back demodulation with: 8209 (8208) EQUAL(f(f(a,f(g(c),f(a,e))),b),a). >>>> Starting back demodulation with: 8211 (8210) EQUAL(f(f(a,b),f(g(c),f(a,e))),a). >>>> Starting back demodulation with: 8213 (8212) EQUAL(f(f(g(c),f(a,e)),f(b,b)),b). >>>> Starting back demodulation with: 8215 (8214) EQUAL(f(f(d,b),f(g(c),f(a,e))),d). ------------ END OF SEARCH ------------ search stopped by max_kept option. --------------- options --------------- set(UR_res). set(para_from). set(para_into). set(para_from_left). set(para_from_right). set(demod_hist). set(for_sub). set(print_kept). set(back_sub). set(print_back_sub). set(print_given). set(check_arity). set(back_demod). set(print_new_demod). set(print_back_demod). clear(binary_res). clear(hyper_res). clear(demod_inf). clear(para_into_vars). clear(para_from_vars). clear(para_all). clear(para_ones_rule). clear(no_para_into_left). clear(no_para_into_right). clear(demod_linear). clear(print_gen). clear(sort_literals). clear(Unit_deletion). clear(factor). clear(print_weight). clear(sos_fifo). clear(bird_print). clear(atom_wt_max_args). clear(print_lists_at_end). clear(free_all_mem). clear(for_sub_fpa). clear(no_fapl). clear(no_fanl). clear(order_eq). clear(dynamic_demod). assign(report, 0). assign(max_seconds, 0). assign(max_given, 0). assign(max_kept, 5000). assign(max_gen, 0). assign(max_mem, 0). assign(max_weight, 0). assign(max_literals, 0). assign(fpa_literals, 3). assign(fpa_terms, 3). assign(demod_limit, 100). assign(max_proofs, 1). assign(neg_weight, 0). ------------- memory usage ------------ 83 mallocs of 32700 bytes each (2650.5+ K) type (bytes each) gets frees in use avail bytes sym_ent ( 64) 29 0 29 0 1.8 K term ( 16) 2085793 2059521 26272 16 410.8 K rel ( 20) 1710516 1671344 39172 14 765.4 K term_ptr ( 8) 83654 14532 69122 2 540.0 K fpa_head ( 12) 836 127 709 0 8.3 K fpa_tree ( 28) 82407 82407 0 25 0.7 K context ( 260) 301673 301673 0 3 0.8 K trail ( 12) 226669 226669 0 3 0.0 K imd_tree ( 24) 8263 1596 6667 0 156.3 K imd_pos ( 416) 1198230 1198230 0 4 1.6 K is_tree ( 12) 20347 3131 17216 0 201.8 K is_pos (1216) 431943 431943 0 6 7.1 K fsub_pos ( 8) 134746 134746 0 1 0.0 K literal ( 16) 142961 134746 8215 1 128.4 K clause ( 28) 142964 134749 8215 1 224.7 K list ( 60) 3 0 3 0 0.2 K clash_nd ( 32) 0 0 0 0 0.0 K clause_ptr ( 8) 15945 7730 8215 2 64.2 K int_ptr ( 8) 513938 500197 13741 4 107.4 K -------------- statistics ------------- clauses input 14 clauses given 496 clauses generated 138580 demodulation rewrites 232411 clauses wt or lit delete 0 tautologies deleted 0 clauses forward subsumed 134746 (clauses subsumed by sos) 1945 unit deletions 0 clauses kept 5008 new demodualtors 3193 empty clauses 0 factors generated 0 clauses back demodulated 1174 clauses back subsumed 138 clauses not processed 0 ----------- times (seconds) ----------- run time 2751.42 input time 0.17 binary_res time 0.00 hyper_res time 0.00 UR_res time 0.31 para_into time 91.68 para_from time 82.77 pre_process time 795.74 demod time 509.20 weigh time 1.95 for_sub time 109.74 unit_del time 0.00 post_process time 1753.69 back_sub time 36.71 conflict time 6.88 factor time 0.00 back demod time 1690.81 FPA build time 7.52 IS build time 3.42 print_cl time 41.19 cl integrate time 9.67 window time 0.00 SHAR_EOF if test -f 'cyclic.desc' then echo shar: over-writing existing file "'cyclic.desc'" fi cat << \SHAR_EOF > 'cyclic.desc' problem-set/algebra/groups/cyclic.desc created : 08/11/88 revised : 08/11/88 Natural Language Description : Theorem: all groups of order 5 are cyclic; i.e., there exists an element in G that generates all other elements by taking powers of that element. Versions : cyclic.ver3 : uses UR resolution, unit deletion, factoring, demodulation and back demodulation with a extended p-formulation. Note: this theorem is proven via the fact that any element raised to the power of the group gives the identity element back, and that therefore only powers up to 5 in this case need be investigated. created : 08/11/88, Cynthia A. Wick verified for ITP : no. translated for OTTER : caw. verified for OTTER : 08/11/88. SHAR_EOF if test -f 'cyclic.ver3.in' then echo shar: over-writing existing file "'cyclic.ver3.in'" fi cat << \SHAR_EOF > 'cyclic.ver3.in' % problem-set/algebra/groups/cyclic.ver3.in % created : 08/11/88 % revised : 08/11/88 % description: % % Theorem: all groups of order 5 are cyclic; i.e., there exists an element % in G that generates all other elements by taking powers of that element. % Note: this theorem is proven via the fact that any element raised to the % power of the group gives the identity element back, and that therefore % only powers up to 5 in this case need be investigated. % representation: % % declare_predicates(2,[EL,EQUAL]). % declare_predicate(4,[P]). % declare_functions(1,[e,k,r,s,p1,p2,p3,q1,q2,q3]). % declare_functions(2,[g,m]). % declare_function(3,[f]). % declare_constants([a,b,c,d,i,h,j,d1,d2,d3,G,G1,G2]). % declare_variables([x,y,z,w,xg,yg,xy,yz,xyz]). % % EL(x,y) : x is an element of group y % P(x,y,z,w) : in group x, the product of y and z is w % e(x) : names the identity element of group x % k(x) : names an isomorphism (see order2.ver3, order3.ver3) % r(x) : is a possible isomorphism (see order2.ver4) % s(x) : is a possible isomorphism (see order2.ver4) % p1(x) : is a possible isomorphism (see order3.ver4) % p2(x) : is a possible isomorphism (see order3.ver4) % p3(x) : is a possible isomorphism (see order3.ver4) % q1(x) : is a possible isomorphism (see order3.ver4) % q2(x) : is a possible isomorphism (see order3.ver4) % q3(x) : is a possible isomorphism (see order3.ver4) % g(x,y) : in group x, names inverse of y % m(x,y) : in group x, names an element which does not equal any power of % y; (see cyclic) % f(x,y,z) : in group x, names the product of y and z % i : identity element in group G named set(UR_res). set(Unit_deletion). set(factor). set(back_demod). assign(max_kept,5000). list(axioms). % The following are the usual axioms of a group with an additional argument % in the usual predicates and functions to identify the group. % closure property -EL(x,xg) | -EL(y,xg) | P(xg,x,y,f(xg,x,y)). -EL(x,xg) | -EL(y,xg) | EL(f(xg,x,y),xg). % the operation is well defined -P(xg,x,y,z) | -P(xg,x,y,w) | EQUAL(w,z). % existence of identity EL(e(xg),xg). P(xg,e(xg),x,x). P(xg,x,e(xg),x). % existence of inverses -EL(x,xg) | EL(g(xg,x),xg). P(xg,g(xg,x),x,e(xg)). P(xg,x,g(xg,x),e(xg)). % associative property -P(xg,x,y,xy) | -P(xg,y,z,yz) | -P(xg,xy,z,xyz) | P(xg,x,xy,xyz). -P(xg,x,y,xy) | -P(xg,y,z,yz) | -P(xg,x,yz,xyz) | P(xg,xy,z,xyz). % equality axioms EQUAL(x,x). -EQUAL(x,y) | EQUAL(y,x). -EQUAL(x,y) | -EQUAL(y,z) | EQUAL(x,z). % equality substitution axioms -EQUAL(xg,yg)| -P(xg,x,y,z) | P(yg,x,y,z). -EQUAL(x,y) | -P(xg,x,z,w) | P(xg,y,z,w). -EQUAL(x,y) | -P(xg,w,x,z) | P(xg,w,y,z). -EQUAL(x,y) | -P(xg,w,z,x) | P(xg,w,z,y). -EQUAL(xg,yg)| EQUAL(f(xg,x,y),f(yg,x,y)). -EQUAL(x,y) | EQUAL(f(xg,x,z),f(xg,y,z)). -EQUAL(x,y) | EQUAL(f(xg,z,x),f(xg,z,y)). -EQUAL(xg,yg)| EQUAL(g(xg,x),g(yg,x)). -EQUAL(x,y) | EQUAL(g(xg,x),g(xg,y)). -EQUAL(xg,yg)| -EL(x,xg) | EL(x,yg). -EQUAL(x,y) | -EL(x,xg) | EL(y,xg). -EQUAL(xg,yg)| EQUAL(e(xg),e(yg)). end_of_list. list(sos). % elements of our group of order 5: EL(a,G). EL(b,G). EL(c,G). EL(d,G). EL(i,G). EQUAL(e(G),i). -EL(x,G) | EQUAL(x,a) | EQUAL(x,b) | EQUAL(x,c) | EQUAL(x,d) | EQUAL(x,i). EQUAL(f(G,x,f(G,x,f(G,x,f(G,x,x)))),i). % denial of theorem: for all x in group G, there exists a y in G such that % x<>y and x^2<>y and x^3<>y and x^4<>y and x^5<>y. -EQUAL(m(G,x),x). -P(G,x,x,m(G,x)). -P(G,x,f(G,x,x),m(G,x)). -P(G,x,f(G,x,f(G,x,x)),m(G,x)). -P(G,x,f(G,x,f(G,x,f(G,x,x))),m(G,x)). end_of_list. list(demodulators). EQUAL(e(G),i). EQUAL(g(xg,e(xg)),e(xg)). EQUAL(g(xg,g(xg,x)),x). EQUAL(f(xg,e(xg),x),x). EQUAL(f(xg,x,e(xg)),x). EQUAL(f(xg,x,g(xg,x)),e(xg)). EQUAL(f(xg,g(xg,x),x),e(xg)). EQUAL(f(G,x,f(G,x,f(G,x,f(G,x,x)))),i). end_of_list. SHAR_EOF if test -f 'cyclic.ver3.out' then echo shar: over-writing existing file "'cyclic.ver3.out'" fi cat << \SHAR_EOF > 'cyclic.ver3.out' OTTER version 0.91, 14 June 1988. set(UR_res). set(Unit_deletion). set(factor). set(back_demod). assign(max_kept,5000). list(axioms). 1 -EL(x,xg) | -EL(y,xg) | P(xg,x,y,f(xg,x,y)). 2 -EL(x,xg) | -EL(y,xg) | EL(f(xg,x,y),xg). 3 -P(xg,x,y,z) | -P(xg,x,y,w) | EQUAL(w,z). 4 EL(e(xg),xg). 5 P(xg,x,e(xg),x). 6 P(xg,e(xg),x,x). 7 -EL(x,xg) | EL(g(xg,x),xg). 8 P(xg,x,g(xg,x),e(xg)). 9 P(xg,g(xg,x),x,e(xg)). 10 -P(xg,x,y,xy) | -P(xg,y,z,yz) | -P(xg,xy,z,xyz) | P(xg,x,xy,xyz). 11 -P(xg,x,y,xy) | -P(xg,y,z,yz) | -P(xg,x,yz,xyz) | P(xg,xy,z,xyz). 12 EQUAL(x,x). 13 -EQUAL(x,y) | EQUAL(y,x). 14 -EQUAL(x,y) | -EQUAL(y,z) | EQUAL(x,z). 15 -EQUAL(xg,yg) | -P(xg,x,y,z) | P(yg,x,y,z). 16 -EQUAL(x,y) | -P(xg,x,z,w) | P(xg,y,z,w). 17 -EQUAL(x,y) | -P(xg,w,x,z) | P(xg,w,y,z). 18 -EQUAL(x,y) | -P(xg,w,z,x) | P(xg,w,z,y). 19 -EQUAL(xg,yg) | EQUAL(f(xg,x,y),f(yg,x,y)). 20 -EQUAL(x,y) | EQUAL(f(xg,x,z),f(xg,y,z)). 21 -EQUAL(x,y) | EQUAL(f(xg,z,x),f(xg,z,y)). 22 -EQUAL(xg,yg) | EQUAL(g(xg,x),g(yg,x)). 23 -EQUAL(x,y) | EQUAL(g(xg,x),g(xg,y)). 24 -EQUAL(xg,yg) | -EL(x,xg) | EL(x,yg). 25 -EQUAL(x,y) | -EL(x,xg) | EL(y,xg). 26 -EQUAL(xg,yg) | EQUAL(e(xg),e(yg)). end_of_list. list(sos). 27 EL(a,G). 28 EL(b,G). 29 EL(c,G). 30 EL(d,G). 31 EL(i,G). 32 EQUAL(e(G),i). 33 -EL(x,G) | EQUAL(x,a) | EQUAL(x,b) | EQUAL(x,c) | EQUAL(x,d) | EQUAL(x,i). 34 EQUAL(f(G,x,f(G,x,f(G,x,f(G,x,x)))),i). 35 -EQUAL(m(G,x),x). 36 -P(G,x,x,m(G,x)). 37 -P(G,x,f(G,x,x),m(G,x)). 38 -P(G,x,f(G,x,f(G,x,x)),m(G,x)). 39 -P(G,x,f(G,x,f(G,x,f(G,x,x))),m(G,x)). end_of_list. list(demodulators). 40 EQUAL(e(G),i). 41 EQUAL(g(xg,e(xg)),e(xg)). 42 EQUAL(g(xg,g(xg,x)),x). 43 EQUAL(f(xg,e(xg),x),x). 44 EQUAL(f(xg,x,e(xg)),x). 45 EQUAL(f(xg,x,g(xg,x)),e(xg)). 46 EQUAL(f(xg,g(xg,x),x),e(xg)). 47 EQUAL(f(G,x,f(G,x,f(G,x,f(G,x,x)))),i). end_of_list. new given clause: 27 EL(a,G). ----> UNIT CONFLICT at 6.67 sec ----> 253 (248,249) . ------------ END OF SEARCH ------------ ---------------- PROOF ---------------- 3 -P(xg,x,y,z) | -P(xg,x,y,w) | EQUAL(w,z). 5 P(xg,x,e(xg),x). 8 P(xg,x,g(xg,x),e(xg)). 10 -P(xg,x,y,xy) | -P(xg,y,z,yz) | -P(xg,xy,z,xyz) | P(xg,x,xy,xyz). 17 -EQUAL(x,y) | -P(xg,w,x,z) | P(xg,w,y,z). 32 EQUAL(e(G),i). 35 -EQUAL(m(G,x),x). 40 EQUAL(e(G),i). 105 (32,17,5) P(G,x,i,x). 248 (105,10,8,105,40,40) P(G,x,i,i). 249 (105,3,35) -P(G,m(G,x),i,x). 253 (248,249) . --------------- options --------------- set(UR_res). set(demod_hist). set(for_sub). set(Unit_deletion). set(print_kept). set(factor). set(back_sub). set(print_back_sub). set(print_given). set(check_arity). set(back_demod). set(print_new_demod). set(print_back_demod). clear(binary_res). clear(hyper_res). clear(para_from). clear(para_into). clear(demod_inf). clear(para_from_left). clear(para_from_right). clear(para_into_vars). clear(para_from_vars). clear(para_all). clear(para_ones_rule). clear(no_para_into_left). clear(no_para_into_right). clear(demod_linear). clear(print_gen). clear(sort_literals). clear(print_weight). clear(sos_fifo). clear(bird_print). clear(atom_wt_max_args). clear(print_lists_at_end). clear(free_all_mem). clear(for_sub_fpa). clear(no_fapl). clear(no_fanl). clear(order_eq). clear(dynamic_demod). assign(report, 0). assign(max_seconds, 0). assign(max_given, 0). assign(max_kept, 5000). assign(max_gen, 0). assign(max_mem, 0). assign(max_weight, 0). assign(max_literals, 0). assign(fpa_literals, 3). assign(fpa_terms, 3). assign(demod_limit, 100). assign(max_proofs, 1). assign(neg_weight, 0). -------------- statistics ------------- clauses input 47 clauses given 13 clauses generated 406 demodulation rewrites 234 clauses wt or lit delete 0 tautologies deleted 0 clauses forward subsumed 201 (clauses subsumed by sos) 109 unit deletions 0 clauses kept 205 new demodualtors 1 empty clauses 1 factors generated 0 clauses back demodulated 0 clauses back subsumed 0 clauses not processed 10 ----------- times (seconds) ----------- run time 6.79 input time 0.65 binary_res time 0.00 hyper_res time 0.00 UR_res time 1.09 para_into time 0.00 para_from time 0.00 pre_process time 3.62 demod time 0.58 weigh time 0.07 for_sub time 0.88 unit_del time 0.44 post_process time 1.20 back_sub time 0.42 conflict time 0.69 factor time 0.02 back demod time 0.00 FPA build time 0.34 IS build time 0.15 print_cl time 0.78 cl integrate time 0.24 window time 0.00 SHAR_EOF if test -f 'ident1.desc' then echo shar: over-writing existing file "'ident1.desc'" fi cat << \SHAR_EOF > 'ident1.desc' problem-set/algebra/groups/ident1.desc created : 07/09/86 revised : 08/12/88 Natural Language Description: Theorem: the right identity axiom is dependant on the rest of the axiom set; i.e., if e is the left identity, then e is also a right identity. Note: the axioms P(x,e,x) and P(x,g(x),e) must be deleted. Versions : ident1.ver1 : uses UR resolution with a standard p-formulation. created : 7/9/86 from McCharen, Overbeek, & Wos [Aug. 1976]. verified for ITP : 7/11/86 translated for OTTER : caw. verified for OTTER : 08/12/88. SHAR_EOF if test -f 'ident1.ver1.clauses' then echo shar: over-writing existing file "'ident1.ver1.clauses'" fi cat << \SHAR_EOF > 'ident1.ver1.clauses' % problem-set/algebra/groups/ident1.ver1.clauses % created : 07/09/86 % revised : 08/12/88 % description: % % Theorem: the right identity axiom is dependant on the rest of % the axiom set; i.e., if e is the left identity, then e is also a % right identity. % representation: % % declare_predicate(1,[O]). % declare_predicate(2,[EQUAL]). % declare_predicate(3,[P]). % declare_functions(1,[g,k]). % declare_functions(2,[f,l]). % declare_constants([e,a,b,c,d,h,j,k]). % declare_variables([x,y,z,u,v,w]). % % O(x) : used for membership in a subgroup of index 2 (see index) % P(x,y) : product of x and y is z % g(x) : inverse of x % k(x) : used to name some inverse of x (see ident2) % f(x,y) : names the product of x and y % l(x,y) : names an element of the subgroup of index 2 (see index) % e : identity element % existence of identity P(e,x,x). % P(x,e,x). DELETED AS PART OF THEOREM % existence of inverse P(g(x),x,e). % P(x,g(x),e). DELETED AS PART OF THEOREM % closure P(x,y,f(x,y)). % associative property -P(x,y,u) | -P(y,z,v) | -P(u,z,w) | P(x,v,w). -P(x,y,u) | -P(y,z,v) | -P(x,v,w) | P(u,z,w). % the operation is well defined -P(x,y,z) | -P(x,y,w) | EQUAL(z,w) . % equality axioms EQUAL(x,x). -EQUAL(x,y) | EQUAL(y,x). -EQUAL(x,y) | -EQUAL(y,z) | EQUAL(x,z). % equality substitution axioms -EQUAL(x,y) | -P(x,w,z) | P(y,w,z). -EQUAL(x,y) | -P(w,x,z) | P(w,y,z). -EQUAL(x,y) | -P(w,z,x) | P(w,z,y). -EQUAL(x,y) | EQUAL(f(x,w),f(y,w)). -EQUAL(x,y) | EQUAL(f(w,x),f(w,y)). -EQUAL(x,y) | EQUAL(g(x),g(y)). % denial of the theorem -P(a,e,a). SHAR_EOF if test -f 'ident1.ver1.in' then echo shar: over-writing existing file "'ident1.ver1.in'" fi cat << \SHAR_EOF > 'ident1.ver1.in' % problem-set/algebra/groups/ident1.ver1.in % created : 07/09/86 % revised : 08/12/88 % description: % % Theorem: the right identity axiom is dependant on the rest of % the axiom set; i.e., if e is the left identity, then e is also a % right identity. % representation: % % declare_predicate(1,[O]). % declare_predicate(2,[EQUAL]). % declare_predicate(3,[P]). % declare_functions(1,[g,k]). % declare_functions(2,[f,l]). % declare_constants([e,a,b,c,d,h,j,k]). % declare_variables([x,y,z,u,v,w]). % % O(x) : used for membership in a subgroup of index 2 (see index) % P(x,y) : product of x and y is z % g(x) : inverse of x % k(x) : used to name some inverse of x (see ident2) % f(x,y) : names the product of x and y % l(x,y) : names an element of the subgroup of index 2 (see index) % e : identity element set(UR_res). set(back_demod). set(factor). set(Unit_deletion). assign(max_kept,5000). list(axioms). % existence of identity P(e,x,x). % P(x,e,x). DELETED AS PART OF THEOREM % existence of inverse P(g(x),x,e). % P(x,g(x),e). DELETED AS PART OF THEOREM % closure P(x,y,f(x,y)). % associative property -P(x,y,u) | -P(y,z,v) | -P(u,z,w) | P(x,v,w). -P(x,y,u) | -P(y,z,v) | -P(x,v,w) | P(u,z,w). % the operation is well defined -P(x,y,z) | -P(x,y,w) | EQUAL(z,w) . % equality axioms EQUAL(x,x). -EQUAL(x,y) | EQUAL(y,x). -EQUAL(x,y) | -EQUAL(y,z) | EQUAL(x,z). % equality substitution axioms -EQUAL(x,y) | -P(x,w,z) | P(y,w,z). -EQUAL(x,y) | -P(w,x,z) | P(w,y,z). -EQUAL(x,y) | -P(w,z,x) | P(w,z,y). -EQUAL(x,y) | EQUAL(f(x,w),f(y,w)). -EQUAL(x,y) | EQUAL(f(w,x),f(w,y)). -EQUAL(x,y) | EQUAL(g(x),g(y)). end_of_list. list(sos). % denial of the theorem -P(a,e,a). end_of_list. SHAR_EOF if test -f 'ident1.ver1.out' then echo shar: over-writing existing file "'ident1.ver1.out'" fi cat << \SHAR_EOF > 'ident1.ver1.out' % problem-set/algebra/groups/ident1.ver1.out % created : 08/12/88 % revised : 08/12/88 OTTER version 0.91, 14 June 1988. set(UR_res). set(back_demod). set(factor). set(Unit_deletion). assign(max_kept,5000). list(axioms). 1 P(e,x,x). 2 P(g(x),x,e). 3 P(x,y,f(x,y)). 4 -P(x,y,u) | -P(y,z,v) | -P(u,z,w) | P(x,v,w). 5 -P(x,y,u) | -P(y,z,v) | -P(x,v,w) | P(u,z,w). 6 -P(x,y,z) | -P(x,y,w) | EQUAL(z,w). 7 EQUAL(x,x). 8 -EQUAL(x,y) | EQUAL(y,x). 9 -EQUAL(x,y) | -EQUAL(y,z) | EQUAL(x,z). 10 -EQUAL(x,y) | -P(x,w,z) | P(y,w,z). 11 -EQUAL(x,y) | -P(w,x,z) | P(w,y,z). 12 -EQUAL(x,y) | -P(w,z,x) | P(w,z,y). 13 -EQUAL(x,y) | EQUAL(f(x,w),f(y,w)). 14 -EQUAL(x,y) | EQUAL(f(w,x),f(w,y)). 15 -EQUAL(x,y) | EQUAL(g(x),g(y)). end_of_list. list(sos). 16 -P(a,e,a). end_of_list. new given clause: 16 -P(a,e,a). ** KEPT: 17 (16,12,3) -EQUAL(f(a,e),a). ** KEPT: 18 (16,5,1,3) -P(e,f(a,e),a). ** KEPT: 19 (16,4,2,1) -P(a,g(a),e). ** KEPT: 20 (16,4,3,2) -P(f(a,g(x)),x,a). ** KEPT: 21 (16,4,3,1) -P(f(a,e),e,a). new given clause: 17 (16,12,3) -EQUAL(f(a,e),a). ** KEPT: 22 (17,6,1) -P(e,a,f(a,e)). new given clause: 19 (16,4,2,1) -P(a,g(a),e). ** KEPT: 23 (19,12,3) -EQUAL(f(a,g(a)),e). ** KEPT: 24 (19,10,2) -EQUAL(g(g(a)),a). ** KEPT: 25 (19,5,3,2) -P(g(f(x,g(a))),x,a). ** KEPT: 26 (19,5,2,2) -P(g(e),g(g(a)),a). ** KEPT: 27 (19,5,2,1) -P(e,g(g(a)),a). ** KEPT: 28 (19,5,1,2) -P(g(g(a)),e,a). ** KEPT: 29 (19,5,1,3) -P(e,f(a,g(a)),e). ** KEPT: 30 (19,4,1,2) -P(a,e,g(g(a))). ** KEPT: 31 (19,4,3,1) -P(f(a,e),g(a),e). new given clause: 24 (19,10,2) -EQUAL(g(g(a)),a). ** KEPT: 32 (24,6,1) -P(e,a,g(g(a))). new given clause: 18 (16,5,1,3) -P(e,f(a,e),a). ** KEPT: 33 (18,12,3) -EQUAL(f(e,f(a,e)),a). ** KEPT: 34 (18,5,2,3) -P(g(x),f(x,f(a,e)),a). ** KEPT: 35 (18,5,2,2) -P(g(g(f(a,e))),e,a). ** KEPT: 36 (18,5,2,1) -P(g(e),f(a,e),a). ** KEPT: 37 (18,5,1,3) -P(e,f(e,f(a,e)),a). ** KEPT: 38 (18,4,3,3) -P(f(e,a),e,a). ** KEPT: 39 (18,4,3,1) -P(f(e,e),f(a,e),a). new given clause: 21 (16,4,3,1) -P(f(a,e),e,a). ** KEPT: 40 (21,12,3) -EQUAL(f(f(a,e),e),a). ** KEPT: 41 (21,5,3,3) -P(a,f(e,e),a). ** KEPT: 42 (21,5,1,3) -P(e,f(f(a,e),e),a). ** KEPT: 43 (21,4,3,2) -P(f(f(a,e),g(x)),x,a). ** KEPT: 44 (21,4,3,1) -P(f(f(a,e),e),e,a). new given clause: 22 (17,6,1) -P(e,a,f(a,e)). ** KEPT: 45 (22,12,3) -EQUAL(f(a,e),f(e,a)). ** KEPT: 46 (22,5,2,3) -P(g(x),f(x,a),f(a,e)). ** KEPT: 47 (22,5,2,2) -P(g(g(a)),e,f(a,e)). ** KEPT: 48 (22,5,2,1) -P(g(e),a,f(a,e)). ** KEPT: 49 (22,5,1,3) -P(e,f(e,a),f(a,e)). ** KEPT: 50 (22,4,3,1) -P(f(e,e),a,f(a,e)). new given clause: 23 (19,12,3) -EQUAL(f(a,g(a)),e). ** KEPT: 51 (23,6,2) -P(g(x),x,f(a,g(a))). ** KEPT: 52 (23,6,1) -P(e,e,f(a,g(a))). new given clause: 27 (19,5,2,1) -P(e,g(g(a)),a). ** KEPT: 53 (27,12,3) -EQUAL(f(e,g(g(a))),a). ** KEPT: 54 (27,5,2,3) -P(g(x),f(x,g(g(a))),a). ** KEPT: 55 (27,5,2,2) -P(g(g(g(g(a)))),e,a). ** KEPT: 56 (27,5,1,3) -P(e,f(e,g(g(a))),a). ** KEPT: 57 (27,4,3,1) -P(f(e,e),g(g(a)),a). new given clause: 28 (19,5,1,2) -P(g(g(a)),e,a). ---------------- PROOF ---------------- ** KEPT: 58 (28,12,3) -EQUAL(f(g(g(a)),e),a). ** KEPT: 59 (28,5,1,3) -P(e,f(g(g(a)),e),a). ** KEPT: 60 (28,4,2,1,2) . ** KEPT: 61 (28,4,2,1,2) . ** KEPT: 62 (28,4,3,2) -P(f(g(g(a)),g(x)),x,a). ** KEPT: 63 (28,4,3,1) -P(f(g(g(a)),e),e,a). ** KEPT: 64 (28,4,2,2,1) . ------------> EMPTY CLAUSE -----------> 60 (28,4,2,1,2) . ------------ END OF SEARCH ------------ ---------------- PROOF ---------------- 1 P(e,x,x). 2 P(g(x),x,e). 4 -P(x,y,u) | -P(y,z,v) | -P(u,z,w) | P(x,v,w). 5 -P(x,y,u) | -P(y,z,v) | -P(x,v,w) | P(u,z,w). 16 -P(a,e,a). 19 (16,4,2,1) -P(a,g(a),e). 28 (19,5,1,2) -P(g(g(a)),e,a). 60 (28,4,2,1,2) . --------------- options --------------- set(UR_res). set(demod_hist). set(for_sub). set(Unit_deletion). set(print_kept). set(factor). set(back_sub). set(print_back_sub). set(print_given). set(check_arity). set(back_demod). set(print_new_demod). set(print_back_demod). clear(binary_res). clear(hyper_res). clear(para_from). clear(para_into). clear(demod_inf). clear(para_from_left). clear(para_from_right). clear(para_into_vars). clear(para_from_vars). clear(para_all). clear(para_ones_rule). clear(no_para_into_left). clear(no_para_into_right). clear(demod_linear). clear(print_gen). clear(sort_literals). clear(print_weight). clear(sos_fifo). clear(bird_print). clear(atom_wt_max_args). clear(print_lists_at_end). clear(free_all_mem). clear(for_sub_fpa). clear(no_fapl). clear(no_fanl). clear(order_eq). clear(dynamic_demod). assign(report, 0). assign(max_seconds, 0). assign(max_given, 0). assign(max_kept, 5000). assign(max_gen, 0). assign(max_mem, 0). assign(max_weight, 0). assign(max_literals, 0). assign(fpa_literals, 3). assign(fpa_terms, 3). assign(demod_limit, 100). assign(max_proofs, 1). assign(neg_weight, 0). ------------- memory usage ------------ 1 mallocs of 32700 bytes each (31.9+ K) type (bytes each) gets frees in use avail bytes sym_ent ( 64) 24 0 24 0 1.5 K term ( 16) 1668 1535 133 7 2.2 K rel ( 20) 1340 1069 271 4 5.4 K term_ptr ( 8) 778 0 778 0 6.1 K fpa_head ( 12) 174 0 174 0 2.0 K fpa_tree ( 28) 1186 1186 0 23 0.6 K context ( 260) 406 406 0 5 1.3 K trail ( 12) 740 740 0 10 0.1 K imd_tree ( 24) 0 0 0 0 0.0 K imd_pos ( 416) 0 0 0 0 0.0 K is_tree ( 12) 271 0 271 0 3.2 K is_pos (1216) 2235 2235 0 3 3.6 K fsub_pos ( 8) 159 159 0 1 0.0 K literal ( 16) 191 110 81 2 1.3 K clause ( 28) 129 65 64 0 1.8 K list ( 60) 2 0 2 0 0.1 K clash_nd ( 32) 55 55 0 2 0.1 K clause_ptr ( 8) 72 8 64 8 0.6 K int_ptr ( 8) 391 208 183 0 1.4 K -------------- statistics ------------- clauses input 16 clauses given 10 clauses generated 111 demodulation rewrites 0 clauses wt or lit delete 0 tautologies deleted 0 clauses forward subsumed 63 (clauses subsumed by sos) 7 unit deletions 3 clauses kept 48 new demodualtors 0 empty clauses 1 factors generated 0 clauses back demodulated 0 clauses back subsumed 0 clauses not processed 7 ----------- times (seconds) ----------- run time 1.61 input time 0.24 binary_res time 0.00 hyper_res time 0.00 UR_res time 0.43 para_into time 0.00 para_from time 0.00 pre_process time 0.62 demod time 0.00 weigh time 0.01 for_sub time 0.22 unit_del time 0.07 post_process time 0.15 back_sub time 0.04 conflict time 0.09 factor time 0.00 back demod time 0.00 FPA build time 0.08 IS build time 0.03 print_cl time 0.19 cl integrate time 0.05 window time 0.00 SHAR_EOF if test -f 'ident2.desc' then echo shar: over-writing existing file "'ident2.desc'" fi cat << \SHAR_EOF > 'ident2.desc' problem-set/algebra/groups/ident2.desc created : 07/09/86 revised : 08/12/88 Natural Language Description: Theorem: the right identity axiom is dependant on the rest of the axiom set; i.e., each element has a right identity. Note that this is a corollary to ident1, but also that the proof is different due to the introduction of a skolem function for the right identity of each element of the group. Note: the axioms P(x,e,x) and P(x,g(x),e) must be deleted. Versions : ident2.ver1 : uses UR resolution and a standard p-formulation. created : 7/9/86 from McCharen, Overbeek, & Wos [Aug. 1976]. verified for ITP : 7/11/86 translated for OTTER : caw. verified for OTTER : 08/12/88. SHAR_EOF if test -f 'ident2.ver1.clauses' then echo shar: over-writing existing file "'ident2.ver1.clauses'" fi cat << \SHAR_EOF > 'ident2.ver1.clauses' % problem-set/algebra/groups/ident2.ver1.clauses % created : 07/09/86 % revised : 08/12/88 % description: % % Theorem: the right identity axiom is dependant on the rest of the % axiom set; i.e., each element has a right identity. Note that % this is a corollary to ident1, but also that the proof is different % due to the introduction of a skolem function for the right % identity of each element of the group. % % Note: the axioms P(x,e,x) and P(x,g(x),e) must be deleted. % representation: % % declare_predicate(1,[O]). % declare_predicate(2,[EQUAL]). % declare_predicate(3,[P]). % declare_functions(1,[g,k]). % declare_functions(2,[f,l]). % declare_constants([e,a,b,c,d,h,j,k]). % declare_variables([x,y,z,u,v,w]). % % O(x) : used for membership in a subgroup of index 2 (see index) % P(x,y) : product of x and y is z % g(x) : inverse of x % k(x) : used to name some inverse of x (see ident2) % f(x,y) : names the product of x and y % l(x,y) : names an element of the subgroup of index 2 (see index) % e : identity element % existence of identity P(e,x,x). % P(x,e,x). DELETED AS PART OF THEOREM % existence of inverse P(g(x),x,e). % P(x,g(x),e). DELETED AS PART OF THEOREM % closure P(x,y,f(x,y)). % associative property -P(x,y,u) | -P(y,z,v) | -P(u,z,w) | P(x,v,w). -P(x,y,u) | -P(y,z,v) | -P(x,v,w) | P(u,z,w). % the operation is well defined -P(x,y,z) | -P(x,y,w) | EQUAL(z,w) . % equality axioms EQUAL(x,x). -EQUAL(x,y) | EQUAL(y,x). -EQUAL(x,y) | -EQUAL(y,z) | EQUAL(x,z). % equality substitution axioms -EQUAL(x,y) | -P(x,w,z) | P(y,w,z). -EQUAL(x,y) | -P(w,x,z) | P(w,y,z). -EQUAL(x,y) | -P(w,z,x) | P(w,z,y). -EQUAL(x,y) | EQUAL(f(x,w),f(y,w)). -EQUAL(x,y) | EQUAL(f(w,x),f(w,y)). -EQUAL(x,y) | EQUAL(g(x),g(y)). % denial of the theorem -P(k(y),y,k(y)). SHAR_EOF if test -f 'ident2.ver1.in' then echo shar: over-writing existing file "'ident2.ver1.in'" fi cat << \SHAR_EOF > 'ident2.ver1.in' % problem-set/algebra/groups/ident2.ver1.in % created : 07/09/86 % revised : 08/12/88 % description: % % Theorem: the right identity axiom is dependant on the rest of the % axiom set; i.e., each element has a right identity. Note that % this is a corollary to ident1, but also that the proof is different % due to the introduction of a skolem function for the right % identity of each element of the group. % % Note: the axioms P(x,e,x) and P(x,g(x),e) must be deleted. % representation: % % declare_predicate(1,[O]). % declare_predicate(2,[EQUAL]). % declare_predicate(3,[P]). % declare_functions(1,[g,k]). % declare_functions(2,[f,l]). % declare_constants([e,a,b,c,d,h,j,k]). % declare_variables([x,y,z,u,v,w]). % % O(x) : used for membership in a subgroup of index 2 (see index) % P(x,y) : product of x and y is z % g(x) : inverse of x % k(x) : used to name some inverse of x (see ident2) % f(x,y) : names the product of x and y % l(x,y) : names an element of the subgroup of index 2 (see index) % e : identity element set(UR_res). set(back_demod). set(factor). set(Unit_deletion). assign(max_kept,5000). list(axioms). % existence of identity P(e,x,x). % P(x,e,x). DELETED AS PART OF THEOREM % existence of inverse P(g(x),x,e). % P(x,g(x),e). DELETED AS PART OF THEOREM % closure P(x,y,f(x,y)). % associative property -P(x,y,u) | -P(y,z,v) | -P(u,z,w) | P(x,v,w). -P(x,y,u) | -P(y,z,v) | -P(x,v,w) | P(u,z,w). % the operation is well defined -P(x,y,z) | -P(x,y,w) | EQUAL(z,w) . % equality axioms EQUAL(x,x). -EQUAL(x,y) | EQUAL(y,x). -EQUAL(x,y) | -EQUAL(y,z) | EQUAL(x,z). % equality substitution axioms -EQUAL(x,y) | -P(x,w,z) | P(y,w,z). -EQUAL(x,y) | -P(w,x,z) | P(w,y,z). -EQUAL(x,y) | -P(w,z,x) | P(w,z,y). -EQUAL(x,y) | EQUAL(f(x,w),f(y,w)). -EQUAL(x,y) | EQUAL(f(w,x),f(w,y)). -EQUAL(x,y) | EQUAL(g(x),g(y)). end_of_list. list(sos). % denial of the theorem -P(k(y),y,k(y)). end_of_list. SHAR_EOF if test -f 'ident2.ver1.out' then echo shar: over-writing existing file "'ident2.ver1.out'" fi cat << \SHAR_EOF > 'ident2.ver1.out' % problem-set/algebra/groups/ident2.ver1.out % created : 08/12/88 % revised : 08/12/88 OTTER version 0.91, 14 June 1988. set(UR_res). set(back_demod). set(factor). set(Unit_deletion). assign(max_kept,5000). list(axioms). 1 P(e,x,x). 2 P(g(x),x,e). 3 P(x,y,f(x,y)). 4 -P(x,y,u) | -P(y,z,v) | -P(u,z,w) | P(x,v,w). 5 -P(x,y,u) | -P(y,z,v) | -P(x,v,w) | P(u,z,w). 6 -P(x,y,z) | -P(x,y,w) | EQUAL(z,w). 7 EQUAL(x,x). 8 -EQUAL(x,y) | EQUAL(y,x). 9 -EQUAL(x,y) | -EQUAL(y,z) | EQUAL(x,z). 10 -EQUAL(x,y) | -P(x,w,z) | P(y,w,z). 11 -EQUAL(x,y) | -P(w,x,z) | P(w,y,z). 12 -EQUAL(x,y) | -P(w,z,x) | P(w,z,y). 13 -EQUAL(x,y) | EQUAL(f(x,w),f(y,w)). 14 -EQUAL(x,y) | EQUAL(f(w,x),f(w,y)). 15 -EQUAL(x,y) | EQUAL(g(x),g(y)). end_of_list. list(sos). 16 -P(k(y),y,k(y)). end_of_list. new given clause: 16 -P(k(y),y,k(y)). ** KEPT: 17 (16,12,3) -EQUAL(f(k(x),x),k(x)). ** KEPT: 18 (16,5,1,3) -P(e,f(k(x),x),k(x)). ** KEPT: 19 (16,4,2,1) -P(k(e),g(k(e)),e). ** KEPT: 20 (16,4,3,3) -P(f(k(f(x,y)),x),y,k(f(x,y))). ** KEPT: 21 (16,4,3,2) -P(f(k(e),g(x)),x,k(e)). ** KEPT: 22 (16,4,3,1) -P(f(k(x),e),x,k(x)). new given clause: 17 (16,12,3) -EQUAL(f(k(x),x),k(x)). ** KEPT: 23 (17,6,1) -P(e,k(x),f(k(x),x)). new given clause: 19 (16,4,2,1) -P(k(e),g(k(e)),e). ** KEPT: 24 (19,12,3) -EQUAL(f(k(e),g(k(e))),e). ** KEPT: 25 (19,10,2) -EQUAL(g(g(k(e))),k(e)). ** KEPT: 26 (19,5,3,2) -P(g(f(x,g(k(e)))),x,k(e)). ** KEPT: 27 (19,5,2,2) -P(g(e),g(g(k(e))),k(e)). ** KEPT: 28 (19,5,2,1) -P(e,g(g(k(e))),k(e)). ** KEPT: 29 (19,5,1,2) -P(g(g(k(e))),e,k(e)). ** KEPT: 30 (19,5,1,3) -P(e,f(k(e),g(k(e))),e). ** KEPT: 31 (19,4,1,2) -P(k(e),e,g(g(k(e)))). ** KEPT: 32 (19,4,3,1) -P(f(k(e),e),g(k(e)),e). new given clause: 25 (19,10,2) -EQUAL(g(g(k(e))),k(e)). ** KEPT: 33 (25,6,1) -P(e,k(e),g(g(k(e)))). new given clause: 18 (16,5,1,3) -P(e,f(k(x),x),k(x)). ** KEPT: 34 (18,12,3) -EQUAL(f(e,f(k(x),x)),k(x)). ** KEPT: 35 (18,5,2,3) -P(g(x),f(x,f(k(y),y)),k(y)). ** KEPT: 36 (18,5,2,2) -P(g(g(f(k(x),x))),e,k(x)). ** KEPT: 37 (18,5,2,1) -P(g(e),f(k(x),x),k(x)). ** KEPT: 38 (18,5,1,3) -P(e,f(e,f(k(x),x)),k(x)). ** KEPT: 39 (18,4,3,3) -P(f(e,k(x)),x,k(x)). ** KEPT: 40 (18,4,3,1) -P(f(e,e),f(k(x),x),k(x)). new given clause: 22 (16,4,3,1) -P(f(k(x),e),x,k(x)). ** KEPT: 41 (22,12,3) -EQUAL(f(f(k(x),e),x),k(x)). ** KEPT: 42 (22,5,3,3) -P(k(x),f(e,x),k(x)). ** KEPT: 43 (22,5,1,3) -P(e,f(f(k(x),e),x),k(x)). ** KEPT: 44 (22,4,3,3) -P(f(f(k(f(x,y)),e),x),y,k(f(x,y))). ** KEPT: 45 (22,4,3,2) -P(f(f(k(e),e),g(x)),x,k(e)). ** KEPT: 46 (22,4,3,1) -P(f(f(k(x),e),e),x,k(x)). new given clause: 23 (17,6,1) -P(e,k(x),f(k(x),x)). ** KEPT: 47 (23,12,3) -EQUAL(f(k(x),x),f(e,k(x))). ** KEPT: 48 (23,5,2,3) -P(g(x),f(x,k(y)),f(k(y),y)). ** KEPT: 49 (23,5,2,2) -P(g(g(k(x))),e,f(k(x),x)). ** KEPT: 50 (23,5,2,1) -P(g(e),k(x),f(k(x),x)). ** KEPT: 51 (23,5,1,3) -P(e,f(e,k(x)),f(k(x),x)). ** KEPT: 52 (23,4,3,1) -P(f(e,e),k(x),f(k(x),x)). new given clause: 24 (19,12,3) -EQUAL(f(k(e),g(k(e))),e). ** KEPT: 53 (24,6,2) -P(g(x),x,f(k(e),g(k(e)))). ** KEPT: 54 (24,6,1) -P(e,e,f(k(e),g(k(e)))). new given clause: 28 (19,5,2,1) -P(e,g(g(k(e))),k(e)). ** KEPT: 55 (28,12,3) -EQUAL(f(e,g(g(k(e)))),k(e)). ** KEPT: 56 (28,5,2,3) -P(g(x),f(x,g(g(k(e)))),k(e)). ** KEPT: 57 (28,5,2,2) -P(g(g(g(g(k(e))))),e,k(e)). ** KEPT: 58 (28,5,1,3) -P(e,f(e,g(g(k(e)))),k(e)). ** KEPT: 59 (28,4,3,1) -P(f(e,e),g(g(k(e))),k(e)). new given clause: 29 (19,5,1,2) -P(g(g(k(e))),e,k(e)). ---------------- PROOF ---------------- ** KEPT: 60 (29,12,3) -EQUAL(f(g(g(k(e))),e),k(e)). ** KEPT: 61 (29,5,1,3) -P(e,f(g(g(k(e))),e),k(e)). ** KEPT: 62 (29,4,2,1,2) . ** KEPT: 63 (29,4,2,1,2) . ** KEPT: 64 (29,4,3,2) -P(f(g(g(k(e))),g(x)),x,k(e)). ** KEPT: 65 (29,4,3,1) -P(f(g(g(k(e))),e),e,k(e)). ** KEPT: 66 (29,4,2,2,1) . ------------> EMPTY CLAUSE -----------> 62 (29,4,2,1,2) . ------------ END OF SEARCH ------------ ---------------- PROOF ---------------- 1 P(e,x,x). 2 P(g(x),x,e). 4 -P(x,y,u) | -P(y,z,v) | -P(u,z,w) | P(x,v,w). 5 -P(x,y,u) | -P(y,z,v) | -P(x,v,w) | P(u,z,w). 16 -P(k(y),y,k(y)). 19 (16,4,2,1) -P(k(e),g(k(e)),e). 29 (19,5,1,2) -P(g(g(k(e))),e,k(e)). 62 (29,4,2,1,2) . --------------- options --------------- set(UR_res). set(demod_hist). set(for_sub). set(Unit_deletion). set(print_kept). set(factor). set(back_sub). set(print_back_sub). set(print_given). set(check_arity). set(back_demod). set(print_new_demod). set(print_back_demod). clear(binary_res). clear(hyper_res). clear(para_from). clear(para_into). clear(demod_inf). clear(para_from_left). clear(para_from_right). clear(para_into_vars). clear(para_from_vars). clear(para_all). clear(para_ones_rule). clear(no_para_into_left). clear(no_para_into_right). clear(demod_linear). clear(print_gen). clear(sort_literals). clear(print_weight). clear(sos_fifo). clear(bird_print). clear(atom_wt_max_args). clear(print_lists_at_end). clear(free_all_mem). clear(for_sub_fpa). clear(no_fapl). clear(no_fanl). clear(order_eq). clear(dynamic_demod). assign(report, 0). assign(max_seconds, 0). assign(max_given, 0). assign(max_kept, 5000). assign(max_gen, 0). assign(max_mem, 0). assign(max_weight, 0). assign(max_literals, 0). assign(fpa_literals, 3). assign(fpa_terms, 3). assign(demod_limit, 100). assign(max_proofs, 1). assign(neg_weight, 0). ------------- memory usage ------------ 2 mallocs of 32700 bytes each (63.9+ K) type (bytes each) gets frees in use avail bytes sym_ent ( 64) 24 0 24 0 1.5 K term ( 16) 2094 1942 152 9 2.5 K rel ( 20) 1762 1460 302 6 6.0 K term_ptr ( 8) 897 0 897 0 7.0 K fpa_head ( 12) 214 0 214 0 2.5 K fpa_tree ( 28) 1064 1064 0 19 0.5 K context ( 260) 418 418 0 5 1.3 K trail ( 12) 761 761 0 10 0.1 K imd_tree ( 24) 0 0 0 0 0.0 K imd_pos ( 416) 0 0 0 0 0.0 K is_tree ( 12) 381 0 381 0 4.5 K is_pos (1216) 2425 2425 0 3 3.6 K fsub_pos ( 8) 163 163 0 1 0.0 K literal ( 16) 193 110 83 2 1.3 K clause ( 28) 131 65 66 0 1.8 K list ( 60) 2 0 2 0 0.1 K clash_nd ( 32) 55 55 0 2 0.1 K clause_ptr ( 8) 74 8 66 8 0.6 K int_ptr ( 8) 399 208 191 0 1.5 K -------------- statistics ------------- clauses input 16 clauses given 10 clauses generated 113 demodulation rewrites 0 clauses wt or lit delete 0 tautologies deleted 0 clauses forward subsumed 63 (clauses subsumed by sos) 7 unit deletions 3 clauses kept 50 new demodualtors 0 empty clauses 1 factors generated 0 clauses back demodulated 0 clauses back subsumed 0 clauses not processed 7 ----------- times (seconds) ----------- run time 1.75 input time 0.25 binary_res time 0.00 hyper_res time 0.00 UR_res time 0.47 para_into time 0.00 para_from time 0.00 pre_process time 0.72 demod time 0.00 weigh time 0.02 for_sub time 0.24 unit_del time 0.08 post_process time 0.15 back_sub time 0.04 conflict time 0.09 factor time 0.00 back demod time 0.00 FPA build time 0.10 IS build time 0.04 print_cl time 0.21 cl integrate time 0.06 window time 0.00 SHAR_EOF if test -f 'index.desc' then echo shar: over-writing existing file "'index.desc'" fi cat << \SHAR_EOF > 'index.desc' problem-set/algebra/groups/index.desc created : 07/09/86 revised : 08/15/88 Natural Language Description: Theorem: all subgroups of index 2 are normal; i.e., if O is a subgroup of G and there are exactly 2 cosets in G/O, then O is normal [that is, for all x in G and y in O, x*y*inverse(x) is back in O]. NOTE: Used to define a subgroup of index two is a theorem which says that {for all x, for all y, there exists a z such that if x and y are both not in the subgroup O, then z is in O and x*z=y} if & only if {O has index 2 in G}. This z is named by the skolem function i(x,y). Explanation: If O is of index two in G, then there are exactly two cosets, namely O and uO for some u not in O. If both of x and y are not in O, then they are in uO. But then xO=yO, which implies that there exists some z in O such that x*z=y. If the condition holds that {for all x, for all y, there exists a z such that if x and y are both not in the subgroup O, then z is in O and x*z=y}, then xO=yO for all x,y not in O, which implies that there are at most two cosets; and there must be at least two, namely O and xO, since x is not in O. Therefore O must be of index two. Versions : index.ver1 : uses hyperresolution and a standard p-formulation. created : 7/9/86 from McCharen, Overbeek, & Wos [Aug. 1976]. verified for ITP : untested. translated for OTTER by : caw. verified for OTTER : 08/15/88. index.ver2 : uses paramodulation and an equality formulation. created : 7/9/86 from McCharen, Overbeek, & Wos [Aug. 1976]. verified for ITP : untested. translated for OTTER by : caw. verified for OTTER : no proof in 5043 kept clauses. SHAR_EOF if test -f 'index.ver1.clauses' then echo shar: over-writing existing file "'index.ver1.clauses'" fi cat << \SHAR_EOF > 'index.ver1.clauses' % problem-set/algebra/groups/index.ver1.clauses % created : 07/09/86 % revised : 08/15/88 % description: % % Theorem: all subgroups of index 2 are normal; i.e., if O is a % subgroup of G and there are exactly 2 cosets in G/O, then O % is normal [that is, for all x in G and y in O, x*y*inverse(x) is % back in O]. % % NOTE: Used to define a subgroup of index two is a theorem which says that % {for all x, for all y, there exists a z such that if x and y are both not % in the subgroup O, then z is in O and x*z=y} if & only if {O has index 2 % in G}. This z is named by the skolem function i(x,y). % % Explanation: If O is of index two in G, then there are exactly two % cosets, namely O and uO for some u not in O. If both of x and y are not % in O, then they are in uO. But then xO=yO, which implies that there % exists some z in O such that x*z=y. If the condition holds that {for all % x, for all y, there exists a z such that if x and y are both not in the % subgroup O, then z is in O and x*z=y}, then xO=yO for all x,y not in O, % which implies that there are at most two cosets; and there must be at % least two, namely O and xO, since x is not in O. Therefore O must be of % index two. % representation: % % declare_predicate(1,[O]). % declare_predicate(2,[EQUAL]). % declare_predicate(3,[P]). % declare_functions(1,[g,k]). % declare_functions(2,[f,l]). % declare_constants([e,a,b,c,d,h,j,k]). % declare_variables([x,y,z,u,v,w]). % % O(x) : used for membership in a subgroup of index 2 (see index) % P(x,y) : product of x and y is z % g(x) : inverse of x % k(x) : used to name some inverse of x (see ident2) % f(x,y) : names the product of x and y % l(x,y) : names an element of the subgroup of index 2 (see index) % e : identity element % existence of identity P(e,x,x). P(x,e,x). % existence of inverse P(g(x),x,e). P(x,g(x),e). % closure P(x,y,f(x,y)). % associative property -P(x,y,u) | -P(y,z,v) | -P(u,z,w) | P(x,v,w). -P(x,y,u) | -P(y,z,v) | -P(x,v,w) | P(u,z,w). % the operation is well defined -P(x,y,z) | -P(x,y,w) | EQUAL(z,w) . -P(x,z,y) | -P(x,w,y) | EQUAL(z,w) . -P(z,y,x) | -P(w,y,x) | EQUAL(z,w) . % equality axioms EQUAL(x,x). -EQUAL(x,y) | EQUAL(y,x). -EQUAL(x,y) | -EQUAL(y,z) | EQUAL(x,z). % equality substitution axioms -EQUAL(x,y) | -P(x,w,z) | P(y,w,z). -EQUAL(x,y) | -P(w,x,z) | P(w,y,z). -EQUAL(x,y) | -P(w,z,x) | P(w,z,y). -EQUAL(x,y) | EQUAL(f(x,w),f(y,w)). -EQUAL(x,y) | EQUAL(f(w,x),f(w,y)). -EQUAL(x,y) | EQUAL(g(x),g(y)). % Definition of subgroup of index 2 O(e). -O(x) | O(g(x)). -O(x) | -O(y) | -P(x,y,z) | O(z). O(x) | O(y) | O(l(x,y)). O(x) | O(y) | P(x,l(x,y),y). % equality sub. axioms for new predicate & function -EQUAL(x,y) | -O(x) | O(y). -EQUAL(x,y) | EQUAL(l(w,x),l(w,y)). -EQUAL(x,y) | EQUAL(l(x,w),l(y,w)). % Denial of the theorem O(b). P(b,g(a),c). P(a,c,d). -O(d). SHAR_EOF if test -f 'index.ver1.in' then echo shar: over-writing existing file "'index.ver1.in'" fi cat << \SHAR_EOF > 'index.ver1.in' % problem-set/algebra/groups/index.ver1.in % created : 07/09/86 % revised : 08/12/88 % description: % % Theorem: all subgroups of index 2 are normal; i.e., if O is a % subgroup of G and there are exactly 2 cosets in G/O, then O % is normal [that is, for all x in G and y in O, x*y*inverse(x) is % back in O]. % % NOTE: Used to define a subgroup of index two is a theorem which says that % {for all x, for all y, there exists a z such that if x and y are both not % in the subgroup O, then z is in O and x*z=y} if & only if {O has index 2 % in G}. This z is named by the skolem function i(x,y). % % Explanation: If O is of index two in G, then there are exactly two % cosets, namely O and uO for some u not in O. If both of x and y are not % in O, then they are in uO. But then xO=yO, which implies that there % exists some z in O such that x*z=y. If the condition holds that {for all % x, for all y, there exists a z such that if x and y are both not in the % subgroup O, then z is in O and x*z=y}, then xO=yO for all x,y not in O, % which implies that there are at most two cosets; and there must be at % least two, namely O and xO, since x is not in O. Therefore O must be of % index two. % representation: % % declare_predicate(1,[O]). % declare_predicate(2,[EQUAL]). % declare_predicate(3,[P]). % declare_functions(1,[g,k]). % declare_functions(2,[f,l]). % declare_constants([e,a,b,c,d,h,j,k]). % declare_variables([x,y,z,u,v,w]). % % O(x) : used for membership in a subgroup of index 2 (see index) % P(x,y) : product of x and y is z % g(x) : inverse of x % k(x) : used to name some inverse of x (see ident2) % f(x,y) : names the product of x and y % l(x,y) : names an element of the subgroup of index 2 (see index) % e : identity element set(hyper_res). set(back_demod). set(factor). set(Unit_deletion). assign(max_kept,5000). list(axioms). % existence of identity P(e,x,x). P(x,e,x). % existence of inverse P(g(x),x,e). P(x,g(x),e). % closure P(x,y,f(x,y)). % associative property -P(x,y,u) | -P(y,z,v) | -P(u,z,w) | P(x,v,w). -P(x,y,u) | -P(y,z,v) | -P(x,v,w) | P(u,z,w). % the operation is well defined -P(x,y,z) | -P(x,y,w) | EQUAL(z,w) . -P(x,z,y) | -P(x,w,y) | EQUAL(z,w) . -P(z,y,x) | -P(w,y,x) | EQUAL(z,w) . % equality axioms EQUAL(x,x). -EQUAL(x,y) | EQUAL(y,x). -EQUAL(x,y) | -EQUAL(y,z) | EQUAL(x,z). % equality substitution axioms -EQUAL(x,y) | -P(x,w,z) | P(y,w,z). -EQUAL(x,y) | -P(w,x,z) | P(w,y,z). -EQUAL(x,y) | -P(w,z,x) | P(w,z,y). -EQUAL(x,y) | EQUAL(f(x,w),f(y,w)). -EQUAL(x,y) | EQUAL(f(w,x),f(w,y)). -EQUAL(x,y) | EQUAL(g(x),g(y)). % Definition of subgroup of index 2 O(e). -O(x) | O(g(x)). -O(x) | -O(y) | -P(x,y,z) | O(z). O(x) | O(y) | O(l(x,y)). O(x) | O(y) | P(x,l(x,y),y). % equality sub. axioms for new predicate & function -EQUAL(x,y) | -O(x) | O(y). -EQUAL(x,y) | EQUAL(l(w,x),l(w,y)). -EQUAL(x,y) | EQUAL(l(x,w),l(y,w)). end_of_list. list(sos). % Denial of the theorem O(b). P(b,g(a),c). P(a,c,d). -O(d). end_of_list. list(demodulators). EQUAL(g(e),e). EQUAL(f(x,e),x). EQUAL(f(e,x),x). EQUAL(f(x,g(x)),e). EQUAL(f(g(x),x),e). EQUAL(g(g(x)),x). EQUAL(g(f(x,y)),f(g(x),g(y))). EQUAL(f(x,f(g(x),y)),y). EQUAL(f(g(x),f(x,y)),y). EQUAL(f(f(x,y),z),f(x,f(y,z))). end_of_list. SHAR_EOF if test -f 'index.ver1.out' then echo shar: over-writing existing file "'index.ver1.out'" fi cat << \SHAR_EOF > 'index.ver1.out' % problem-set/algebra/rings/index.ver1.out % created : 08/15/88 % revised : 08/15/88 OTTER version 0.91, 14 June 1988. set(hyper_res). set(back_demod). set(factor). set(Unit_deletion). assign(max_kept,5000). list(axioms). 1 P(e,x,x). 2 P(x,e,x). 3 P(g(x),x,e). 4 P(x,g(x),e). 5 P(x,y,f(x,y)). 6 -P(x,y,u) | -P(y,z,v) | -P(u,z,w) | P(x,v,w). 7 -P(x,y,u) | -P(y,z,v) | -P(x,v,w) | P(u,z,w). 8 -P(x,y,z) | -P(x,y,w) | EQUAL(z,w). 9 -P(x,z,y) | -P(x,w,y) | EQUAL(z,w). 10 -P(z,y,x) | -P(w,y,x) | EQUAL(z,w). 11 EQUAL(x,x). 12 -EQUAL(x,y) | EQUAL(y,x). 13 -EQUAL(x,y) | -EQUAL(y,z) | EQUAL(x,z). 14 -EQUAL(x,y) | -P(x,w,z) | P(y,w,z). 15 -EQUAL(x,y) | -P(w,x,z) | P(w,y,z). 16 -EQUAL(x,y) | -P(w,z,x) | P(w,z,y). 17 -EQUAL(x,y) | EQUAL(f(x,w),f(y,w)). 18 -EQUAL(x,y) | EQUAL(f(w,x),f(w,y)). 19 -EQUAL(x,y) | EQUAL(g(x),g(y)). 20 O(e). 21 -O(x) | O(g(x)). 22 -O(x) | -O(y) | -P(x,y,z) | O(z). 23 O(x) | O(y) | O(l(x,y)). 24 O(x) | O(y) | P(x,l(x,y),y). 25 -EQUAL(x,y) | -O(x) | O(y). 26 -EQUAL(x,y) | EQUAL(l(w,x),l(w,y)). 27 -EQUAL(x,y) | EQUAL(l(x,w),l(y,w)). end_of_list. list(sos). 28 O(b). 29 P(b,g(a),c). 30 P(a,c,d). 31 -O(d). end_of_list. list(demodulators). 32 EQUAL(g(e),e). 33 EQUAL(f(x,e),x). 34 EQUAL(f(e,x),x). 35 EQUAL(f(x,g(x)),e). 36 EQUAL(f(g(x),x),e). 37 EQUAL(g(g(x)),x). 38 EQUAL(g(f(x,y)),f(g(x),g(y))). 39 EQUAL(f(x,f(g(x),y)),y). 40 EQUAL(f(g(x),f(x,y)),y). 41 EQUAL(f(f(x,y),z),f(x,f(y,z))). end_of_list. new given clause: 28 O(b). ------------> EMPTY CLAUSE -----------> 729 (31,722,28) . ------------ END OF SEARCH ------------ ---------------- PROOF ---------------- 4 P(x,g(x),e). 5 P(x,y,f(x,y)). 6 -P(x,y,u) | -P(y,z,v) | -P(u,z,w) | P(x,v,w). 7 -P(x,y,u) | -P(y,z,v) | -P(x,v,w) | P(u,z,w). 10 -P(z,y,x) | -P(w,y,x) | EQUAL(z,w). 28 O(b). 29 P(b,g(a),c). 30 P(a,c,d). 31 -O(d). 33 EQUAL(f(x,e),x). 37 EQUAL(g(g(x)),x). 38 EQUAL(g(f(x,y)),f(g(x),g(y))). 39 EQUAL(f(x,f(g(x),y)),y). 195 (29,7,4,5,37,33) P(c,a,b). 213 (195,7,30,5) P(d,a,f(a,b)). 716 (213,6,5,4,38,39) P(d,g(b),e). 721 (716,10,4) EQUAL(d,b). 722 (721) EQUAL(d,b). 729 (31,722,28) . --------------- options --------------- set(hyper_res). set(demod_hist). set(for_sub). set(Unit_deletion). set(print_kept). set(factor). set(back_sub). set(print_back_sub). set(print_given). set(check_arity). set(back_demod). set(print_new_demod). set(print_back_demod). clear(binary_res). clear(UR_res). clear(para_from). clear(para_into). clear(demod_inf). clear(para_from_left). clear(para_from_right). clear(para_into_vars). clear(para_from_vars). clear(para_all). clear(para_ones_rule). clear(no_para_into_left). clear(no_para_into_right). clear(demod_linear). clear(print_gen). clear(sort_literals). clear(print_weight). clear(sos_fifo). clear(bird_print). clear(atom_wt_max_args). clear(print_lists_at_end). clear(free_all_mem). clear(for_sub_fpa). clear(no_fapl). clear(no_fanl). clear(order_eq). clear(dynamic_demod). assign(report, 0). assign(max_seconds, 0). assign(max_given, 0). assign(max_kept, 5000). assign(max_gen, 0). assign(max_mem, 0). assign(max_weight, 0). assign(max_literals, 0). assign(fpa_literals, 3). assign(fpa_terms, 3). assign(demod_limit, 100). assign(max_proofs, 1). assign(neg_weight, 0). -------------- statistics ------------- clauses input 41 clauses given 22 clauses generated 2159 demodulation rewrites 1313 clauses wt or lit delete 0 tautologies deleted 0 clauses forward subsumed 1498 (clauses subsumed by sos) 328 unit deletions 29 clauses kept 1072 new demodualtors 10 empty clauses 1 factors generated 306 clauses back demodulated 411 clauses back subsumed 18 clauses not processed 426 ----------- times (seconds) ----------- run time 358.69 input time 0.50 binary_res time 0.00 hyper_res time 4.75 UR_res time 0.00 para_into time 0.00 para_from time 0.00 pre_process time 310.02 demod time 3.43 weigh time 0.50 for_sub time 290.61 unit_del time 2.58 post_process time 178.51 back_sub time 30.00 conflict time 0.37 factor time 32.99 back demod time 114.73 FPA build time 1.98 IS build time 1.01 print_cl time 6.05 cl integrate time 1.45 window time 0.00 SHAR_EOF if test -f 'index.ver2.clauses' then echo shar: over-writing existing file "'index.ver2.clauses'" fi cat << \SHAR_EOF > 'index.ver2.clauses' % problem-set/algebra/groups/index.ver2.clauses % created : 07/21/86 % revised : 08/12/88 % description: % % Theorem: all subgroups of index 2 are normal; i.e., if O is a % subgroup of G and there are exactly 2 cosets in G/O, then O % is normal [that is, for all x in G and y in O, x*y*inverse(x) is % back in O]. % % NOTE: Used to define a subgroup of index two is a theorem which says that % {for all x, for all y, there exists a z such that if x and y are both not % in the subgroup O, then z is in O and x*z=y} if & only if {O has index 2 % in G}. This z is named by the skolem function i(x,y). % % Explanation: If O is of index two in G, then there are exactly two % cosets, namely O and uO for some u not in O. If both of x and y are not % in O, then they are in uO. But then xO=yO, which implies that there % exists some z in O such that x*z=y. If the condition holds that {for all % x, for all y, there exists a z such that if x and y are both not in the % subgroup O, then z is in O and x*z=y}, then xO=yO for all x,y not in O, % which implies that there are at most two cosets; and there must be at % least two, namely O and xO, since x is not in O. Therefore O must be of % index two. % representation: % % declare_predicate(1,[O]). % declare_predicate(2,[EQUAL]). % declare_function(1,[g]). % declare_functions(2,[f,l]). % declare_constants([e,a,b,c,d,h,j,k]). % declare_variables([x,y,z]). % % O(x) : membership in a subgroup of index 2 (see index) % g(x) : inverse of x % f(x,y) : names the product of x and y % l(x,y) : names an element in O (see index) % e : identity element % For any x and y in the group x*y is also in the group. No clause is needed % here since this is an instance of reflexivity given as EQUAL(x,x). % There exists an identity element 'e' defined below. % left identity EQUAL(f(e,x),x). % right identity EQUAL(f(x,e),x). % for any x in the group, there exists an element y such that x*y = y*x = e. % left inverse EQUAL(f(g(x),x),e). % right inverse EQUAL(f(x,g(x)),e). % the operation '*' is associative EQUAL(f(f(x,y),z),f(x,f(y,z))). % the operation '*' is well-defined. No clause is needed here since this % is an instance of reflexivity given as EQUAL(x,x). % reflexivity EQUAL(x,x). % Definition of a subgroup of index 2 O(e). -O(x) | O(g(x)) . -O(x) | -O(y) | -EQUAL(f(x,y),z) | O(z) . O(x) | O(y) | O(i(x,y)) . O(x) | O(y) | EQUAL(f(x,i(x,y)),y) . % The following clauses deny that O is a normal subgroup O(b). EQUAL(f(b,g(a)),c). EQUAL(f(a,c),d). -O(d). SHAR_EOF if test -f 'index.ver2.in' then echo shar: over-writing existing file "'index.ver2.in'" fi cat << \SHAR_EOF > 'index.ver2.in' % problem-set/algebra/groups/index.ver2.in % created : 07/21/86 % revised : 08/12/88 % description: % % Theorem: all subgroups of index 2 are normal; i.e., if O is a % subgroup of G and there are exactly 2 cosets in G/O, then O % is normal [that is, for all x in G and y in O, x*y*inverse(x) is % back in O]. % % NOTE: Used to define a subgroup of index two is a theorem which says that % {for all x, for all y, there exists a z such that if x and y are both not % in the subgroup O, then z is in O and x*z=y} if & only if {O has index 2 % in G}. This z is named by the skolem function i(x,y). % % Explanation: If O is of index two in G, then there are exactly two % cosets, namely O and uO for some u not in O. If both of x and y are not % in O, then they are in uO. But then xO=yO, which implies that there % exists some z in O such that x*z=y. If the condition holds that {for all % x, for all y, there exists a z such that if x and y are both not in the % subgroup O, then z is in O and x*z=y}, then xO=yO for all x,y not in O, % which implies that there are at most two cosets; and there must be at % least two, namely O and xO, since x is not in O. Therefore O must be of % index two. % representation: % % declare_predicate(1,[O]). % declare_predicate(2,[EQUAL]). % declare_function(1,[g]). % declare_functions(2,[f,l]). % declare_constants([e,a,b,c,d,h,j,k]). % declare_variables([x,y,z]). % % O(x) : membership in a subgroup of index 2 (see index) % g(x) : inverse of x % f(x,y) : names the product of x and y % l(x,y) : names an element in O (see index) % e : identity element set(para_into). set(para_from). set(para_from_left). set(para_from_right). set(back_demod). set(UR_res). assign(max_kept,5000). list(axioms). % For any x and y in the group x*y is also in the group. No clause is needed % here since this is an instance of reflexivity given as EQUAL(x,x). % There exists an identity element 'e' defined below. % left identity EQUAL(f(e,x),x). % right identity EQUAL(f(x,e),x). % for any x in the group, there exists an element y such that x*y = y*x = e. % left inverse EQUAL(f(g(x),x),e). % right inverse EQUAL(f(x,g(x)),e). % the operation '*' is associative EQUAL(f(f(x,y),z),f(x,f(y,z))). % the operation '*' is well-defined. No clause is needed here since this % is an instance of reflexivity given as EQUAL(x,x). % reflexivity EQUAL(x,x). % Definition of a subgroup of index 2 O(e). -O(x) | O(g(x)) . -O(x) | -O(y) | -EQUAL(f(x,y),z) | O(z) . O(x) | O(y) | O(l(x,y)) . O(x) | O(y) | EQUAL(f(x,l(x,y)),y) . end_of_list. list(sos). % The following clauses deny that O is a normal subgroup O(b). EQUAL(f(b,g(a)),c). EQUAL(f(a,c),d). -O(d). end_of_list. list(demodulators). EQUAL(g(e),e). EQUAL(g(g(x)),x). EQUAL(g(f(x,y)),f(g(x),g(y))). EQUAL(f(x,f(g(x),y)),y). EQUAL(f(g(x),f(x,y)),y). end_of_list. SHAR_EOF if test -f 'index.ver2.out' then echo shar: over-writing existing file "'index.ver2.out'" fi cat << \SHAR_EOF > 'index.ver2.out' % problem-set/algebra/groups/index.ver2.out % created : 08/15/88 % revised : 08/15/88 OTTER version 0.91, 14 June 1988. set(para_into). set(para_from). set(para_from_left). set(para_from_right). set(back_demod). set(UR_res). assign(max_kept,5000). list(axioms). 1 EQUAL(f(e,x),x). 2 EQUAL(f(x,e),x). 3 EQUAL(f(g(x),x),e). 4 EQUAL(f(x,g(x)),e). 5 EQUAL(f(f(x,y),z),f(x,f(y,z))). 6 EQUAL(x,x). 7 O(e). 8 -O(x) | O(g(x)). 9 -O(x) | -O(y) | -EQUAL(f(x,y),z) | O(z). 10 O(x) | O(y) | O(l(x,y)). 11 O(x) | O(y) | EQUAL(f(x,l(x,y)),y). end_of_list. list(sos). 12 O(b). 13 EQUAL(f(b,g(a)),c). 14 EQUAL(f(a,c),d). 15 -O(d). end_of_list. list(demodulators). 16 EQUAL(g(e),e). 17 EQUAL(g(g(x)),x). 18 EQUAL(g(f(x,y)),f(g(x),g(y))). 19 EQUAL(f(x,f(g(x),y)),y). 20 EQUAL(f(g(x),f(x,y)),y). end_of_list. new given clause: 12 O(b). ** KEPT: 21 (12,9,12,6) O(f(b,b)). ** KEPT: 22 (12,9,7,6) O(f(e,b)). ** KEPT: 23 (12,9,7,6) O(f(b,e)). ** KEPT: 24 (12,8) O(g(b)). new given clause: 15 -O(d). ** KEPT: 25 (15,11,15) EQUAL(f(d,l(d,d)),d). ---> New Demodulator: 26 (25) EQUAL(f(d,l(d,d)),d). ** KEPT: 27 (15,10,15) O(l(d,d)). ** KEPT: 28 (15,9,12,12) -EQUAL(f(b,b),d). ** KEPT: 29 (15,9,12,7) -EQUAL(f(b,e),d). ** KEPT: 30 (15,9,7,12) -EQUAL(f(e,b),d). ** KEPT: 31 (15,9,7,7) -EQUAL(f(e,e),d). >>>> Starting back demodulation with: 26 (25) EQUAL(f(d,l(d,d)),d). new given clause: 24 (12,8) O(g(b)). ** KEPT: 32 (24,9,24,15) -EQUAL(f(g(b),g(b)),d). ** KEPT: 33 (24,9,12,15) -EQUAL(f(b,g(b)),d). ** KEPT: 34 (24,9,7,15) -EQUAL(f(e,g(b)),d). ** KEPT: 35 (24,9,24,6) O(f(g(b),g(b))). ** KEPT: 36 (24,9,12,6) O(f(b,g(b))). ** KEPT: 37 (24,9,7,6) O(f(e,g(b))). ** KEPT: 38 (24,9,12,15) -EQUAL(f(g(b),b),d). ** KEPT: 39 (24,9,7,15) -EQUAL(f(g(b),e),d). ** KEPT: 40 (24,9,12,6) O(f(g(b),b)). ** KEPT: 41 (24,9,7,6) O(f(g(b),e)). new given clause: 21 (12,9,12,6) O(f(b,b)). ** KEPT: 42 (21,9,24,15,20) -EQUAL(d,b). ** KEPT: 43 (21,9,21,15) -EQUAL(f(f(b,b),f(b,b)),d). ** KEPT: 44 (21,9,12,15) -EQUAL(f(b,f(b,b)),d). ** KEPT: 45 (21,9,7,15) -EQUAL(f(e,f(b,b)),d). ** KEPT: 46 (21,9,21,6) O(f(f(b,b),f(b,b))). ** KEPT: 47 (21,9,21,5) O(f(b,f(b,f(b,b)))). ** KEPT: 48 (21,9,12,6) O(f(b,f(b,b))). ** KEPT: 49 (21,9,7,6) O(f(e,f(b,b))). ** KEPT: 50 (21,9,24,15) -EQUAL(f(f(b,b),g(b)),d). ** KEPT: 51 (21,9,12,15) -EQUAL(f(f(b,b),b),d). ** KEPT: 52 (21,9,7,15) -EQUAL(f(f(b,b),e),d). ** KEPT: 53 (21,9,24,6) O(f(f(b,b),g(b))). ** KEPT: 54 (21,9,24,5) O(f(b,f(b,g(b)))). ** KEPT: 55 (21,9,12,6) O(f(f(b,b),b)). ** KEPT: 56 (21,9,7,6) O(f(f(b,b),e)). ** KEPT: 57 (21,9,7,5) O(f(b,f(b,e))). new given clause: 42 (21,9,24,15,20) -EQUAL(d,b). new given clause: 22 (12,9,7,6) O(f(e,b)). ** KEPT: 58 (22,9,24,15) -EQUAL(f(g(b),f(e,b)),d). ** KEPT: 59 (22,9,22,15) -EQUAL(f(f(e,b),f(e,b)),d). ** KEPT: 60 (22,9,21,15) -EQUAL(f(f(b,b),f(e,b)),d). ** KEPT: 61 (22,9,12,15) -EQUAL(f(b,f(e,b)),d). ** KEPT: 62 (22,9,7,15) -EQUAL(f(e,f(e,b)),d). ** KEPT: 63 (22,9,24,6) O(f(g(b),f(e,b))). ** KEPT: 64 (22,9,22,6) O(f(f(e,b),f(e,b))). ** KEPT: 65 (22,9,22,5) O(f(e,f(b,f(e,b)))). ** KEPT: 66 (22,9,21,6) O(f(f(b,b),f(e,b))). ** KEPT: 67 (22,9,21,5) O(f(b,f(b,f(e,b)))). ** KEPT: 68 (22,9,12,6) O(f(b,f(e,b))). ** KEPT: 69 (22,9,7,6) O(f(e,f(e,b))). ** KEPT: 70 (22,9,24,15) -EQUAL(f(f(e,b),g(b)),d). ** KEPT: 71 (22,9,21,15) -EQUAL(f(f(e,b),f(b,b)),d). ** KEPT: 72 (22,9,12,15) -EQUAL(f(f(e,b),b),d). ** KEPT: 73 (22,9,7,15) -EQUAL(f(f(e,b),e),d). ** KEPT: 74 (22,9,24,6) O(f(f(e,b),g(b))). ** KEPT: 75 (22,9,24,5) O(f(e,f(b,g(b)))). ** KEPT: 76 (22,9,21,6) O(f(f(e,b),f(b,b))). ** KEPT: 77 (22,9,21,5) O(f(e,f(b,f(b,b)))). ** KEPT: 78 (22,9,12,6) O(f(f(e,b),b)). ** KEPT: 79 (22,9,7,6) O(f(f(e,b),e)). ** KEPT: 80 (22,9,7,5) O(f(e,f(b,e))). ** KEPT: 81 (4,22) O(f(f(x,g(x)),b)). ** KEPT: 82 (3,22) O(f(f(g(x),x),b)). new given clause: 23 (12,9,7,6) O(f(b,e)). ** KEPT: 83 (23,9,24,15,20) -EQUAL(d,e). ** KEPT: 84 (23,9,23,15) -EQUAL(f(f(b,e),f(b,e)),d). ** KEPT: 85 (23,9,22,15) -EQUAL(f(f(e,b),f(b,e)),d). ** KEPT: 86 (23,9,21,15) -EQUAL(f(f(b,b),f(b,e)),d). ** KEPT: 87 (23,9,12,15) -EQUAL(f(b,f(b,e)),d). ** KEPT: 88 (23,9,7,15) -EQUAL(f(e,f(b,e)),d). ** KEPT: 89 (23,9,23,6) O(f(f(b,e),f(b,e))). ** KEPT: 90 (23,9,23,5) O(f(b,f(e,f(b,e)))). ** KEPT: 91 (23,9,22,6) O(f(f(e,b),f(b,e))). ** KEPT: 92 (23,9,22,5) O(f(e,f(b,f(b,e)))). ** KEPT: 93 (23,9,21,6) O(f(f(b,b),f(b,e))). ** KEPT: 94 (23,9,21,5) O(f(b,f(b,f(b,e)))). ** KEPT: 95 (23,9,24,15) -EQUAL(f(f(b,e),g(b)),d). ** KEPT: 96 (23,9,22,15) -EQUAL(f(f(b,e),f(e,b)),d). ** KEPT: 97 (23,9,21,15) -EQUAL(f(f(b,e),f(b,b)),d). ** KEPT: 98 (23,9,12,15) -EQUAL(f(f(b,e),b),d). ** KEPT: 99 (23,9,7,15) -EQUAL(f(f(b,e),e),d). ** KEPT: 100 (23,9,24,6) O(f(f(b,e),g(b))). ** KEPT: 101 (23,9,24,5) O(f(b,f(e,g(b)))). ** KEPT: 102 (23,9,22,6) O(f(f(b,e),f(e,b))). ** KEPT: 103 (23,9,22,5) O(f(b,f(e,f(e,b)))). ** KEPT: 104 (23,9,21,6) O(f(f(b,e),f(b,b))). ** KEPT: 105 (23,9,21,5) O(f(b,f(e,f(b,b)))). ** KEPT: 106 (23,9,12,6) O(f(f(b,e),b)). ** KEPT: 107 (23,9,7,6) O(f(f(b,e),e)). ** KEPT: 108 (23,9,7,5) O(f(b,f(e,e))). ** KEPT: 109 (4,23) O(f(b,f(x,g(x)))). ** KEPT: 110 (3,23) O(f(b,f(g(x),x))). 109 back subsumes: 54 (21,9,24,5) O(f(b,f(b,g(b)))). new given clause: 83 (23,9,24,15,20) -EQUAL(d,e). ** KEPT: 111 (4,83) -EQUAL(f(x,g(x)),d). ** KEPT: 112 (3,83) -EQUAL(f(g(x),x),d). 111 back subsumes: 33 (24,9,12,15) -EQUAL(f(b,g(b)),d). 112 back subsumes: 38 (24,9,12,15) -EQUAL(f(g(b),b),d). new given clause: 27 (15,10,15) O(l(d,d)). ** KEPT: 113 (27,9,27,15) -EQUAL(f(l(d,d),l(d,d)),d). ** KEPT: 114 (27,9,24,15) -EQUAL(f(g(b),l(d,d)),d). ** KEPT: 115 (27,9,23,15) -EQUAL(f(f(b,e),l(d,d)),d). ** KEPT: 116 (27,9,22,15) -EQUAL(f(f(e,b),l(d,d)),d). ** KEPT: 117 (27,9,21,15) -EQUAL(f(f(b,b),l(d,d)),d). ** KEPT: 118 (27,9,12,15) -EQUAL(f(b,l(d,d)),d). ** KEPT: 119 (27,9,7,15) -EQUAL(f(e,l(d,d)),d). ** KEPT: 120 (27,9,27,6) O(f(l(d,d),l(d,d))). ** KEPT: 121 (27,9,24,6) O(f(g(b),l(d,d))). ** KEPT: 122 (27,9,23,6) O(f(f(b,e),l(d,d))). ** KEPT: 123 (27,9,23,5) O(f(b,f(e,l(d,d)))). ** KEPT: 124 (27,9,22,6) O(f(f(e,b),l(d,d))). ** KEPT: 125 (27,9,22,5) O(f(e,f(b,l(d,d)))). ** KEPT: 126 (27,9,21,6) O(f(f(b,b),l(d,d))). ** KEPT: 127 (27,9,21,5) O(f(b,f(b,l(d,d)))). ** KEPT: 128 (27,9,12,6) O(f(b,l(d,d))). ** KEPT: 129 (27,9,7,6) O(f(e,l(d,d))). ** KEPT: 130 (27,9,24,15) -EQUAL(f(l(d,d),g(b)),d). ** KEPT: 131 (27,9,23,15) -EQUAL(f(l(d,d),f(b,e)),d). ** KEPT: 132 (27,9,22,15) -EQUAL(f(l(d,d),f(e,b)),d). ** KEPT: 133 (27,9,21,15) -EQUAL(f(l(d,d),f(b,b)),d). ** KEPT: 134 (27,9,12,15) -EQUAL(f(l(d,d),b),d). ** KEPT: 135 (27,9,7,15) -EQUAL(f(l(d,d),e),d). ** KEPT: 136 (27,9,24,6) O(f(l(d,d),g(b))). ** KEPT: 137 (27,9,23,6) O(f(l(d,d),f(b,e))). ** KEPT: 138 (27,9,22,6) O(f(l(d,d),f(e,b))). ** KEPT: 139 (27,9,21,6) O(f(l(d,d),f(b,b))). ** KEPT: 140 (27,9,12,6) O(f(l(d,d),b)). ** KEPT: 141 (27,9,7,6) O(f(l(d,d),e)). ** KEPT: 142 (27,8) O(g(l(d,d))). new given clause: 14 EQUAL(f(a,c),d). ** KEPT: 143 (14,5) EQUAL(f(f(x,a),c),f(x,d)). ** KEPT: 144 (14,9) -O(a) | -O(c) | -EQUAL(d,x) | O(x). ** KEPT: 145 (14,5) EQUAL(f(a,f(c,x)),f(d,x)). ** KEPT: 146 (14,83) -EQUAL(f(a,c),e). ** KEPT: 147 (14,42) -EQUAL(f(a,c),b). ** KEPT: 148 (14,27) O(l(d,f(a,c))). ** KEPT: 149 (14,27) O(l(f(a,c),d)). ** KEPT: 150 (14,15) -O(f(a,c)). new given clause: 150 (14,15) -O(f(a,c)). ** KEPT: 151 (150,11,150) EQUAL(f(f(a,c),l(f(a,c),f(a,c))),f(a,c)). ** KEPT: 152 (150,11,15) EQUAL(f(d,l(d,f(a,c))),f(a,c)). ** KEPT: 153 (150,11,15) EQUAL(f(f(a,c),l(f(a,c),d)),d). ---> New Demodulator: 154 (153) EQUAL(f(f(a,c),l(f(a,c),d)),d). ** KEPT: 155 (150,10,150) O(l(f(a,c),f(a,c))). ** KEPT: 156 (150,9,27,27) -EQUAL(f(l(d,d),l(d,d)),f(a,c)). ** KEPT: 157 (150,9,27,24) -EQUAL(f(l(d,d),g(b)),f(a,c)). ** KEPT: 158 (150,9,27,23) -EQUAL(f(l(d,d),f(b,e)),f(a,c)). ** KEPT: 159 (150,9,27,22) -EQUAL(f(l(d,d),f(e,b)),f(a,c)). ** KEPT: 160 (150,9,27,21) -EQUAL(f(l(d,d),f(b,b)),f(a,c)). ** KEPT: 161 (150,9,27,12) -EQUAL(f(l(d,d),b),f(a,c)). ** KEPT: 162 (150,9,27,7) -EQUAL(f(l(d,d),e),f(a,c)). ** KEPT: 163 (150,9,24,27) -EQUAL(f(g(b),l(d,d)),f(a,c)). ** KEPT: 164 (150,9,24,24) -EQUAL(f(g(b),g(b)),f(a,c)). ** KEPT: 165 (150,9,24,22) -EQUAL(f(g(b),f(e,b)),f(a,c)). ** KEPT: 166 (150,9,24,12) -EQUAL(f(g(b),b),f(a,c)). ** KEPT: 167 (150,9,24,7) -EQUAL(f(g(b),e),f(a,c)). ** KEPT: 168 (150,9,23,27) -EQUAL(f(f(b,e),l(d,d)),f(a,c)). ** KEPT: 169 (150,9,23,24) -EQUAL(f(f(b,e),g(b)),f(a,c)). ** KEPT: 170 (150,9,23,23) -EQUAL(f(f(b,e),f(b,e)),f(a,c)). ** KEPT: 171 (150,9,23,22) -EQUAL(f(f(b,e),f(e,b)),f(a,c)). ** KEPT: 172 (150,9,23,21) -EQUAL(f(f(b,e),f(b,b)),f(a,c)). ** KEPT: 173 (150,9,23,12) -EQUAL(f(f(b,e),b),f(a,c)). ** KEPT: 174 (150,9,23,7) -EQUAL(f(f(b,e),e),f(a,c)). ** KEPT: 175 (150,9,22,27) -EQUAL(f(f(e,b),l(d,d)),f(a,c)). ** KEPT: 176 (150,9,22,24) -EQUAL(f(f(e,b),g(b)),f(a,c)). ** KEPT: 177 (150,9,22,23) -EQUAL(f(f(e,b),f(b,e)),f(a,c)). ** KEPT: 178 (150,9,22,22) -EQUAL(f(f(e,b),f(e,b)),f(a,c)). ** KEPT: 179 (150,9,22,21) -EQUAL(f(f(e,b),f(b,b)),f(a,c)). ** KEPT: 180 (150,9,22,12) -EQUAL(f(f(e,b),b),f(a,c)). ** KEPT: 181 (150,9,22,7) -EQUAL(f(f(e,b),e),f(a,c)). ** KEPT: 182 (150,9,21,27) -EQUAL(f(f(b,b),l(d,d)),f(a,c)). ** KEPT: 183 (150,9,21,24) -EQUAL(f(f(b,b),g(b)),f(a,c)). ** KEPT: 184 (150,9,21,23) -EQUAL(f(f(b,b),f(b,e)),f(a,c)). ** KEPT: 185 (150,9,21,22) -EQUAL(f(f(b,b),f(e,b)),f(a,c)). ** KEPT: 186 (150,9,21,21) -EQUAL(f(f(b,b),f(b,b)),f(a,c)). ** KEPT: 187 (150,9,21,12) -EQUAL(f(f(b,b),b),f(a,c)). ** KEPT: 188 (150,9,21,7) -EQUAL(f(f(b,b),e),f(a,c)). ** KEPT: 189 (150,9,12,27) -EQUAL(f(b,l(d,d)),f(a,c)). ** KEPT: 190 (150,9,12,24) -EQUAL(f(b,g(b)),f(a,c)). ** KEPT: 191 (150,9,12,23) -EQUAL(f(b,f(b,e)),f(a,c)). ** KEPT: 192 (150,9,12,22) -EQUAL(f(b,f(e,b)),f(a,c)). ** KEPT: 193 (150,9,12,21) -EQUAL(f(b,f(b,b)),f(a,c)). ** KEPT: 194 (150,9,12,12) -EQUAL(f(a,c),f(b,b)). ** KEPT: 195 (150,9,12,7) -EQUAL(f(a,c),f(b,e)). ** KEPT: 196 (150,9,7,27) -EQUAL(f(e,l(d,d)),f(a,c)). ** KEPT: 197 (150,9,7,24) -EQUAL(f(e,g(b)),f(a,c)). ** KEPT: 198 (150,9,7,23) -EQUAL(f(e,f(b,e)),f(a,c)). ** KEPT: 199 (150,9,7,22) -EQUAL(f(e,f(e,b)),f(a,c)). ** KEPT: 200 (150,9,7,21) -EQUAL(f(e,f(b,b)),f(a,c)). ** KEPT: 201 (150,9,7,12) -EQUAL(f(a,c),f(e,b)). ** KEPT: 202 (150,9,7,7) -EQUAL(f(a,c),f(e,e)). >>>> Starting back demodulation with: 154 (153) EQUAL(f(f(a,c),l(f(a,c),d)),d). new given clause: 28 (15,9,12,12) -EQUAL(f(b,b),d). new given clause: 29 (15,9,12,7) -EQUAL(f(b,e),d). ** KEPT: 203 (4,29) -EQUAL(f(b,f(x,g(x))),d). ** KEPT: 204 (3,29) -EQUAL(f(b,f(g(x),x)),d). new given clause: 30 (15,9,7,12) -EQUAL(f(e,b),d). ** KEPT: 205 (4,30) -EQUAL(f(f(x,g(x)),b),d). ** KEPT: 206 (3,30) -EQUAL(f(f(g(x),x),b),d). new given clause: 31 (15,9,7,7) -EQUAL(f(e,e),d). ** KEPT: 207 (4,31) -EQUAL(f(f(x,g(x)),e),d). ** KEPT: 208 (3,31) -EQUAL(f(f(g(x),x),e),d). ** KEPT: 209 (4,31) -EQUAL(f(e,f(x,g(x))),d). ** KEPT: 210 (3,31) -EQUAL(f(e,f(g(x),x)),d). new given clause: 36 (24,9,12,6) O(f(b,g(b))). ** KEPT: 211 (36,9,36,150) -EQUAL(f(f(b,g(b)),f(b,g(b))),f(a,c)). ** KEPT: 212 (36,9,36,15) -EQUAL(f(f(b,g(b)),f(b,g(b))),d). ** KEPT: 213 (36,9,27,150) -EQUAL(f(l(d,d),f(b,g(b))),f(a,c)). ** KEPT: 214 (36,9,27,15) -EQUAL(f(l(d,d),f(b,g(b))),d). ** KEPT: 215 (36,9,24,150,20) -EQUAL(f(a,c),g(b)). ** KEPT: 216 (36,9,24,15,20) -EQUAL(g(b),d). ** KEPT: 217 (36,9,23,150) -EQUAL(f(f(b,e),f(b,g(b))),f(a,c)). ** KEPT: 218 (36,9,23,15) -EQUAL(f(f(b,e),f(b,g(b))),d). ** KEPT: 219 (36,9,22,150) -EQUAL(f(f(e,b),f(b,g(b))),f(a,c)). ** KEPT: 220 (36,9,22,15) -EQUAL(f(f(e,b),f(b,g(b))),d). ** KEPT: 221 (36,9,21,150) -EQUAL(f(f(b,b),f(b,g(b))),f(a,c)). ** KEPT: 222 (36,9,21,15) -EQUAL(f(f(b,b),f(b,g(b))),d). ** KEPT: 223 (36,9,12,150) -EQUAL(f(b,f(b,g(b))),f(a,c)). ** KEPT: 224 (36,9,7,150) -EQUAL(f(e,f(b,g(b))),f(a,c)). ** KEPT: 225 (36,9,36,6) O(f(f(b,g(b)),f(b,g(b)))). ** KEPT: 226 (36,9,27,6) O(f(l(d,d),f(b,g(b)))). ** KEPT: 227 (36,9,23,6) O(f(f(b,e),f(b,g(b)))). ** KEPT: 228 (36,9,23,5) O(f(b,f(e,f(b,g(b))))). ** KEPT: 229 (36,9,22,6) O(f(f(e,b),f(b,g(b)))). ** KEPT: 230 (36,9,22,5) O(f(e,f(b,f(b,g(b))))). ** KEPT: 231 (36,9,21,6) O(f(f(b,b),f(b,g(b)))). ** KEPT: 232 (36,9,21,5) O(f(b,f(b,f(b,g(b))))). ** KEPT: 233 (36,9,27,150) -EQUAL(f(f(b,g(b)),l(d,d)),f(a,c)). ** KEPT: 234 (36,9,27,15) -EQUAL(f(f(b,g(b)),l(d,d)),d). ** KEPT: 235 (36,9,24,150) -EQUAL(f(f(b,g(b)),g(b)),f(a,c)). ** KEPT: 236 (36,9,24,15) -EQUAL(f(f(b,g(b)),g(b)),d). ** KEPT: 237 (36,9,23,150) -EQUAL(f(f(b,g(b)),f(b,e)),f(a,c)). ** KEPT: 238 (36,9,23,15) -EQUAL(f(f(b,g(b)),f(b,e)),d). ** KEPT: 239 (36,9,22,150) -EQUAL(f(f(b,g(b)),f(e,b)),f(a,c)). ** KEPT: 240 (36,9,22,15) -EQUAL(f(f(b,g(b)),f(e,b)),d). ** KEPT: 241 (36,9,21,150) -EQUAL(f(f(b,g(b)),f(b,b)),f(a,c)). ** KEPT: 242 (36,9,21,15) -EQUAL(f(f(b,g(b)),f(b,b)),d). ** KEPT: 243 (36,9,12,150) -EQUAL(f(f(b,g(b)),b),f(a,c)). ** KEPT: 244 (36,9,7,150) -EQUAL(f(f(b,g(b)),e),f(a,c)). ** KEPT: 245 (36,9,27,6) O(f(f(b,g(b)),l(d,d))). ** KEPT: 246 (36,9,24,6) O(f(f(b,g(b)),g(b))). ** KEPT: 247 (36,9,23,6) O(f(f(b,g(b)),f(b,e))). ** KEPT: 248 (36,9,22,6) O(f(f(b,g(b)),f(e,b))). ** KEPT: 249 (36,9,21,6) O(f(f(b,g(b)),f(b,b))). ** KEPT: 250 (36,9,7,6) O(f(f(b,g(b)),e)). new given clause: 216 (36,9,24,15,20) -EQUAL(g(b),d). new given clause: 37 (24,9,7,6) O(f(e,g(b))). ** KEPT: 251 (37,9,37,150) -EQUAL(f(f(e,g(b)),f(e,g(b))),f(a,c)). ** KEPT: 252 (37,9,37,15) -EQUAL(f(f(e,g(b)),f(e,g(b))),d). ** KEPT: 253 (37,9,36,150) -EQUAL(f(f(b,g(b)),f(e,g(b))),f(a,c)). ** KEPT: 254 (37,9,36,15) -EQUAL(f(f(b,g(b)),f(e,g(b))),d). ** KEPT: 255 (37,9,27,150) -EQUAL(f(l(d,d),f(e,g(b))),f(a,c)). ** KEPT: 256 (37,9,27,15) -EQUAL(f(l(d,d),f(e,g(b))),d). ** KEPT: 257 (37,9,24,150) -EQUAL(f(g(b),f(e,g(b))),f(a,c)). ** KEPT: 258 (37,9,24,15) -EQUAL(f(g(b),f(e,g(b))),d). ** KEPT: 259 (37,9,23,150) -EQUAL(f(f(b,e),f(e,g(b))),f(a,c)). ** KEPT: 260 (37,9,23,15) -EQUAL(f(f(b,e),f(e,g(b))),d). ** KEPT: 261 (37,9,22,150) -EQUAL(f(f(e,b),f(e,g(b))),f(a,c)). ** KEPT: 262 (37,9,22,15) -EQUAL(f(f(e,b),f(e,g(b))),d). ** KEPT: 263 (37,9,21,150) -EQUAL(f(f(b,b),f(e,g(b))),f(a,c)). ** KEPT: 264 (37,9,21,15) -EQUAL(f(f(b,b),f(e,g(b))),d). ** KEPT: 265 (37,9,12,150) -EQUAL(f(b,f(e,g(b))),f(a,c)). ** KEPT: 266 (37,9,12,15) -EQUAL(f(b,f(e,g(b))),d). ** KEPT: 267 (37,9,7,150) -EQUAL(f(e,f(e,g(b))),f(a,c)). ** KEPT: 268 (37,9,7,15) -EQUAL(f(e,f(e,g(b))),d). ** KEPT: 269 (37,9,37,6) O(f(f(e,g(b)),f(e,g(b)))). ** KEPT: 270 (37,9,37,5) O(f(e,f(g(b),f(e,g(b))))). ** KEPT: 271 (37,9,36,6) O(f(f(b,g(b)),f(e,g(b)))). ** KEPT: 272 (37,9,27,6) O(f(l(d,d),f(e,g(b)))). ** KEPT: 273 (37,9,24,6) O(f(g(b),f(e,g(b)))). ** KEPT: 274 (37,9,23,6) O(f(f(b,e),f(e,g(b)))). ** KEPT: 275 (37,9,23,5) O(f(b,f(e,f(e,g(b))))). ** KEPT: 276 (37,9,22,6) O(f(f(e,b),f(e,g(b)))). ** KEPT: 277 (37,9,22,5) O(f(e,f(b,f(e,g(b))))). ** KEPT: 278 (37,9,21,6) O(f(f(b,b),f(e,g(b)))). ** KEPT: 279 (37,9,21,5) O(f(b,f(b,f(e,g(b))))). ** KEPT: 280 (37,9,7,6) O(f(e,f(e,g(b)))). ** KEPT: 281 (37,9,36,150) -EQUAL(f(f(e,g(b)),f(b,g(b))),f(a,c)). ** KEPT: 282 (37,9,36,15) -EQUAL(f(f(e,g(b)),f(b,g(b))),d). ** KEPT: 283 (37,9,27,150) -EQUAL(f(f(e,g(b)),l(d,d)),f(a,c)). ** KEPT: 284 (37,9,27,15) -EQUAL(f(f(e,g(b)),l(d,d)),d). ** KEPT: 285 (37,9,24,150) -EQUAL(f(f(e,g(b)),g(b)),f(a,c)). ** KEPT: 286 (37,9,24,15) -EQUAL(f(f(e,g(b)),g(b)),d). ** KEPT: 287 (37,9,23,150) -EQUAL(f(f(e,g(b)),f(b,e)),f(a,c)). ** KEPT: 288 (37,9,23,15) -EQUAL(f(f(e,g(b)),f(b,e)),d). ** KEPT: 289 (37,9,22,150) -EQUAL(f(f(e,g(b)),f(e,b)),f(a,c)). ** KEPT: 290 (37,9,22,15) -EQUAL(f(f(e,g(b)),f(e,b)),d). ** KEPT: 291 (37,9,21,150) -EQUAL(f(f(e,g(b)),f(b,b)),f(a,c)). ** KEPT: 292 (37,9,21,15) -EQUAL(f(f(e,g(b)),f(b,b)),d). ** KEPT: 293 (37,9,12,150) -EQUAL(f(f(e,g(b)),b),f(a,c)). ** KEPT: 294 (37,9,12,15) -EQUAL(f(f(e,g(b)),b),d). ** KEPT: 295 (37,9,7,150) -EQUAL(f(f(e,g(b)),e),f(a,c)). ** KEPT: 296 (37,9,7,15) -EQUAL(f(f(e,g(b)),e),d). ** KEPT: 297 (37,9,36,6) O(f(f(e,g(b)),f(b,g(b)))). ** KEPT: 298 (37,9,27,6) O(f(f(e,g(b)),l(d,d))). ** KEPT: 299 (37,9,27,5) O(f(e,f(g(b),l(d,d)))). ** KEPT: 300 (37,9,24,6) O(f(f(e,g(b)),g(b))). ** KEPT: 301 (37,9,24,5) O(f(e,f(g(b),g(b)))). ** KEPT: 302 (37,9,23,6) O(f(f(e,g(b)),f(b,e))). ** KEPT: 303 (37,9,23,5,20) O(f(e,e)). ** KEPT: 304 (37,9,22,6) O(f(f(e,g(b)),f(e,b))). ** KEPT: 305 (37,9,22,5) O(f(e,f(g(b),f(e,b)))). ** KEPT: 306 (37,9,21,6) O(f(f(e,g(b)),f(b,b))). ** KEPT: 307 (37,9,12,6) O(f(f(e,g(b)),b)). ** KEPT: 308 (37,9,12,5) O(f(e,f(g(b),b))). ** KEPT: 309 (37,9,7,6) O(f(f(e,g(b)),e)). ** KEPT: 310 (37,9,7,5) O(f(e,f(g(b),e))). ** KEPT: 311 (4,37) O(f(f(x,g(x)),g(b))). ** KEPT: 312 (3,37) O(f(f(g(x),x),g(b))). 311 back subsumes: 246 (36,9,24,6) O(f(f(b,g(b)),g(b))). new given clause: 303 (37,9,23,5,20) O(f(e,e)). ** KEPT: 313 (303,9,303,150) -EQUAL(f(f(e,e),f(e,e)),f(a,c)). ** KEPT: 314 (303,9,303,15) -EQUAL(f(f(e,e),f(e,e)),d). ** KEPT: 315 (303,9,37,150) -EQUAL(f(f(e,g(b)),f(e,e)),f(a,c)). ** KEPT: 316 (303,9,37,15) -EQUAL(f(f(e,g(b)),f(e,e)),d). ** KEPT: 317 (303,9,36,150) -EQUAL(f(f(b,g(b)),f(e,e)),f(a,c)). ** KEPT: 318 (303,9,36,15) -EQUAL(f(f(b,g(b)),f(e,e)),d). ** KEPT: 319 (303,9,27,150) -EQUAL(f(l(d,d),f(e,e)),f(a,c)). ** KEPT: 320 (303,9,27,15) -EQUAL(f(l(d,d),f(e,e)),d). ** KEPT: 321 (303,9,24,150) -EQUAL(f(g(b),f(e,e)),f(a,c)). ** KEPT: 322 (303,9,24,15) -EQUAL(f(g(b),f(e,e)),d). ** KEPT: 323 (303,9,23,150) -EQUAL(f(f(b,e),f(e,e)),f(a,c)). ** KEPT: 324 (303,9,23,15) -EQUAL(f(f(b,e),f(e,e)),d). ** KEPT: 325 (303,9,22,150) -EQUAL(f(f(e,b),f(e,e)),f(a,c)). ** KEPT: 326 (303,9,22,15) -EQUAL(f(f(e,b),f(e,e)),d). ** KEPT: 327 (303,9,21,150) -EQUAL(f(f(b,b),f(e,e)),f(a,c)). ** KEPT: 328 (303,9,21,15) -EQUAL(f(f(b,b),f(e,e)),d). ** KEPT: 329 (303,9,12,150) -EQUAL(f(b,f(e,e)),f(a,c)). ** KEPT: 330 (303,9,12,15) -EQUAL(f(b,f(e,e)),d). ** KEPT: 331 (303,9,7,150) -EQUAL(f(e,f(e,e)),f(a,c)). ** KEPT: 332 (303,9,7,15) -EQUAL(f(e,f(e,e)),d). ** KEPT: 333 (303,9,303,6) O(f(f(e,e),f(e,e))). ** KEPT: 334 (303,9,303,5) O(f(e,f(e,f(e,e)))). ** KEPT: 335 (303,9,37,6) O(f(f(e,g(b)),f(e,e))). ** KEPT: 336 (303,9,37,5) O(f(e,f(g(b),f(e,e)))). ** KEPT: 337 (303,9,36,6) O(f(f(b,g(b)),f(e,e))). ** KEPT: 338 (303,9,27,6) O(f(l(d,d),f(e,e))). ** KEPT: 339 (303,9,24,6) O(f(g(b),f(e,e))). ** KEPT: 340 (303,9,23,6) O(f(f(b,e),f(e,e))). ** KEPT: 341 (303,9,23,5) O(f(b,f(e,f(e,e)))). ** KEPT: 342 (303,9,22,6) O(f(f(e,b),f(e,e))). ** KEPT: 343 (303,9,22,5) O(f(e,f(b,f(e,e)))). ** KEPT: 344 (303,9,21,6) O(f(f(b,b),f(e,e))). ** KEPT: 345 (303,9,21,5) O(f(b,f(b,f(e,e)))). ** KEPT: 346 (303,9,7,6) O(f(e,f(e,e))). ** KEPT: 347 (303,9,37,150) -EQUAL(f(f(e,e),f(e,g(b))),f(a,c)). ** KEPT: 348 (303,9,37,15) -EQUAL(f(f(e,e),f(e,g(b))),d). ** KEPT: 349 (303,9,36,150) -EQUAL(f(f(e,e),f(b,g(b))),f(a,c)). ** KEPT: 350 (303,9,36,15) -EQUAL(f(f(e,e),f(b,g(b))),d). ** KEPT: 351 (303,9,27,150) -EQUAL(f(f(e,e),l(d,d)),f(a,c)). ** KEPT: 352 (303,9,27,15) -EQUAL(f(f(e,e),l(d,d)),d). ** KEPT: 353 (303,9,24,150) -EQUAL(f(f(e,e),g(b)),f(a,c)). ** KEPT: 354 (303,9,24,15) -EQUAL(f(f(e,e),g(b)),d). ** KEPT: 355 (303,9,23,150) -EQUAL(f(f(e,e),f(b,e)),f(a,c)). ** KEPT: 356 (303,9,23,15) -EQUAL(f(f(e,e),f(b,e)),d). ** KEPT: 357 (303,9,22,150) -EQUAL(f(f(e,e),f(e,b)),f(a,c)). ** KEPT: 358 (303,9,22,15) -EQUAL(f(f(e,e),f(e,b)),d). ** KEPT: 359 (303,9,21,150) -EQUAL(f(f(e,e),f(b,b)),f(a,c)). ** KEPT: 360 (303,9,21,15) -EQUAL(f(f(e,e),f(b,b)),d). ** KEPT: 361 (303,9,12,150) -EQUAL(f(f(e,e),b),f(a,c)). ** KEPT: 362 (303,9,12,15) -EQUAL(f(f(e,e),b),d). ** KEPT: 363 (303,9,7,150) -EQUAL(f(f(e,e),e),f(a,c)). ** KEPT: 364 (303,9,7,15) -EQUAL(f(f(e,e),e),d). ** KEPT: 365 (303,9,37,6) O(f(f(e,e),f(e,g(b)))). ** KEPT: 366 (303,9,37,5) O(f(e,f(e,f(e,g(b))))). ** KEPT: 367 (303,9,36,6) O(f(f(e,e),f(b,g(b)))). ** KEPT: 368 (303,9,36,5) O(f(e,f(e,f(b,g(b))))). ** KEPT: 369 (303,9,27,6) O(f(f(e,e),l(d,d))). ** KEPT: 370 (303,9,27,5) O(f(e,f(e,l(d,d)))). ** KEPT: 371 (303,9,24,6) O(f(f(e,e),g(b))). ** KEPT: 372 (303,9,23,6) O(f(f(e,e),f(b,e))). ** KEPT: 373 (303,9,23,5) O(f(e,f(e,f(b,e)))). ** KEPT: 374 (303,9,22,6) O(f(f(e,e),f(e,b))). ** KEPT: 375 (303,9,22,5) O(f(e,f(e,f(e,b)))). ** KEPT: 376 (303,9,21,6) O(f(f(e,e),f(b,b))). ** KEPT: 377 (303,9,21,5) O(f(e,f(e,f(b,b)))). ** KEPT: 378 (303,9,12,6) O(f(f(e,e),b)). ** KEPT: 379 (303,9,7,6) O(f(f(e,e),e)). ** KEPT: 380 (4,303) O(f(f(x,g(x)),e)). ** KEPT: 381 (3,303) O(f(f(g(x),x),e)). ** KEPT: 382 (4,303) O(f(e,f(x,g(x)))). ** KEPT: 383 (3,303) O(f(e,f(g(x),x))). 380 back subsumes: 250 (36,9,7,6) O(f(f(b,g(b)),e)). 382 back subsumes: 75 (22,9,24,5) O(f(e,f(b,g(b)))). 383 back subsumes: 308 (37,9,12,5) O(f(e,f(g(b),b))). new given clause: 40 (24,9,12,6) O(f(g(b),b)). ** KEPT: 384 (40,9,303,150) -EQUAL(f(f(e,e),f(g(b),b)),f(a,c)). ** KEPT: 385 (40,9,303,15) -EQUAL(f(f(e,e),f(g(b),b)),d). ** KEPT: 386 (40,9,40,150) -EQUAL(f(f(g(b),b),f(g(b),b)),f(a,c)). ** KEPT: 387 (40,9,40,15) -EQUAL(f(f(g(b),b),f(g(b),b)),d). ** KEPT: 388 (40,9,37,150) -EQUAL(f(f(e,g(b)),f(g(b),b)),f(a,c)). ** KEPT: 389 (40,9,37,15) -EQUAL(f(f(e,g(b)),f(g(b),b)),d). ** KEPT: 390 (40,9,36,150) -EQUAL(f(f(b,g(b)),f(g(b),b)),f(a,c)). ** KEPT: 391 (40,9,36,15) -EQUAL(f(f(b,g(b)),f(g(b),b)),d). ** KEPT: 392 (40,9,27,150) -EQUAL(f(l(d,d),f(g(b),b)),f(a,c)). ** KEPT: 393 (40,9,27,15) -EQUAL(f(l(d,d),f(g(b),b)),d). ** KEPT: 394 (40,9,24,150) -EQUAL(f(g(b),f(g(b),b)),f(a,c)). ** KEPT: 395 (40,9,24,15) -EQUAL(f(g(b),f(g(b),b)),d). ** KEPT: 396 (40,9,23,150) -EQUAL(f(f(b,e),f(g(b),b)),f(a,c)). ** KEPT: 397 (40,9,23,15) -EQUAL(f(f(b,e),f(g(b),b)),d). ** KEPT: 398 (40,9,22,150) -EQUAL(f(f(e,b),f(g(b),b)),f(a,c)). ** KEPT: 399 (40,9,22,15) -EQUAL(f(f(e,b),f(g(b),b)),d). ** KEPT: 400 (40,9,21,150) -EQUAL(f(f(b,b),f(g(b),b)),f(a,c)). ** KEPT: 401 (40,9,21,15) -EQUAL(f(f(b,b),f(g(b),b)),d). ** KEPT: 402 (40,9,7,150) -EQUAL(f(e,f(g(b),b)),f(a,c)). ** KEPT: 403 (40,9,303,6) O(f(f(e,e),f(g(b),b))). ** KEPT: 404 (40,9,303,5) O(f(e,f(e,f(g(b),b)))). ** KEPT: 405 (40,9,40,6) O(f(f(g(b),b),f(g(b),b))). ** KEPT: 406 (40,9,37,6) O(f(f(e,g(b)),f(g(b),b))). ** KEPT: 407 (40,9,37,5) O(f(e,f(g(b),f(g(b),b)))). ** KEPT: 408 (40,9,36,6) O(f(f(b,g(b)),f(g(b),b))). ** KEPT: 409 (40,9,27,6) O(f(l(d,d),f(g(b),b))). ** KEPT: 410 (40,9,24,6) O(f(g(b),f(g(b),b))). ** KEPT: 411 (40,9,23,6) O(f(f(b,e),f(g(b),b))). ** KEPT: 412 (40,9,23,5) O(f(b,f(e,f(g(b),b)))). ** KEPT: 413 (40,9,22,6) O(f(f(e,b),f(g(b),b))). ** KEPT: 414 (40,9,21,6) O(f(f(b,b),f(g(b),b))). ** KEPT: 415 (40,9,303,150) -EQUAL(f(f(g(b),b),f(e,e)),f(a,c)). ** KEPT: 416 (40,9,303,15) -EQUAL(f(f(g(b),b),f(e,e)),d). ** KEPT: 417 (40,9,37,150) -EQUAL(f(f(g(b),b),f(e,g(b))),f(a,c)). ** KEPT: 418 (40,9,37,15) -EQUAL(f(f(g(b),b),f(e,g(b))),d). ** KEPT: 419 (40,9,36,150) -EQUAL(f(f(g(b),b),f(b,g(b))),f(a,c)). ** KEPT: 420 (40,9,36,15) -EQUAL(f(f(g(b),b),f(b,g(b))),d). ** KEPT: 421 (40,9,27,150) -EQUAL(f(f(g(b),b),l(d,d)),f(a,c)). ** KEPT: 422 (40,9,27,15) -EQUAL(f(f(g(b),b),l(d,d)),d). ** KEPT: 423 (40,9,24,150) -EQUAL(f(f(g(b),b),g(b)),f(a,c)). ** KEPT: 424 (40,9,24,15) -EQUAL(f(f(g(b),b),g(b)),d). ** KEPT: 425 (40,9,23,150) -EQUAL(f(f(g(b),b),f(b,e)),f(a,c)). ** KEPT: 426 (40,9,23,15) -EQUAL(f(f(g(b),b),f(b,e)),d). ** KEPT: 427 (40,9,22,150) -EQUAL(f(f(g(b),b),f(e,b)),f(a,c)). ** KEPT: 428 (40,9,22,15) -EQUAL(f(f(g(b),b),f(e,b)),d). ** KEPT: 429 (40,9,21,150) -EQUAL(f(f(g(b),b),f(b,b)),f(a,c)). ** KEPT: 430 (40,9,21,15) -EQUAL(f(f(g(b),b),f(b,b)),d). ** KEPT: 431 (40,9,12,150) -EQUAL(f(f(g(b),b),b),f(a,c)). ** KEPT: 432 (40,9,7,150) -EQUAL(f(f(g(b),b),e),f(a,c)). ** KEPT: 433 (40,9,303,6) O(f(f(g(b),b),f(e,e))). ** KEPT: 434 (40,9,37,6) O(f(f(g(b),b),f(e,g(b)))). ** KEPT: 435 (40,9,36,6) O(f(f(g(b),b),f(b,g(b)))). ** KEPT: 436 (40,9,27,6) O(f(f(g(b),b),l(d,d))). ** KEPT: 437 (40,9,23,6) O(f(f(g(b),b),f(b,e))). ** KEPT: 438 (40,9,22,6) O(f(f(g(b),b),f(e,b))). ** KEPT: 439 (40,9,21,6) O(f(f(g(b),b),f(b,b))). new given clause: 41 (24,9,7,6) O(f(g(b),e)). ** KEPT: 440 (41,9,303,150) -EQUAL(f(f(e,e),f(g(b),e)),f(a,c)). ** KEPT: 441 (41,9,303,15) -EQUAL(f(f(e,e),f(g(b),e)),d). ** KEPT: 442 (41,9,41,150) -EQUAL(f(f(g(b),e),f(g(b),e)),f(a,c)). ** KEPT: 443 (41,9,41,15) -EQUAL(f(f(g(b),e),f(g(b),e)),d). ** KEPT: 444 (41,9,40,150) -EQUAL(f(f(g(b),b),f(g(b),e)),f(a,c)). ** KEPT: 445 (41,9,40,15) -EQUAL(f(f(g(b),b),f(g(b),e)),d). ** KEPT: 446 (41,9,37,150) -EQUAL(f(f(e,g(b)),f(g(b),e)),f(a,c)). ** KEPT: 447 (41,9,37,15) -EQUAL(f(f(e,g(b)),f(g(b),e)),d). ** KEPT: 448 (41,9,36,150) -EQUAL(f(f(b,g(b)),f(g(b),e)),f(a,c)). ** KEPT: 449 (41,9,36,15) -EQUAL(f(f(b,g(b)),f(g(b),e)),d). ** KEPT: 450 (41,9,27,150) -EQUAL(f(l(d,d),f(g(b),e)),f(a,c)). ** KEPT: 451 (41,9,27,15) -EQUAL(f(l(d,d),f(g(b),e)),d). ** KEPT: 452 (41,9,24,150) -EQUAL(f(g(b),f(g(b),e)),f(a,c)). ** KEPT: 453 (41,9,24,15) -EQUAL(f(g(b),f(g(b),e)),d). ** KEPT: 454 (41,9,23,150) -EQUAL(f(f(b,e),f(g(b),e)),f(a,c)). ** KEPT: 455 (41,9,23,15) -EQUAL(f(f(b,e),f(g(b),e)),d). ** KEPT: 456 (41,9,22,150) -EQUAL(f(f(e,b),f(g(b),e)),f(a,c)). ** KEPT: 457 (41,9,22,15) -EQUAL(f(f(e,b),f(g(b),e)),d). ** KEPT: 458 (41,9,21,150) -EQUAL(f(f(b,b),f(g(b),e)),f(a,c)). ** KEPT: 459 (41,9,21,15) -EQUAL(f(f(b,b),f(g(b),e)),d). ** KEPT: 460 (41,9,7,150) -EQUAL(f(e,f(g(b),e)),f(a,c)). ** KEPT: 461 (41,9,7,15) -EQUAL(f(e,f(g(b),e)),d). ** KEPT: 462 (41,9,303,6) O(f(f(e,e),f(g(b),e))). ** KEPT: 463 (41,9,303,5) O(f(e,f(e,f(g(b),e)))). ** KEPT: 464 (41,9,41,6) O(f(f(g(b),e),f(g(b),e))). ** KEPT: 465 (41,9,41,5) O(f(g(b),f(e,f(g(b),e)))). ** KEPT: 466 (41,9,40,6) O(f(f(g(b),b),f(g(b),e))). ** KEPT: 467 (41,9,37,6) O(f(f(e,g(b)),f(g(b),e))). ** KEPT: 468 (41,9,37,5) O(f(e,f(g(b),f(g(b),e)))). ** KEPT: 469 (41,9,36,6) O(f(f(b,g(b)),f(g(b),e))). ** KEPT: 470 (41,9,27,6) O(f(l(d,d),f(g(b),e))). ** KEPT: 471 (41,9,24,6) O(f(g(b),f(g(b),e))). ** KEPT: 472 (41,9,23,6) O(f(f(b,e),f(g(b),e))). ** KEPT: 473 (41,9,23,5) O(f(b,f(e,f(g(b),e)))). ** KEPT: 474 (41,9,22,6) O(f(f(e,b),f(g(b),e))). ** KEPT: 475 (41,9,21,6) O(f(f(b,b),f(g(b),e))). ** KEPT: 476 (41,9,303,150) -EQUAL(f(f(g(b),e),f(e,e)),f(a,c)). ** KEPT: 477 (41,9,303,15) -EQUAL(f(f(g(b),e),f(e,e)),d). ** KEPT: 478 (41,9,40,150) -EQUAL(f(f(g(b),e),f(g(b),b)),f(a,c)). ** KEPT: 479 (41,9,40,15) -EQUAL(f(f(g(b),e),f(g(b),b)),d). ** KEPT: 480 (41,9,37,150) -EQUAL(f(f(g(b),e),f(e,g(b))),f(a,c)). ** KEPT: 481 (41,9,37,15) -EQUAL(f(f(g(b),e),f(e,g(b))),d). ** KEPT: 482 (41,9,36,150) -EQUAL(f(f(g(b),e),f(b,g(b))),f(a,c)). ** KEPT: 483 (41,9,36,15) -EQUAL(f(f(g(b),e),f(b,g(b))),d). ** KEPT: 484 (41,9,27,150) -EQUAL(f(f(g(b),e),l(d,d)),f(a,c)). ** KEPT: 485 (41,9,27,15) -EQUAL(f(f(g(b),e),l(d,d)),d). ** KEPT: 486 (41,9,24,150) -EQUAL(f(f(g(b),e),g(b)),f(a,c)). ** KEPT: 487 (41,9,24,15) -EQUAL(f(f(g(b),e),g(b)),d). ** KEPT: 488 (41,9,23,150) -EQUAL(f(f(g(b),e),f(b,e)),f(a,c)). ** KEPT: 489 (41,9,23,15) -EQUAL(f(f(g(b),e),f(b,e)),d). ** KEPT: 490 (41,9,22,150) -EQUAL(f(f(g(b),e),f(e,b)),f(a,c)). ** KEPT: 491 (41,9,22,15) -EQUAL(f(f(g(b),e),f(e,b)),d). ** KEPT: 492 (41,9,21,150) -EQUAL(f(f(g(b),e),f(b,b)),f(a,c)). ** KEPT: 493 (41,9,21,15) -EQUAL(f(f(g(b),e),f(b,b)),d). ** KEPT: 494 (41,9,12,150) -EQUAL(f(f(g(b),e),b),f(a,c)). ** KEPT: 495 (41,9,12,15) -EQUAL(f(f(g(b),e),b),d). ** KEPT: 496 (41,9,7,150) -EQUAL(f(f(g(b),e),e),f(a,c)). ** KEPT: 497 (41,9,7,15) -EQUAL(f(f(g(b),e),e),d). ** KEPT: 498 (41,9,303,6) O(f(f(g(b),e),f(e,e))). ** KEPT: 499 (41,9,303,5) O(f(g(b),f(e,f(e,e)))). ** KEPT: 500 (41,9,40,6) O(f(f(g(b),e),f(g(b),b))). ** KEPT: 501 (41,9,40,5) O(f(g(b),f(e,f(g(b),b)))). ** KEPT: 502 (41,9,37,6) O(f(f(g(b),e),f(e,g(b)))). ** KEPT: 503 (41,9,37,5) O(f(g(b),f(e,f(e,g(b))))). ** KEPT: 504 (41,9,36,6) O(f(f(g(b),e),f(b,g(b)))). ** KEPT: 505 (41,9,36,5) O(f(g(b),f(e,f(b,g(b))))). ** KEPT: 506 (41,9,27,6) O(f(f(g(b),e),l(d,d))). ** KEPT: 507 (41,9,27,5) O(f(g(b),f(e,l(d,d)))). ** KEPT: 508 (41,9,24,6) O(f(f(g(b),e),g(b))). ** KEPT: 509 (41,9,23,6) O(f(f(g(b),e),f(b,e))). ** KEPT: 510 (41,9,23,5) O(f(g(b),f(e,f(b,e)))). ** KEPT: 511 (41,9,22,6) O(f(f(g(b),e),f(e,b))). ** KEPT: 512 (41,9,22,5) O(f(g(b),f(e,f(e,b)))). ** KEPT: 513 (41,9,21,6) O(f(f(g(b),e),f(b,b))). ** KEPT: 514 (41,9,21,5) O(f(g(b),f(e,f(b,b)))). ** KEPT: 515 (41,9,12,6) O(f(f(g(b),e),b)). ** KEPT: 516 (41,9,7,6) O(f(f(g(b),e),e)). ** KEPT: 517 (4,41) O(f(g(b),f(x,g(x)))). ** KEPT: 518 (3,41) O(f(g(b),f(g(x),x))). 518 back subsumes: 410 (40,9,24,6) O(f(g(b),f(g(b),b))). new given clause: 142 (27,8) O(g(l(d,d))). ** KEPT: 519 (142,9,303,150) -EQUAL(f(f(e,e),g(l(d,d))),f(a,c)). ** KEPT: 520 (142,9,303,15) -EQUAL(f(f(e,e),g(l(d,d))),d). ** KEPT: 521 (142,9,142,150) -EQUAL(f(g(l(d,d)),g(l(d,d))),f(a,c)). ** KEPT: 522 (142,9,142,15) -EQUAL(f(g(l(d,d)),g(l(d,d))),d). ** KEPT: 523 (142,9,41,150) -EQUAL(f(f(g(b),e),g(l(d,d))),f(a,c)). ** KEPT: 524 (142,9,41,15) -EQUAL(f(f(g(b),e),g(l(d,d))),d). ** KEPT: 525 (142,9,40,150) -EQUAL(f(f(g(b),b),g(l(d,d))),f(a,c)). ** KEPT: 526 (142,9,40,15) -EQUAL(f(f(g(b),b),g(l(d,d))),d). ** KEPT: 527 (142,9,37,150) -EQUAL(f(f(e,g(b)),g(l(d,d))),f(a,c)). ** KEPT: 528 (142,9,37,15) -EQUAL(f(f(e,g(b)),g(l(d,d))),d). ** KEPT: 529 (142,9,36,150) -EQUAL(f(f(b,g(b)),g(l(d,d))),f(a,c)). ** KEPT: 530 (142,9,36,15) -EQUAL(f(f(b,g(b)),g(l(d,d))),d). ** KEPT: 531 (142,9,27,150) -EQUAL(f(l(d,d),g(l(d,d))),f(a,c)). ** KEPT: 532 (142,9,24,150) -EQUAL(f(g(b),g(l(d,d))),f(a,c)). ** KEPT: 533 (142,9,24,15) -EQUAL(f(g(b),g(l(d,d))),d). ** KEPT: 534 (142,9,23,150) -EQUAL(f(f(b,e),g(l(d,d))),f(a,c)). ** KEPT: 535 (142,9,23,15) -EQUAL(f(f(b,e),g(l(d,d))),d). ** KEPT: 536 (142,9,22,150) -EQUAL(f(f(e,b),g(l(d,d))),f(a,c)). ** KEPT: 537 (142,9,22,15) -EQUAL(f(f(e,b),g(l(d,d))),d). ** KEPT: 538 (142,9,21,150) -EQUAL(f(f(b,b),g(l(d,d))),f(a,c)). ** KEPT: 539 (142,9,21,15) -EQUAL(f(f(b,b),g(l(d,d))),d). ** KEPT: 540 (142,9,12,150) -EQUAL(f(b,g(l(d,d))),f(a,c)). ** KEPT: 541 (142,9,12,15) -EQUAL(f(b,g(l(d,d))),d). ** KEPT: 542 (142,9,7,150) -EQUAL(f(e,g(l(d,d))),f(a,c)). ** KEPT: 543 (142,9,7,15) -EQUAL(f(e,g(l(d,d))),d). ** KEPT: 544 (142,9,303,6) O(f(f(e,e),g(l(d,d)))). ** KEPT: 545 (142,9,303,5) O(f(e,f(e,g(l(d,d))))). ** KEPT: 546 (142,9,142,6) O(f(g(l(d,d)),g(l(d,d)))). ** KEPT: 547 (142,9,41,6) O(f(f(g(b),e),g(l(d,d)))). ** KEPT: 548 (142,9,41,5) O(f(g(b),f(e,g(l(d,d))))). ** KEPT: 549 (142,9,40,6) O(f(f(g(b),b),g(l(d,d)))). ** KEPT: 550 (142,9,37,6) O(f(f(e,g(b)),g(l(d,d)))). ** KEPT: 551 (142,9,37,5) O(f(e,f(g(b),g(l(d,d))))). ** KEPT: 552 (142,9,36,6) O(f(f(b,g(b)),g(l(d,d)))). ** KEPT: 553 (142,9,27,6) O(f(l(d,d),g(l(d,d)))). ** KEPT: 554 (142,9,24,6) O(f(g(b),g(l(d,d)))). ** KEPT: 555 (142,9,23,6) O(f(f(b,e),g(l(d,d)))). ** KEPT: 556 (142,9,23,5) O(f(b,f(e,g(l(d,d))))). ** KEPT: 557 (142,9,22,6) O(f(f(e,b),g(l(d,d)))). ** KEPT: 558 (142,9,22,5) O(f(e,f(b,g(l(d,d))))). ** KEPT: 559 (142,9,21,6) O(f(f(b,b),g(l(d,d)))). ** KEPT: 560 (142,9,21,5) O(f(b,f(b,g(l(d,d))))). ** KEPT: 561 (142,9,12,6) O(f(b,g(l(d,d)))). ** KEPT: 562 (142,9,7,6) O(f(e,g(l(d,d)))). ** KEPT: 563 (142,9,303,150) -EQUAL(f(g(l(d,d)),f(e,e)),f(a,c)). ** KEPT: 564 (142,9,303,15) -EQUAL(f(g(l(d,d)),f(e,e)),d). ** KEPT: 565 (142,9,41,150) -EQUAL(f(g(l(d,d)),f(g(b),e)),f(a,c)). ** KEPT: 566 (142,9,41,15) -EQUAL(f(g(l(d,d)),f(g(b),e)),d). ** KEPT: 567 (142,9,40,150) -EQUAL(f(g(l(d,d)),f(g(b),b)),f(a,c)). ** KEPT: 568 (142,9,40,15) -EQUAL(f(g(l(d,d)),f(g(b),b)),d). ** KEPT: 569 (142,9,37,150) -EQUAL(f(g(l(d,d)),f(e,g(b))),f(a,c)). ** KEPT: 570 (142,9,37,15) -EQUAL(f(g(l(d,d)),f(e,g(b))),d). ** KEPT: 571 (142,9,36,150) -EQUAL(f(g(l(d,d)),f(b,g(b))),f(a,c)). ** KEPT: 572 (142,9,36,15) -EQUAL(f(g(l(d,d)),f(b,g(b))),d). ** KEPT: 573 (142,9,27,150) -EQUAL(f(g(l(d,d)),l(d,d)),f(a,c)). ** KEPT: 574 (142,9,24,150) -EQUAL(f(g(l(d,d)),g(b)),f(a,c)). ** KEPT: 575 (142,9,24,15) -EQUAL(f(g(l(d,d)),g(b)),d). ** KEPT: 576 (142,9,23,150) -EQUAL(f(g(l(d,d)),f(b,e)),f(a,c)). ** KEPT: 577 (142,9,23,15) -EQUAL(f(g(l(d,d)),f(b,e)),d). ** KEPT: 578 (142,9,22,150) -EQUAL(f(g(l(d,d)),f(e,b)),f(a,c)). ** KEPT: 579 (142,9,22,15) -EQUAL(f(g(l(d,d)),f(e,b)),d). ** KEPT: 580 (142,9,21,150) -EQUAL(f(g(l(d,d)),f(b,b)),f(a,c)). ** KEPT: 581 (142,9,21,15) -EQUAL(f(g(l(d,d)),f(b,b)),d). ** KEPT: 582 (142,9,12,150) -EQUAL(f(g(l(d,d)),b),f(a,c)). ** KEPT: 583 (142,9,12,15) -EQUAL(f(g(l(d,d)),b),d). ** KEPT: 584 (142,9,7,150) -EQUAL(f(g(l(d,d)),e),f(a,c)). ** KEPT: 585 (142,9,7,15) -EQUAL(f(g(l(d,d)),e),d). ** KEPT: 586 (142,9,303,6) O(f(g(l(d,d)),f(e,e))). ** KEPT: 587 (142,9,41,6) O(f(g(l(d,d)),f(g(b),e))). ** KEPT: 588 (142,9,40,6) O(f(g(l(d,d)),f(g(b),b))). ** KEPT: 589 (142,9,37,6) O(f(g(l(d,d)),f(e,g(b)))). ** KEPT: 590 (142,9,36,6) O(f(g(l(d,d)),f(b,g(b)))). ** KEPT: 591 (142,9,27,6) O(f(g(l(d,d)),l(d,d))). ** KEPT: 592 (142,9,24,6) O(f(g(l(d,d)),g(b))). ** KEPT: 593 (142,9,23,6) O(f(g(l(d,d)),f(b,e))). ** KEPT: 594 (142,9,22,6) O(f(g(l(d,d)),f(e,b))). ** KEPT: 595 (142,9,21,6) O(f(g(l(d,d)),f(b,b))). ** KEPT: 596 (142,9,12,6) O(f(g(l(d,d)),b)). ** KEPT: 597 (142,9,7,6) O(f(g(l(d,d)),e)). ** KEPT: 598 (14,142) O(g(l(f(a,c),d))). ** KEPT: 599 (14,142) O(g(l(d,f(a,c)))). new given clause: 146 (14,83) -EQUAL(f(a,c),e). ** KEPT: 600 (4,146) -EQUAL(f(x,g(x)),f(a,c)). ** KEPT: 601 (3,146) -EQUAL(f(g(x),x),f(a,c)). 600 back subsumes: 531 (142,9,27,150) -EQUAL(f(l(d,d),g(l(d,d))),f(a,c)). 600 back subsumes: 190 (150,9,12,24) -EQUAL(f(b,g(b)),f(a,c)). 601 back subsumes: 573 (142,9,27,150) -EQUAL(f(g(l(d,d)),l(d,d)),f(a,c)). 601 back subsumes: 166 (150,9,24,12) -EQUAL(f(g(b),b),f(a,c)). new given clause: 147 (14,42) -EQUAL(f(a,c),b). new given clause: 13 EQUAL(f(b,g(a)),c). ** KEPT: 602 (13,5) EQUAL(f(f(x,b),g(a)),f(x,c)). ** KEPT: 603 (13,9) -O(b) | -O(g(a)) | -EQUAL(c,x) | O(x). ** KEPT: 604 (13,5) EQUAL(f(b,f(g(a),x)),f(c,x)). ** KEPT: 605 (13,150) -O(f(a,f(b,g(a)))). ** KEPT: 606 (13,147) -EQUAL(f(a,f(b,g(a))),b). ** KEPT: 607 (13,146) -EQUAL(f(a,f(b,g(a))),e). ** KEPT: 608 (13,14) EQUAL(f(a,f(b,g(a))),d). ---> New Demodulator: 609 (608) EQUAL(f(a,f(b,g(a))),d). >>>> Starting back demodulation with: 609 (608) EQUAL(f(a,f(b,g(a))),d). >> back demodulating: 605 (13,150) -O(f(a,f(b,g(a)))). >> back demodulating: 606 (13,147) -EQUAL(f(a,f(b,g(a))),b). >> back demodulating: 607 (13,146) -EQUAL(f(a,f(b,g(a))),e). new given clause: 34 (24,9,7,15) -EQUAL(f(e,g(b)),d). ** KEPT: 610 (4,34) -EQUAL(f(f(x,g(x)),g(b)),d). ** KEPT: 611 (3,34) -EQUAL(f(f(g(x),x),g(b)),d). 610 back subsumes: 236 (36,9,24,15) -EQUAL(f(f(b,g(b)),g(b)),d). 611 back subsumes: 424 (40,9,24,15) -EQUAL(f(f(g(b),b),g(b)),d). new given clause: 35 (24,9,24,6) O(f(g(b),g(b))). ** KEPT: 612 (35,9,303,150) -EQUAL(f(f(e,e),f(g(b),g(b))),f(a,c)). ** KEPT: 613 (35,9,303,15) -EQUAL(f(f(e,e),f(g(b),g(b))),d). ** KEPT: 614 (35,9,142,150) -EQUAL(f(g(l(d,d)),f(g(b),g(b))),f(a,c)). ** KEPT: 615 (35,9,142,15) -EQUAL(f(g(l(d,d)),f(g(b),g(b))),d). ** KEPT: 616 (35,9,41,150) -EQUAL(f(f(g(b),e),f(g(b),g(b))),f(a,c)). ** KEPT: 617 (35,9,41,15) -EQUAL(f(f(g(b),e),f(g(b),g(b))),d). ** KEPT: 618 (35,9,40,150) -EQUAL(f(f(g(b),b),f(g(b),g(b))),f(a,c)). ** KEPT: 619 (35,9,40,15) -EQUAL(f(f(g(b),b),f(g(b),g(b))),d). ** KEPT: 620 (35,9,37,150) -EQUAL(f(f(e,g(b)),f(g(b),g(b))),f(a,c)). ** KEPT: 621 (35,9,37,15) -EQUAL(f(f(e,g(b)),f(g(b),g(b))),d). ** KEPT: 622 (35,9,36,150) -EQUAL(f(f(b,g(b)),f(g(b),g(b))),f(a,c)). ** KEPT: 623 (35,9,36,15) -EQUAL(f(f(b,g(b)),f(g(b),g(b))),d). ** KEPT: 624 (35,9,35,150) -EQUAL(f(f(g(b),g(b)),f(g(b),g(b))),f(a,c)). ** KEPT: 625 (35,9,35,15) -EQUAL(f(f(g(b),g(b)),f(g(b),g(b))),d). ** KEPT: 626 (35,9,27,150) -EQUAL(f(l(d,d),f(g(b),g(b))),f(a,c)). ** KEPT: 627 (35,9,27,15) -EQUAL(f(l(d,d),f(g(b),g(b))),d). ** KEPT: 628 (35,9,24,150) -EQUAL(f(g(b),f(g(b),g(b))),f(a,c)). ** KEPT: 629 (35,9,24,15) -EQUAL(f(g(b),f(g(b),g(b))),d). ** KEPT: 630 (35,9,23,150) -EQUAL(f(f(b,e),f(g(b),g(b))),f(a,c)). ** KEPT: 631 (35,9,23,15) -EQUAL(f(f(b,e),f(g(b),g(b))),d). ** KEPT: 632 (35,9,22,150) -EQUAL(f(f(e,b),f(g(b),g(b))),f(a,c)). ** KEPT: 633 (35,9,22,15) -EQUAL(f(f(e,b),f(g(b),g(b))),d). ** KEPT: 634 (35,9,21,150) -EQUAL(f(f(b,b),f(g(b),g(b))),f(a,c)). ** KEPT: 635 (35,9,21,15) -EQUAL(f(f(b,b),f(g(b),g(b))),d). ** KEPT: 636 (35,9,7,150) -EQUAL(f(e,f(g(b),g(b))),f(a,c)). ** KEPT: 637 (35,9,7,15) -EQUAL(f(e,f(g(b),g(b))),d). ** KEPT: 638 (35,9,303,6) O(f(f(e,e),f(g(b),g(b)))). ** KEPT: 639 (35,9,303,5) O(f(e,f(e,f(g(b),g(b))))). ** KEPT: 640 (35,9,142,6) O(f(g(l(d,d)),f(g(b),g(b)))). ** KEPT: 641 (35,9,41,6) O(f(f(g(b),e),f(g(b),g(b)))). ** KEPT: 642 (35,9,41,5) O(f(g(b),f(e,f(g(b),g(b))))). ** KEPT: 643 (35,9,40,6) O(f(f(g(b),b),f(g(b),g(b)))). ** KEPT: 644 (35,9,37,6) O(f(f(e,g(b)),f(g(b),g(b)))). ** KEPT: 645 (35,9,37,5) O(f(e,f(g(b),f(g(b),g(b))))). ** KEPT: 646 (35,9,36,6) O(f(f(b,g(b)),f(g(b),g(b)))). ** KEPT: 647 (35,9,35,6) O(f(f(g(b),g(b)),f(g(b),g(b)))). ** KEPT: 648 (35,9,35,5) O(f(g(b),f(g(b),f(g(b),g(b))))). ** KEPT: 649 (35,9,27,6) O(f(l(d,d),f(g(b),g(b)))). ** KEPT: 650 (35,9,24,6) O(f(g(b),f(g(b),g(b)))). ** KEPT: 651 (35,9,23,6) O(f(f(b,e),f(g(b),g(b)))). ** KEPT: 652 (35,9,23,5) O(f(b,f(e,f(g(b),g(b))))). ** KEPT: 653 (35,9,22,6) O(f(f(e,b),f(g(b),g(b)))). ** KEPT: 654 (35,9,21,6) O(f(f(b,b),f(g(b),g(b)))). ** KEPT: 655 (35,9,303,150) -EQUAL(f(f(g(b),g(b)),f(e,e)),f(a,c)). ** KEPT: 656 (35,9,303,15) -EQUAL(f(f(g(b),g(b)),f(e,e)),d). ** KEPT: 657 (35,9,142,150) -EQUAL(f(f(g(b),g(b)),g(l(d,d))),f(a,c)). ** KEPT: 658 (35,9,142,15) -EQUAL(f(f(g(b),g(b)),g(l(d,d))),d). ** KEPT: 659 (35,9,41,150) -EQUAL(f(f(g(b),g(b)),f(g(b),e)),f(a,c)). ** KEPT: 660 (35,9,41,15) -EQUAL(f(f(g(b),g(b)),f(g(b),e)),d). ** KEPT: 661 (35,9,40,150) -EQUAL(f(f(g(b),g(b)),f(g(b),b)),f(a,c)). ** KEPT: 662 (35,9,40,15) -EQUAL(f(f(g(b),g(b)),f(g(b),b)),d). ** KEPT: 663 (35,9,37,150) -EQUAL(f(f(g(b),g(b)),f(e,g(b))),f(a,c)). ** KEPT: 664 (35,9,37,15) -EQUAL(f(f(g(b),g(b)),f(e,g(b))),d). ** KEPT: 665 (35,9,36,150) -EQUAL(f(f(g(b),g(b)),f(b,g(b))),f(a,c)). ** KEPT: 666 (35,9,36,15) -EQUAL(f(f(g(b),g(b)),f(b,g(b))),d). ** KEPT: 667 (35,9,27,150) -EQUAL(f(f(g(b),g(b)),l(d,d)),f(a,c)). ** KEPT: 668 (35,9,27,15) -EQUAL(f(f(g(b),g(b)),l(d,d)),d). ** KEPT: 669 (35,9,24,150) -EQUAL(f(f(g(b),g(b)),g(b)),f(a,c)). ** KEPT: 670 (35,9,24,15) -EQUAL(f(f(g(b),g(b)),g(b)),d). ** KEPT: 671 (35,9,23,150) -EQUAL(f(f(g(b),g(b)),f(b,e)),f(a,c)). ** KEPT: 672 (35,9,23,15) -EQUAL(f(f(g(b),g(b)),f(b,e)),d). ** KEPT: 673 (35,9,22,150) -EQUAL(f(f(g(b),g(b)),f(e,b)),f(a,c)). ** KEPT: 674 (35,9,22,15) -EQUAL(f(f(g(b),g(b)),f(e,b)),d). ** KEPT: 675 (35,9,21,150) -EQUAL(f(f(g(b),g(b)),f(b,b)),f(a,c)). ** KEPT: 676 (35,9,21,15) -EQUAL(f(f(g(b),g(b)),f(b,b)),d). ** KEPT: 677 (35,9,12,150) -EQUAL(f(f(g(b),g(b)),b),f(a,c)). ** KEPT: 678 (35,9,12,15) -EQUAL(f(f(g(b),g(b)),b),d). ** KEPT: 679 (35,9,7,150) -EQUAL(f(f(g(b),g(b)),e),f(a,c)). ** KEPT: 680 (35,9,7,15) -EQUAL(f(f(g(b),g(b)),e),d). ** KEPT: 681 (35,9,303,6) O(f(f(g(b),g(b)),f(e,e))). ** KEPT: 682 (35,9,303,5) O(f(g(b),f(g(b),f(e,e)))). ** KEPT: 683 (35,9,142,6) O(f(f(g(b),g(b)),g(l(d,d)))). ** KEPT: 684 (35,9,142,5) O(f(g(b),f(g(b),g(l(d,d))))). ** KEPT: 685 (35,9,41,6) O(f(f(g(b),g(b)),f(g(b),e))). ** KEPT: 686 (35,9,41,5) O(f(g(b),f(g(b),f(g(b),e)))). ** KEPT: 687 (35,9,40,6) O(f(f(g(b),g(b)),f(g(b),b))). ** KEPT: 688 (35,9,40,5) O(f(g(b),f(g(b),f(g(b),b)))). ** KEPT: 689 (35,9,37,6) O(f(f(g(b),g(b)),f(e,g(b)))). ** KEPT: 690 (35,9,37,5) O(f(g(b),f(g(b),f(e,g(b))))). ** KEPT: 691 (35,9,36,6) O(f(f(g(b),g(b)),f(b,g(b)))). ** KEPT: 692 (35,9,27,6) O(f(f(g(b),g(b)),l(d,d))). ** KEPT: 693 (35,9,27,5) O(f(g(b),f(g(b),l(d,d)))). ** KEPT: 694 (35,9,24,6) O(f(f(g(b),g(b)),g(b))). ** KEPT: 695 (35,9,23,6) O(f(f(g(b),g(b)),f(b,e))). ** KEPT: 696 (35,9,22,6) O(f(f(g(b),g(b)),f(e,b))). ** KEPT: 697 (35,9,22,5) O(f(g(b),f(g(b),f(e,b)))). ** KEPT: 698 (35,9,21,6) O(f(f(g(b),g(b)),f(b,b))). ** KEPT: 699 (35,9,12,6) O(f(f(g(b),g(b)),b)). ** KEPT: 700 (35,9,7,6) O(f(f(g(b),g(b)),e)). new given clause: 39 (24,9,7,15) -EQUAL(f(g(b),e),d). ** KEPT: 701 (4,39) -EQUAL(f(g(b),f(x,g(x))),d). ** KEPT: 702 (3,39) -EQUAL(f(g(b),f(g(x),x)),d). 702 back subsumes: 395 (40,9,24,15) -EQUAL(f(g(b),f(g(b),b)),d). new given clause: 48 (21,9,12,6) O(f(b,f(b,b))). ** KEPT: 703 (48,9,303,150) -EQUAL(f(f(e,e),f(b,f(b,b))),f(a,c)). ** KEPT: 704 (48,9,303,15) -EQUAL(f(f(e,e),f(b,f(b,b))),d). ** KEPT: 705 (48,9,142,150) -EQUAL(f(g(l(d,d)),f(b,f(b,b))),f(a,c)). ** KEPT: 706 (48,9,142,15) -EQUAL(f(g(l(d,d)),f(b,f(b,b))),d). ** KEPT: 707 (48,9,48,150) -EQUAL(f(f(b,f(b,b)),f(b,f(b,b))),f(a,c)). ** KEPT: 708 (48,9,48,15) -EQUAL(f(f(b,f(b,b)),f(b,f(b,b))),d). ** KEPT: 709 (48,9,41,150) -EQUAL(f(f(g(b),e),f(b,f(b,b))),f(a,c)). ** KEPT: 710 (48,9,41,15) -EQUAL(f(f(g(b),e),f(b,f(b,b))),d). ** KEPT: 711 (48,9,40,150) -EQUAL(f(f(g(b),b),f(b,f(b,b))),f(a,c)). ** KEPT: 712 (48,9,40,15) -EQUAL(f(f(g(b),b),f(b,f(b,b))),d). ** KEPT: 713 (48,9,37,150) -EQUAL(f(f(e,g(b)),f(b,f(b,b))),f(a,c)). ** KEPT: 714 (48,9,37,15) -EQUAL(f(f(e,g(b)),f(b,f(b,b))),d). ** KEPT: 715 (48,9,36,150) -EQUAL(f(f(b,g(b)),f(b,f(b,b))),f(a,c)). ** KEPT: 716 (48,9,36,15) -EQUAL(f(f(b,g(b)),f(b,f(b,b))),d). ** KEPT: 717 (48,9,35,150) -EQUAL(f(f(g(b),g(b)),f(b,f(b,b))),f(a,c)). ** KEPT: 718 (48,9,35,15) -EQUAL(f(f(g(b),g(b)),f(b,f(b,b))),d). ** KEPT: 719 (48,9,27,150) -EQUAL(f(l(d,d),f(b,f(b,b))),f(a,c)). ** KEPT: 720 (48,9,27,15) -EQUAL(f(l(d,d),f(b,f(b,b))),d). ** KEPT: 721 (48,9,23,150) -EQUAL(f(f(b,e),f(b,f(b,b))),f(a,c)). ** KEPT: 722 (48,9,23,15) -EQUAL(f(f(b,e),f(b,f(b,b))),d). ** KEPT: 723 (48,9,22,150) -EQUAL(f(f(e,b),f(b,f(b,b))),f(a,c)). ** KEPT: 724 (48,9,22,15) -EQUAL(f(f(e,b),f(b,f(b,b))),d). ** KEPT: 725 (48,9,21,150) -EQUAL(f(f(b,b),f(b,f(b,b))),f(a,c)). ** KEPT: 726 (48,9,21,15) -EQUAL(f(f(b,b),f(b,f(b,b))),d). ** KEPT: 727 (48,9,12,150) -EQUAL(f(b,f(b,f(b,b))),f(a,c)). ** KEPT: 728 (48,9,12,15) -EQUAL(f(b,f(b,f(b,b))),d). ** KEPT: 729 (48,9,7,150) -EQUAL(f(e,f(b,f(b,b))),f(a,c)). ** KEPT: 730 (48,9,7,15) -EQUAL(f(e,f(b,f(b,b))),d). ** KEPT: 731 (48,9,303,6) O(f(f(e,e),f(b,f(b,b)))). ** KEPT: 732 (48,9,303,5) O(f(e,f(e,f(b,f(b,b))))). ** KEPT: 733 (48,9,142,6) O(f(g(l(d,d)),f(b,f(b,b)))). ** KEPT: 734 (48,9,48,6) O(f(f(b,f(b,b)),f(b,f(b,b)))). ** KEPT: 735 (48,9,48,5) O(f(b,f(f(b,b),f(b,f(b,b))))). ** KEPT: 736 (48,9,41,6) O(f(f(g(b),e),f(b,f(b,b)))). ** KEPT: 737 (48,9,41,5) O(f(g(b),f(e,f(b,f(b,b))))). ** KEPT: 738 (48,9,40,6) O(f(f(g(b),b),f(b,f(b,b)))). ** KEPT: 739 (48,9,37,6) O(f(f(e,g(b)),f(b,f(b,b)))). ** KEPT: 740 (48,9,36,6) O(f(f(b,g(b)),f(b,f(b,b)))). ** KEPT: 741 (48,9,35,6) O(f(f(g(b),g(b)),f(b,f(b,b)))). ** KEPT: 742 (48,9,27,6) O(f(l(d,d),f(b,f(b,b)))). ** KEPT: 743 (48,9,23,6) O(f(f(b,e),f(b,f(b,b)))). ** KEPT: 744 (48,9,23,5) O(f(b,f(e,f(b,f(b,b))))). ** KEPT: 745 (48,9,22,6) O(f(f(e,b),f(b,f(b,b)))). ** KEPT: 746 (48,9,22,5) O(f(e,f(b,f(b,f(b,b))))). ** KEPT: 747 (48,9,21,6) O(f(f(b,b),f(b,f(b,b)))). ** KEPT: 748 (48,9,21,5) O(f(b,f(b,f(b,f(b,b))))). ** KEPT: 749 (48,9,303,150) -EQUAL(f(f(b,f(b,b)),f(e,e)),f(a,c)). ** KEPT: 750 (48,9,303,15) -EQUAL(f(f(b,f(b,b)),f(e,e)),d). ** KEPT: 751 (48,9,142,150) -EQUAL(f(f(b,f(b,b)),g(l(d,d))),f(a,c)). ** KEPT: 752 (48,9,142,15) -EQUAL(f(f(b,f(b,b)),g(l(d,d))),d). ** KEPT: 753 (48,9,41,150) -EQUAL(f(f(b,f(b,b)),f(g(b),e)),f(a,c)). ** KEPT: 754 (48,9,41,15) -EQUAL(f(f(b,f(b,b)),f(g(b),e)),d). ** KEPT: 755 (48,9,40,150) -EQUAL(f(f(b,f(b,b)),f(g(b),b)),f(a,c)). ** KEPT: 756 (48,9,40,15) -EQUAL(f(f(b,f(b,b)),f(g(b),b)),d). ** KEPT: 757 (48,9,37,150) -EQUAL(f(f(b,f(b,b)),f(e,g(b))),f(a,c)). ** KEPT: 758 (48,9,37,15) -EQUAL(f(f(b,f(b,b)),f(e,g(b))),d). ** KEPT: 759 (48,9,36,150) -EQUAL(f(f(b,f(b,b)),f(b,g(b))),f(a,c)). ** KEPT: 760 (48,9,36,15) -EQUAL(f(f(b,f(b,b)),f(b,g(b))),d). ** KEPT: 761 (48,9,35,150) -EQUAL(f(f(b,f(b,b)),f(g(b),g(b))),f(a,c)). ** KEPT: 762 (48,9,35,15) -EQUAL(f(f(b,f(b,b)),f(g(b),g(b))),d). ** KEPT: 763 (48,9,27,150) -EQUAL(f(f(b,f(b,b)),l(d,d)),f(a,c)). ** KEPT: 764 (48,9,27,15) -EQUAL(f(f(b,f(b,b)),l(d,d)),d). ** KEPT: 765 (48,9,24,150) -EQUAL(f(f(b,f(b,b)),g(b)),f(a,c)). ** KEPT: 766 (48,9,24,15) -EQUAL(f(f(b,f(b,b)),g(b)),d). ** KEPT: 767 (48,9,23,150) -EQUAL(f(f(b,f(b,b)),f(b,e)),f(a,c)). ** KEPT: 768 (48,9,23,15) -EQUAL(f(f(b,f(b,b)),f(b,e)),d). ** KEPT: 769 (48,9,22,150) -EQUAL(f(f(b,f(b,b)),f(e,b)),f(a,c)). ** KEPT: 770 (48,9,22,15) -EQUAL(f(f(b,f(b,b)),f(e,b)),d). ** KEPT: 771 (48,9,21,150) -EQUAL(f(f(b,f(b,b)),f(b,b)),f(a,c)). ** KEPT: 772 (48,9,21,15) -EQUAL(f(f(b,f(b,b)),f(b,b)),d). ** KEPT: 773 (48,9,12,150) -EQUAL(f(f(b,f(b,b)),b),f(a,c)). ** KEPT: 774 (48,9,12,15) -EQUAL(f(f(b,f(b,b)),b),d). ** KEPT: 775 (48,9,7,150) -EQUAL(f(f(b,f(b,b)),e),f(a,c)). ** KEPT: 776 (48,9,7,15) -EQUAL(f(f(b,f(b,b)),e),d). ** KEPT: 777 (48,9,303,6) O(f(f(b,f(b,b)),f(e,e))). ** KEPT: 778 (48,9,303,5) O(f(b,f(f(b,b),f(e,e)))). ** KEPT: 779 (48,9,142,6) O(f(f(b,f(b,b)),g(l(d,d)))). ** KEPT: 780 (48,9,142,5) O(f(b,f(f(b,b),g(l(d,d))))). ** KEPT: 781 (48,9,41,6) O(f(f(b,f(b,b)),f(g(b),e))). ** KEPT: 782 (48,9,41,5) O(f(b,f(f(b,b),f(g(b),e)))). ** KEPT: 783 (48,9,40,6) O(f(f(b,f(b,b)),f(g(b),b))). ** KEPT: 784 (48,9,40,5) O(f(b,f(f(b,b),f(g(b),b)))). ** KEPT: 785 (48,9,37,6) O(f(f(b,f(b,b)),f(e,g(b)))). ** KEPT: 786 (48,9,37,5) O(f(b,f(f(b,b),f(e,g(b))))). ** KEPT: 787 (48,9,36,6) O(f(f(b,f(b,b)),f(b,g(b)))). ** KEPT: 788 (48,9,36,5) O(f(b,f(f(b,b),f(b,g(b))))). ** KEPT: 789 (48,9,35,6) O(f(f(b,f(b,b)),f(g(b),g(b)))). ** KEPT: 790 (48,9,35,5) O(f(b,f(f(b,b),f(g(b),g(b))))). ** KEPT: 791 (48,9,27,6) O(f(f(b,f(b,b)),l(d,d))). ** KEPT: 792 (48,9,27,5) O(f(b,f(f(b,b),l(d,d)))). ** KEPT: 793 (48,9,24,6) O(f(f(b,f(b,b)),g(b))). ** KEPT: 794 (48,9,24,5) O(f(b,f(f(b,b),g(b)))). ** KEPT: 795 (48,9,23,6) O(f(f(b,f(b,b)),f(b,e))). ** KEPT: 796 (48,9,23,5) O(f(b,f(f(b,b),f(b,e)))). ** KEPT: 797 (48,9,22,6) O(f(f(b,f(b,b)),f(e,b))). ** KEPT: 798 (48,9,22,5) O(f(b,f(f(b,b),f(e,b)))). ** KEPT: 799 (48,9,21,6) O(f(f(b,f(b,b)),f(b,b))). ** KEPT: 800 (48,9,21,5) O(f(b,f(f(b,b),f(b,b)))). ** KEPT: 801 (48,9,12,6) O(f(f(b,f(b,b)),b)). ** KEPT: 802 (48,9,12,5) O(f(b,f(f(b,b),b))). ** KEPT: 803 (48,9,7,6) O(f(f(b,f(b,b)),e)). ** KEPT: 804 (48,9,7,5) O(f(b,f(f(b,b),e))). new given clause: 49 (21,9,7,6) O(f(e,f(b,b))). ** KEPT: 805 (49,9,303,150) -EQUAL(f(f(e,e),f(e,f(b,b))),f(a,c)). ** KEPT: 806 (49,9,303,15) -EQUAL(f(f(e,e),f(e,f(b,b))),d). ** KEPT: 807 (49,9,142,150) -EQUAL(f(g(l(d,d)),f(e,f(b,b))),f(a,c)). ** KEPT: 808 (49,9,142,15) -EQUAL(f(g(l(d,d)),f(e,f(b,b))),d). ** KEPT: 809 (49,9,49,150) -EQUAL(f(f(e,f(b,b)),f(e,f(b,b))),f(a,c)). ** KEPT: 810 (49,9,49,15) -EQUAL(f(f(e,f(b,b)),f(e,f(b,b))),d). ** KEPT: 811 (49,9,48,150) -EQUAL(f(f(b,f(b,b)),f(e,f(b,b))),f(a,c)). ** KEPT: 812 (49,9,48,15) -EQUAL(f(f(b,f(b,b)),f(e,f(b,b))),d). ** KEPT: 813 (49,9,41,150) -EQUAL(f(f(g(b),e),f(e,f(b,b))),f(a,c)). ** KEPT: 814 (49,9,41,15) -EQUAL(f(f(g(b),e),f(e,f(b,b))),d). ** KEPT: 815 (49,9,40,150) -EQUAL(f(f(g(b),b),f(e,f(b,b))),f(a,c)). ** KEPT: 816 (49,9,40,15) -EQUAL(f(f(g(b),b),f(e,f(b,b))),d). ** KEPT: 817 (49,9,37,150) -EQUAL(f(f(e,g(b)),f(e,f(b,b))),f(a,c)). ** KEPT: 818 (49,9,37,15) -EQUAL(f(f(e,g(b)),f(e,f(b,b))),d). ** KEPT: 819 (49,9,36,150) -EQUAL(f(f(b,g(b)),f(e,f(b,b))),f(a,c)). ** KEPT: 820 (49,9,36,15) -EQUAL(f(f(b,g(b)),f(e,f(b,b))),d). ** KEPT: 821 (49,9,35,150) -EQUAL(f(f(g(b),g(b)),f(e,f(b,b))),f(a,c)). ** KEPT: 822 (49,9,35,15) -EQUAL(f(f(g(b),g(b)),f(e,f(b,b))),d). ** KEPT: 823 (49,9,27,150) -EQUAL(f(l(d,d),f(e,f(b,b))),f(a,c)). ** KEPT: 824 (49,9,27,15) -EQUAL(f(l(d,d),f(e,f(b,b))),d). ** KEPT: 825 (49,9,24,150) -EQUAL(f(g(b),f(e,f(b,b))),f(a,c)). ** KEPT: 826 (49,9,24,15) -EQUAL(f(g(b),f(e,f(b,b))),d). ** KEPT: 827 (49,9,23,150) -EQUAL(f(f(b,e),f(e,f(b,b))),f(a,c)). ** KEPT: 828 (49,9,23,15) -EQUAL(f(f(b,e),f(e,f(b,b))),d). ** KEPT: 829 (49,9,22,150) -EQUAL(f(f(e,b),f(e,f(b,b))),f(a,c)). ** KEPT: 830 (49,9,22,15) -EQUAL(f(f(e,b),f(e,f(b,b))),d). ** KEPT: 831 (49,9,21,150) -EQUAL(f(f(b,b),f(e,f(b,b))),f(a,c)). ** KEPT: 832 (49,9,21,15) -EQUAL(f(f(b,b),f(e,f(b,b))),d). ** KEPT: 833 (49,9,12,150) -EQUAL(f(b,f(e,f(b,b))),f(a,c)). ** KEPT: 834 (49,9,12,15) -EQUAL(f(b,f(e,f(b,b))),d). ** KEPT: 835 (49,9,7,150) -EQUAL(f(e,f(e,f(b,b))),f(a,c)). ** KEPT: 836 (49,9,7,15) -EQUAL(f(e,f(e,f(b,b))),d). ** KEPT: 837 (49,9,303,6) O(f(f(e,e),f(e,f(b,b)))). ** KEPT: 838 (49,9,303,5) O(f(e,f(e,f(e,f(b,b))))). ** KEPT: 839 (49,9,142,6) O(f(g(l(d,d)),f(e,f(b,b)))). ** KEPT: 840 (49,9,49,6) O(f(f(e,f(b,b)),f(e,f(b,b)))). ** KEPT: 841 (49,9,49,5) O(f(e,f(f(b,b),f(e,f(b,b))))). ** KEPT: 842 (49,9,48,6) O(f(f(b,f(b,b)),f(e,f(b,b)))). ** KEPT: 843 (49,9,48,5) O(f(b,f(f(b,b),f(e,f(b,b))))). ** KEPT: 844 (49,9,41,6) O(f(f(g(b),e),f(e,f(b,b)))). ** KEPT: 845 (49,9,41,5) O(f(g(b),f(e,f(e,f(b,b))))). ** KEPT: 846 (49,9,40,6) O(f(f(g(b),b),f(e,f(b,b)))). ** KEPT: 847 (49,9,37,6) O(f(f(e,g(b)),f(e,f(b,b)))). ** KEPT: 848 (49,9,37,5) O(f(e,f(g(b),f(e,f(b,b))))). ** KEPT: 849 (49,9,36,6) O(f(f(b,g(b)),f(e,f(b,b)))). ** KEPT: 850 (49,9,35,6) O(f(f(g(b),g(b)),f(e,f(b,b)))). ** KEPT: 851 (49,9,35,5) O(f(g(b),f(g(b),f(e,f(b,b))))). ** KEPT: 852 (49,9,27,6) O(f(l(d,d),f(e,f(b,b)))). ** KEPT: 853 (49,9,23,6) O(f(f(b,e),f(e,f(b,b)))). ** KEPT: 854 (49,9,23,5) O(f(b,f(e,f(e,f(b,b))))). ** KEPT: 855 (49,9,22,6) O(f(f(e,b),f(e,f(b,b)))). ** KEPT: 856 (49,9,22,5) O(f(e,f(b,f(e,f(b,b))))). ** KEPT: 857 (49,9,21,6) O(f(f(b,b),f(e,f(b,b)))). ** KEPT: 858 (49,9,21,5) O(f(b,f(b,f(e,f(b,b))))). ** KEPT: 859 (49,9,303,150) -EQUAL(f(f(e,f(b,b)),f(e,e)),f(a,c)). ** KEPT: 860 (49,9,303,15) -EQUAL(f(f(e,f(b,b)),f(e,e)),d). ** KEPT: 861 (49,9,142,150) -EQUAL(f(f(e,f(b,b)),g(l(d,d))),f(a,c)). ** KEPT: 862 (49,9,142,15) -EQUAL(f(f(e,f(b,b)),g(l(d,d))),d). ** KEPT: 863 (49,9,48,150) -EQUAL(f(f(e,f(b,b)),f(b,f(b,b))),f(a,c)). ** KEPT: 864 (49,9,48,15) -EQUAL(f(f(e,f(b,b)),f(b,f(b,b))),d). ** KEPT: 865 (49,9,41,150) -EQUAL(f(f(e,f(b,b)),f(g(b),e)),f(a,c)). ** KEPT: 866 (49,9,41,15) -EQUAL(f(f(e,f(b,b)),f(g(b),e)),d). ** KEPT: 867 (49,9,40,150) -EQUAL(f(f(e,f(b,b)),f(g(b),b)),f(a,c)). ** KEPT: 868 (49,9,40,15) -EQUAL(f(f(e,f(b,b)),f(g(b),b)),d). ** KEPT: 869 (49,9,37,150) -EQUAL(f(f(e,f(b,b)),f(e,g(b))),f(a,c)). ** KEPT: 870 (49,9,37,15) -EQUAL(f(f(e,f(b,b)),f(e,g(b))),d). ** KEPT: 871 (49,9,36,150) -EQUAL(f(f(e,f(b,b)),f(b,g(b))),f(a,c)). ** KEPT: 872 (49,9,36,15) -EQUAL(f(f(e,f(b,b)),f(b,g(b))),d). ** KEPT: 873 (49,9,35,150) -EQUAL(f(f(e,f(b,b)),f(g(b),g(b))),f(a,c)). ** KEPT: 874 (49,9,35,15) -EQUAL(f(f(e,f(b,b)),f(g(b),g(b))),d). ** KEPT: 875 (49,9,27,150) -EQUAL(f(f(e,f(b,b)),l(d,d)),f(a,c)). ** KEPT: 876 (49,9,27,15) -EQUAL(f(f(e,f(b,b)),l(d,d)),d). ** KEPT: 877 (49,9,24,150) -EQUAL(f(f(e,f(b,b)),g(b)),f(a,c)). ** KEPT: 878 (49,9,24,15) -EQUAL(f(f(e,f(b,b)),g(b)),d). ** KEPT: 879 (49,9,23,150) -EQUAL(f(f(e,f(b,b)),f(b,e)),f(a,c)). ** KEPT: 880 (49,9,23,15) -EQUAL(f(f(e,f(b,b)),f(b,e)),d). ** KEPT: 881 (49,9,22,150) -EQUAL(f(f(e,f(b,b)),f(e,b)),f(a,c)). ** KEPT: 882 (49,9,22,15) -EQUAL(f(f(e,f(b,b)),f(e,b)),d). ** KEPT: 883 (49,9,21,150) -EQUAL(f(f(e,f(b,b)),f(b,b)),f(a,c)). ** KEPT: 884 (49,9,21,15) -EQUAL(f(f(e,f(b,b)),f(b,b)),d). ** KEPT: 885 (49,9,12,150) -EQUAL(f(f(e,f(b,b)),b),f(a,c)). ** KEPT: 886 (49,9,12,15) -EQUAL(f(f(e,f(b,b)),b),d). ** KEPT: 887 (49,9,7,150) -EQUAL(f(f(e,f(b,b)),e),f(a,c)). ** KEPT: 888 (49,9,7,15) -EQUAL(f(f(e,f(b,b)),e),d). ** KEPT: 889 (49,9,303,6) O(f(f(e,f(b,b)),f(e,e))). ** KEPT: 890 (49,9,303,5) O(f(e,f(f(b,b),f(e,e)))). ** KEPT: 891 (49,9,142,6) O(f(f(e,f(b,b)),g(l(d,d)))). ** KEPT: 892 (49,9,142,5) O(f(e,f(f(b,b),g(l(d,d))))). ** KEPT: 893 (49,9,48,6) O(f(f(e,f(b,b)),f(b,f(b,b)))). ** KEPT: 894 (49,9,48,5) O(f(e,f(f(b,b),f(b,f(b,b))))). ** KEPT: 895 (49,9,41,6) O(f(f(e,f(b,b)),f(g(b),e))). ** KEPT: 896 (49,9,41,5) O(f(e,f(f(b,b),f(g(b),e)))). ** KEPT: 897 (49,9,40,6) O(f(f(e,f(b,b)),f(g(b),b))). ** KEPT: 898 (49,9,40,5) O(f(e,f(f(b,b),f(g(b),b)))). ** KEPT: 899 (49,9,37,6) O(f(f(e,f(b,b)),f(e,g(b)))). ** KEPT: 900 (49,9,37,5) O(f(e,f(f(b,b),f(e,g(b))))). ** KEPT: 901 (49,9,36,6) O(f(f(e,f(b,b)),f(b,g(b)))). ** KEPT: 902 (49,9,36,5) O(f(e,f(f(b,b),f(b,g(b))))). ** KEPT: 903 (49,9,35,6) O(f(f(e,f(b,b)),f(g(b),g(b)))). ** KEPT: 904 (49,9,35,5) O(f(e,f(f(b,b),f(g(b),g(b))))). ** KEPT: 905 (49,9,27,6) O(f(f(e,f(b,b)),l(d,d))). ** KEPT: 906 (49,9,27,5) O(f(e,f(f(b,b),l(d,d)))). ** KEPT: 907 (49,9,24,6) O(f(f(e,f(b,b)),g(b))). ** KEPT: 908 (49,9,24,5) O(f(e,f(f(b,b),g(b)))). ** KEPT: 909 (49,9,23,6) O(f(f(e,f(b,b)),f(b,e))). ** KEPT: 910 (49,9,23,5) O(f(e,f(f(b,b),f(b,e)))). ** KEPT: 911 (49,9,22,6) O(f(f(e,f(b,b)),f(e,b))). ** KEPT: 912 (49,9,22,5) O(f(e,f(f(b,b),f(e,b)))). ** KEPT: 913 (49,9,21,6) O(f(f(e,f(b,b)),f(b,b))). ** KEPT: 914 (49,9,21,5) O(f(e,f(f(b,b),f(b,b)))). ** KEPT: 915 (49,9,12,6) O(f(f(e,f(b,b)),b)). ** KEPT: 916 (49,9,12,5) O(f(e,f(f(b,b),b))). ** KEPT: 917 (49,9,7,6) O(f(f(e,f(b,b)),e)). ** KEPT: 918 (49,9,7,5) O(f(e,f(f(b,b),e))). ** KEPT: 919 (4,49) O(f(f(x,g(x)),f(b,b))). ** KEPT: 920 (3,49) O(f(f(g(x),x),f(b,b))). 919 back subsumes: 249 (36,9,21,6) O(f(f(b,g(b)),f(b,b))). 920 back subsumes: 439 (40,9,21,6) O(f(f(g(b),b),f(b,b))). new given clause: 55 (21,9,12,6) O(f(f(b,b),b)). ** KEPT: 921 (55,9,303,150) -EQUAL(f(f(e,e),f(f(b,b),b)),f(a,c)). ** KEPT: 922 (55,9,303,15) -EQUAL(f(f(e,e),f(f(b,b),b)),d). ** KEPT: 923 (55,9,142,150) -EQUAL(f(g(l(d,d)),f(f(b,b),b)),f(a,c)). ** KEPT: 924 (55,9,142,15) -EQUAL(f(g(l(d,d)),f(f(b,b),b)),d). ** KEPT: 925 (55,9,55,150) -EQUAL(f(f(f(b,b),b),f(f(b,b),b)),f(a,c)). ** KEPT: 926 (55,9,55,15) -EQUAL(f(f(f(b,b),b),f(f(b,b),b)),d). ** KEPT: 927 (55,9,49,150) -EQUAL(f(f(e,f(b,b)),f(f(b,b),b)),f(a,c)). ** KEPT: 928 (55,9,49,15) -EQUAL(f(f(e,f(b,b)),f(f(b,b),b)),d). ** KEPT: 929 (55,9,48,150) -EQUAL(f(f(b,f(b,b)),f(f(b,b),b)),f(a,c)). ** KEPT: 930 (55,9,48,15) -EQUAL(f(f(b,f(b,b)),f(f(b,b),b)),d). ** KEPT: 931 (55,9,41,150) -EQUAL(f(f(g(b),e),f(f(b,b),b)),f(a,c)). ** KEPT: 932 (55,9,41,15) -EQUAL(f(f(g(b),e),f(f(b,b),b)),d). ** KEPT: 933 (55,9,40,150) -EQUAL(f(f(g(b),b),f(f(b,b),b)),f(a,c)). ** KEPT: 934 (55,9,40,15) -EQUAL(f(f(g(b),b),f(f(b,b),b)),d). ** KEPT: 935 (55,9,37,150) -EQUAL(f(f(e,g(b)),f(f(b,b),b)),f(a,c)). ** KEPT: 936 (55,9,37,15) -EQUAL(f(f(e,g(b)),f(f(b,b),b)),d). ** KEPT: 937 (55,9,36,150) -EQUAL(f(f(b,g(b)),f(f(b,b),b)),f(a,c)). ** KEPT: 938 (55,9,36,15) -EQUAL(f(f(b,g(b)),f(f(b,b),b)),d). ** KEPT: 939 (55,9,35,150) -EQUAL(f(f(g(b),g(b)),f(f(b,b),b)),f(a,c)). ** KEPT: 940 (55,9,35,15) -EQUAL(f(f(g(b),g(b)),f(f(b,b),b)),d). ** KEPT: 941 (55,9,27,150) -EQUAL(f(l(d,d),f(f(b,b),b)),f(a,c)). ** KEPT: 942 (55,9,27,15) -EQUAL(f(l(d,d),f(f(b,b),b)),d). ** KEPT: 943 (55,9,24,150) -EQUAL(f(g(b),f(f(b,b),b)),f(a,c)). ** KEPT: 944 (55,9,24,15) -EQUAL(f(g(b),f(f(b,b),b)),d). ** KEPT: 945 (55,9,23,150) -EQUAL(f(f(b,e),f(f(b,b),b)),f(a,c)). ** KEPT: 946 (55,9,23,15) -EQUAL(f(f(b,e),f(f(b,b),b)),d). ** KEPT: 947 (55,9,22,150) -EQUAL(f(f(e,b),f(f(b,b),b)),f(a,c)). ** KEPT: 948 (55,9,22,15) -EQUAL(f(f(e,b),f(f(b,b),b)),d). ** KEPT: 949 (55,9,21,150) -EQUAL(f(f(b,b),f(f(b,b),b)),f(a,c)). ** KEPT: 950 (55,9,21,15) -EQUAL(f(f(b,b),f(f(b,b),b)),d). ** KEPT: 951 (55,9,12,150) -EQUAL(f(b,f(f(b,b),b)),f(a,c)). ** KEPT: 952 (55,9,12,15) -EQUAL(f(b,f(f(b,b),b)),d). ** KEPT: 953 (55,9,7,150) -EQUAL(f(e,f(f(b,b),b)),f(a,c)). ** KEPT: 954 (55,9,7,15) -EQUAL(f(e,f(f(b,b),b)),d). ** KEPT: 955 (55,9,303,6) O(f(f(e,e),f(f(b,b),b))). ** KEPT: 956 (55,9,303,5) O(f(e,f(e,f(f(b,b),b)))). ** KEPT: 957 (55,9,142,6) O(f(g(l(d,d)),f(f(b,b),b))). ** KEPT: 958 (55,9,55,6) O(f(f(f(b,b),b),f(f(b,b),b))). ** KEPT: 959 (55,9,55,5) O(f(f(b,b),f(b,f(f(b,b),b)))). ** KEPT: 960 (55,9,49,6) O(f(f(e,f(b,b)),f(f(b,b),b))). ** KEPT: 961 (55,9,49,5) O(f(e,f(f(b,b),f(f(b,b),b)))). ** KEPT: 962 (55,9,48,6) O(f(f(b,f(b,b)),f(f(b,b),b))). ** KEPT: 963 (55,9,48,5) O(f(b,f(f(b,b),f(f(b,b),b)))). ** KEPT: 964 (55,9,41,6) O(f(f(g(b),e),f(f(b,b),b))). ** KEPT: 965 (55,9,41,5) O(f(g(b),f(e,f(f(b,b),b)))). ** KEPT: 966 (55,9,40,6) O(f(f(g(b),b),f(f(b,b),b))). ** KEPT: 967 (55,9,37,6) O(f(f(e,g(b)),f(f(b,b),b))). ** KEPT: 968 (55,9,37,5) O(f(e,f(g(b),f(f(b,b),b)))). ** KEPT: 969 (55,9,36,6) O(f(f(b,g(b)),f(f(b,b),b))). ** KEPT: 970 (55,9,35,6) O(f(f(g(b),g(b)),f(f(b,b),b))). ** KEPT: 971 (55,9,35,5) O(f(g(b),f(g(b),f(f(b,b),b)))). ** KEPT: 972 (55,9,27,6) O(f(l(d,d),f(f(b,b),b))). ** KEPT: 973 (55,9,24,6) O(f(g(b),f(f(b,b),b))). ** KEPT: 974 (55,9,23,6) O(f(f(b,e),f(f(b,b),b))). ** KEPT: 975 (55,9,23,5) O(f(b,f(e,f(f(b,b),b)))). ** KEPT: 976 (55,9,22,6) O(f(f(e,b),f(f(b,b),b))). ** KEPT: 977 (55,9,22,5) O(f(e,f(b,f(f(b,b),b)))). ** KEPT: 978 (55,9,21,6) O(f(f(b,b),f(f(b,b),b))). ** KEPT: 979 (55,9,21,5) O(f(b,f(b,f(f(b,b),b)))). ** KEPT: 980 (55,9,303,150) -EQUAL(f(f(f(b,b),b),f(e,e)),f(a,c)). ** KEPT: 981 (55,9,303,15) -EQUAL(f(f(f(b,b),b),f(e,e)),d). ** KEPT: 982 (55,9,142,150) -EQUAL(f(f(f(b,b),b),g(l(d,d))),f(a,c)). ** KEPT: 983 (55,9,142,15) -EQUAL(f(f(f(b,b),b),g(l(d,d))),d). ** KEPT: 984 (55,9,49,150) -EQUAL(f(f(f(b,b),b),f(e,f(b,b))),f(a,c)). ** KEPT: 985 (55,9,49,15) -EQUAL(f(f(f(b,b),b),f(e,f(b,b))),d). ** KEPT: 986 (55,9,48,150) -EQUAL(f(f(f(b,b),b),f(b,f(b,b))),f(a,c)). ** KEPT: 987 (55,9,48,15) -EQUAL(f(f(f(b,b),b),f(b,f(b,b))),d). ** KEPT: 988 (55,9,41,150) -EQUAL(f(f(f(b,b),b),f(g(b),e)),f(a,c)). ** KEPT: 989 (55,9,41,15) -EQUAL(f(f(f(b,b),b),f(g(b),e)),d). ** KEPT: 990 (55,9,40,150) -EQUAL(f(f(f(b,b),b),f(g(b),b)),f(a,c)). ** KEPT: 991 (55,9,40,15) -EQUAL(f(f(f(b,b),b),f(g(b),b)),d). ** KEPT: 992 (55,9,37,150) -EQUAL(f(f(f(b,b),b),f(e,g(b))),f(a,c)). ** KEPT: 993 (55,9,37,15) -EQUAL(f(f(f(b,b),b),f(e,g(b))),d). ** KEPT: 994 (55,9,36,150) -EQUAL(f(f(f(b,b),b),f(b,g(b))),f(a,c)). ** KEPT: 995 (55,9,36,15) -EQUAL(f(f(f(b,b),b),f(b,g(b))),d). ** KEPT: 996 (55,9,35,150) -EQUAL(f(f(f(b,b),b),f(g(b),g(b))),f(a,c)). ** KEPT: 997 (55,9,35,15) -EQUAL(f(f(f(b,b),b),f(g(b),g(b))),d). ** KEPT: 998 (55,9,27,150) -EQUAL(f(f(f(b,b),b),l(d,d)),f(a,c)). ** KEPT: 999 (55,9,27,15) -EQUAL(f(f(f(b,b),b),l(d,d)),d). ** KEPT: 1000 (55,9,24,150) -EQUAL(f(f(f(b,b),b),g(b)),f(a,c)). ** KEPT: 1001 (55,9,24,15) -EQUAL(f(f(f(b,b),b),g(b)),d). ** KEPT: 1002 (55,9,23,150) -EQUAL(f(f(f(b,b),b),f(b,e)),f(a,c)). ** KEPT: 1003 (55,9,23,15) -EQUAL(f(f(f(b,b),b),f(b,e)),d). ** KEPT: 1004 (55,9,22,150) -EQUAL(f(f(f(b,b),b),f(e,b)),f(a,c)). ** KEPT: 1005 (55,9,22,15) -EQUAL(f(f(f(b,b),b),f(e,b)),d). ** KEPT: 1006 (55,9,21,150) -EQUAL(f(f(f(b,b),b),f(b,b)),f(a,c)). ** KEPT: 1007 (55,9,21,15) -EQUAL(f(f(f(b,b),b),f(b,b)),d). ** KEPT: 1008 (55,9,12,150) -EQUAL(f(f(f(b,b),b),b),f(a,c)). ** KEPT: 1009 (55,9,12,15) -EQUAL(f(f(f(b,b),b),b),d). ** KEPT: 1010 (55,9,7,150) -EQUAL(f(f(f(b,b),b),e),f(a,c)). ** KEPT: 1011 (55,9,7,15) -EQUAL(f(f(f(b,b),b),e),d). ** KEPT: 1012 (55,9,303,6) O(f(f(f(b,b),b),f(e,e))). ** KEPT: 1013 (55,9,303,5) O(f(f(b,b),f(b,f(e,e)))). ** KEPT: 1014 (55,9,142,6) O(f(f(f(b,b),b),g(l(d,d)))). ** KEPT: 1015 (55,9,142,5) O(f(f(b,b),f(b,g(l(d,d))))). ** KEPT: 1016 (55,9,49,6) O(f(f(f(b,b),b),f(e,f(b,b)))). ** KEPT: 1017 (55,9,49,5) O(f(f(b,b),f(b,f(e,f(b,b))))). ** KEPT: 1018 (55,9,48,6) O(f(f(f(b,b),b),f(b,f(b,b)))). ** KEPT: 1019 (55,9,48,5) O(f(f(b,b),f(b,f(b,f(b,b))))). ** KEPT: 1020 (55,9,41,6) O(f(f(f(b,b),b),f(g(b),e))). ** KEPT: 1021 (55,9,40,6) O(f(f(f(b,b),b),f(g(b),b))). ** KEPT: 1022 (55,9,37,6) O(f(f(f(b,b),b),f(e,g(b)))). ** KEPT: 1023 (55,9,37,5) O(f(f(b,b),f(b,f(e,g(b))))). ** KEPT: 1024 (55,9,36,6) O(f(f(f(b,b),b),f(b,g(b)))). ** KEPT: 1025 (55,9,36,5) O(f(f(b,b),f(b,f(b,g(b))))). ** KEPT: 1026 (55,9,35,6) O(f(f(f(b,b),b),f(g(b),g(b)))). ** KEPT: 1027 (55,9,27,6) O(f(f(f(b,b),b),l(d,d))). ** KEPT: 1028 (55,9,27,5) O(f(f(b,b),f(b,l(d,d)))). ** KEPT: 1029 (55,9,24,6) O(f(f(f(b,b),b),g(b))). ** KEPT: 1030 (55,9,23,6) O(f(f(f(b,b),b),f(b,e))). ** KEPT: 1031 (55,9,23,5) O(f(f(b,b),f(b,f(b,e)))). ** KEPT: 1032 (55,9,22,6) O(f(f(f(b,b),b),f(e,b))). ** KEPT: 1033 (55,9,22,5) O(f(f(b,b),f(b,f(e,b)))). ** KEPT: 1034 (55,9,21,6) O(f(f(f(b,b),b),f(b,b))). ** KEPT: 1035 (55,9,12,6) O(f(f(f(b,b),b),b)). ** KEPT: 1036 (55,9,7,6) O(f(f(f(b,b),b),e)). new given clause: 56 (21,9,7,6) O(f(f(b,b),e)). ** KEPT: 1037 (56,9,303,150) -EQUAL(f(f(e,e),f(f(b,b),e)),f(a,c)). ** KEPT: 1038 (56,9,303,15) -EQUAL(f(f(e,e),f(f(b,b),e)),d). ** KEPT: 1039 (56,9,142,150) -EQUAL(f(g(l(d,d)),f(f(b,b),e)),f(a,c)). ** KEPT: 1040 (56,9,142,15) -EQUAL(f(g(l(d,d)),f(f(b,b),e)),d). ** KEPT: 1041 (56,9,56,150) -EQUAL(f(f(f(b,b),e),f(f(b,b),e)),f(a,c)). ** KEPT: 1042 (56,9,56,15) -EQUAL(f(f(f(b,b),e),f(f(b,b),e)),d). ** KEPT: 1043 (56,9,55,150) -EQUAL(f(f(f(b,b),b),f(f(b,b),e)),f(a,c)). ** KEPT: 1044 (56,9,55,15) -EQUAL(f(f(f(b,b),b),f(f(b,b),e)),d). ** KEPT: 1045 (56,9,49,150) -EQUAL(f(f(e,f(b,b)),f(f(b,b),e)),f(a,c)). ** KEPT: 1046 (56,9,49,15) -EQUAL(f(f(e,f(b,b)),f(f(b,b),e)),d). ** KEPT: 1047 (56,9,48,150) -EQUAL(f(f(b,f(b,b)),f(f(b,b),e)),f(a,c)). ** KEPT: 1048 (56,9,48,15) -EQUAL(f(f(b,f(b,b)),f(f(b,b),e)),d). ** KEPT: 1049 (56,9,41,150) -EQUAL(f(f(g(b),e),f(f(b,b),e)),f(a,c)). ** KEPT: 1050 (56,9,41,15) -EQUAL(f(f(g(b),e),f(f(b,b),e)),d). ** KEPT: 1051 (56,9,40,150) -EQUAL(f(f(g(b),b),f(f(b,b),e)),f(a,c)). ** KEPT: 1052 (56,9,40,15) -EQUAL(f(f(g(b),b),f(f(b,b),e)),d). ** KEPT: 1053 (56,9,37,150) -EQUAL(f(f(e,g(b)),f(f(b,b),e)),f(a,c)). ** KEPT: 1054 (56,9,37,15) -EQUAL(f(f(e,g(b)),f(f(b,b),e)),d). ** KEPT: 1055 (56,9,36,150) -EQUAL(f(f(b,g(b)),f(f(b,b),e)),f(a,c)). ** KEPT: 1056 (56,9,36,15) -EQUAL(f(f(b,g(b)),f(f(b,b),e)),d). ** KEPT: 1057 (56,9,35,150) -EQUAL(f(f(g(b),g(b)),f(f(b,b),e)),f(a,c)). ** KEPT: 1058 (56,9,35,15) -EQUAL(f(f(g(b),g(b)),f(f(b,b),e)),d). ** KEPT: 1059 (56,9,27,150) -EQUAL(f(l(d,d),f(f(b,b),e)),f(a,c)). ** KEPT: 1060 (56,9,27,15) -EQUAL(f(l(d,d),f(f(b,b),e)),d). ** KEPT: 1061 (56,9,24,150) -EQUAL(f(g(b),f(f(b,b),e)),f(a,c)). ** KEPT: 1062 (56,9,24,15) -EQUAL(f(g(b),f(f(b,b),e)),d). ** KEPT: 1063 (56,9,23,150) -EQUAL(f(f(b,e),f(f(b,b),e)),f(a,c)). ** KEPT: 1064 (56,9,23,15) -EQUAL(f(f(b,e),f(f(b,b),e)),d). ** KEPT: 1065 (56,9,22,150) -EQUAL(f(f(e,b),f(f(b,b),e)),f(a,c)). ** KEPT: 1066 (56,9,22,15) -EQUAL(f(f(e,b),f(f(b,b),e)),d). ** KEPT: 1067 (56,9,21,150) -EQUAL(f(f(b,b),f(f(b,b),e)),f(a,c)). ** KEPT: 1068 (56,9,21,15) -EQUAL(f(f(b,b),f(f(b,b),e)),d). ** KEPT: 1069 (56,9,12,150) -EQUAL(f(b,f(f(b,b),e)),f(a,c)). ** KEPT: 1070 (56,9,12,15) -EQUAL(f(b,f(f(b,b),e)),d). ** KEPT: 1071 (56,9,7,150) -EQUAL(f(e,f(f(b,b),e)),f(a,c)). ** KEPT: 1072 (56,9,7,15) -EQUAL(f(e,f(f(b,b),e)),d). ** KEPT: 1073 (56,9,303,6) O(f(f(e,e),f(f(b,b),e))). ** KEPT: 1074 (56,9,303,5) O(f(e,f(e,f(f(b,b),e)))). ** KEPT: 1075 (56,9,142,6) O(f(g(l(d,d)),f(f(b,b),e))). ** KEPT: 1076 (56,9,56,6) O(f(f(f(b,b),e),f(f(b,b),e))). ** KEPT: 1077 (56,9,56,5) O(f(f(b,b),f(e,f(f(b,b),e)))). ** KEPT: 1078 (56,9,55,6) O(f(f(f(b,b),b),f(f(b,b),e))). ** KEPT: 1079 (56,9,55,5) O(f(f(b,b),f(b,f(f(b,b),e)))). ** KEPT: 1080 (56,9,49,6) O(f(f(e,f(b,b)),f(f(b,b),e))). ** KEPT: 1081 (56,9,49,5) O(f(e,f(f(b,b),f(f(b,b),e)))). ** KEPT: 1082 (56,9,48,6) O(f(f(b,f(b,b)),f(f(b,b),e))). ** KEPT: 1083 (56,9,48,5) O(f(b,f(f(b,b),f(f(b,b),e)))). ** KEPT: 1084 (56,9,41,6) O(f(f(g(b),e),f(f(b,b),e))). ** KEPT: 1085 (56,9,41,5) O(f(g(b),f(e,f(f(b,b),e)))). ** KEPT: 1086 (56,9,40,6) O(f(f(g(b),b),f(f(b,b),e))). ** KEPT: 1087 (56,9,37,6) O(f(f(e,g(b)),f(f(b,b),e))). ** KEPT: 1088 (56,9,37,5) O(f(e,f(g(b),f(f(b,b),e)))). ** KEPT: 1089 (56,9,36,6) O(f(f(b,g(b)),f(f(b,b),e))). ** KEPT: 1090 (56,9,35,6) O(f(f(g(b),g(b)),f(f(b,b),e))). ** KEPT: 1091 (56,9,35,5) O(f(g(b),f(g(b),f(f(b,b),e)))). ** KEPT: 1092 (56,9,27,6) O(f(l(d,d),f(f(b,b),e))). ** KEPT: 1093 (56,9,24,6) O(f(g(b),f(f(b,b),e))). ** KEPT: 1094 (56,9,23,6) O(f(f(b,e),f(f(b,b),e))). ** KEPT: 1095 (56,9,23,5) O(f(b,f(e,f(f(b,b),e)))). ** KEPT: 1096 (56,9,22,6) O(f(f(e,b),f(f(b,b),e))). ** KEPT: 1097 (56,9,22,5) O(f(e,f(b,f(f(b,b),e)))). ** KEPT: 1098 (56,9,21,6) O(f(f(b,b),f(f(b,b),e))). ** KEPT: 1099 (56,9,21,5) O(f(b,f(b,f(f(b,b),e)))). ** KEPT: 1100 (56,9,303,150) -EQUAL(f(f(f(b,b),e),f(e,e)),f(a,c)). ** KEPT: 1101 (56,9,303,15) -EQUAL(f(f(f(b,b),e),f(e,e)),d). ** KEPT: 1102 (56,9,142,150) -EQUAL(f(f(f(b,b),e),g(l(d,d))),f(a,c)). ** KEPT: 1103 (56,9,142,15) -EQUAL(f(f(f(b,b),e),g(l(d,d))),d). ** KEPT: 1104 (56,9,55,150) -EQUAL(f(f(f(b,b),e),f(f(b,b),b)),f(a,c)). ** KEPT: 1105 (56,9,55,15) -EQUAL(f(f(f(b,b),e),f(f(b,b),b)),d). ** KEPT: 1106 (56,9,49,150) -EQUAL(f(f(f(b,b),e),f(e,f(b,b))),f(a,c)). ** KEPT: 1107 (56,9,49,15) -EQUAL(f(f(f(b,b),e),f(e,f(b,b))),d). ** KEPT: 1108 (56,9,48,150) -EQUAL(f(f(f(b,b),e),f(b,f(b,b))),f(a,c)). ** KEPT: 1109 (56,9,48,15) -EQUAL(f(f(f(b,b),e),f(b,f(b,b))),d). ** KEPT: 1110 (56,9,41,150) -EQUAL(f(f(f(b,b),e),f(g(b),e)),f(a,c)). ** KEPT: 1111 (56,9,41,15) -EQUAL(f(f(f(b,b),e),f(g(b),e)),d). ** KEPT: 1112 (56,9,40,150) -EQUAL(f(f(f(b,b),e),f(g(b),b)),f(a,c)). ** KEPT: 1113 (56,9,40,15) -EQUAL(f(f(f(b,b),e),f(g(b),b)),d). ** KEPT: 1114 (56,9,37,150) -EQUAL(f(f(f(b,b),e),f(e,g(b))),f(a,c)). ** KEPT: 1115 (56,9,37,15) -EQUAL(f(f(f(b,b),e),f(e,g(b))),d). ** KEPT: 1116 (56,9,36,150) -EQUAL(f(f(f(b,b),e),f(b,g(b))),f(a,c)). ** KEPT: 1117 (56,9,36,15) -EQUAL(f(f(f(b,b),e),f(b,g(b))),d). ** KEPT: 1118 (56,9,35,150) -EQUAL(f(f(f(b,b),e),f(g(b),g(b))),f(a,c)). ** KEPT: 1119 (56,9,35,15) -EQUAL(f(f(f(b,b),e),f(g(b),g(b))),d). ** KEPT: 1120 (56,9,27,150) -EQUAL(f(f(f(b,b),e),l(d,d)),f(a,c)). ** KEPT: 1121 (56,9,27,15) -EQUAL(f(f(f(b,b),e),l(d,d)),d). ** KEPT: 1122 (56,9,24,150) -EQUAL(f(f(f(b,b),e),g(b)),f(a,c)). ** KEPT: 1123 (56,9,24,15) -EQUAL(f(f(f(b,b),e),g(b)),d). ** KEPT: 1124 (56,9,23,150) -EQUAL(f(f(f(b,b),e),f(b,e)),f(a,c)). ** KEPT: 1125 (56,9,23,15) -EQUAL(f(f(f(b,b),e),f(b,e)),d). ** KEPT: 1126 (56,9,22,150) -EQUAL(f(f(f(b,b),e),f(e,b)),f(a,c)). ** KEPT: 1127 (56,9,22,15) -EQUAL(f(f(f(b,b),e),f(e,b)),d). ** KEPT: 1128 (56,9,21,150) -EQUAL(f(f(f(b,b),e),f(b,b)),f(a,c)). ** KEPT: 1129 (56,9,21,15) -EQUAL(f(f(f(b,b),e),f(b,b)),d). ** KEPT: 1130 (56,9,12,150) -EQUAL(f(f(f(b,b),e),b),f(a,c)). ** KEPT: 1131 (56,9,12,15) -EQUAL(f(f(f(b,b),e),b),d). ** KEPT: 1132 (56,9,7,150) -EQUAL(f(f(f(b,b),e),e),f(a,c)). ** KEPT: 1133 (56,9,7,15) -EQUAL(f(f(f(b,b),e),e),d). ** KEPT: 1134 (56,9,303,6) O(f(f(f(b,b),e),f(e,e))). ** KEPT: 1135 (56,9,303,5) O(f(f(b,b),f(e,f(e,e)))). ** KEPT: 1136 (56,9,142,6) O(f(f(f(b,b),e),g(l(d,d)))). ** KEPT: 1137 (56,9,142,5) O(f(f(b,b),f(e,g(l(d,d))))). ** KEPT: 1138 (56,9,55,6) O(f(f(f(b,b),e),f(f(b,b),b))). ** KEPT: 1139 (56,9,55,5) O(f(f(b,b),f(e,f(f(b,b),b)))). ** KEPT: 1140 (56,9,49,6) O(f(f(f(b,b),e),f(e,f(b,b)))). ** KEPT: 1141 (56,9,49,5) O(f(f(b,b),f(e,f(e,f(b,b))))). ** KEPT: 1142 (56,9,48,6) O(f(f(f(b,b),e),f(b,f(b,b)))). ** KEPT: 1143 (56,9,48,5) O(f(f(b,b),f(e,f(b,f(b,b))))). ** KEPT: 1144 (56,9,41,6) O(f(f(f(b,b),e),f(g(b),e))). ** KEPT: 1145 (56,9,41,5) O(f(f(b,b),f(e,f(g(b),e)))). ** KEPT: 1146 (56,9,40,6) O(f(f(f(b,b),e),f(g(b),b))). ** KEPT: 1147 (56,9,40,5) O(f(f(b,b),f(e,f(g(b),b)))). ** KEPT: 1148 (56,9,37,6) O(f(f(f(b,b),e),f(e,g(b)))). ** KEPT: 1149 (56,9,37,5) O(f(f(b,b),f(e,f(e,g(b))))). ** KEPT: 1150 (56,9,36,6) O(f(f(f(b,b),e),f(b,g(b)))). ** KEPT: 1151 (56,9,36,5) O(f(f(b,b),f(e,f(b,g(b))))). ** KEPT: 1152 (56,9,35,6) O(f(f(f(b,b),e),f(g(b),g(b)))). ** KEPT: 1153 (56,9,35,5) O(f(f(b,b),f(e,f(g(b),g(b))))). ** KEPT: 1154 (56,9,27,6) O(f(f(f(b,b),e),l(d,d))). ** KEPT: 1155 (56,9,27,5) O(f(f(b,b),f(e,l(d,d)))). ** KEPT: 1156 (56,9,24,6) O(f(f(f(b,b),e),g(b))). ** KEPT: 1157 (56,9,23,6) O(f(f(f(b,b),e),f(b,e))). ** KEPT: 1158 (56,9,23,5) O(f(f(b,b),f(e,f(b,e)))). ** KEPT: 1159 (56,9,22,6) O(f(f(f(b,b),e),f(e,b))). ** KEPT: 1160 (56,9,22,5) O(f(f(b,b),f(e,f(e,b)))). ** KEPT: 1161 (56,9,21,6) O(f(f(f(b,b),e),f(b,b))). ** KEPT: 1162 (56,9,12,6) O(f(f(f(b,b),e),b)). ** KEPT: 1163 (56,9,7,6) O(f(f(f(b,b),e),e)). ** KEPT: 1164 (4,56) O(f(f(b,b),f(x,g(x)))). ** KEPT: 1165 (3,56) O(f(f(b,b),f(g(x),x))). 1164 back subsumes: 231 (36,9,21,6) O(f(f(b,b),f(b,g(b)))). 1165 back subsumes: 414 (40,9,21,6) O(f(f(b,b),f(g(b),b))). new given clause: 57 (21,9,7,5) O(f(b,f(b,e))). ** KEPT: 1166 (57,9,303,150) -EQUAL(f(f(e,e),f(b,f(b,e))),f(a,c)). ** KEPT: 1167 (57,9,303,15) -EQUAL(f(f(e,e),f(b,f(b,e))),d). ** KEPT: 1168 (57,9,142,150) -EQUAL(f(g(l(d,d)),f(b,f(b,e))),f(a,c)). ** KEPT: 1169 (57,9,142,15) -EQUAL(f(g(l(d,d)),f(b,f(b,e))),d). ** KEPT: 1170 (57,9,57,150) -EQUAL(f(f(b,f(b,e)),f(b,f(b,e))),f(a,c)). ** KEPT: 1171 (57,9,57,15) -EQUAL(f(f(b,f(b,e)),f(b,f(b,e))),d). ** KEPT: 1172 (57,9,56,150) -EQUAL(f(f(f(b,b),e),f(b,f(b,e))),f(a,c)). ** KEPT: 1173 (57,9,56,15) -EQUAL(f(f(f(b,b),e),f(b,f(b,e))),d). ** KEPT: 1174 (57,9,55,150) -EQUAL(f(f(f(b,b),b),f(b,f(b,e))),f(a,c)). ** KEPT: 1175 (57,9,55,15) -EQUAL(f(f(f(b,b),b),f(b,f(b,e))),d). ** KEPT: 1176 (57,9,49,150) -EQUAL(f(f(e,f(b,b)),f(b,f(b,e))),f(a,c)). ** KEPT: 1177 (57,9,49,15) -EQUAL(f(f(e,f(b,b)),f(b,f(b,e))),d). ** KEPT: 1178 (57,9,48,150) -EQUAL(f(f(b,f(b,b)),f(b,f(b,e))),f(a,c)). ** KEPT: 1179 (57,9,48,15) -EQUAL(f(f(b,f(b,b)),f(b,f(b,e))),d). ** KEPT: 1180 (57,9,41,150) -EQUAL(f(f(g(b),e),f(b,f(b,e))),f(a,c)). ** KEPT: 1181 (57,9,41,15) -EQUAL(f(f(g(b),e),f(b,f(b,e))),d). ** KEPT: 1182 (57,9,40,150) -EQUAL(f(f(g(b),b),f(b,f(b,e))),f(a,c)). ** KEPT: 1183 (57,9,40,15) -EQUAL(f(f(g(b),b),f(b,f(b,e))),d). ** KEPT: 1184 (57,9,37,150) -EQUAL(f(f(e,g(b)),f(b,f(b,e))),f(a,c)). ** KEPT: 1185 (57,9,37,15) -EQUAL(f(f(e,g(b)),f(b,f(b,e))),d). ** KEPT: 1186 (57,9,36,150) -EQUAL(f(f(b,g(b)),f(b,f(b,e))),f(a,c)). ** KEPT: 1187 (57,9,36,15) -EQUAL(f(f(b,g(b)),f(b,f(b,e))),d). ** KEPT: 1188 (57,9,35,150) -EQUAL(f(f(g(b),g(b)),f(b,f(b,e))),f(a,c)). ** KEPT: 1189 (57,9,35,15) -EQUAL(f(f(g(b),g(b)),f(b,f(b,e))),d). ** KEPT: 1190 (57,9,27,150) -EQUAL(f(l(d,d),f(b,f(b,e))),f(a,c)). ** KEPT: 1191 (57,9,27,15) -EQUAL(f(l(d,d),f(b,f(b,e))),d). ** KEPT: 1192 (57,9,23,150) -EQUAL(f(f(b,e),f(b,f(b,e))),f(a,c)). ** KEPT: 1193 (57,9,23,15) -EQUAL(f(f(b,e),f(b,f(b,e))),d). ** KEPT: 1194 (57,9,22,150) -EQUAL(f(f(e,b),f(b,f(b,e))),f(a,c)). ** KEPT: 1195 (57,9,22,15) -EQUAL(f(f(e,b),f(b,f(b,e))),d). ** KEPT: 1196 (57,9,21,150) -EQUAL(f(f(b,b),f(b,f(b,e))),f(a,c)). ** KEPT: 1197 (57,9,21,15) -EQUAL(f(f(b,b),f(b,f(b,e))),d). ** KEPT: 1198 (57,9,12,150) -EQUAL(f(b,f(b,f(b,e))),f(a,c)). ** KEPT: 1199 (57,9,12,15) -EQUAL(f(b,f(b,f(b,e))),d). ** KEPT: 1200 (57,9,7,150) -EQUAL(f(e,f(b,f(b,e))),f(a,c)). ** KEPT: 1201 (57,9,7,15) -EQUAL(f(e,f(b,f(b,e))),d). ** KEPT: 1202 (57,9,303,6) O(f(f(e,e),f(b,f(b,e)))). ** KEPT: 1203 (57,9,303,5) O(f(e,f(e,f(b,f(b,e))))). ** KEPT: 1204 (57,9,142,6) O(f(g(l(d,d)),f(b,f(b,e)))). ** KEPT: 1205 (57,9,57,6) O(f(f(b,f(b,e)),f(b,f(b,e)))). ** KEPT: 1206 (57,9,57,5) O(f(b,f(f(b,e),f(b,f(b,e))))). ** KEPT: 1207 (57,9,56,6) O(f(f(f(b,b),e),f(b,f(b,e)))). ** KEPT: 1208 (57,9,56,5) O(f(f(b,b),f(e,f(b,f(b,e))))). ** KEPT: 1209 (57,9,55,6) O(f(f(f(b,b),b),f(b,f(b,e)))). ** KEPT: 1210 (57,9,55,5) O(f(f(b,b),f(b,f(b,f(b,e))))). ** KEPT: 1211 (57,9,49,6) O(f(f(e,f(b,b)),f(b,f(b,e)))). ** KEPT: 1212 (57,9,49,5) O(f(e,f(f(b,b),f(b,f(b,e))))). ** KEPT: 1213 (57,9,48,6) O(f(f(b,f(b,b)),f(b,f(b,e)))). ** KEPT: 1214 (57,9,48,5) O(f(b,f(f(b,b),f(b,f(b,e))))). ** KEPT: 1215 (57,9,41,6) O(f(f(g(b),e),f(b,f(b,e)))). ** KEPT: 1216 (57,9,41,5) O(f(g(b),f(e,f(b,f(b,e))))). ** KEPT: 1217 (57,9,40,6) O(f(f(g(b),b),f(b,f(b,e)))). ** KEPT: 1218 (57,9,37,6) O(f(f(e,g(b)),f(b,f(b,e)))). ** KEPT: 1219 (57,9,36,6) O(f(f(b,g(b)),f(b,f(b,e)))). ** KEPT: 1220 (57,9,35,6) O(f(f(g(b),g(b)),f(b,f(b,e)))). ** KEPT: 1221 (57,9,27,6) O(f(l(d,d),f(b,f(b,e)))). ** KEPT: 1222 (57,9,23,6) O(f(f(b,e),f(b,f(b,e)))). ** KEPT: 1223 (57,9,23,5) O(f(b,f(e,f(b,f(b,e))))). ** KEPT: 1224 (57,9,22,6) O(f(f(e,b),f(b,f(b,e)))). ** KEPT: 1225 (57,9,22,5) O(f(e,f(b,f(b,f(b,e))))). ** KEPT: 1226 (57,9,21,5) O(f(b,f(b,f(b,f(b,e))))). ** KEPT: 1227 (57,9,303,150) -EQUAL(f(f(b,f(b,e)),f(e,e)),f(a,c)). ** KEPT: 1228 (57,9,303,15) -EQUAL(f(f(b,f(b,e)),f(e,e)),d). ** KEPT: 1229 (57,9,142,150) -EQUAL(f(f(b,f(b,e)),g(l(d,d))),f(a,c)). ** KEPT: 1230 (57,9,142,15) -EQUAL(f(f(b,f(b,e)),g(l(d,d))),d). ** KEPT: 1231 (57,9,56,150) -EQUAL(f(f(b,f(b,e)),f(f(b,b),e)),f(a,c)). ** KEPT: 1232 (57,9,56,15) -EQUAL(f(f(b,f(b,e)),f(f(b,b),e)),d). ** KEPT: 1233 (57,9,55,150) -EQUAL(f(f(b,f(b,e)),f(f(b,b),b)),f(a,c)). ** KEPT: 1234 (57,9,55,15) -EQUAL(f(f(b,f(b,e)),f(f(b,b),b)),d). ** KEPT: 1235 (57,9,49,150) -EQUAL(f(f(b,f(b,e)),f(e,f(b,b))),f(a,c)). ** KEPT: 1236 (57,9,49,15) -EQUAL(f(f(b,f(b,e)),f(e,f(b,b))),d). ** KEPT: 1237 (57,9,48,150) -EQUAL(f(f(b,f(b,e)),f(b,f(b,b))),f(a,c)). ** KEPT: 1238 (57,9,48,15) -EQUAL(f(f(b,f(b,e)),f(b,f(b,b))),d). ** KEPT: 1239 (57,9,41,150) -EQUAL(f(f(b,f(b,e)),f(g(b),e)),f(a,c)). ** KEPT: 1240 (57,9,41,15) -EQUAL(f(f(b,f(b,e)),f(g(b),e)),d). ** KEPT: 1241 (57,9,40,150) -EQUAL(f(f(b,f(b,e)),f(g(b),b)),f(a,c)). ** KEPT: 1242 (57,9,40,15) -EQUAL(f(f(b,f(b,e)),f(g(b),b)),d). ** KEPT: 1243 (57,9,37,150) -EQUAL(f(f(b,f(b,e)),f(e,g(b))),f(a,c)). ** KEPT: 1244 (57,9,37,15) -EQUAL(f(f(b,f(b,e)),f(e,g(b))),d). ** KEPT: 1245 (57,9,36,150) -EQUAL(f(f(b,f(b,e)),f(b,g(b))),f(a,c)). ** KEPT: 1246 (57,9,36,15) -EQUAL(f(f(b,f(b,e)),f(b,g(b))),d). ** KEPT: 1247 (57,9,35,150) -EQUAL(f(f(b,f(b,e)),f(g(b),g(b))),f(a,c)). ** KEPT: 1248 (57,9,35,15) -EQUAL(f(f(b,f(b,e)),f(g(b),g(b))),d). ** KEPT: 1249 (57,9,27,150) -EQUAL(f(f(b,f(b,e)),l(d,d)),f(a,c)). ** KEPT: 1250 (57,9,27,15) -EQUAL(f(f(b,f(b,e)),l(d,d)),d). ** KEPT: 1251 (57,9,24,150) -EQUAL(f(f(b,f(b,e)),g(b)),f(a,c)). ** KEPT: 1252 (57,9,24,15) -EQUAL(f(f(b,f(b,e)),g(b)),d). ** KEPT: 1253 (57,9,23,150) -EQUAL(f(f(b,f(b,e)),f(b,e)),f(a,c)). ** KEPT: 1254 (57,9,23,15) -EQUAL(f(f(b,f(b,e)),f(b,e)),d). ** KEPT: 1255 (57,9,22,150) -EQUAL(f(f(b,f(b,e)),f(e,b)),f(a,c)). ** KEPT: 1256 (57,9,22,15) -EQUAL(f(f(b,f(b,e)),f(e,b)),d). ** KEPT: 1257 (57,9,21,150) -EQUAL(f(f(b,f(b,e)),f(b,b)),f(a,c)). ** KEPT: 1258 (57,9,21,15) -EQUAL(f(f(b,f(b,e)),f(b,b)),d). ** KEPT: 1259 (57,9,12,150) -EQUAL(f(f(b,f(b,e)),b),f(a,c)). ** KEPT: 1260 (57,9,12,15) -EQUAL(f(f(b,f(b,e)),b),d). ** KEPT: 1261 (57,9,7,150) -EQUAL(f(f(b,f(b,e)),e),f(a,c)). ** KEPT: 1262 (57,9,7,15) -EQUAL(f(f(b,f(b,e)),e),d). ** KEPT: 1263 (57,9,303,6) O(f(f(b,f(b,e)),f(e,e))). ** KEPT: 1264 (57,9,303,5) O(f(b,f(f(b,e),f(e,e)))). ** KEPT: 1265 (57,9,142,6) O(f(f(b,f(b,e)),g(l(d,d)))). ** KEPT: 1266 (57,9,142,5) O(f(b,f(f(b,e),g(l(d,d))))). ** KEPT: 1267 (57,9,56,6) O(f(f(b,f(b,e)),f(f(b,b),e))). ** KEPT: 1268 (57,9,56,5) O(f(b,f(f(b,e),f(f(b,b),e)))). ** KEPT: 1269 (57,9,55,6) O(f(f(b,f(b,e)),f(f(b,b),b))). ** KEPT: 1270 (57,9,55,5) O(f(b,f(f(b,e),f(f(b,b),b)))). ** KEPT: 1271 (57,9,49,6) O(f(f(b,f(b,e)),f(e,f(b,b)))). ** KEPT: 1272 (57,9,49,5) O(f(b,f(f(b,e),f(e,f(b,b))))). ** KEPT: 1273 (57,9,48,6) O(f(f(b,f(b,e)),f(b,f(b,b)))). ** KEPT: 1274 (57,9,48,5) O(f(b,f(f(b,e),f(b,f(b,b))))). ** KEPT: 1275 (57,9,41,6) O(f(f(b,f(b,e)),f(g(b),e))). ** KEPT: 1276 (57,9,41,5) O(f(b,f(f(b,e),f(g(b),e)))). ** KEPT: 1277 (57,9,40,6) O(f(f(b,f(b,e)),f(g(b),b))). ** KEPT: 1278 (57,9,40,5) O(f(b,f(f(b,e),f(g(b),b)))). ** KEPT: 1279 (57,9,37,6) O(f(f(b,f(b,e)),f(e,g(b)))). ** KEPT: 1280 (57,9,37,5) O(f(b,f(f(b,e),f(e,g(b))))). ** KEPT: 1281 (57,9,36,6) O(f(f(b,f(b,e)),f(b,g(b)))). ** KEPT: 1282 (57,9,36,5) O(f(b,f(f(b,e),f(b,g(b))))). ** KEPT: 1283 (57,9,35,6) O(f(f(b,f(b,e)),f(g(b),g(b)))). ** KEPT: 1284 (57,9,35,5) O(f(b,f(f(b,e),f(g(b),g(b))))). ** KEPT: 1285 (57,9,27,6) O(f(f(b,f(b,e)),l(d,d))). ** KEPT: 1286 (57,9,27,5) O(f(b,f(f(b,e),l(d,d)))). ** KEPT: 1287 (57,9,24,6) O(f(f(b,f(b,e)),g(b))). ** KEPT: 1288 (57,9,24,5) O(f(b,f(f(b,e),g(b)))). ** KEPT: 1289 (57,9,23,6) O(f(f(b,f(b,e)),f(b,e))). ** KEPT: 1290 (57,9,23,5) O(f(b,f(f(b,e),f(b,e)))). ** KEPT: 1291 (57,9,22,6) O(f(f(b,f(b,e)),f(e,b))). ** KEPT: 1292 (57,9,22,5) O(f(b,f(f(b,e),f(e,b)))). ** KEPT: 1293 (57,9,21,6) O(f(f(b,f(b,e)),f(b,b))). ** KEPT: 1294 (57,9,21,5) O(f(b,f(f(b,e),f(b,b)))). ** KEPT: 1295 (57,9,12,6) O(f(f(b,f(b,e)),b)). ** KEPT: 1296 (57,9,12,5) O(f(b,f(f(b,e),b))). ** KEPT: 1297 (57,9,7,6) O(f(f(b,f(b,e)),e)). ** KEPT: 1298 (57,9,7,5) O(f(b,f(f(b,e),e))). ** KEPT: 1299 (4,57) O(f(b,f(b,f(x,g(x))))). ** KEPT: 1300 (3,57) O(f(b,f(b,f(g(x),x)))). 1299 back subsumes: 232 (36,9,21,5) O(f(b,f(b,f(b,g(b))))). new given clause: 68 (22,9,12,6) O(f(b,f(e,b))). ** KEPT: 1301 (68,9,303,150) -EQUAL(f(f(e,e),f(b,f(e,b))),f(a,c)). ** KEPT: 1302 (68,9,303,15) -EQUAL(f(f(e,e),f(b,f(e,b))),d). ** KEPT: 1303 (68,9,142,150) -EQUAL(f(g(l(d,d)),f(b,f(e,b))),f(a,c)). ** KEPT: 1304 (68,9,142,15) -EQUAL(f(g(l(d,d)),f(b,f(e,b))),d). ** KEPT: 1305 (68,9,68,150) -EQUAL(f(f(b,f(e,b)),f(b,f(e,b))),f(a,c)). ** KEPT: 1306 (68,9,68,15) -EQUAL(f(f(b,f(e,b)),f(b,f(e,b))),d). ** KEPT: 1307 (68,9,57,150) -EQUAL(f(f(b,f(b,e)),f(b,f(e,b))),f(a,c)). ** KEPT: 1308 (68,9,57,15) -EQUAL(f(f(b,f(b,e)),f(b,f(e,b))),d). ** KEPT: 1309 (68,9,56,150) -EQUAL(f(f(f(b,b),e),f(b,f(e,b))),f(a,c)). ** KEPT: 1310 (68,9,56,15) -EQUAL(f(f(f(b,b),e),f(b,f(e,b))),d). ** KEPT: 1311 (68,9,55,150) -EQUAL(f(f(f(b,b),b),f(b,f(e,b))),f(a,c)). ** KEPT: 1312 (68,9,55,15) -EQUAL(f(f(f(b,b),b),f(b,f(e,b))),d). ** KEPT: 1313 (68,9,49,150) -EQUAL(f(f(e,f(b,b)),f(b,f(e,b))),f(a,c)). ** KEPT: 1314 (68,9,49,15) -EQUAL(f(f(e,f(b,b)),f(b,f(e,b))),d). ** KEPT: 1315 (68,9,48,150) -EQUAL(f(f(b,f(b,b)),f(b,f(e,b))),f(a,c)). ** KEPT: 1316 (68,9,48,15) -EQUAL(f(f(b,f(b,b)),f(b,f(e,b))),d). ** KEPT: 1317 (68,9,41,150) -EQUAL(f(f(g(b),e),f(b,f(e,b))),f(a,c)). ** KEPT: 1318 (68,9,41,15) -EQUAL(f(f(g(b),e),f(b,f(e,b))),d). ** KEPT: 1319 (68,9,40,150) -EQUAL(f(f(g(b),b),f(b,f(e,b))),f(a,c)). ** KEPT: 1320 (68,9,40,15) -EQUAL(f(f(g(b),b),f(b,f(e,b))),d). ** KEPT: 1321 (68,9,37,150) -EQUAL(f(f(e,g(b)),f(b,f(e,b))),f(a,c)). ** KEPT: 1322 (68,9,37,15) -EQUAL(f(f(e,g(b)),f(b,f(e,b))),d). ** KEPT: 1323 (68,9,36,150) -EQUAL(f(f(b,g(b)),f(b,f(e,b))),f(a,c)). ** KEPT: 1324 (68,9,36,15) -EQUAL(f(f(b,g(b)),f(b,f(e,b))),d). ** KEPT: 1325 (68,9,35,150) -EQUAL(f(f(g(b),g(b)),f(b,f(e,b))),f(a,c)). ** KEPT: 1326 (68,9,35,15) -EQUAL(f(f(g(b),g(b)),f(b,f(e,b))),d). ** KEPT: 1327 (68,9,27,150) -EQUAL(f(l(d,d),f(b,f(e,b))),f(a,c)). ** KEPT: 1328 (68,9,27,15) -EQUAL(f(l(d,d),f(b,f(e,b))),d). ** KEPT: 1329 (68,9,23,150) -EQUAL(f(f(b,e),f(b,f(e,b))),f(a,c)). ** KEPT: 1330 (68,9,23,15) -EQUAL(f(f(b,e),f(b,f(e,b))),d). ** KEPT: 1331 (68,9,22,150) -EQUAL(f(f(e,b),f(b,f(e,b))),f(a,c)). ** KEPT: 1332 (68,9,22,15) -EQUAL(f(f(e,b),f(b,f(e,b))),d). ** KEPT: 1333 (68,9,21,150) -EQUAL(f(f(b,b),f(b,f(e,b))),f(a,c)). ** KEPT: 1334 (68,9,21,15) -EQUAL(f(f(b,b),f(b,f(e,b))),d). ** KEPT: 1335 (68,9,12,150) -EQUAL(f(b,f(b,f(e,b))),f(a,c)). ** KEPT: 1336 (68,9,12,15) -EQUAL(f(b,f(b,f(e,b))),d). ** KEPT: 1337 (68,9,7,150) -EQUAL(f(e,f(b,f(e,b))),f(a,c)). ** KEPT: 1338 (68,9,7,15) -EQUAL(f(e,f(b,f(e,b))),d). ** KEPT: 1339 (68,9,303,6) O(f(f(e,e),f(b,f(e,b)))). ** KEPT: 1340 (68,9,303,5) O(f(e,f(e,f(b,f(e,b))))). ** KEPT: 1341 (68,9,142,6) O(f(g(l(d,d)),f(b,f(e,b)))). ** KEPT: 1342 (68,9,68,6) O(f(f(b,f(e,b)),f(b,f(e,b)))). ** KEPT: 1343 (68,9,68,5) O(f(b,f(f(e,b),f(b,f(e,b))))). ** KEPT: 1344 (68,9,57,6) O(f(f(b,f(b,e)),f(b,f(e,b)))). ** KEPT: 1345 (68,9,57,5) O(f(b,f(f(b,e),f(b,f(e,b))))). ** KEPT: 1346 (68,9,56,6) O(f(f(f(b,b),e),f(b,f(e,b)))). ** KEPT: 1347 (68,9,56,5) O(f(f(b,b),f(e,f(b,f(e,b))))). ** KEPT: 1348 (68,9,55,6) O(f(f(f(b,b),b),f(b,f(e,b)))). ** KEPT: 1349 (68,9,55,5) O(f(f(b,b),f(b,f(b,f(e,b))))). ** KEPT: 1350 (68,9,49,6) O(f(f(e,f(b,b)),f(b,f(e,b)))). ** KEPT: 1351 (68,9,49,5) O(f(e,f(f(b,b),f(b,f(e,b))))). ** KEPT: 1352 (68,9,48,6) O(f(f(b,f(b,b)),f(b,f(e,b)))). ** KEPT: 1353 (68,9,48,5) O(f(b,f(f(b,b),f(b,f(e,b))))). ** KEPT: 1354 (68,9,41,6) O(f(f(g(b),e),f(b,f(e,b)))). ** KEPT: 1355 (68,9,41,5) O(f(g(b),f(e,f(b,f(e,b))))). ** KEPT: 1356 (68,9,40,6) O(f(f(g(b),b),f(b,f(e,b)))). ** KEPT: 1357 (68,9,37,6) O(f(f(e,g(b)),f(b,f(e,b)))). ** KEPT: 1358 (68,9,36,6) O(f(f(b,g(b)),f(b,f(e,b)))). ** KEPT: 1359 (68,9,35,6) O(f(f(g(b),g(b)),f(b,f(e,b)))). ** KEPT: 1360 (68,9,27,6) O(f(l(d,d),f(b,f(e,b)))). ** KEPT: 1361 (68,9,23,6) O(f(f(b,e),f(b,f(e,b)))). ** KEPT: 1362 (68,9,23,5) O(f(b,f(e,f(b,f(e,b))))). ** KEPT: 1363 (68,9,22,6) O(f(f(e,b),f(b,f(e,b)))). ** KEPT: 1364 (68,9,22,5) O(f(e,f(b,f(b,f(e,b))))). ** KEPT: 1365 (68,9,21,5) O(f(b,f(b,f(b,f(e,b))))). ** KEPT: 1366 (68,9,303,150) -EQUAL(f(f(b,f(e,b)),f(e,e)),f(a,c)). ** KEPT: 1367 (68,9,303,15) -EQUAL(f(f(b,f(e,b)),f(e,e)),d). ** KEPT: 1368 (68,9,142,150) -EQUAL(f(f(b,f(e,b)),g(l(d,d))),f(a,c)). ** KEPT: 1369 (68,9,142,15) -EQUAL(f(f(b,f(e,b)),g(l(d,d))),d). ** KEPT: 1370 (68,9,57,150) -EQUAL(f(f(b,f(e,b)),f(b,f(b,e))),f(a,c)). ** KEPT: 1371 (68,9,57,15) -EQUAL(f(f(b,f(e,b)),f(b,f(b,e))),d). ** KEPT: 1372 (68,9,56,150) -EQUAL(f(f(b,f(e,b)),f(f(b,b),e)),f(a,c)). ** KEPT: 1373 (68,9,56,15) -EQUAL(f(f(b,f(e,b)),f(f(b,b),e)),d). ** KEPT: 1374 (68,9,55,150) -EQUAL(f(f(b,f(e,b)),f(f(b,b),b)),f(a,c)). ** KEPT: 1375 (68,9,55,15) -EQUAL(f(f(b,f(e,b)),f(f(b,b),b)),d). ** KEPT: 1376 (68,9,49,150) -EQUAL(f(f(b,f(e,b)),f(e,f(b,b))),f(a,c)). ** KEPT: 1377 (68,9,49,15) -EQUAL(f(f(b,f(e,b)),f(e,f(b,b))),d). ** KEPT: 1378 (68,9,48,150) -EQUAL(f(f(b,f(e,b)),f(b,f(b,b))),f(a,c)). ** KEPT: 1379 (68,9,48,15) -EQUAL(f(f(b,f(e,b)),f(b,f(b,b))),d). ** KEPT: 1380 (68,9,41,150) -EQUAL(f(f(b,f(e,b)),f(g(b),e)),f(a,c)). ** KEPT: 1381 (68,9,41,15) -EQUAL(f(f(b,f(e,b)),f(g(b),e)),d). ** KEPT: 1382 (68,9,40,150) -EQUAL(f(f(b,f(e,b)),f(g(b),b)),f(a,c)). ** KEPT: 1383 (68,9,40,15) -EQUAL(f(f(b,f(e,b)),f(g(b),b)),d). ** KEPT: 1384 (68,9,37,150) -EQUAL(f(f(b,f(e,b)),f(e,g(b))),f(a,c)). ** KEPT: 1385 (68,9,37,15) -EQUAL(f(f(b,f(e,b)),f(e,g(b))),d). ** KEPT: 1386 (68,9,36,150) -EQUAL(f(f(b,f(e,b)),f(b,g(b))),f(a,c)). ** KEPT: 1387 (68,9,36,15) -EQUAL(f(f(b,f(e,b)),f(b,g(b))),d). ** KEPT: 1388 (68,9,35,150) -EQUAL(f(f(b,f(e,b)),f(g(b),g(b))),f(a,c)). ** KEPT: 1389 (68,9,35,15) -EQUAL(f(f(b,f(e,b)),f(g(b),g(b))),d). ** KEPT: 1390 (68,9,27,150) -EQUAL(f(f(b,f(e,b)),l(d,d)),f(a,c)). ** KEPT: 1391 (68,9,27,15) -EQUAL(f(f(b,f(e,b)),l(d,d)),d). ** KEPT: 1392 (68,9,24,150) -EQUAL(f(f(b,f(e,b)),g(b)),f(a,c)). ** KEPT: 1393 (68,9,24,15) -EQUAL(f(f(b,f(e,b)),g(b)),d). ** KEPT: 1394 (68,9,23,150) -EQUAL(f(f(b,f(e,b)),f(b,e)),f(a,c)). ** KEPT: 1395 (68,9,23,15) -EQUAL(f(f(b,f(e,b)),f(b,e)),d). ** KEPT: 1396 (68,9,22,150) -EQUAL(f(f(b,f(e,b)),f(e,b)),f(a,c)). ** KEPT: 1397 (68,9,22,15) -EQUAL(f(f(b,f(e,b)),f(e,b)),d). ** KEPT: 1398 (68,9,21,150) -EQUAL(f(f(b,f(e,b)),f(b,b)),f(a,c)). ** KEPT: 1399 (68,9,21,15) -EQUAL(f(f(b,f(e,b)),f(b,b)),d). ** KEPT: 1400 (68,9,12,150) -EQUAL(f(f(b,f(e,b)),b),f(a,c)). ** KEPT: 1401 (68,9,12,15) -EQUAL(f(f(b,f(e,b)),b),d). ** KEPT: 1402 (68,9,7,150) -EQUAL(f(f(b,f(e,b)),e),f(a,c)). ** KEPT: 1403 (68,9,7,15) -EQUAL(f(f(b,f(e,b)),e),d). ** KEPT: 1404 (68,9,303,6) O(f(f(b,f(e,b)),f(e,e))). ** KEPT: 1405 (68,9,303,5) O(f(b,f(f(e,b),f(e,e)))). ** KEPT: 1406 (68,9,142,6) O(f(f(b,f(e,b)),g(l(d,d)))). ** KEPT: 1407 (68,9,142,5) O(f(b,f(f(e,b),g(l(d,d))))). ** KEPT: 1408 (68,9,57,6) O(f(f(b,f(e,b)),f(b,f(b,e)))). ** KEPT: 1409 (68,9,57,5) O(f(b,f(f(e,b),f(b,f(b,e))))). ** KEPT: 1410 (68,9,56,6) O(f(f(b,f(e,b)),f(f(b,b),e))). ** KEPT: 1411 (68,9,56,5) O(f(b,f(f(e,b),f(f(b,b),e)))). ** KEPT: 1412 (68,9,55,6) O(f(f(b,f(e,b)),f(f(b,b),b))). ** KEPT: 1413 (68,9,55,5) O(f(b,f(f(e,b),f(f(b,b),b)))). ** KEPT: 1414 (68,9,49,6) O(f(f(b,f(e,b)),f(e,f(b,b)))). ** KEPT: 1415 (68,9,49,5) O(f(b,f(f(e,b),f(e,f(b,b))))). ** KEPT: 1416 (68,9,48,6) O(f(f(b,f(e,b)),f(b,f(b,b)))). ** KEPT: 1417 (68,9,48,5) O(f(b,f(f(e,b),f(b,f(b,b))))). ** KEPT: 1418 (68,9,41,6) O(f(f(b,f(e,b)),f(g(b),e))). ** KEPT: 1419 (68,9,41,5) O(f(b,f(f(e,b),f(g(b),e)))). ** KEPT: 1420 (68,9,40,6) O(f(f(b,f(e,b)),f(g(b),b))). ** KEPT: 1421 (68,9,40,5) O(f(b,f(f(e,b),f(g(b),b)))). ** KEPT: 1422 (68,9,37,6) O(f(f(b,f(e,b)),f(e,g(b)))). ** KEPT: 1423 (68,9,37,5) O(f(b,f(f(e,b),f(e,g(b))))). ** KEPT: 1424 (68,9,36,6) O(f(f(b,f(e,b)),f(b,g(b)))). ** KEPT: 1425 (68,9,36,5) O(f(b,f(f(e,b),f(b,g(b))))). ** KEPT: 1426 (68,9,35,6) O(f(f(b,f(e,b)),f(g(b),g(b)))). ** KEPT: 1427 (68,9,35,5) O(f(b,f(f(e,b),f(g(b),g(b))))). ** KEPT: 1428 (68,9,27,6) O(f(f(b,f(e,b)),l(d,d))). ** KEPT: 1429 (68,9,27,5) O(f(b,f(f(e,b),l(d,d)))). ** KEPT: 1430 (68,9,24,6) O(f(f(b,f(e,b)),g(b))). ** KEPT: 1431 (68,9,24,5) O(f(b,f(f(e,b),g(b)))). ** KEPT: 1432 (68,9,23,6) O(f(f(b,f(e,b)),f(b,e))). ** KEPT: 1433 (68,9,23,5) O(f(b,f(f(e,b),f(b,e)))). ** KEPT: 1434 (68,9,22,6) O(f(f(b,f(e,b)),f(e,b))). ** KEPT: 1435 (68,9,22,5) O(f(b,f(f(e,b),f(e,b)))). ** KEPT: 1436 (68,9,21,6) O(f(f(b,f(e,b)),f(b,b))). ** KEPT: 1437 (68,9,21,5) O(f(b,f(f(e,b),f(b,b)))). ** KEPT: 1438 (68,9,12,6) O(f(f(b,f(e,b)),b)). ** KEPT: 1439 (68,9,12,5) O(f(b,f(f(e,b),b))). ** KEPT: 1440 (68,9,7,6) O(f(f(b,f(e,b)),e)). ** KEPT: 1441 (68,9,7,5) O(f(b,f(f(e,b),e))). ** KEPT: 1442 (4,68) O(f(b,f(f(x,g(x)),b))). ** KEPT: 1443 (3,68) O(f(b,f(f(g(x),x),b))). new given clause: 69 (22,9,7,6) O(f(e,f(e,b))). ** KEPT: 1444 (69,9,303,150) -EQUAL(f(f(e,e),f(e,f(e,b))),f(a,c)). ** KEPT: 1445 (69,9,303,15) -EQUAL(f(f(e,e),f(e,f(e,b))),d). ** KEPT: 1446 (69,9,142,150) -EQUAL(f(g(l(d,d)),f(e,f(e,b))),f(a,c)). ** KEPT: 1447 (69,9,142,15) -EQUAL(f(g(l(d,d)),f(e,f(e,b))),d). ** KEPT: 1448 (69,9,69,150) -EQUAL(f(f(e,f(e,b)),f(e,f(e,b))),f(a,c)). ** KEPT: 1449 (69,9,69,15) -EQUAL(f(f(e,f(e,b)),f(e,f(e,b))),d). ** KEPT: 1450 (69,9,68,150) -EQUAL(f(f(b,f(e,b)),f(e,f(e,b))),f(a,c)). ** KEPT: 1451 (69,9,68,15) -EQUAL(f(f(b,f(e,b)),f(e,f(e,b))),d). ** KEPT: 1452 (69,9,57,150) -EQUAL(f(f(b,f(b,e)),f(e,f(e,b))),f(a,c)). ** KEPT: 1453 (69,9,57,15) -EQUAL(f(f(b,f(b,e)),f(e,f(e,b))),d). ** KEPT: 1454 (69,9,56,150) -EQUAL(f(f(f(b,b),e),f(e,f(e,b))),f(a,c)). ** KEPT: 1455 (69,9,56,15) -EQUAL(f(f(f(b,b),e),f(e,f(e,b))),d). ** KEPT: 1456 (69,9,55,150) -EQUAL(f(f(f(b,b),b),f(e,f(e,b))),f(a,c)). ** KEPT: 1457 (69,9,55,15) -EQUAL(f(f(f(b,b),b),f(e,f(e,b))),d). ** KEPT: 1458 (69,9,49,150) -EQUAL(f(f(e,f(b,b)),f(e,f(e,b))),f(a,c)). ** KEPT: 1459 (69,9,49,15) -EQUAL(f(f(e,f(b,b)),f(e,f(e,b))),d). ** KEPT: 1460 (69,9,48,150) -EQUAL(f(f(b,f(b,b)),f(e,f(e,b))),f(a,c)). ** KEPT: 1461 (69,9,48,15) -EQUAL(f(f(b,f(b,b)),f(e,f(e,b))),d). ** KEPT: 1462 (69,9,41,150) -EQUAL(f(f(g(b),e),f(e,f(e,b))),f(a,c)). ** KEPT: 1463 (69,9,41,15) -EQUAL(f(f(g(b),e),f(e,f(e,b))),d). ** KEPT: 1464 (69,9,40,150) -EQUAL(f(f(g(b),b),f(e,f(e,b))),f(a,c)). ** KEPT: 1465 (69,9,40,15) -EQUAL(f(f(g(b),b),f(e,f(e,b))),d). ** KEPT: 1466 (69,9,37,150) -EQUAL(f(f(e,g(b)),f(e,f(e,b))),f(a,c)). ** KEPT: 1467 (69,9,37,15) -EQUAL(f(f(e,g(b)),f(e,f(e,b))),d). ** KEPT: 1468 (69,9,36,150) -EQUAL(f(f(b,g(b)),f(e,f(e,b))),f(a,c)). ** KEPT: 1469 (69,9,36,15) -EQUAL(f(f(b,g(b)),f(e,f(e,b))),d). ** KEPT: 1470 (69,9,35,150) -EQUAL(f(f(g(b),g(b)),f(e,f(e,b))),f(a,c)). ** KEPT: 1471 (69,9,35,15) -EQUAL(f(f(g(b),g(b)),f(e,f(e,b))),d). ** KEPT: 1472 (69,9,27,150) -EQUAL(f(l(d,d),f(e,f(e,b))),f(a,c)). ** KEPT: 1473 (69,9,27,15) -EQUAL(f(l(d,d),f(e,f(e,b))),d). ** KEPT: 1474 (69,9,24,150) -EQUAL(f(g(b),f(e,f(e,b))),f(a,c)). ** KEPT: 1475 (69,9,24,15) -EQUAL(f(g(b),f(e,f(e,b))),d). ** KEPT: 1476 (69,9,23,150) -EQUAL(f(f(b,e),f(e,f(e,b))),f(a,c)). ** KEPT: 1477 (69,9,23,15) -EQUAL(f(f(b,e),f(e,f(e,b))),d). ** KEPT: 1478 (69,9,22,150) -EQUAL(f(f(e,b),f(e,f(e,b))),f(a,c)). ** KEPT: 1479 (69,9,22,15) -EQUAL(f(f(e,b),f(e,f(e,b))),d). ** KEPT: 1480 (69,9,21,150) -EQUAL(f(f(b,b),f(e,f(e,b))),f(a,c)). ** KEPT: 1481 (69,9,21,15) -EQUAL(f(f(b,b),f(e,f(e,b))),d). ** KEPT: 1482 (69,9,12,150) -EQUAL(f(b,f(e,f(e,b))),f(a,c)). ** KEPT: 1483 (69,9,12,15) -EQUAL(f(b,f(e,f(e,b))),d). ** KEPT: 1484 (69,9,7,150) -EQUAL(f(e,f(e,f(e,b))),f(a,c)). ** KEPT: 1485 (69,9,7,15) -EQUAL(f(e,f(e,f(e,b))),d). ** KEPT: 1486 (69,9,303,6) O(f(f(e,e),f(e,f(e,b)))). ** KEPT: 1487 (69,9,303,5) O(f(e,f(e,f(e,f(e,b))))). ** KEPT: 1488 (69,9,142,6) O(f(g(l(d,d)),f(e,f(e,b)))). ** KEPT: 1489 (69,9,69,6) O(f(f(e,f(e,b)),f(e,f(e,b)))). ** KEPT: 1490 (69,9,69,5) O(f(e,f(f(e,b),f(e,f(e,b))))). ** KEPT: 1491 (69,9,68,6) O(f(f(b,f(e,b)),f(e,f(e,b)))). ** KEPT: 1492 (69,9,68,5) O(f(b,f(f(e,b),f(e,f(e,b))))). ** KEPT: 1493 (69,9,57,6) O(f(f(b,f(b,e)),f(e,f(e,b)))). ** KEPT: 1494 (69,9,57,5) O(f(b,f(f(b,e),f(e,f(e,b))))). ** KEPT: 1495 (69,9,56,6) O(f(f(f(b,b),e),f(e,f(e,b)))). ** KEPT: 1496 (69,9,56,5) O(f(f(b,b),f(e,f(e,f(e,b))))). ** KEPT: 1497 (69,9,55,6) O(f(f(f(b,b),b),f(e,f(e,b)))). ** KEPT: 1498 (69,9,55,5) O(f(f(b,b),f(b,f(e,f(e,b))))). ** KEPT: 1499 (69,9,49,6) O(f(f(e,f(b,b)),f(e,f(e,b)))). ** KEPT: 1500 (69,9,49,5) O(f(e,f(f(b,b),f(e,f(e,b))))). ** KEPT: 1501 (69,9,48,6) O(f(f(b,f(b,b)),f(e,f(e,b)))). ** KEPT: 1502 (69,9,48,5) O(f(b,f(f(b,b),f(e,f(e,b))))). ** KEPT: 1503 (69,9,41,6) O(f(f(g(b),e),f(e,f(e,b)))). ** KEPT: 1504 (69,9,41,5) O(f(g(b),f(e,f(e,f(e,b))))). ** KEPT: 1505 (69,9,40,6) O(f(f(g(b),b),f(e,f(e,b)))). ** KEPT: 1506 (69,9,37,6) O(f(f(e,g(b)),f(e,f(e,b)))). ** KEPT: 1507 (69,9,37,5) O(f(e,f(g(b),f(e,f(e,b))))). ** KEPT: 1508 (69,9,36,6) O(f(f(b,g(b)),f(e,f(e,b)))). ** KEPT: 1509 (69,9,35,6) O(f(f(g(b),g(b)),f(e,f(e,b)))). ** KEPT: 1510 (69,9,35,5) O(f(g(b),f(g(b),f(e,f(e,b))))). ** KEPT: 1511 (69,9,27,6) O(f(l(d,d),f(e,f(e,b)))). ** KEPT: 1512 (69,9,23,6) O(f(f(b,e),f(e,f(e,b)))). ** KEPT: 1513 (69,9,23,5) O(f(b,f(e,f(e,f(e,b))))). ** KEPT: 1514 (69,9,22,6) O(f(f(e,b),f(e,f(e,b)))). ** KEPT: 1515 (69,9,22,5) O(f(e,f(b,f(e,f(e,b))))). ** KEPT: 1516 (69,9,21,5) O(f(b,f(b,f(e,f(e,b))))). ** KEPT: 1517 (69,9,303,150) -EQUAL(f(f(e,f(e,b)),f(e,e)),f(a,c)). ** KEPT: 1518 (69,9,303,15) -EQUAL(f(f(e,f(e,b)),f(e,e)),d). ** KEPT: 1519 (69,9,142,150) -EQUAL(f(f(e,f(e,b)),g(l(d,d))),f(a,c)). ** KEPT: 1520 (69,9,142,15) -EQUAL(f(f(e,f(e,b)),g(l(d,d))),d). ** KEPT: 1521 (69,9,68,150) -EQUAL(f(f(e,f(e,b)),f(b,f(e,b))),f(a,c)). ** KEPT: 1522 (69,9,68,15) -EQUAL(f(f(e,f(e,b)),f(b,f(e,b))),d). ** KEPT: 1523 (69,9,57,150) -EQUAL(f(f(e,f(e,b)),f(b,f(b,e))),f(a,c)). ** KEPT: 1524 (69,9,57,15) -EQUAL(f(f(e,f(e,b)),f(b,f(b,e))),d). ** KEPT: 1525 (69,9,56,150) -EQUAL(f(f(e,f(e,b)),f(f(b,b),e)),f(a,c)). ** KEPT: 1526 (69,9,56,15) -EQUAL(f(f(e,f(e,b)),f(f(b,b),e)),d). ** KEPT: 1527 (69,9,55,150) -EQUAL(f(f(e,f(e,b)),f(f(b,b),b)),f(a,c)). ** KEPT: 1528 (69,9,55,15) -EQUAL(f(f(e,f(e,b)),f(f(b,b),b)),d). ** KEPT: 1529 (69,9,49,150) -EQUAL(f(f(e,f(e,b)),f(e,f(b,b))),f(a,c)). ** KEPT: 1530 (69,9,49,15) -EQUAL(f(f(e,f(e,b)),f(e,f(b,b))),d). ** KEPT: 1531 (69,9,48,150) -EQUAL(f(f(e,f(e,b)),f(b,f(b,b))),f(a,c)). ** KEPT: 1532 (69,9,48,15) -EQUAL(f(f(e,f(e,b)),f(b,f(b,b))),d). ** KEPT: 1533 (69,9,41,150) -EQUAL(f(f(e,f(e,b)),f(g(b),e)),f(a,c)). ** KEPT: 1534 (69,9,41,15) -EQUAL(f(f(e,f(e,b)),f(g(b),e)),d). ** KEPT: 1535 (69,9,40,150) -EQUAL(f(f(e,f(e,b)),f(g(b),b)),f(a,c)). ** KEPT: 1536 (69,9,40,15) -EQUAL(f(f(e,f(e,b)),f(g(b),b)),d). ** KEPT: 1537 (69,9,37,150) -EQUAL(f(f(e,f(e,b)),f(e,g(b))),f(a,c)). ** KEPT: 1538 (69,9,37,15) -EQUAL(f(f(e,f(e,b)),f(e,g(b))),d). ** KEPT: 1539 (69,9,36,150) -EQUAL(f(f(e,f(e,b)),f(b,g(b))),f(a,c)). ** KEPT: 1540 (69,9,36,15) -EQUAL(f(f(e,f(e,b)),f(b,g(b))),d). ** KEPT: 1541 (69,9,35,150) -EQUAL(f(f(e,f(e,b)),f(g(b),g(b))),f(a,c)). ** KEPT: 1542 (69,9,35,15) -EQUAL(f(f(e,f(e,b)),f(g(b),g(b))),d). ** KEPT: 1543 (69,9,27,150) -EQUAL(f(f(e,f(e,b)),l(d,d)),f(a,c)). ** KEPT: 1544 (69,9,27,15) -EQUAL(f(f(e,f(e,b)),l(d,d)),d). ** KEPT: 1545 (69,9,24,150) -EQUAL(f(f(e,f(e,b)),g(b)),f(a,c)). ** KEPT: 1546 (69,9,24,15) -EQUAL(f(f(e,f(e,b)),g(b)),d). ** KEPT: 1547 (69,9,23,150) -EQUAL(f(f(e,f(e,b)),f(b,e)),f(a,c)). ** KEPT: 1548 (69,9,23,15) -EQUAL(f(f(e,f(e,b)),f(b,e)),d). ** KEPT: 1549 (69,9,22,150) -EQUAL(f(f(e,f(e,b)),f(e,b)),f(a,c)). ** KEPT: 1550 (69,9,22,15) -EQUAL(f(f(e,f(e,b)),f(e,b)),d). ** KEPT: 1551 (69,9,21,150) -EQUAL(f(f(e,f(e,b)),f(b,b)),f(a,c)). ** KEPT: 1552 (69,9,21,15) -EQUAL(f(f(e,f(e,b)),f(b,b)),d). ** KEPT: 1553 (69,9,12,150) -EQUAL(f(f(e,f(e,b)),b),f(a,c)). ** KEPT: 1554 (69,9,12,15) -EQUAL(f(f(e,f(e,b)),b),d). ** KEPT: 1555 (69,9,7,150) -EQUAL(f(f(e,f(e,b)),e),f(a,c)). ** KEPT: 1556 (69,9,7,15) -EQUAL(f(f(e,f(e,b)),e),d). ** KEPT: 1557 (69,9,303,6) O(f(f(e,f(e,b)),f(e,e))). ** KEPT: 1558 (69,9,303,5) O(f(e,f(f(e,b),f(e,e)))). ** KEPT: 1559 (69,9,142,6) O(f(f(e,f(e,b)),g(l(d,d)))). ** KEPT: 1560 (69,9,142,5) O(f(e,f(f(e,b),g(l(d,d))))). ** KEPT: 1561 (69,9,68,6) O(f(f(e,f(e,b)),f(b,f(e,b)))). ** KEPT: 1562 (69,9,68,5) O(f(e,f(f(e,b),f(b,f(e,b))))). ** KEPT: 1563 (69,9,57,6) O(f(f(e,f(e,b)),f(b,f(b,e)))). ** KEPT: 1564 (69,9,57,5) O(f(e,f(f(e,b),f(b,f(b,e))))). ** KEPT: 1565 (69,9,56,6) O(f(f(e,f(e,b)),f(f(b,b),e))). ** KEPT: 1566 (69,9,56,5) O(f(e,f(f(e,b),f(f(b,b),e)))). ** KEPT: 1567 (69,9,55,6) O(f(f(e,f(e,b)),f(f(b,b),b))). ** KEPT: 1568 (69,9,55,5) O(f(e,f(f(e,b),f(f(b,b),b)))). ** KEPT: 1569 (69,9,49,6) O(f(f(e,f(e,b)),f(e,f(b,b)))). ** KEPT: 1570 (69,9,49,5) O(f(e,f(f(e,b),f(e,f(b,b))))). ** KEPT: 1571 (69,9,48,6) O(f(f(e,f(e,b)),f(b,f(b,b)))). ** KEPT: 1572 (69,9,48,5) O(f(e,f(f(e,b),f(b,f(b,b))))). ** KEPT: 1573 (69,9,41,6) O(f(f(e,f(e,b)),f(g(b),e))). ** KEPT: 1574 (69,9,41,5) O(f(e,f(f(e,b),f(g(b),e)))). ** KEPT: 1575 (69,9,40,6) O(f(f(e,f(e,b)),f(g(b),b))). ** KEPT: 1576 (69,9,40,5) O(f(e,f(f(e,b),f(g(b),b)))). ** KEPT: 1577 (69,9,37,6) O(f(f(e,f(e,b)),f(e,g(b)))). ** KEPT: 1578 (69,9,37,5) O(f(e,f(f(e,b),f(e,g(b))))). ** KEPT: 1579 (69,9,36,6) O(f(f(e,f(e,b)),f(b,g(b)))). ** KEPT: 1580 (69,9,36,5) O(f(e,f(f(e,b),f(b,g(b))))). ** KEPT: 1581 (69,9,35,6) O(f(f(e,f(e,b)),f(g(b),g(b)))). ** KEPT: 1582 (69,9,35,5) O(f(e,f(f(e,b),f(g(b),g(b))))). ** KEPT: 1583 (69,9,27,6) O(f(f(e,f(e,b)),l(d,d))). ** KEPT: 1584 (69,9,27,5) O(f(e,f(f(e,b),l(d,d)))). ** KEPT: 1585 (69,9,24,6) O(f(f(e,f(e,b)),g(b))). ** KEPT: 1586 (69,9,24,5) O(f(e,f(f(e,b),g(b)))). ** KEPT: 1587 (69,9,23,6) O(f(f(e,f(e,b)),f(b,e))). ** KEPT: 1588 (69,9,23,5) O(f(e,f(f(e,b),f(b,e)))). ** KEPT: 1589 (69,9,22,6) O(f(f(e,f(e,b)),f(e,b))). ** KEPT: 1590 (69,9,22,5) O(f(e,f(f(e,b),f(e,b)))). ** KEPT: 1591 (69,9,21,6) O(f(f(e,f(e,b)),f(b,b))). ** KEPT: 1592 (69,9,21,5) O(f(e,f(f(e,b),f(b,b)))). ** KEPT: 1593 (69,9,12,6) O(f(f(e,f(e,b)),b)). ** KEPT: 1594 (69,9,12,5) O(f(e,f(f(e,b),b))). ** KEPT: 1595 (69,9,7,6) O(f(f(e,f(e,b)),e)). ** KEPT: 1596 (69,9,7,5) O(f(e,f(f(e,b),e))). ** KEPT: 1597 (4,69) O(f(f(x,g(x)),f(e,b))). ** KEPT: 1598 (3,69) O(f(f(g(x),x),f(e,b))). ** KEPT: 1599 (4,69) O(f(e,f(f(x,g(x)),b))). ** KEPT: 1600 (3,69) O(f(e,f(f(g(x),x),b))). 1597 back subsumes: 248 (36,9,22,6) O(f(f(b,g(b)),f(e,b))). 1598 back subsumes: 438 (40,9,22,6) O(f(f(g(b),b),f(e,b))). new given clause: 78 (22,9,12,6) O(f(f(e,b),b)). ** KEPT: 1601 (78,9,303,150) -EQUAL(f(f(e,e),f(f(e,b),b)),f(a,c)). ** KEPT: 1602 (78,9,303,15) -EQUAL(f(f(e,e),f(f(e,b),b)),d). ** KEPT: 1603 (78,9,142,150) -EQUAL(f(g(l(d,d)),f(f(e,b),b)),f(a,c)). ** KEPT: 1604 (78,9,142,15) -EQUAL(f(g(l(d,d)),f(f(e,b),b)),d). ** KEPT: 1605 (78,9,78,150) -EQUAL(f(f(f(e,b),b),f(f(e,b),b)),f(a,c)). ** KEPT: 1606 (78,9,78,15) -EQUAL(f(f(f(e,b),b),f(f(e,b),b)),d). ** KEPT: 1607 (78,9,69,150) -EQUAL(f(f(e,f(e,b)),f(f(e,b),b)),f(a,c)). ** KEPT: 1608 (78,9,69,15) -EQUAL(f(f(e,f(e,b)),f(f(e,b),b)),d). ** KEPT: 1609 (78,9,68,150) -EQUAL(f(f(b,f(e,b)),f(f(e,b),b)),f(a,c)). ** KEPT: 1610 (78,9,68,15) -EQUAL(f(f(b,f(e,b)),f(f(e,b),b)),d). ** KEPT: 1611 (78,9,57,150) -EQUAL(f(f(b,f(b,e)),f(f(e,b),b)),f(a,c)). ** KEPT: 1612 (78,9,57,15) -EQUAL(f(f(b,f(b,e)),f(f(e,b),b)),d). ** KEPT: 1613 (78,9,56,150) -EQUAL(f(f(f(b,b),e),f(f(e,b),b)),f(a,c)). ** KEPT: 1614 (78,9,56,15) -EQUAL(f(f(f(b,b),e),f(f(e,b),b)),d). ** KEPT: 1615 (78,9,55,150) -EQUAL(f(f(f(b,b),b),f(f(e,b),b)),f(a,c)). ** KEPT: 1616 (78,9,55,15) -EQUAL(f(f(f(b,b),b),f(f(e,b),b)),d). ** KEPT: 1617 (78,9,49,150) -EQUAL(f(f(e,f(b,b)),f(f(e,b),b)),f(a,c)). ** KEPT: 1618 (78,9,49,15) -EQUAL(f(f(e,f(b,b)),f(f(e,b),b)),d). ** KEPT: 1619 (78,9,48,150) -EQUAL(f(f(b,f(b,b)),f(f(e,b),b)),f(a,c)). ** KEPT: 1620 (78,9,48,15) -EQUAL(f(f(b,f(b,b)),f(f(e,b),b)),d). ** KEPT: 1621 (78,9,41,150) -EQUAL(f(f(g(b),e),f(f(e,b),b)),f(a,c)). ** KEPT: 1622 (78,9,41,15) -EQUAL(f(f(g(b),e),f(f(e,b),b)),d). ** KEPT: 1623 (78,9,40,150) -EQUAL(f(f(g(b),b),f(f(e,b),b)),f(a,c)). ** KEPT: 1624 (78,9,40,15) -EQUAL(f(f(g(b),b),f(f(e,b),b)),d). ** KEPT: 1625 (78,9,37,150) -EQUAL(f(f(e,g(b)),f(f(e,b),b)),f(a,c)). ** KEPT: 1626 (78,9,37,15) -EQUAL(f(f(e,g(b)),f(f(e,b),b)),d). ** KEPT: 1627 (78,9,36,150) -EQUAL(f(f(b,g(b)),f(f(e,b),b)),f(a,c)). ** KEPT: 1628 (78,9,36,15) -EQUAL(f(f(b,g(b)),f(f(e,b),b)),d). ** KEPT: 1629 (78,9,35,150) -EQUAL(f(f(g(b),g(b)),f(f(e,b),b)),f(a,c)). ** KEPT: 1630 (78,9,35,15) -EQUAL(f(f(g(b),g(b)),f(f(e,b),b)),d). ** KEPT: 1631 (78,9,27,150) -EQUAL(f(l(d,d),f(f(e,b),b)),f(a,c)). ** KEPT: 1632 (78,9,27,15) -EQUAL(f(l(d,d),f(f(e,b),b)),d). ** KEPT: 1633 (78,9,24,150) -EQUAL(f(g(b),f(f(e,b),b)),f(a,c)). ** KEPT: 1634 (78,9,24,15) -EQUAL(f(g(b),f(f(e,b),b)),d). ** KEPT: 1635 (78,9,23,150) -EQUAL(f(f(b,e),f(f(e,b),b)),f(a,c)). ** KEPT: 1636 (78,9,23,15) -EQUAL(f(f(b,e),f(f(e,b),b)),d). ** KEPT: 1637 (78,9,22,150) -EQUAL(f(f(e,b),f(f(e,b),b)),f(a,c)). ** KEPT: 1638 (78,9,22,15) -EQUAL(f(f(e,b),f(f(e,b),b)),d). ** KEPT: 1639 (78,9,21,150) -EQUAL(f(f(b,b),f(f(e,b),b)),f(a,c)). ** KEPT: 1640 (78,9,21,15) -EQUAL(f(f(b,b),f(f(e,b),b)),d). ** KEPT: 1641 (78,9,12,150) -EQUAL(f(b,f(f(e,b),b)),f(a,c)). ** KEPT: 1642 (78,9,12,15) -EQUAL(f(b,f(f(e,b),b)),d). ** KEPT: 1643 (78,9,7,150) -EQUAL(f(e,f(f(e,b),b)),f(a,c)). ** KEPT: 1644 (78,9,7,15) -EQUAL(f(e,f(f(e,b),b)),d). ** KEPT: 1645 (78,9,303,6) O(f(f(e,e),f(f(e,b),b))). ** KEPT: 1646 (78,9,303,5) O(f(e,f(e,f(f(e,b),b)))). ** KEPT: 1647 (78,9,142,6) O(f(g(l(d,d)),f(f(e,b),b))). ** KEPT: 1648 (78,9,78,6) O(f(f(f(e,b),b),f(f(e,b),b))). ** KEPT: 1649 (78,9,78,5) O(f(f(e,b),f(b,f(f(e,b),b)))). ** KEPT: 1650 (78,9,69,6) O(f(f(e,f(e,b)),f(f(e,b),b))). ** KEPT: 1651 (78,9,69,5) O(f(e,f(f(e,b),f(f(e,b),b)))). ** KEPT: 1652 (78,9,68,6) O(f(f(b,f(e,b)),f(f(e,b),b))). ** KEPT: 1653 (78,9,68,5) O(f(b,f(f(e,b),f(f(e,b),b)))). ** KEPT: 1654 (78,9,57,6) O(f(f(b,f(b,e)),f(f(e,b),b))). ** KEPT: 1655 (78,9,57,5) O(f(b,f(f(b,e),f(f(e,b),b)))). ** KEPT: 1656 (78,9,56,6) O(f(f(f(b,b),e),f(f(e,b),b))). ** KEPT: 1657 (78,9,56,5) O(f(f(b,b),f(e,f(f(e,b),b)))). ** KEPT: 1658 (78,9,55,6) O(f(f(f(b,b),b),f(f(e,b),b))). ** KEPT: 1659 (78,9,55,5) O(f(f(b,b),f(b,f(f(e,b),b)))). ** KEPT: 1660 (78,9,49,6) O(f(f(e,f(b,b)),f(f(e,b),b))). ** KEPT: 1661 (78,9,49,5) O(f(e,f(f(b,b),f(f(e,b),b)))). ** KEPT: 1662 (78,9,48,6) O(f(f(b,f(b,b)),f(f(e,b),b))). ** KEPT: 1663 (78,9,48,5) O(f(b,f(f(b,b),f(f(e,b),b)))). ** KEPT: 1664 (78,9,41,6) O(f(f(g(b),e),f(f(e,b),b))). ** KEPT: 1665 (78,9,41,5) O(f(g(b),f(e,f(f(e,b),b)))). ** KEPT: 1666 (78,9,40,6) O(f(f(g(b),b),f(f(e,b),b))). ** KEPT: 1667 (78,9,37,6) O(f(f(e,g(b)),f(f(e,b),b))). ** KEPT: 1668 (78,9,37,5) O(f(e,f(g(b),f(f(e,b),b)))). ** KEPT: 1669 (78,9,36,6) O(f(f(b,g(b)),f(f(e,b),b))). ** KEPT: 1670 (78,9,35,6) O(f(f(g(b),g(b)),f(f(e,b),b))). ** KEPT: 1671 (78,9,35,5) O(f(g(b),f(g(b),f(f(e,b),b)))). ** KEPT: 1672 (78,9,27,6) O(f(l(d,d),f(f(e,b),b))). ** KEPT: 1673 (78,9,24,6) O(f(g(b),f(f(e,b),b))). ** KEPT: 1674 (78,9,23,6) O(f(f(b,e),f(f(e,b),b))). ** KEPT: 1675 (78,9,23,5) O(f(b,f(e,f(f(e,b),b)))). ** KEPT: 1676 (78,9,22,6) O(f(f(e,b),f(f(e,b),b))). ** KEPT: 1677 (78,9,22,5) O(f(e,f(b,f(f(e,b),b)))). ** KEPT: 1678 (78,9,21,6) O(f(f(b,b),f(f(e,b),b))). ** KEPT: 1679 (78,9,21,5) O(f(b,f(b,f(f(e,b),b)))). ** KEPT: 1680 (78,9,303,150) -EQUAL(f(f(f(e,b),b),f(e,e)),f(a,c)). ** KEPT: 1681 (78,9,303,15) -EQUAL(f(f(f(e,b),b),f(e,e)),d). ** KEPT: 1682 (78,9,142,150) -EQUAL(f(f(f(e,b),b),g(l(d,d))),f(a,c)). ** KEPT: 1683 (78,9,142,15) -EQUAL(f(f(f(e,b),b),g(l(d,d))),d). ** KEPT: 1684 (78,9,69,150) -EQUAL(f(f(f(e,b),b),f(e,f(e,b))),f(a,c)). ** KEPT: 1685 (78,9,69,15) -EQUAL(f(f(f(e,b),b),f(e,f(e,b))),d). ** KEPT: 1686 (78,9,68,150) -EQUAL(f(f(f(e,b),b),f(b,f(e,b))),f(a,c)). ** KEPT: 1687 (78,9,68,15) -EQUAL(f(f(f(e,b),b),f(b,f(e,b))),d). ** KEPT: 1688 (78,9,57,150) -EQUAL(f(f(f(e,b),b),f(b,f(b,e))),f(a,c)). ** KEPT: 1689 (78,9,57,15) -EQUAL(f(f(f(e,b),b),f(b,f(b,e))),d). ** KEPT: 1690 (78,9,56,150) -EQUAL(f(f(f(e,b),b),f(f(b,b),e)),f(a,c)). ** KEPT: 1691 (78,9,56,15) -EQUAL(f(f(f(e,b),b),f(f(b,b),e)),d). ** KEPT: 1692 (78,9,55,150) -EQUAL(f(f(f(e,b),b),f(f(b,b),b)),f(a,c)). ** KEPT: 1693 (78,9,55,15) -EQUAL(f(f(f(e,b),b),f(f(b,b),b)),d). ** KEPT: 1694 (78,9,49,150) -EQUAL(f(f(f(e,b),b),f(e,f(b,b))),f(a,c)). ** KEPT: 1695 (78,9,49,15) -EQUAL(f(f(f(e,b),b),f(e,f(b,b))),d). ** KEPT: 1696 (78,9,48,150) -EQUAL(f(f(f(e,b),b),f(b,f(b,b))),f(a,c)). ** KEPT: 1697 (78,9,48,15) -EQUAL(f(f(f(e,b),b),f(b,f(b,b))),d). ** KEPT: 1698 (78,9,41,150) -EQUAL(f(f(f(e,b),b),f(g(b),e)),f(a,c)). ** KEPT: 1699 (78,9,41,15) -EQUAL(f(f(f(e,b),b),f(g(b),e)),d). ** KEPT: 1700 (78,9,40,150) -EQUAL(f(f(f(e,b),b),f(g(b),b)),f(a,c)). ** KEPT: 1701 (78,9,40,15) -EQUAL(f(f(f(e,b),b),f(g(b),b)),d). ** KEPT: 1702 (78,9,37,150) -EQUAL(f(f(f(e,b),b),f(e,g(b))),f(a,c)). ** KEPT: 1703 (78,9,37,15) -EQUAL(f(f(f(e,b),b),f(e,g(b))),d). ** KEPT: 1704 (78,9,36,150) -EQUAL(f(f(f(e,b),b),f(b,g(b))),f(a,c)). ** KEPT: 1705 (78,9,36,15) -EQUAL(f(f(f(e,b),b),f(b,g(b))),d). ** KEPT: 1706 (78,9,35,150) -EQUAL(f(f(f(e,b),b),f(g(b),g(b))),f(a,c)). ** KEPT: 1707 (78,9,35,15) -EQUAL(f(f(f(e,b),b),f(g(b),g(b))),d). ** KEPT: 1708 (78,9,27,150) -EQUAL(f(f(f(e,b),b),l(d,d)),f(a,c)). ** KEPT: 1709 (78,9,27,15) -EQUAL(f(f(f(e,b),b),l(d,d)),d). ** KEPT: 1710 (78,9,24,150) -EQUAL(f(f(f(e,b),b),g(b)),f(a,c)). ** KEPT: 1711 (78,9,24,15) -EQUAL(f(f(f(e,b),b),g(b)),d). ** KEPT: 1712 (78,9,23,150) -EQUAL(f(f(f(e,b),b),f(b,e)),f(a,c)). ** KEPT: 1713 (78,9,23,15) -EQUAL(f(f(f(e,b),b),f(b,e)),d). ** KEPT: 1714 (78,9,22,150) -EQUAL(f(f(f(e,b),b),f(e,b)),f(a,c)). ** KEPT: 1715 (78,9,22,15) -EQUAL(f(f(f(e,b),b),f(e,b)),d). ** KEPT: 1716 (78,9,21,150) -EQUAL(f(f(f(e,b),b),f(b,b)),f(a,c)). ** KEPT: 1717 (78,9,21,15) -EQUAL(f(f(f(e,b),b),f(b,b)),d). ** KEPT: 1718 (78,9,12,150) -EQUAL(f(f(f(e,b),b),b),f(a,c)). ** KEPT: 1719 (78,9,12,15) -EQUAL(f(f(f(e,b),b),b),d). ** KEPT: 1720 (78,9,7,150) -EQUAL(f(f(f(e,b),b),e),f(a,c)). ** KEPT: 1721 (78,9,7,15) -EQUAL(f(f(f(e,b),b),e),d). ** KEPT: 1722 (78,9,303,6) O(f(f(f(e,b),b),f(e,e))). ** KEPT: 1723 (78,9,303,5) O(f(f(e,b),f(b,f(e,e)))). ** KEPT: 1724 (78,9,142,6) O(f(f(f(e,b),b),g(l(d,d)))). ** KEPT: 1725 (78,9,142,5) O(f(f(e,b),f(b,g(l(d,d))))). ** KEPT: 1726 (78,9,69,6) O(f(f(f(e,b),b),f(e,f(e,b)))). ** KEPT: 1727 (78,9,69,5) O(f(f(e,b),f(b,f(e,f(e,b))))). ** KEPT: 1728 (78,9,68,6) O(f(f(f(e,b),b),f(b,f(e,b)))). ** KEPT: 1729 (78,9,68,5) O(f(f(e,b),f(b,f(b,f(e,b))))). ** KEPT: 1730 (78,9,57,6) O(f(f(f(e,b),b),f(b,f(b,e)))). ** KEPT: 1731 (78,9,57,5) O(f(f(e,b),f(b,f(b,f(b,e))))). ** KEPT: 1732 (78,9,56,6) O(f(f(f(e,b),b),f(f(b,b),e))). ** KEPT: 1733 (78,9,56,5) O(f(f(e,b),f(b,f(f(b,b),e)))). ** KEPT: 1734 (78,9,55,6) O(f(f(f(e,b),b),f(f(b,b),b))). ** KEPT: 1735 (78,9,55,5) O(f(f(e,b),f(b,f(f(b,b),b)))). ** KEPT: 1736 (78,9,49,6) O(f(f(f(e,b),b),f(e,f(b,b)))). ** KEPT: 1737 (78,9,49,5) O(f(f(e,b),f(b,f(e,f(b,b))))). ** KEPT: 1738 (78,9,48,6) O(f(f(f(e,b),b),f(b,f(b,b)))). ** KEPT: 1739 (78,9,48,5) O(f(f(e,b),f(b,f(b,f(b,b))))). ** KEPT: 1740 (78,9,41,6) O(f(f(f(e,b),b),f(g(b),e))). ** KEPT: 1741 (78,9,40,6) O(f(f(f(e,b),b),f(g(b),b))). ** KEPT: 1742 (78,9,37,6) O(f(f(f(e,b),b),f(e,g(b)))). ** KEPT: 1743 (78,9,37,5) O(f(f(e,b),f(b,f(e,g(b))))). ** KEPT: 1744 (78,9,36,6) O(f(f(f(e,b),b),f(b,g(b)))). ** KEPT: 1745 (78,9,36,5) O(f(f(e,b),f(b,f(b,g(b))))). ** KEPT: 1746 (78,9,35,6) O(f(f(f(e,b),b),f(g(b),g(b)))). ** KEPT: 1747 (78,9,27,6) O(f(f(f(e,b),b),l(d,d))). ** KEPT: 1748 (78,9,27,5) O(f(f(e,b),f(b,l(d,d)))). ** KEPT: 1749 (78,9,24,6) O(f(f(f(e,b),b),g(b))). ** KEPT: 1750 (78,9,23,6) O(f(f(f(e,b),b),f(b,e))). ** KEPT: 1751 (78,9,22,6) O(f(f(f(e,b),b),f(e,b))). ** KEPT: 1752 (78,9,21,6) O(f(f(f(e,b),b),f(b,b))). ** KEPT: 1753 (78,9,12,6) O(f(f(f(e,b),b),b)). ** KEPT: 1754 (78,9,7,6) O(f(f(f(e,b),b),e)). ** KEPT: 1755 (4,78) O(f(f(f(x,g(x)),b),b)). ** KEPT: 1756 (3,78) O(f(f(f(g(x),x),b),b)). new given clause: 79 (22,9,7,6) O(f(f(e,b),e)). ** KEPT: 1757 (79,9,303,150) -EQUAL(f(f(e,e),f(f(e,b),e)),f(a,c)). ** KEPT: 1758 (79,9,303,15) -EQUAL(f(f(e,e),f(f(e,b),e)),d). ** KEPT: 1759 (79,9,142,150) -EQUAL(f(g(l(d,d)),f(f(e,b),e)),f(a,c)). ** KEPT: 1760 (79,9,142,15) -EQUAL(f(g(l(d,d)),f(f(e,b),e)),d). ** KEPT: 1761 (79,9,79,150) -EQUAL(f(f(f(e,b),e),f(f(e,b),e)),f(a,c)). ** KEPT: 1762 (79,9,79,15) -EQUAL(f(f(f(e,b),e),f(f(e,b),e)),d). ** KEPT: 1763 (79,9,78,150) -EQUAL(f(f(f(e,b),b),f(f(e,b),e)),f(a,c)). ** KEPT: 1764 (79,9,78,15) -EQUAL(f(f(f(e,b),b),f(f(e,b),e)),d). ** KEPT: 1765 (79,9,69,150) -EQUAL(f(f(e,f(e,b)),f(f(e,b),e)),f(a,c)). ** KEPT: 1766 (79,9,69,15) -EQUAL(f(f(e,f(e,b)),f(f(e,b),e)),d). ** KEPT: 1767 (79,9,68,150) -EQUAL(f(f(b,f(e,b)),f(f(e,b),e)),f(a,c)). ** KEPT: 1768 (79,9,68,15) -EQUAL(f(f(b,f(e,b)),f(f(e,b),e)),d). ** KEPT: 1769 (79,9,57,150) -EQUAL(f(f(b,f(b,e)),f(f(e,b),e)),f(a,c)). ** KEPT: 1770 (79,9,57,15) -EQUAL(f(f(b,f(b,e)),f(f(e,b),e)),d). ** KEPT: 1771 (79,9,56,150) -EQUAL(f(f(f(b,b),e),f(f(e,b),e)),f(a,c)). ** KEPT: 1772 (79,9,56,15) -EQUAL(f(f(f(b,b),e),f(f(e,b),e)),d). ** KEPT: 1773 (79,9,55,150) -EQUAL(f(f(f(b,b),b),f(f(e,b),e)),f(a,c)). ** KEPT: 1774 (79,9,55,15) -EQUAL(f(f(f(b,b),b),f(f(e,b),e)),d). ** KEPT: 1775 (79,9,49,150) -EQUAL(f(f(e,f(b,b)),f(f(e,b),e)),f(a,c)). ** KEPT: 1776 (79,9,49,15) -EQUAL(f(f(e,f(b,b)),f(f(e,b),e)),d). ** KEPT: 1777 (79,9,48,150) -EQUAL(f(f(b,f(b,b)),f(f(e,b),e)),f(a,c)). ** KEPT: 1778 (79,9,48,15) -EQUAL(f(f(b,f(b,b)),f(f(e,b),e)),d). ** KEPT: 1779 (79,9,41,150) -EQUAL(f(f(g(b),e),f(f(e,b),e)),f(a,c)). ** KEPT: 1780 (79,9,41,15) -EQUAL(f(f(g(b),e),f(f(e,b),e)),d). ** KEPT: 1781 (79,9,40,150) -EQUAL(f(f(g(b),b),f(f(e,b),e)),f(a,c)). ** KEPT: 1782 (79,9,40,15) -EQUAL(f(f(g(b),b),f(f(e,b),e)),d). ** KEPT: 1783 (79,9,37,150) -EQUAL(f(f(e,g(b)),f(f(e,b),e)),f(a,c)). ** KEPT: 1784 (79,9,37,15) -EQUAL(f(f(e,g(b)),f(f(e,b),e)),d). ** KEPT: 1785 (79,9,36,150) -EQUAL(f(f(b,g(b)),f(f(e,b),e)),f(a,c)). ** KEPT: 1786 (79,9,36,15) -EQUAL(f(f(b,g(b)),f(f(e,b),e)),d). ** KEPT: 1787 (79,9,35,150) -EQUAL(f(f(g(b),g(b)),f(f(e,b),e)),f(a,c)). ** KEPT: 1788 (79,9,35,15) -EQUAL(f(f(g(b),g(b)),f(f(e,b),e)),d). ** KEPT: 1789 (79,9,27,150) -EQUAL(f(l(d,d),f(f(e,b),e)),f(a,c)). ** KEPT: 1790 (79,9,27,15) -EQUAL(f(l(d,d),f(f(e,b),e)),d). ** KEPT: 1791 (79,9,24,150) -EQUAL(f(g(b),f(f(e,b),e)),f(a,c)). ** KEPT: 1792 (79,9,24,15) -EQUAL(f(g(b),f(f(e,b),e)),d). ** KEPT: 1793 (79,9,23,150) -EQUAL(f(f(b,e),f(f(e,b),e)),f(a,c)). ** KEPT: 1794 (79,9,23,15) -EQUAL(f(f(b,e),f(f(e,b),e)),d). ** KEPT: 1795 (79,9,22,150) -EQUAL(f(f(e,b),f(f(e,b),e)),f(a,c)). ** KEPT: 1796 (79,9,22,15) -EQUAL(f(f(e,b),f(f(e,b),e)),d). ** KEPT: 1797 (79,9,21,150) -EQUAL(f(f(b,b),f(f(e,b),e)),f(a,c)). ** KEPT: 1798 (79,9,21,15) -EQUAL(f(f(b,b),f(f(e,b),e)),d). ** KEPT: 1799 (79,9,12,150) -EQUAL(f(b,f(f(e,b),e)),f(a,c)). ** KEPT: 1800 (79,9,12,15) -EQUAL(f(b,f(f(e,b),e)),d). ** KEPT: 1801 (79,9,7,150) -EQUAL(f(e,f(f(e,b),e)),f(a,c)). ** KEPT: 1802 (79,9,7,15) -EQUAL(f(e,f(f(e,b),e)),d). ** KEPT: 1803 (79,9,303,6) O(f(f(e,e),f(f(e,b),e))). ** KEPT: 1804 (79,9,303,5) O(f(e,f(e,f(f(e,b),e)))). ** KEPT: 1805 (79,9,142,6) O(f(g(l(d,d)),f(f(e,b),e))). ** KEPT: 1806 (79,9,79,6) O(f(f(f(e,b),e),f(f(e,b),e))). ** KEPT: 1807 (79,9,79,5) O(f(f(e,b),f(e,f(f(e,b),e)))). ** KEPT: 1808 (79,9,78,6) O(f(f(f(e,b),b),f(f(e,b),e))). ** KEPT: 1809 (79,9,78,5) O(f(f(e,b),f(b,f(f(e,b),e)))). ** KEPT: 1810 (79,9,69,6) O(f(f(e,f(e,b)),f(f(e,b),e))). ** KEPT: 1811 (79,9,69,5) O(f(e,f(f(e,b),f(f(e,b),e)))). ** KEPT: 1812 (79,9,68,6) O(f(f(b,f(e,b)),f(f(e,b),e))). ** KEPT: 1813 (79,9,68,5) O(f(b,f(f(e,b),f(f(e,b),e)))). ** KEPT: 1814 (79,9,57,6) O(f(f(b,f(b,e)),f(f(e,b),e))). ** KEPT: 1815 (79,9,57,5) O(f(b,f(f(b,e),f(f(e,b),e)))). ** KEPT: 1816 (79,9,56,6) O(f(f(f(b,b),e),f(f(e,b),e))). ** KEPT: 1817 (79,9,56,5) O(f(f(b,b),f(e,f(f(e,b),e)))). ** KEPT: 1818 (79,9,55,6) O(f(f(f(b,b),b),f(f(e,b),e))). ** KEPT: 1819 (79,9,55,5) O(f(f(b,b),f(b,f(f(e,b),e)))). ** KEPT: 1820 (79,9,49,6) O(f(f(e,f(b,b)),f(f(e,b),e))). ** KEPT: 1821 (79,9,49,5) O(f(e,f(f(b,b),f(f(e,b),e)))). ** KEPT: 1822 (79,9,48,6) O(f(f(b,f(b,b)),f(f(e,b),e))). ** KEPT: 1823 (79,9,48,5) O(f(b,f(f(b,b),f(f(e,b),e)))). ** KEPT: 1824 (79,9,41,6) O(f(f(g(b),e),f(f(e,b),e))). ** KEPT: 1825 (79,9,41,5) O(f(g(b),f(e,f(f(e,b),e)))). ** KEPT: 1826 (79,9,40,6) O(f(f(g(b),b),f(f(e,b),e))). ** KEPT: 1827 (79,9,37,6) O(f(f(e,g(b)),f(f(e,b),e))). ** KEPT: 1828 (79,9,37,5) O(f(e,f(g(b),f(f(e,b),e)))). ** KEPT: 1829 (79,9,36,6) O(f(f(b,g(b)),f(f(e,b),e))). ** KEPT: 1830 (79,9,35,6) O(f(f(g(b),g(b)),f(f(e,b),e))). ** KEPT: 1831 (79,9,35,5) O(f(g(b),f(g(b),f(f(e,b),e)))). ** KEPT: 1832 (79,9,27,6) O(f(l(d,d),f(f(e,b),e))). ** KEPT: 1833 (79,9,24,6) O(f(g(b),f(f(e,b),e))). ** KEPT: 1834 (79,9,23,6) O(f(f(b,e),f(f(e,b),e))). ** KEPT: 1835 (79,9,23,5) O(f(b,f(e,f(f(e,b),e)))). ** KEPT: 1836 (79,9,22,6) O(f(f(e,b),f(f(e,b),e))). ** KEPT: 1837 (79,9,22,5) O(f(e,f(b,f(f(e,b),e)))). ** KEPT: 1838 (79,9,21,6) O(f(f(b,b),f(f(e,b),e))). ** KEPT: 1839 (79,9,21,5) O(f(b,f(b,f(f(e,b),e)))). ** KEPT: 1840 (79,9,303,150) -EQUAL(f(f(f(e,b),e),f(e,e)),f(a,c)). ** KEPT: 1841 (79,9,303,15) -EQUAL(f(f(f(e,b),e),f(e,e)),d). ** KEPT: 1842 (79,9,142,150) -EQUAL(f(f(f(e,b),e),g(l(d,d))),f(a,c)). ** KEPT: 1843 (79,9,142,15) -EQUAL(f(f(f(e,b),e),g(l(d,d))),d). ** KEPT: 1844 (79,9,78,150) -EQUAL(f(f(f(e,b),e),f(f(e,b),b)),f(a,c)). ** KEPT: 1845 (79,9,78,15) -EQUAL(f(f(f(e,b),e),f(f(e,b),b)),d). ** KEPT: 1846 (79,9,69,150) -EQUAL(f(f(f(e,b),e),f(e,f(e,b))),f(a,c)). ** KEPT: 1847 (79,9,69,15) -EQUAL(f(f(f(e,b),e),f(e,f(e,b))),d). ** KEPT: 1848 (79,9,68,150) -EQUAL(f(f(f(e,b),e),f(b,f(e,b))),f(a,c)). ** KEPT: 1849 (79,9,68,15) -EQUAL(f(f(f(e,b),e),f(b,f(e,b))),d). ** KEPT: 1850 (79,9,57,150) -EQUAL(f(f(f(e,b),e),f(b,f(b,e))),f(a,c)). ** KEPT: 1851 (79,9,57,15) -EQUAL(f(f(f(e,b),e),f(b,f(b,e))),d). ** KEPT: 1852 (79,9,56,150) -EQUAL(f(f(f(e,b),e),f(f(b,b),e)),f(a,c)). ** KEPT: 1853 (79,9,56,15) -EQUAL(f(f(f(e,b),e),f(f(b,b),e)),d). ** KEPT: 1854 (79,9,55,150) -EQUAL(f(f(f(e,b),e),f(f(b,b),b)),f(a,c)). ** KEPT: 1855 (79,9,55,15) -EQUAL(f(f(f(e,b),e),f(f(b,b),b)),d). ** KEPT: 1856 (79,9,49,150) -EQUAL(f(f(f(e,b),e),f(e,f(b,b))),f(a,c)). ** KEPT: 1857 (79,9,49,15) -EQUAL(f(f(f(e,b),e),f(e,f(b,b))),d). ** KEPT: 1858 (79,9,48,150) -EQUAL(f(f(f(e,b),e),f(b,f(b,b))),f(a,c)). ** KEPT: 1859 (79,9,48,15) -EQUAL(f(f(f(e,b),e),f(b,f(b,b))),d). ** KEPT: 1860 (79,9,41,150) -EQUAL(f(f(f(e,b),e),f(g(b),e)),f(a,c)). ** KEPT: 1861 (79,9,41,15) -EQUAL(f(f(f(e,b),e),f(g(b),e)),d). ** KEPT: 1862 (79,9,40,150) -EQUAL(f(f(f(e,b),e),f(g(b),b)),f(a,c)). ** KEPT: 1863 (79,9,40,15) -EQUAL(f(f(f(e,b),e),f(g(b),b)),d). ** KEPT: 1864 (79,9,37,150) -EQUAL(f(f(f(e,b),e),f(e,g(b))),f(a,c)). ** KEPT: 1865 (79,9,37,15) -EQUAL(f(f(f(e,b),e),f(e,g(b))),d). ** KEPT: 1866 (79,9,36,150) -EQUAL(f(f(f(e,b),e),f(b,g(b))),f(a,c)). ** KEPT: 1867 (79,9,36,15) -EQUAL(f(f(f(e,b),e),f(b,g(b))),d). ** KEPT: 1868 (79,9,35,150) -EQUAL(f(f(f(e,b),e),f(g(b),g(b))),f(a,c)). ** KEPT: 1869 (79,9,35,15) -EQUAL(f(f(f(e,b),e),f(g(b),g(b))),d). ** KEPT: 1870 (79,9,27,150) -EQUAL(f(f(f(e,b),e),l(d,d)),f(a,c)). ** KEPT: 1871 (79,9,27,15) -EQUAL(f(f(f(e,b),e),l(d,d)),d). ** KEPT: 1872 (79,9,24,150) -EQUAL(f(f(f(e,b),e),g(b)),f(a,c)). ** KEPT: 1873 (79,9,24,15) -EQUAL(f(f(f(e,b),e),g(b)),d). ** KEPT: 1874 (79,9,23,150) -EQUAL(f(f(f(e,b),e),f(b,e)),f(a,c)). ** KEPT: 1875 (79,9,23,15) -EQUAL(f(f(f(e,b),e),f(b,e)),d). ** KEPT: 1876 (79,9,22,150) -EQUAL(f(f(f(e,b),e),f(e,b)),f(a,c)). ** KEPT: 1877 (79,9,22,15) -EQUAL(f(f(f(e,b),e),f(e,b)),d). ** KEPT: 1878 (79,9,21,150) -EQUAL(f(f(f(e,b),e),f(b,b)),f(a,c)). ** KEPT: 1879 (79,9,21,15) -EQUAL(f(f(f(e,b),e),f(b,b)),d). ** KEPT: 1880 (79,9,12,150) -EQUAL(f(f(f(e,b),e),b),f(a,c)). ** KEPT: 1881 (79,9,12,15) -EQUAL(f(f(f(e,b),e),b),d). ** KEPT: 1882 (79,9,7,150) -EQUAL(f(f(f(e,b),e),e),f(a,c)). ** KEPT: 1883 (79,9,7,15) -EQUAL(f(f(f(e,b),e),e),d). ** KEPT: 1884 (79,9,303,6) O(f(f(f(e,b),e),f(e,e))). ** KEPT: 1885 (79,9,303,5) O(f(f(e,b),f(e,f(e,e)))). ** KEPT: 1886 (79,9,142,6) O(f(f(f(e,b),e),g(l(d,d)))). ** KEPT: 1887 (79,9,142,5) O(f(f(e,b),f(e,g(l(d,d))))). ** KEPT: 1888 (79,9,78,6) O(f(f(f(e,b),e),f(f(e,b),b))). ** KEPT: 1889 (79,9,78,5) O(f(f(e,b),f(e,f(f(e,b),b)))). ** KEPT: 1890 (79,9,69,6) O(f(f(f(e,b),e),f(e,f(e,b)))). ** KEPT: 1891 (79,9,69,5) O(f(f(e,b),f(e,f(e,f(e,b))))). ** KEPT: 1892 (79,9,68,6) O(f(f(f(e,b),e),f(b,f(e,b)))). ** KEPT: 1893 (79,9,68,5) O(f(f(e,b),f(e,f(b,f(e,b))))). ** KEPT: 1894 (79,9,57,6) O(f(f(f(e,b),e),f(b,f(b,e)))). ** KEPT: 1895 (79,9,57,5) O(f(f(e,b),f(e,f(b,f(b,e))))). ** KEPT: 1896 (79,9,56,6) O(f(f(f(e,b),e),f(f(b,b),e))). ** KEPT: 1897 (79,9,56,5) O(f(f(e,b),f(e,f(f(b,b),e)))). ** KEPT: 1898 (79,9,55,6) O(f(f(f(e,b),e),f(f(b,b),b))). ** KEPT: 1899 (79,9,55,5) O(f(f(e,b),f(e,f(f(b,b),b)))). ** KEPT: 1900 (79,9,49,6) O(f(f(f(e,b),e),f(e,f(b,b)))). ** KEPT: 1901 (79,9,49,5) O(f(f(e,b),f(e,f(e,f(b,b))))). ** KEPT: 1902 (79,9,48,6) O(f(f(f(e,b),e),f(b,f(b,b)))). ** KEPT: 1903 (79,9,48,5) O(f(f(e,b),f(e,f(b,f(b,b))))). ** KEPT: 1904 (79,9,41,6) O(f(f(f(e,b),e),f(g(b),e))). ** KEPT: 1905 (79,9,41,5) O(f(f(e,b),f(e,f(g(b),e)))). ** KEPT: 1906 (79,9,40,6) O(f(f(f(e,b),e),f(g(b),b))). ** KEPT: 1907 (79,9,40,5) O(f(f(e,b),f(e,f(g(b),b)))). ** KEPT: 1908 (79,9,37,6) O(f(f(f(e,b),e),f(e,g(b)))). ** KEPT: 1909 (79,9,37,5) O(f(f(e,b),f(e,f(e,g(b))))). ** KEPT: 1910 (79,9,36,6) O(f(f(f(e,b),e),f(b,g(b)))). ** KEPT: 1911 (79,9,36,5) O(f(f(e,b),f(e,f(b,g(b))))). ** KEPT: 1912 (79,9,35,6) O(f(f(f(e,b),e),f(g(b),g(b)))). ** KEPT: 1913 (79,9,35,5) O(f(f(e,b),f(e,f(g(b),g(b))))). ** KEPT: 1914 (79,9,27,6) O(f(f(f(e,b),e),l(d,d))). ** KEPT: 1915 (79,9,27,5) O(f(f(e,b),f(e,l(d,d)))). ** KEPT: 1916 (79,9,24,6) O(f(f(f(e,b),e),g(b))). ** KEPT: 1917 (79,9,23,6) O(f(f(f(e,b),e),f(b,e))). ** KEPT: 1918 (79,9,23,5) O(f(f(e,b),f(e,f(b,e)))). ** KEPT: 1919 (79,9,22,6) O(f(f(f(e,b),e),f(e,b))). ** KEPT: 1920 (79,9,21,6) O(f(f(f(e,b),e),f(b,b))). ** KEPT: 1921 (79,9,12,6) O(f(f(f(e,b),e),b)). ** KEPT: 1922 (79,9,7,6) O(f(f(f(e,b),e),e)). ** KEPT: 1923 (4,79) O(f(f(f(x,g(x)),b),e)). ** KEPT: 1924 (3,79) O(f(f(f(g(x),x),b),e)). ** KEPT: 1925 (4,79) O(f(f(e,b),f(x,g(x)))). ** KEPT: 1926 (3,79) O(f(f(e,b),f(g(x),x))). 1925 back subsumes: 229 (36,9,22,6) O(f(f(e,b),f(b,g(b)))). 1926 back subsumes: 413 (40,9,22,6) O(f(f(e,b),f(g(b),b))). new given clause: 80 (22,9,7,5) O(f(e,f(b,e))). ** KEPT: 1927 (80,9,303,150) -EQUAL(f(f(e,e),f(e,f(b,e))),f(a,c)). ** KEPT: 1928 (80,9,303,15) -EQUAL(f(f(e,e),f(e,f(b,e))),d). ** KEPT: 1929 (80,9,142,150) -EQUAL(f(g(l(d,d)),f(e,f(b,e))),f(a,c)). ** KEPT: 1930 (80,9,142,15) -EQUAL(f(g(l(d,d)),f(e,f(b,e))),d). ** KEPT: 1931 (80,9,80,150) -EQUAL(f(f(e,f(b,e)),f(e,f(b,e))),f(a,c)). ** KEPT: 1932 (80,9,80,15) -EQUAL(f(f(e,f(b,e)),f(e,f(b,e))),d). ** KEPT: 1933 (80,9,79,150) -EQUAL(f(f(f(e,b),e),f(e,f(b,e))),f(a,c)). ** KEPT: 1934 (80,9,79,15) -EQUAL(f(f(f(e,b),e),f(e,f(b,e))),d). ** KEPT: 1935 (80,9,78,150) -EQUAL(f(f(f(e,b),b),f(e,f(b,e))),f(a,c)). ** KEPT: 1936 (80,9,78,15) -EQUAL(f(f(f(e,b),b),f(e,f(b,e))),d). ** KEPT: 1937 (80,9,69,150) -EQUAL(f(f(e,f(e,b)),f(e,f(b,e))),f(a,c)). ** KEPT: 1938 (80,9,69,15) -EQUAL(f(f(e,f(e,b)),f(e,f(b,e))),d). ** KEPT: 1939 (80,9,68,150) -EQUAL(f(f(b,f(e,b)),f(e,f(b,e))),f(a,c)). ** KEPT: 1940 (80,9,68,15) -EQUAL(f(f(b,f(e,b)),f(e,f(b,e))),d). ** KEPT: 1941 (80,9,57,150) -EQUAL(f(f(b,f(b,e)),f(e,f(b,e))),f(a,c)). ** KEPT: 1942 (80,9,57,15) -EQUAL(f(f(b,f(b,e)),f(e,f(b,e))),d). ** KEPT: 1943 (80,9,56,150) -EQUAL(f(f(f(b,b),e),f(e,f(b,e))),f(a,c)). ** KEPT: 1944 (80,9,56,15) -EQUAL(f(f(f(b,b),e),f(e,f(b,e))),d). ** KEPT: 1945 (80,9,55,150) -EQUAL(f(f(f(b,b),b),f(e,f(b,e))),f(a,c)). ** KEPT: 1946 (80,9,55,15) -EQUAL(f(f(f(b,b),b),f(e,f(b,e))),d). ** KEPT: 1947 (80,9,49,150) -EQUAL(f(f(e,f(b,b)),f(e,f(b,e))),f(a,c)). ** KEPT: 1948 (80,9,49,15) -EQUAL(f(f(e,f(b,b)),f(e,f(b,e))),d). ** KEPT: 1949 (80,9,48,150) -EQUAL(f(f(b,f(b,b)),f(e,f(b,e))),f(a,c)). ** KEPT: 1950 (80,9,48,15) -EQUAL(f(f(b,f(b,b)),f(e,f(b,e))),d). ** KEPT: 1951 (80,9,41,150) -EQUAL(f(f(g(b),e),f(e,f(b,e))),f(a,c)). ** KEPT: 1952 (80,9,41,15) -EQUAL(f(f(g(b),e),f(e,f(b,e))),d). ** KEPT: 1953 (80,9,40,150) -EQUAL(f(f(g(b),b),f(e,f(b,e))),f(a,c)). ** KEPT: 1954 (80,9,40,15) -EQUAL(f(f(g(b),b),f(e,f(b,e))),d). ** KEPT: 1955 (80,9,37,150) -EQUAL(f(f(e,g(b)),f(e,f(b,e))),f(a,c)). ** KEPT: 1956 (80,9,37,15) -EQUAL(f(f(e,g(b)),f(e,f(b,e))),d). ** KEPT: 1957 (80,9,36,150) -EQUAL(f(f(b,g(b)),f(e,f(b,e))),f(a,c)). ** KEPT: 1958 (80,9,36,15) -EQUAL(f(f(b,g(b)),f(e,f(b,e))),d). ** KEPT: 1959 (80,9,35,150) -EQUAL(f(f(g(b),g(b)),f(e,f(b,e))),f(a,c)). ** KEPT: 1960 (80,9,35,15) -EQUAL(f(f(g(b),g(b)),f(e,f(b,e))),d). ** KEPT: 1961 (80,9,27,150) -EQUAL(f(l(d,d),f(e,f(b,e))),f(a,c)). ** KEPT: 1962 (80,9,27,15) -EQUAL(f(l(d,d),f(e,f(b,e))),d). ** KEPT: 1963 (80,9,24,150) -EQUAL(f(g(b),f(e,f(b,e))),f(a,c)). ** KEPT: 1964 (80,9,24,15) -EQUAL(f(g(b),f(e,f(b,e))),d). ** KEPT: 1965 (80,9,23,150) -EQUAL(f(f(b,e),f(e,f(b,e))),f(a,c)). ** KEPT: 1966 (80,9,23,15) -EQUAL(f(f(b,e),f(e,f(b,e))),d). ** KEPT: 1967 (80,9,22,150) -EQUAL(f(f(e,b),f(e,f(b,e))),f(a,c)). ** KEPT: 1968 (80,9,22,15) -EQUAL(f(f(e,b),f(e,f(b,e))),d). ** KEPT: 1969 (80,9,21,150) -EQUAL(f(f(b,b),f(e,f(b,e))),f(a,c)). ** KEPT: 1970 (80,9,21,15) -EQUAL(f(f(b,b),f(e,f(b,e))),d). ** KEPT: 1971 (80,9,12,150) -EQUAL(f(b,f(e,f(b,e))),f(a,c)). ** KEPT: 1972 (80,9,12,15) -EQUAL(f(b,f(e,f(b,e))),d). ** KEPT: 1973 (80,9,7,150) -EQUAL(f(e,f(e,f(b,e))),f(a,c)). ** KEPT: 1974 (80,9,7,15) -EQUAL(f(e,f(e,f(b,e))),d). ** KEPT: 1975 (80,9,303,6) O(f(f(e,e),f(e,f(b,e)))). ** KEPT: 1976 (80,9,303,5) O(f(e,f(e,f(e,f(b,e))))). ** KEPT: 1977 (80,9,142,6) O(f(g(l(d,d)),f(e,f(b,e)))). ** KEPT: 1978 (80,9,80,6) O(f(f(e,f(b,e)),f(e,f(b,e)))). ** KEPT: 1979 (80,9,80,5) O(f(e,f(f(b,e),f(e,f(b,e))))). ** KEPT: 1980 (80,9,79,6) O(f(f(f(e,b),e),f(e,f(b,e)))). ** KEPT: 1981 (80,9,79,5) O(f(f(e,b),f(e,f(e,f(b,e))))). ** KEPT: 1982 (80,9,78,6) O(f(f(f(e,b),b),f(e,f(b,e)))). ** KEPT: 1983 (80,9,78,5) O(f(f(e,b),f(b,f(e,f(b,e))))). ** KEPT: 1984 (80,9,69,6) O(f(f(e,f(e,b)),f(e,f(b,e)))). ** KEPT: 1985 (80,9,69,5) O(f(e,f(f(e,b),f(e,f(b,e))))). ** KEPT: 1986 (80,9,68,6) O(f(f(b,f(e,b)),f(e,f(b,e)))). ** KEPT: 1987 (80,9,68,5) O(f(b,f(f(e,b),f(e,f(b,e))))). ** KEPT: 1988 (80,9,57,6) O(f(f(b,f(b,e)),f(e,f(b,e)))). ** KEPT: 1989 (80,9,57,5) O(f(b,f(f(b,e),f(e,f(b,e))))). ** KEPT: 1990 (80,9,56,6) O(f(f(f(b,b),e),f(e,f(b,e)))). ** KEPT: 1991 (80,9,56,5) O(f(f(b,b),f(e,f(e,f(b,e))))). ** KEPT: 1992 (80,9,55,6) O(f(f(f(b,b),b),f(e,f(b,e)))). ** KEPT: 1993 (80,9,55,5) O(f(f(b,b),f(b,f(e,f(b,e))))). ** KEPT: 1994 (80,9,49,6) O(f(f(e,f(b,b)),f(e,f(b,e)))). ** KEPT: 1995 (80,9,49,5) O(f(e,f(f(b,b),f(e,f(b,e))))). ** KEPT: 1996 (80,9,48,6) O(f(f(b,f(b,b)),f(e,f(b,e)))). ** KEPT: 1997 (80,9,48,5) O(f(b,f(f(b,b),f(e,f(b,e))))). ** KEPT: 1998 (80,9,41,6) O(f(f(g(b),e),f(e,f(b,e)))). ** KEPT: 1999 (80,9,41,5) O(f(g(b),f(e,f(e,f(b,e))))). ** KEPT: 2000 (80,9,40,6) O(f(f(g(b),b),f(e,f(b,e)))). ** KEPT: 2001 (80,9,37,6) O(f(f(e,g(b)),f(e,f(b,e)))). ** KEPT: 2002 (80,9,37,5) O(f(e,f(g(b),f(e,f(b,e))))). ** KEPT: 2003 (80,9,36,6) O(f(f(b,g(b)),f(e,f(b,e)))). ** KEPT: 2004 (80,9,35,6) O(f(f(g(b),g(b)),f(e,f(b,e)))). ** KEPT: 2005 (80,9,35,5) O(f(g(b),f(g(b),f(e,f(b,e))))). ** KEPT: 2006 (80,9,27,6) O(f(l(d,d),f(e,f(b,e)))). ** KEPT: 2007 (80,9,23,6) O(f(f(b,e),f(e,f(b,e)))). ** KEPT: 2008 (80,9,23,5) O(f(b,f(e,f(e,f(b,e))))). ** KEPT: 2009 (80,9,22,5) O(f(e,f(b,f(e,f(b,e))))). ** KEPT: 2010 (80,9,21,5) O(f(b,f(b,f(e,f(b,e))))). ** KEPT: 2011 (80,9,303,150) -EQUAL(f(f(e,f(b,e)),f(e,e)),f(a,c)). ** KEPT: 2012 (80,9,303,15) -EQUAL(f(f(e,f(b,e)),f(e,e)),d). ** KEPT: 2013 (80,9,142,150) -EQUAL(f(f(e,f(b,e)),g(l(d,d))),f(a,c)). ** KEPT: 2014 (80,9,142,15) -EQUAL(f(f(e,f(b,e)),g(l(d,d))),d). ** KEPT: 2015 (80,9,79,150) -EQUAL(f(f(e,f(b,e)),f(f(e,b),e)),f(a,c)). ** KEPT: 2016 (80,9,79,15) -EQUAL(f(f(e,f(b,e)),f(f(e,b),e)),d). ** KEPT: 2017 (80,9,78,150) -EQUAL(f(f(e,f(b,e)),f(f(e,b),b)),f(a,c)). ** KEPT: 2018 (80,9,78,15) -EQUAL(f(f(e,f(b,e)),f(f(e,b),b)),d). ** KEPT: 2019 (80,9,69,150) -EQUAL(f(f(e,f(b,e)),f(e,f(e,b))),f(a,c)). ** KEPT: 2020 (80,9,69,15) -EQUAL(f(f(e,f(b,e)),f(e,f(e,b))),d). ** KEPT: 2021 (80,9,68,150) -EQUAL(f(f(e,f(b,e)),f(b,f(e,b))),f(a,c)). ** KEPT: 2022 (80,9,68,15) -EQUAL(f(f(e,f(b,e)),f(b,f(e,b))),d). ** KEPT: 2023 (80,9,57,150) -EQUAL(f(f(e,f(b,e)),f(b,f(b,e))),f(a,c)). ** KEPT: 2024 (80,9,57,15) -EQUAL(f(f(e,f(b,e)),f(b,f(b,e))),d). ** KEPT: 2025 (80,9,56,150) -EQUAL(f(f(e,f(b,e)),f(f(b,b),e)),f(a,c)). ** KEPT: 2026 (80,9,56,15) -EQUAL(f(f(e,f(b,e)),f(f(b,b),e)),d). ** KEPT: 2027 (80,9,55,150) -EQUAL(f(f(e,f(b,e)),f(f(b,b),b)),f(a,c)). ** KEPT: 2028 (80,9,55,15) -EQUAL(f(f(e,f(b,e)),f(f(b,b),b)),d). ** KEPT: 2029 (80,9,49,150) -EQUAL(f(f(e,f(b,e)),f(e,f(b,b))),f(a,c)). ** KEPT: 2030 (80,9,49,15) -EQUAL(f(f(e,f(b,e)),f(e,f(b,b))),d). ** KEPT: 2031 (80,9,48,150) -EQUAL(f(f(e,f(b,e)),f(b,f(b,b))),f(a,c)). ** KEPT: 2032 (80,9,48,15) -EQUAL(f(f(e,f(b,e)),f(b,f(b,b))),d). ** KEPT: 2033 (80,9,41,150) -EQUAL(f(f(e,f(b,e)),f(g(b),e)),f(a,c)). ** KEPT: 2034 (80,9,41,15) -EQUAL(f(f(e,f(b,e)),f(g(b),e)),d). ** KEPT: 2035 (80,9,40,150) -EQUAL(f(f(e,f(b,e)),f(g(b),b)),f(a,c)). ** KEPT: 2036 (80,9,40,15) -EQUAL(f(f(e,f(b,e)),f(g(b),b)),d). ** KEPT: 2037 (80,9,37,150) -EQUAL(f(f(e,f(b,e)),f(e,g(b))),f(a,c)). ** KEPT: 2038 (80,9,37,15) -EQUAL(f(f(e,f(b,e)),f(e,g(b))),d). ** KEPT: 2039 (80,9,36,150) -EQUAL(f(f(e,f(b,e)),f(b,g(b))),f(a,c)). ** KEPT: 2040 (80,9,36,15) -EQUAL(f(f(e,f(b,e)),f(b,g(b))),d). ** KEPT: 2041 (80,9,35,150) -EQUAL(f(f(e,f(b,e)),f(g(b),g(b))),f(a,c)). ** KEPT: 2042 (80,9,35,15) -EQUAL(f(f(e,f(b,e)),f(g(b),g(b))),d). ** KEPT: 2043 (80,9,27,150) -EQUAL(f(f(e,f(b,e)),l(d,d)),f(a,c)). ** KEPT: 2044 (80,9,27,15) -EQUAL(f(f(e,f(b,e)),l(d,d)),d). ** KEPT: 2045 (80,9,24,150) -EQUAL(f(f(e,f(b,e)),g(b)),f(a,c)). ** KEPT: 2046 (80,9,24,15) -EQUAL(f(f(e,f(b,e)),g(b)),d). ** KEPT: 2047 (80,9,23,150) -EQUAL(f(f(e,f(b,e)),f(b,e)),f(a,c)). ** KEPT: 2048 (80,9,23,15) -EQUAL(f(f(e,f(b,e)),f(b,e)),d). ** KEPT: 2049 (80,9,22,150) -EQUAL(f(f(e,f(b,e)),f(e,b)),f(a,c)). ** KEPT: 2050 (80,9,22,15) -EQUAL(f(f(e,f(b,e)),f(e,b)),d). ** KEPT: 2051 (80,9,21,150) -EQUAL(f(f(e,f(b,e)),f(b,b)),f(a,c)). ** KEPT: 2052 (80,9,21,15) -EQUAL(f(f(e,f(b,e)),f(b,b)),d). ** KEPT: 2053 (80,9,12,150) -EQUAL(f(f(e,f(b,e)),b),f(a,c)). ** KEPT: 2054 (80,9,12,15) -EQUAL(f(f(e,f(b,e)),b),d). ** KEPT: 2055 (80,9,7,150) -EQUAL(f(f(e,f(b,e)),e),f(a,c)). ** KEPT: 2056 (80,9,7,15) -EQUAL(f(f(e,f(b,e)),e),d). ** KEPT: 2057 (80,9,303,6) O(f(f(e,f(b,e)),f(e,e))). ** KEPT: 2058 (80,9,303,5) O(f(e,f(f(b,e),f(e,e)))). ** KEPT: 2059 (80,9,142,6) O(f(f(e,f(b,e)),g(l(d,d)))). ** KEPT: 2060 (80,9,142,5) O(f(e,f(f(b,e),g(l(d,d))))). ** KEPT: 2061 (80,9,79,6) O(f(f(e,f(b,e)),f(f(e,b),e))). ** KEPT: 2062 (80,9,79,5) O(f(e,f(f(b,e),f(f(e,b),e)))). ** KEPT: 2063 (80,9,78,6) O(f(f(e,f(b,e)),f(f(e,b),b))). ** KEPT: 2064 (80,9,78,5) O(f(e,f(f(b,e),f(f(e,b),b)))). ** KEPT: 2065 (80,9,69,6) O(f(f(e,f(b,e)),f(e,f(e,b)))). ** KEPT: 2066 (80,9,69,5) O(f(e,f(f(b,e),f(e,f(e,b))))). ** KEPT: 2067 (80,9,68,6) O(f(f(e,f(b,e)),f(b,f(e,b)))). ** KEPT: 2068 (80,9,68,5) O(f(e,f(f(b,e),f(b,f(e,b))))). ** KEPT: 2069 (80,9,57,6) O(f(f(e,f(b,e)),f(b,f(b,e)))). ** KEPT: 2070 (80,9,57,5) O(f(e,f(f(b,e),f(b,f(b,e))))). ** KEPT: 2071 (80,9,56,6) O(f(f(e,f(b,e)),f(f(b,b),e))). ** KEPT: 2072 (80,9,56,5) O(f(e,f(f(b,e),f(f(b,b),e)))). ** KEPT: 2073 (80,9,55,6) O(f(f(e,f(b,e)),f(f(b,b),b))). ** KEPT: 2074 (80,9,55,5) O(f(e,f(f(b,e),f(f(b,b),b)))). ** KEPT: 2075 (80,9,49,6) O(f(f(e,f(b,e)),f(e,f(b,b)))). ** KEPT: 2076 (80,9,49,5) O(f(e,f(f(b,e),f(e,f(b,b))))). ** KEPT: 2077 (80,9,48,6) O(f(f(e,f(b,e)),f(b,f(b,b)))). ** KEPT: 2078 (80,9,48,5) O(f(e,f(f(b,e),f(b,f(b,b))))). ** KEPT: 2079 (80,9,41,6) O(f(f(e,f(b,e)),f(g(b),e))). ** KEPT: 2080 (80,9,41,5) O(f(e,f(f(b,e),f(g(b),e)))). ** KEPT: 2081 (80,9,40,6) O(f(f(e,f(b,e)),f(g(b),b))). ** KEPT: 2082 (80,9,40,5) O(f(e,f(f(b,e),f(g(b),b)))). ** KEPT: 2083 (80,9,37,6) O(f(f(e,f(b,e)),f(e,g(b)))). ** KEPT: 2084 (80,9,37,5) O(f(e,f(f(b,e),f(e,g(b))))). ** KEPT: 2085 (80,9,36,6) O(f(f(e,f(b,e)),f(b,g(b)))). ** KEPT: 2086 (80,9,36,5) O(f(e,f(f(b,e),f(b,g(b))))). ** KEPT: 2087 (80,9,35,6) O(f(f(e,f(b,e)),f(g(b),g(b)))). ** KEPT: 2088 (80,9,35,5) O(f(e,f(f(b,e),f(g(b),g(b))))). ** KEPT: 2089 (80,9,27,6) O(f(f(e,f(b,e)),l(d,d))). ** KEPT: 2090 (80,9,27,5) O(f(e,f(f(b,e),l(d,d)))). ** KEPT: 2091 (80,9,24,6) O(f(f(e,f(b,e)),g(b))). ** KEPT: 2092 (80,9,24,5) O(f(e,f(f(b,e),g(b)))). ** KEPT: 2093 (80,9,23,6) O(f(f(e,f(b,e)),f(b,e))). ** KEPT: 2094 (80,9,23,5) O(f(e,f(f(b,e),f(b,e)))). ** KEPT: 2095 (80,9,22,6) O(f(f(e,f(b,e)),f(e,b))). ** KEPT: 2096 (80,9,22,5) O(f(e,f(f(b,e),f(e,b)))). ** KEPT: 2097 (80,9,21,6) O(f(f(e,f(b,e)),f(b,b))). ** KEPT: 2098 (80,9,21,5) O(f(e,f(f(b,e),f(b,b)))). ** KEPT: 2099 (80,9,12,6) O(f(f(e,f(b,e)),b)). ** KEPT: 2100 (80,9,12,5) O(f(e,f(f(b,e),b))). ** KEPT: 2101 (80,9,7,6) O(f(f(e,f(b,e)),e)). ** KEPT: 2102 (80,9,7,5) O(f(e,f(f(b,e),e))). ** KEPT: 2103 (4,80) O(f(f(x,g(x)),f(b,e))). ** KEPT: 2104 (3,80) O(f(f(g(x),x),f(b,e))). ** KEPT: 2105 (4,80) O(f(e,f(b,f(x,g(x))))). ** KEPT: 2106 (3,80) O(f(e,f(b,f(g(x),x)))). 2103 back subsumes: 247 (36,9,23,6) O(f(f(b,g(b)),f(b,e))). 2104 back subsumes: 437 (40,9,23,6) O(f(f(g(b),b),f(b,e))). 2105 back subsumes: 230 (36,9,22,5) O(f(e,f(b,f(b,g(b))))). new given clause: 106 (23,9,12,6) O(f(f(b,e),b)). ** KEPT: 2107 (106,9,303,150) -EQUAL(f(f(e,e),f(f(b,e),b)),f(a,c)). ** KEPT: 2108 (106,9,303,15) -EQUAL(f(f(e,e),f(f(b,e),b)),d). ** KEPT: 2109 (106,9,142,150) -EQUAL(f(g(l(d,d)),f(f(b,e),b)),f(a,c)). ** KEPT: 2110 (106,9,142,15) -EQUAL(f(g(l(d,d)),f(f(b,e),b)),d). ** KEPT: 2111 (106,9,106,150) -EQUAL(f(f(f(b,e),b),f(f(b,e),b)),f(a,c)). ** KEPT: 2112 (106,9,106,15) -EQUAL(f(f(f(b,e),b),f(f(b,e),b)),d). ** KEPT: 2113 (106,9,80,150) -EQUAL(f(f(e,f(b,e)),f(f(b,e),b)),f(a,c)). ** KEPT: 2114 (106,9,80,15) -EQUAL(f(f(e,f(b,e)),f(f(b,e),b)),d). ** KEPT: 2115 (106,9,79,150) -EQUAL(f(f(f(e,b),e),f(f(b,e),b)),f(a,c)). ** KEPT: 2116 (106,9,79,15) -EQUAL(f(f(f(e,b),e),f(f(b,e),b)),d). ** KEPT: 2117 (106,9,78,150) -EQUAL(f(f(f(e,b),b),f(f(b,e),b)),f(a,c)). ** KEPT: 2118 (106,9,78,15) -EQUAL(f(f(f(e,b),b),f(f(b,e),b)),d). ** KEPT: 2119 (106,9,69,150) -EQUAL(f(f(e,f(e,b)),f(f(b,e),b)),f(a,c)). ** KEPT: 2120 (106,9,69,15) -EQUAL(f(f(e,f(e,b)),f(f(b,e),b)),d). ** KEPT: 2121 (106,9,68,150) -EQUAL(f(f(b,f(e,b)),f(f(b,e),b)),f(a,c)). ** KEPT: 2122 (106,9,68,15) -EQUAL(f(f(b,f(e,b)),f(f(b,e),b)),d). ** KEPT: 2123 (106,9,57,150) -EQUAL(f(f(b,f(b,e)),f(f(b,e),b)),f(a,c)). ** KEPT: 2124 (106,9,57,15) -EQUAL(f(f(b,f(b,e)),f(f(b,e),b)),d). ** KEPT: 2125 (106,9,56,150) -EQUAL(f(f(f(b,b),e),f(f(b,e),b)),f(a,c)). ** KEPT: 2126 (106,9,56,15) -EQUAL(f(f(f(b,b),e),f(f(b,e),b)),d). ** KEPT: 2127 (106,9,55,150) -EQUAL(f(f(f(b,b),b),f(f(b,e),b)),f(a,c)). ** KEPT: 2128 (106,9,55,15) -EQUAL(f(f(f(b,b),b),f(f(b,e),b)),d). ** KEPT: 2129 (106,9,49,150) -EQUAL(f(f(e,f(b,b)),f(f(b,e),b)),f(a,c)). ** KEPT: 2130 (106,9,49,15) -EQUAL(f(f(e,f(b,b)),f(f(b,e),b)),d). ** KEPT: 2131 (106,9,48,150) -EQUAL(f(f(b,f(b,b)),f(f(b,e),b)),f(a,c)). ** KEPT: 2132 (106,9,48,15) -EQUAL(f(f(b,f(b,b)),f(f(b,e),b)),d). ** KEPT: 2133 (106,9,41,150) -EQUAL(f(f(g(b),e),f(f(b,e),b)),f(a,c)). ** KEPT: 2134 (106,9,41,15) -EQUAL(f(f(g(b),e),f(f(b,e),b)),d). ** KEPT: 2135 (106,9,40,150) -EQUAL(f(f(g(b),b),f(f(b,e),b)),f(a,c)). ** KEPT: 2136 (106,9,40,15) -EQUAL(f(f(g(b),b),f(f(b,e),b)),d). ** KEPT: 2137 (106,9,37,150) -EQUAL(f(f(e,g(b)),f(f(b,e),b)),f(a,c)). ** KEPT: 2138 (106,9,37,15) -EQUAL(f(f(e,g(b)),f(f(b,e),b)),d). ** KEPT: 2139 (106,9,36,150) -EQUAL(f(f(b,g(b)),f(f(b,e),b)),f(a,c)). ** KEPT: 2140 (106,9,36,15) -EQUAL(f(f(b,g(b)),f(f(b,e),b)),d). ** KEPT: 2141 (106,9,35,150) -EQUAL(f(f(g(b),g(b)),f(f(b,e),b)),f(a,c)). ** KEPT: 2142 (106,9,35,15) -EQUAL(f(f(g(b),g(b)),f(f(b,e),b)),d). ** KEPT: 2143 (106,9,27,150) -EQUAL(f(l(d,d),f(f(b,e),b)),f(a,c)). ** KEPT: 2144 (106,9,27,15) -EQUAL(f(l(d,d),f(f(b,e),b)),d). ** KEPT: 2145 (106,9,24,150) -EQUAL(f(g(b),f(f(b,e),b)),f(a,c)). ** KEPT: 2146 (106,9,24,15) -EQUAL(f(g(b),f(f(b,e),b)),d). ** KEPT: 2147 (106,9,23,150) -EQUAL(f(f(b,e),f(f(b,e),b)),f(a,c)). ** KEPT: 2148 (106,9,23,15) -EQUAL(f(f(b,e),f(f(b,e),b)),d). ** KEPT: 2149 (106,9,22,150) -EQUAL(f(f(e,b),f(f(b,e),b)),f(a,c)). ** KEPT: 2150 (106,9,22,15) -EQUAL(f(f(e,b),f(f(b,e),b)),d). ** KEPT: 2151 (106,9,21,150) -EQUAL(f(f(b,b),f(f(b,e),b)),f(a,c)). ** KEPT: 2152 (106,9,21,15) -EQUAL(f(f(b,b),f(f(b,e),b)),d). ** KEPT: 2153 (106,9,12,150) -EQUAL(f(b,f(f(b,e),b)),f(a,c)). ** KEPT: 2154 (106,9,12,15) -EQUAL(f(b,f(f(b,e),b)),d). ** KEPT: 2155 (106,9,7,150) -EQUAL(f(e,f(f(b,e),b)),f(a,c)). ** KEPT: 2156 (106,9,7,15) -EQUAL(f(e,f(f(b,e),b)),d). ** KEPT: 2157 (106,9,303,6) O(f(f(e,e),f(f(b,e),b))). ** KEPT: 2158 (106,9,303,5) O(f(e,f(e,f(f(b,e),b)))). ** KEPT: 2159 (106,9,142,6) O(f(g(l(d,d)),f(f(b,e),b))). ** KEPT: 2160 (106,9,106,6) O(f(f(f(b,e),b),f(f(b,e),b))). ** KEPT: 2161 (106,9,106,5) O(f(f(b,e),f(b,f(f(b,e),b)))). ** KEPT: 2162 (106,9,80,6) O(f(f(e,f(b,e)),f(f(b,e),b))). ** KEPT: 2163 (106,9,80,5) O(f(e,f(f(b,e),f(f(b,e),b)))). ** KEPT: 2164 (106,9,79,6) O(f(f(f(e,b),e),f(f(b,e),b))). ** KEPT: 2165 (106,9,79,5) O(f(f(e,b),f(e,f(f(b,e),b)))). ** KEPT: 2166 (106,9,78,6) O(f(f(f(e,b),b),f(f(b,e),b))). ** KEPT: 2167 (106,9,78,5) O(f(f(e,b),f(b,f(f(b,e),b)))). ** KEPT: 2168 (106,9,69,6) O(f(f(e,f(e,b)),f(f(b,e),b))). ** KEPT: 2169 (106,9,69,5) O(f(e,f(f(e,b),f(f(b,e),b)))). ** KEPT: 2170 (106,9,68,6) O(f(f(b,f(e,b)),f(f(b,e),b))). ** KEPT: 2171 (106,9,68,5) O(f(b,f(f(e,b),f(f(b,e),b)))). ** KEPT: 2172 (106,9,57,6) O(f(f(b,f(b,e)),f(f(b,e),b))). ** KEPT: 2173 (106,9,57,5) O(f(b,f(f(b,e),f(f(b,e),b)))). ** KEPT: 2174 (106,9,56,6) O(f(f(f(b,b),e),f(f(b,e),b))). ** KEPT: 2175 (106,9,56,5) O(f(f(b,b),f(e,f(f(b,e),b)))). ** KEPT: 2176 (106,9,55,6) O(f(f(f(b,b),b),f(f(b,e),b))). ** KEPT: 2177 (106,9,55,5) O(f(f(b,b),f(b,f(f(b,e),b)))). ** KEPT: 2178 (106,9,49,6) O(f(f(e,f(b,b)),f(f(b,e),b))). ** KEPT: 2179 (106,9,49,5) O(f(e,f(f(b,b),f(f(b,e),b)))). ** KEPT: 2180 (106,9,48,6) O(f(f(b,f(b,b)),f(f(b,e),b))). ** KEPT: 2181 (106,9,48,5) O(f(b,f(f(b,b),f(f(b,e),b)))). ** KEPT: 2182 (106,9,41,6) O(f(f(g(b),e),f(f(b,e),b))). ** KEPT: 2183 (106,9,41,5) O(f(g(b),f(e,f(f(b,e),b)))). ** KEPT: 2184 (106,9,40,6) O(f(f(g(b),b),f(f(b,e),b))). ** KEPT: 2185 (106,9,37,6) O(f(f(e,g(b)),f(f(b,e),b))). ** KEPT: 2186 (106,9,37,5) O(f(e,f(g(b),f(f(b,e),b)))). ** KEPT: 2187 (106,9,36,6) O(f(f(b,g(b)),f(f(b,e),b))). ** KEPT: 2188 (106,9,35,6) O(f(f(g(b),g(b)),f(f(b,e),b))). ** KEPT: 2189 (106,9,35,5) O(f(g(b),f(g(b),f(f(b,e),b)))). ** KEPT: 2190 (106,9,27,6) O(f(l(d,d),f(f(b,e),b))). ** KEPT: 2191 (106,9,24,6) O(f(g(b),f(f(b,e),b))). ** KEPT: 2192 (106,9,23,6) O(f(f(b,e),f(f(b,e),b))). ** KEPT: 2193 (106,9,23,5) O(f(b,f(e,f(f(b,e),b)))). ** KEPT: 2194 (106,9,22,6) O(f(f(e,b),f(f(b,e),b))). ** KEPT: 2195 (106,9,22,5) O(f(e,f(b,f(f(b,e),b)))). ** KEPT: 2196 (106,9,21,6) O(f(f(b,b),f(f(b,e),b))). ** KEPT: 2197 (106,9,21,5) O(f(b,f(b,f(f(b,e),b)))). ** KEPT: 2198 (106,9,303,150) -EQUAL(f(f(f(b,e),b),f(e,e)),f(a,c)). ** KEPT: 2199 (106,9,303,15) -EQUAL(f(f(f(b,e),b),f(e,e)),d). ** KEPT: 2200 (106,9,142,150) -EQUAL(f(f(f(b,e),b),g(l(d,d))),f(a,c)). ** KEPT: 2201 (106,9,142,15) -EQUAL(f(f(f(b,e),b),g(l(d,d))),d). ** KEPT: 2202 (106,9,80,150) -EQUAL(f(f(f(b,e),b),f(e,f(b,e))),f(a,c)). ** KEPT: 2203 (106,9,80,15) -EQUAL(f(f(f(b,e),b),f(e,f(b,e))),d). ** KEPT: 2204 (106,9,79,150) -EQUAL(f(f(f(b,e),b),f(f(e,b),e)),f(a,c)). ** KEPT: 2205 (106,9,79,15) -EQUAL(f(f(f(b,e),b),f(f(e,b),e)),d). ** KEPT: 2206 (106,9,78,150) -EQUAL(f(f(f(b,e),b),f(f(e,b),b)),f(a,c)). ** KEPT: 2207 (106,9,78,15) -EQUAL(f(f(f(b,e),b),f(f(e,b),b)),d). ** KEPT: 2208 (106,9,69,150) -EQUAL(f(f(f(b,e),b),f(e,f(e,b))),f(a,c)). ** KEPT: 2209 (106,9,69,15) -EQUAL(f(f(f(b,e),b),f(e,f(e,b))),d). ** KEPT: 2210 (106,9,68,150) -EQUAL(f(f(f(b,e),b),f(b,f(e,b))),f(a,c)). ** KEPT: 2211 (106,9,68,15) -EQUAL(f(f(f(b,e),b),f(b,f(e,b))),d). ** KEPT: 2212 (106,9,57,150) -EQUAL(f(f(f(b,e),b),f(b,f(b,e))),f(a,c)). ** KEPT: 2213 (106,9,57,15) -EQUAL(f(f(f(b,e),b),f(b,f(b,e))),d). ** KEPT: 2214 (106,9,56,150) -EQUAL(f(f(f(b,e),b),f(f(b,b),e)),f(a,c)). ** KEPT: 2215 (106,9,56,15) -EQUAL(f(f(f(b,e),b),f(f(b,b),e)),d). ** KEPT: 2216 (106,9,55,150) -EQUAL(f(f(f(b,e),b),f(f(b,b),b)),f(a,c)). ** KEPT: 2217 (106,9,55,15) -EQUAL(f(f(f(b,e),b),f(f(b,b),b)),d). ** KEPT: 2218 (106,9,49,150) -EQUAL(f(f(f(b,e),b),f(e,f(b,b))),f(a,c)). ** KEPT: 2219 (106,9,49,15) -EQUAL(f(f(f(b,e),b),f(e,f(b,b))),d). ** KEPT: 2220 (106,9,48,150) -EQUAL(f(f(f(b,e),b),f(b,f(b,b))),f(a,c)). ** KEPT: 2221 (106,9,48,15) -EQUAL(f(f(f(b,e),b),f(b,f(b,b))),d). ** KEPT: 2222 (106,9,41,150) -EQUAL(f(f(f(b,e),b),f(g(b),e)),f(a,c)). ** KEPT: 2223 (106,9,41,15) -EQUAL(f(f(f(b,e),b),f(g(b),e)),d). ** KEPT: 2224 (106,9,40,150) -EQUAL(f(f(f(b,e),b),f(g(b),b)),f(a,c)). ** KEPT: 2225 (106,9,40,15) -EQUAL(f(f(f(b,e),b),f(g(b),b)),d). ** KEPT: 2226 (106,9,37,150) -EQUAL(f(f(f(b,e),b),f(e,g(b))),f(a,c)). ** KEPT: 2227 (106,9,37,15) -EQUAL(f(f(f(b,e),b),f(e,g(b))),d). ** KEPT: 2228 (106,9,36,150) -EQUAL(f(f(f(b,e),b),f(b,g(b))),f(a,c)). ** KEPT: 2229 (106,9,36,15) -EQUAL(f(f(f(b,e),b),f(b,g(b))),d). ** KEPT: 2230 (106,9,35,150) -EQUAL(f(f(f(b,e),b),f(g(b),g(b))),f(a,c)). ** KEPT: 2231 (106,9,35,15) -EQUAL(f(f(f(b,e),b),f(g(b),g(b))),d). ** KEPT: 2232 (106,9,27,150) -EQUAL(f(f(f(b,e),b),l(d,d)),f(a,c)). ** KEPT: 2233 (106,9,27,15) -EQUAL(f(f(f(b,e),b),l(d,d)),d). ** KEPT: 2234 (106,9,24,150) -EQUAL(f(f(f(b,e),b),g(b)),f(a,c)). ** KEPT: 2235 (106,9,24,15) -EQUAL(f(f(f(b,e),b),g(b)),d). ** KEPT: 2236 (106,9,23,150) -EQUAL(f(f(f(b,e),b),f(b,e)),f(a,c)). ** KEPT: 2237 (106,9,23,15) -EQUAL(f(f(f(b,e),b),f(b,e)),d). ** KEPT: 2238 (106,9,22,150) -EQUAL(f(f(f(b,e),b),f(e,b)),f(a,c)). ** KEPT: 2239 (106,9,22,15) -EQUAL(f(f(f(b,e),b),f(e,b)),d). ** KEPT: 2240 (106,9,21,150) -EQUAL(f(f(f(b,e),b),f(b,b)),f(a,c)). ** KEPT: 2241 (106,9,21,15) -EQUAL(f(f(f(b,e),b),f(b,b)),d). ** KEPT: 2242 (106,9,12,150) -EQUAL(f(f(f(b,e),b),b),f(a,c)). ** KEPT: 2243 (106,9,12,15) -EQUAL(f(f(f(b,e),b),b),d). ** KEPT: 2244 (106,9,7,150) -EQUAL(f(f(f(b,e),b),e),f(a,c)). ** KEPT: 2245 (106,9,7,15) -EQUAL(f(f(f(b,e),b),e),d). ** KEPT: 2246 (106,9,303,6) O(f(f(f(b,e),b),f(e,e))). ** KEPT: 2247 (106,9,303,5) O(f(f(b,e),f(b,f(e,e)))). ** KEPT: 2248 (106,9,142,6) O(f(f(f(b,e),b),g(l(d,d)))). ** KEPT: 2249 (106,9,142,5) O(f(f(b,e),f(b,g(l(d,d))))). ** KEPT: 2250 (106,9,80,6) O(f(f(f(b,e),b),f(e,f(b,e)))). ** KEPT: 2251 (106,9,80,5) O(f(f(b,e),f(b,f(e,f(b,e))))). ** KEPT: 2252 (106,9,79,6) O(f(f(f(b,e),b),f(f(e,b),e))). ** KEPT: 2253 (106,9,79,5) O(f(f(b,e),f(b,f(f(e,b),e)))). ** KEPT: 2254 (106,9,78,6) O(f(f(f(b,e),b),f(f(e,b),b))). ** KEPT: 2255 (106,9,78,5) O(f(f(b,e),f(b,f(f(e,b),b)))). ** KEPT: 2256 (106,9,69,6) O(f(f(f(b,e),b),f(e,f(e,b)))). ** KEPT: 2257 (106,9,69,5) O(f(f(b,e),f(b,f(e,f(e,b))))). ** KEPT: 2258 (106,9,68,6) O(f(f(f(b,e),b),f(b,f(e,b)))). ** KEPT: 2259 (106,9,68,5) O(f(f(b,e),f(b,f(b,f(e,b))))). ** KEPT: 2260 (106,9,57,6) O(f(f(f(b,e),b),f(b,f(b,e)))). ** KEPT: 2261 (106,9,57,5) O(f(f(b,e),f(b,f(b,f(b,e))))). ** KEPT: 2262 (106,9,56,6) O(f(f(f(b,e),b),f(f(b,b),e))). ** KEPT: 2263 (106,9,56,5) O(f(f(b,e),f(b,f(f(b,b),e)))). ** KEPT: 2264 (106,9,55,6) O(f(f(f(b,e),b),f(f(b,b),b))). ** KEPT: 2265 (106,9,55,5) O(f(f(b,e),f(b,f(f(b,b),b)))). ** KEPT: 2266 (106,9,49,6) O(f(f(f(b,e),b),f(e,f(b,b)))). ** KEPT: 2267 (106,9,49,5) O(f(f(b,e),f(b,f(e,f(b,b))))). ** KEPT: 2268 (106,9,48,6) O(f(f(f(b,e),b),f(b,f(b,b)))). ** KEPT: 2269 (106,9,48,5) O(f(f(b,e),f(b,f(b,f(b,b))))). ** KEPT: 2270 (106,9,41,6) O(f(f(f(b,e),b),f(g(b),e))). ** KEPT: 2271 (106,9,40,6) O(f(f(f(b,e),b),f(g(b),b))). ** KEPT: 2272 (106,9,37,6) O(f(f(f(b,e),b),f(e,g(b)))). ** KEPT: 2273 (106,9,37,5) O(f(f(b,e),f(b,f(e,g(b))))). ** KEPT: 2274 (106,9,36,6) O(f(f(f(b,e),b),f(b,g(b)))). ** KEPT: 2275 (106,9,36,5) O(f(f(b,e),f(b,f(b,g(b))))). ** KEPT: 2276 (106,9,35,6) O(f(f(f(b,e),b),f(g(b),g(b)))). ** KEPT: 2277 (106,9,27,6) O(f(f(f(b,e),b),l(d,d))). ** KEPT: 2278 (106,9,27,5) O(f(f(b,e),f(b,l(d,d)))). ** KEPT: 2279 (106,9,24,6) O(f(f(f(b,e),b),g(b))). ** KEPT: 2280 (106,9,23,6) O(f(f(f(b,e),b),f(b,e))). ** KEPT: 2281 (106,9,22,6) O(f(f(f(b,e),b),f(e,b))). ** KEPT: 2282 (106,9,21,6) O(f(f(f(b,e),b),f(b,b))). ** KEPT: 2283 (106,9,12,6) O(f(f(f(b,e),b),b)). ** KEPT: 2284 (106,9,7,6) O(f(f(f(b,e),b),e)). ** KEPT: 2285 (4,106) O(f(f(b,f(x,g(x))),b)). ** KEPT: 2286 (3,106) O(f(f(b,f(g(x),x)),b)). new given clause: 107 (23,9,7,6) O(f(f(b,e),e)). ** KEPT: 2287 (107,9,303,150) -EQUAL(f(f(e,e),f(f(b,e),e)),f(a,c)). ** KEPT: 2288 (107,9,303,15) -EQUAL(f(f(e,e),f(f(b,e),e)),d). ** KEPT: 2289 (107,9,142,150) -EQUAL(f(g(l(d,d)),f(f(b,e),e)),f(a,c)). ** KEPT: 2290 (107,9,142,15) -EQUAL(f(g(l(d,d)),f(f(b,e),e)),d). ** KEPT: 2291 (107,9,107,150) -EQUAL(f(f(f(b,e),e),f(f(b,e),e)),f(a,c)). ** KEPT: 2292 (107,9,107,15) -EQUAL(f(f(f(b,e),e),f(f(b,e),e)),d). ** KEPT: 2293 (107,9,106,150) -EQUAL(f(f(f(b,e),b),f(f(b,e),e)),f(a,c)). ** KEPT: 2294 (107,9,106,15) -EQUAL(f(f(f(b,e),b),f(f(b,e),e)),d). ** KEPT: 2295 (107,9,80,150) -EQUAL(f(f(e,f(b,e)),f(f(b,e),e)),f(a,c)). ** KEPT: 2296 (107,9,80,15) -EQUAL(f(f(e,f(b,e)),f(f(b,e),e)),d). ** KEPT: 2297 (107,9,79,150) -EQUAL(f(f(f(e,b),e),f(f(b,e),e)),f(a,c)). ** KEPT: 2298 (107,9,79,15) -EQUAL(f(f(f(e,b),e),f(f(b,e),e)),d). ** KEPT: 2299 (107,9,78,150) -EQUAL(f(f(f(e,b),b),f(f(b,e),e)),f(a,c)). ** KEPT: 2300 (107,9,78,15) -EQUAL(f(f(f(e,b),b),f(f(b,e),e)),d). ** KEPT: 2301 (107,9,69,150) -EQUAL(f(f(e,f(e,b)),f(f(b,e),e)),f(a,c)). ** KEPT: 2302 (107,9,69,15) -EQUAL(f(f(e,f(e,b)),f(f(b,e),e)),d). ** KEPT: 2303 (107,9,68,150) -EQUAL(f(f(b,f(e,b)),f(f(b,e),e)),f(a,c)). ** KEPT: 2304 (107,9,68,15) -EQUAL(f(f(b,f(e,b)),f(f(b,e),e)),d). ** KEPT: 2305 (107,9,57,150) -EQUAL(f(f(b,f(b,e)),f(f(b,e),e)),f(a,c)). ** KEPT: 2306 (107,9,57,15) -EQUAL(f(f(b,f(b,e)),f(f(b,e),e)),d). ** KEPT: 2307 (107,9,56,150) -EQUAL(f(f(f(b,b),e),f(f(b,e),e)),f(a,c)). ** KEPT: 2308 (107,9,56,15) -EQUAL(f(f(f(b,b),e),f(f(b,e),e)),d). ** KEPT: 2309 (107,9,55,150) -EQUAL(f(f(f(b,b),b),f(f(b,e),e)),f(a,c)). ** KEPT: 2310 (107,9,55,15) -EQUAL(f(f(f(b,b),b),f(f(b,e),e)),d). ** KEPT: 2311 (107,9,49,150) -EQUAL(f(f(e,f(b,b)),f(f(b,e),e)),f(a,c)). ** KEPT: 2312 (107,9,49,15) -EQUAL(f(f(e,f(b,b)),f(f(b,e),e)),d). ** KEPT: 2313 (107,9,48,150) -EQUAL(f(f(b,f(b,b)),f(f(b,e),e)),f(a,c)). ** KEPT: 2314 (107,9,48,15) -EQUAL(f(f(b,f(b,b)),f(f(b,e),e)),d). ** KEPT: 2315 (107,9,41,150) -EQUAL(f(f(g(b),e),f(f(b,e),e)),f(a,c)). ** KEPT: 2316 (107,9,41,15) -EQUAL(f(f(g(b),e),f(f(b,e),e)),d). ** KEPT: 2317 (107,9,40,150) -EQUAL(f(f(g(b),b),f(f(b,e),e)),f(a,c)). ** KEPT: 2318 (107,9,40,15) -EQUAL(f(f(g(b),b),f(f(b,e),e)),d). ** KEPT: 2319 (107,9,37,150) -EQUAL(f(f(e,g(b)),f(f(b,e),e)),f(a,c)). ** KEPT: 2320 (107,9,37,15) -EQUAL(f(f(e,g(b)),f(f(b,e),e)),d). ** KEPT: 2321 (107,9,36,150) -EQUAL(f(f(b,g(b)),f(f(b,e),e)),f(a,c)). ** KEPT: 2322 (107,9,36,15) -EQUAL(f(f(b,g(b)),f(f(b,e),e)),d). ** KEPT: 2323 (107,9,35,150) -EQUAL(f(f(g(b),g(b)),f(f(b,e),e)),f(a,c)). ** KEPT: 2324 (107,9,35,15) -EQUAL(f(f(g(b),g(b)),f(f(b,e),e)),d). ** KEPT: 2325 (107,9,27,150) -EQUAL(f(l(d,d),f(f(b,e),e)),f(a,c)). ** KEPT: 2326 (107,9,27,15) -EQUAL(f(l(d,d),f(f(b,e),e)),d). ** KEPT: 2327 (107,9,24,150) -EQUAL(f(g(b),f(f(b,e),e)),f(a,c)). ** KEPT: 2328 (107,9,24,15) -EQUAL(f(g(b),f(f(b,e),e)),d). ** KEPT: 2329 (107,9,23,150) -EQUAL(f(f(b,e),f(f(b,e),e)),f(a,c)). ** KEPT: 2330 (107,9,23,15) -EQUAL(f(f(b,e),f(f(b,e),e)),d). ** KEPT: 2331 (107,9,22,150) -EQUAL(f(f(e,b),f(f(b,e),e)),f(a,c)). ** KEPT: 2332 (107,9,22,15) -EQUAL(f(f(e,b),f(f(b,e),e)),d). ** KEPT: 2333 (107,9,21,150) -EQUAL(f(f(b,b),f(f(b,e),e)),f(a,c)). ** KEPT: 2334 (107,9,21,15) -EQUAL(f(f(b,b),f(f(b,e),e)),d). ** KEPT: 2335 (107,9,12,150) -EQUAL(f(b,f(f(b,e),e)),f(a,c)). ** KEPT: 2336 (107,9,12,15) -EQUAL(f(b,f(f(b,e),e)),d). ** KEPT: 2337 (107,9,7,150) -EQUAL(f(e,f(f(b,e),e)),f(a,c)). ** KEPT: 2338 (107,9,7,15) -EQUAL(f(e,f(f(b,e),e)),d). ** KEPT: 2339 (107,9,303,6) O(f(f(e,e),f(f(b,e),e))). ** KEPT: 2340 (107,9,303,5) O(f(e,f(e,f(f(b,e),e)))). ** KEPT: 2341 (107,9,142,6) O(f(g(l(d,d)),f(f(b,e),e))). ** KEPT: 2342 (107,9,107,6) O(f(f(f(b,e),e),f(f(b,e),e))). ** KEPT: 2343 (107,9,107,5) O(f(f(b,e),f(e,f(f(b,e),e)))). ** KEPT: 2344 (107,9,106,6) O(f(f(f(b,e),b),f(f(b,e),e))). ** KEPT: 2345 (107,9,106,5) O(f(f(b,e),f(b,f(f(b,e),e)))). ** KEPT: 2346 (107,9,80,6) O(f(f(e,f(b,e)),f(f(b,e),e))). ** KEPT: 2347 (107,9,80,5) O(f(e,f(f(b,e),f(f(b,e),e)))). ** KEPT: 2348 (107,9,79,6) O(f(f(f(e,b),e),f(f(b,e),e))). ** KEPT: 2349 (107,9,79,5) O(f(f(e,b),f(e,f(f(b,e),e)))). ** KEPT: 2350 (107,9,78,6) O(f(f(f(e,b),b),f(f(b,e),e))). ** KEPT: 2351 (107,9,78,5) O(f(f(e,b),f(b,f(f(b,e),e)))). ** KEPT: 2352 (107,9,69,6) O(f(f(e,f(e,b)),f(f(b,e),e))). ** KEPT: 2353 (107,9,69,5) O(f(e,f(f(e,b),f(f(b,e),e)))). ** KEPT: 2354 (107,9,68,6) O(f(f(b,f(e,b)),f(f(b,e),e))). ** KEPT: 2355 (107,9,68,5) O(f(b,f(f(e,b),f(f(b,e),e)))). ** KEPT: 2356 (107,9,57,6) O(f(f(b,f(b,e)),f(f(b,e),e))). ** KEPT: 2357 (107,9,57,5) O(f(b,f(f(b,e),f(f(b,e),e)))). ** KEPT: 2358 (107,9,56,6) O(f(f(f(b,b),e),f(f(b,e),e))). ** KEPT: 2359 (107,9,56,5) O(f(f(b,b),f(e,f(f(b,e),e)))). ** KEPT: 2360 (107,9,55,6) O(f(f(f(b,b),b),f(f(b,e),e))). ** KEPT: 2361 (107,9,55,5) O(f(f(b,b),f(b,f(f(b,e),e)))). ** KEPT: 2362 (107,9,49,6) O(f(f(e,f(b,b)),f(f(b,e),e))). ** KEPT: 2363 (107,9,49,5) O(f(e,f(f(b,b),f(f(b,e),e)))). ** KEPT: 2364 (107,9,48,6) O(f(f(b,f(b,b)),f(f(b,e),e))). ** KEPT: 2365 (107,9,48,5) O(f(b,f(f(b,b),f(f(b,e),e)))). ** KEPT: 2366 (107,9,41,6) O(f(f(g(b),e),f(f(b,e),e))). ** KEPT: 2367 (107,9,41,5) O(f(g(b),f(e,f(f(b,e),e)))). ** KEPT: 2368 (107,9,40,6) O(f(f(g(b),b),f(f(b,e),e))). ** KEPT: 2369 (107,9,37,6) O(f(f(e,g(b)),f(f(b,e),e))). ** KEPT: 2370 (107,9,37,5) O(f(e,f(g(b),f(f(b,e),e)))). ** KEPT: 2371 (107,9,36,6) O(f(f(b,g(b)),f(f(b,e),e))). ** KEPT: 2372 (107,9,35,6) O(f(f(g(b),g(b)),f(f(b,e),e))). ** KEPT: 2373 (107,9,35,5) O(f(g(b),f(g(b),f(f(b,e),e)))). ** KEPT: 2374 (107,9,27,6) O(f(l(d,d),f(f(b,e),e))). ** KEPT: 2375 (107,9,24,6) O(f(g(b),f(f(b,e),e))). ** KEPT: 2376 (107,9,23,6) O(f(f(b,e),f(f(b,e),e))). ** KEPT: 2377 (107,9,23,5) O(f(b,f(e,f(f(b,e),e)))). ** KEPT: 2378 (107,9,22,6) O(f(f(e,b),f(f(b,e),e))). ** KEPT: 2379 (107,9,22,5) O(f(e,f(b,f(f(b,e),e)))). ** KEPT: 2380 (107,9,21,6) O(f(f(b,b),f(f(b,e),e))). ** KEPT: 2381 (107,9,21,5) O(f(b,f(b,f(f(b,e),e)))). ** KEPT: 2382 (107,9,303,150) -EQUAL(f(f(f(b,e),e),f(e,e)),f(a,c)). ** KEPT: 2383 (107,9,303,15) -EQUAL(f(f(f(b,e),e),f(e,e)),d). ** KEPT: 2384 (107,9,142,150) -EQUAL(f(f(f(b,e),e),g(l(d,d))),f(a,c)). ** KEPT: 2385 (107,9,142,15) -EQUAL(f(f(f(b,e),e),g(l(d,d))),d). ** KEPT: 2386 (107,9,106,150) -EQUAL(f(f(f(b,e),e),f(f(b,e),b)),f(a,c)). ** KEPT: 2387 (107,9,106,15) -EQUAL(f(f(f(b,e),e),f(f(b,e),b)),d). ** KEPT: 2388 (107,9,80,150) -EQUAL(f(f(f(b,e),e),f(e,f(b,e))),f(a,c)). ** KEPT: 2389 (107,9,80,15) -EQUAL(f(f(f(b,e),e),f(e,f(b,e))),d). ** KEPT: 2390 (107,9,79,150) -EQUAL(f(f(f(b,e),e),f(f(e,b),e)),f(a,c)). ** KEPT: 2391 (107,9,79,15) -EQUAL(f(f(f(b,e),e),f(f(e,b),e)),d). ** KEPT: 2392 (107,9,78,150) -EQUAL(f(f(f(b,e),e),f(f(e,b),b)),f(a,c)). ** KEPT: 2393 (107,9,78,15) -EQUAL(f(f(f(b,e),e),f(f(e,b),b)),d). ** KEPT: 2394 (107,9,69,150) -EQUAL(f(f(f(b,e),e),f(e,f(e,b))),f(a,c)). ** KEPT: 2395 (107,9,69,15) -EQUAL(f(f(f(b,e),e),f(e,f(e,b))),d). ** KEPT: 2396 (107,9,68,150) -EQUAL(f(f(f(b,e),e),f(b,f(e,b))),f(a,c)). ** KEPT: 2397 (107,9,68,15) -EQUAL(f(f(f(b,e),e),f(b,f(e,b))),d). ** KEPT: 2398 (107,9,57,150) -EQUAL(f(f(f(b,e),e),f(b,f(b,e))),f(a,c)). ** KEPT: 2399 (107,9,57,15) -EQUAL(f(f(f(b,e),e),f(b,f(b,e))),d). ** KEPT: 2400 (107,9,56,150) -EQUAL(f(f(f(b,e),e),f(f(b,b),e)),f(a,c)). ** KEPT: 2401 (107,9,56,15) -EQUAL(f(f(f(b,e),e),f(f(b,b),e)),d). ** KEPT: 2402 (107,9,55,150) -EQUAL(f(f(f(b,e),e),f(f(b,b),b)),f(a,c)). ** KEPT: 2403 (107,9,55,15) -EQUAL(f(f(f(b,e),e),f(f(b,b),b)),d). ** KEPT: 2404 (107,9,49,150) -EQUAL(f(f(f(b,e),e),f(e,f(b,b))),f(a,c)). ** KEPT: 2405 (107,9,49,15) -EQUAL(f(f(f(b,e),e),f(e,f(b,b))),d). ** KEPT: 2406 (107,9,48,150) -EQUAL(f(f(f(b,e),e),f(b,f(b,b))),f(a,c)). ** KEPT: 2407 (107,9,48,15) -EQUAL(f(f(f(b,e),e),f(b,f(b,b))),d). ** KEPT: 2408 (107,9,41,150) -EQUAL(f(f(f(b,e),e),f(g(b),e)),f(a,c)). ** KEPT: 2409 (107,9,41,15) -EQUAL(f(f(f(b,e),e),f(g(b),e)),d). ** KEPT: 2410 (107,9,40,150) -EQUAL(f(f(f(b,e),e),f(g(b),b)),f(a,c)). ** KEPT: 2411 (107,9,40,15) -EQUAL(f(f(f(b,e),e),f(g(b),b)),d). ** KEPT: 2412 (107,9,37,150) -EQUAL(f(f(f(b,e),e),f(e,g(b))),f(a,c)). ** KEPT: 2413 (107,9,37,15) -EQUAL(f(f(f(b,e),e),f(e,g(b))),d). ** KEPT: 2414 (107,9,36,150) -EQUAL(f(f(f(b,e),e),f(b,g(b))),f(a,c)). ** KEPT: 2415 (107,9,36,15) -EQUAL(f(f(f(b,e),e),f(b,g(b))),d). ** KEPT: 2416 (107,9,35,150) -EQUAL(f(f(f(b,e),e),f(g(b),g(b))),f(a,c)). ** KEPT: 2417 (107,9,35,15) -EQUAL(f(f(f(b,e),e),f(g(b),g(b))),d). ** KEPT: 2418 (107,9,27,150) -EQUAL(f(f(f(b,e),e),l(d,d)),f(a,c)). ** KEPT: 2419 (107,9,27,15) -EQUAL(f(f(f(b,e),e),l(d,d)),d). ** KEPT: 2420 (107,9,24,150) -EQUAL(f(f(f(b,e),e),g(b)),f(a,c)). ** KEPT: 2421 (107,9,24,15) -EQUAL(f(f(f(b,e),e),g(b)),d). ** KEPT: 2422 (107,9,23,150) -EQUAL(f(f(f(b,e),e),f(b,e)),f(a,c)). ** KEPT: 2423 (107,9,23,15) -EQUAL(f(f(f(b,e),e),f(b,e)),d). ** KEPT: 2424 (107,9,22,150) -EQUAL(f(f(f(b,e),e),f(e,b)),f(a,c)). ** KEPT: 2425 (107,9,22,15) -EQUAL(f(f(f(b,e),e),f(e,b)),d). ** KEPT: 2426 (107,9,21,150) -EQUAL(f(f(f(b,e),e),f(b,b)),f(a,c)). ** KEPT: 2427 (107,9,21,15) -EQUAL(f(f(f(b,e),e),f(b,b)),d). ** KEPT: 2428 (107,9,12,150) -EQUAL(f(f(f(b,e),e),b),f(a,c)). ** KEPT: 2429 (107,9,12,15) -EQUAL(f(f(f(b,e),e),b),d). ** KEPT: 2430 (107,9,7,150) -EQUAL(f(f(f(b,e),e),e),f(a,c)). ** KEPT: 2431 (107,9,7,15) -EQUAL(f(f(f(b,e),e),e),d). ** KEPT: 2432 (107,9,303,6) O(f(f(f(b,e),e),f(e,e))). ** KEPT: 2433 (107,9,303,5) O(f(f(b,e),f(e,f(e,e)))). ** KEPT: 2434 (107,9,142,6) O(f(f(f(b,e),e),g(l(d,d)))). ** KEPT: 2435 (107,9,142,5) O(f(f(b,e),f(e,g(l(d,d))))). ** KEPT: 2436 (107,9,106,6) O(f(f(f(b,e),e),f(f(b,e),b))). ** KEPT: 2437 (107,9,106,5) O(f(f(b,e),f(e,f(f(b,e),b)))). ** KEPT: 2438 (107,9,80,6) O(f(f(f(b,e),e),f(e,f(b,e)))). ** KEPT: 2439 (107,9,80,5) O(f(f(b,e),f(e,f(e,f(b,e))))). ** KEPT: 2440 (107,9,79,6) O(f(f(f(b,e),e),f(f(e,b),e))). ** KEPT: 2441 (107,9,79,5) O(f(f(b,e),f(e,f(f(e,b),e)))). ** KEPT: 2442 (107,9,78,6) O(f(f(f(b,e),e),f(f(e,b),b))). ** KEPT: 2443 (107,9,78,5) O(f(f(b,e),f(e,f(f(e,b),b)))). ** KEPT: 2444 (107,9,69,6) O(f(f(f(b,e),e),f(e,f(e,b)))). ** KEPT: 2445 (107,9,69,5) O(f(f(b,e),f(e,f(e,f(e,b))))). ** KEPT: 2446 (107,9,68,6) O(f(f(f(b,e),e),f(b,f(e,b)))). ** KEPT: 2447 (107,9,68,5) O(f(f(b,e),f(e,f(b,f(e,b))))). ** KEPT: 2448 (107,9,57,6) O(f(f(f(b,e),e),f(b,f(b,e)))). ** KEPT: 2449 (107,9,57,5) O(f(f(b,e),f(e,f(b,f(b,e))))). ** KEPT: 2450 (107,9,56,6) O(f(f(f(b,e),e),f(f(b,b),e))). ** KEPT: 2451 (107,9,56,5) O(f(f(b,e),f(e,f(f(b,b),e)))). ** KEPT: 2452 (107,9,55,6) O(f(f(f(b,e),e),f(f(b,b),b))). ** KEPT: 2453 (107,9,55,5) O(f(f(b,e),f(e,f(f(b,b),b)))). ** KEPT: 2454 (107,9,49,6) O(f(f(f(b,e),e),f(e,f(b,b)))). ** KEPT: 2455 (107,9,49,5) O(f(f(b,e),f(e,f(e,f(b,b))))). ** KEPT: 2456 (107,9,48,6) O(f(f(f(b,e),e),f(b,f(b,b)))). ** KEPT: 2457 (107,9,48,5) O(f(f(b,e),f(e,f(b,f(b,b))))). ** KEPT: 2458 (107,9,41,6) O(f(f(f(b,e),e),f(g(b),e))). ** KEPT: 2459 (107,9,41,5) O(f(f(b,e),f(e,f(g(b),e)))). ** KEPT: 2460 (107,9,40,6) O(f(f(f(b,e),e),f(g(b),b))). ** KEPT: 2461 (107,9,40,5) O(f(f(b,e),f(e,f(g(b),b)))). ** KEPT: 2462 (107,9,37,6) O(f(f(f(b,e),e),f(e,g(b)))). ** KEPT: 2463 (107,9,37,5) O(f(f(b,e),f(e,f(e,g(b))))). ** KEPT: 2464 (107,9,36,6) O(f(f(f(b,e),e),f(b,g(b)))). ** KEPT: 2465 (107,9,36,5) O(f(f(b,e),f(e,f(b,g(b))))). ** KEPT: 2466 (107,9,35,6) O(f(f(f(b,e),e),f(g(b),g(b)))). ** KEPT: 2467 (107,9,35,5) O(f(f(b,e),f(e,f(g(b),g(b))))). ** KEPT: 2468 (107,9,27,6) O(f(f(f(b,e),e),l(d,d))). ** KEPT: 2469 (107,9,27,5) O(f(f(b,e),f(e,l(d,d)))). ** KEPT: 2470 (107,9,24,6) O(f(f(f(b,e),e),g(b))). ** KEPT: 2471 (107,9,23,6) O(f(f(f(b,e),e),f(b,e))). ** KEPT: 2472 (107,9,22,6) O(f(f(f(b,e),e),f(e,b))). ** KEPT: 2473 (107,9,21,6) O(f(f(f(b,e),e),f(b,b))). ** KEPT: 2474 (107,9,12,6) O(f(f(f(b,e),e),b)). ** KEPT: 2475 (107,9,7,6) O(f(f(f(b,e),e),e)). ** KEPT: 2476 (4,107) O(f(f(b,f(x,g(x))),e)). ** KEPT: 2477 (3,107) O(f(f(b,f(g(x),x)),e)). ** KEPT: 2478 (4,107) O(f(f(b,e),f(x,g(x)))). ** KEPT: 2479 (3,107) O(f(f(b,e),f(g(x),x))). 2478 back subsumes: 227 (36,9,23,6) O(f(f(b,e),f(b,g(b)))). 2479 back subsumes: 411 (40,9,23,6) O(f(f(b,e),f(g(b),b))). new given clause: 108 (23,9,7,5) O(f(b,f(e,e))). ** KEPT: 2480 (108,9,303,150) -EQUAL(f(f(e,e),f(b,f(e,e))),f(a,c)). ** KEPT: 2481 (108,9,303,15) -EQUAL(f(f(e,e),f(b,f(e,e))),d). ** KEPT: 2482 (108,9,142,150) -EQUAL(f(g(l(d,d)),f(b,f(e,e))),f(a,c)). ** KEPT: 2483 (108,9,142,15) -EQUAL(f(g(l(d,d)),f(b,f(e,e))),d). ** KEPT: 2484 (108,9,108,150) -EQUAL(f(f(b,f(e,e)),f(b,f(e,e))),f(a,c)). ** KEPT: 2485 (108,9,108,15) -EQUAL(f(f(b,f(e,e)),f(b,f(e,e))),d). ** KEPT: 2486 (108,9,107,150) -EQUAL(f(f(f(b,e),e),f(b,f(e,e))),f(a,c)). ** KEPT: 2487 (108,9,107,15) -EQUAL(f(f(f(b,e),e),f(b,f(e,e))),d). ** KEPT: 2488 (108,9,106,150) -EQUAL(f(f(f(b,e),b),f(b,f(e,e))),f(a,c)). ** KEPT: 2489 (108,9,106,15) -EQUAL(f(f(f(b,e),b),f(b,f(e,e))),d). ** KEPT: 2490 (108,9,80,150) -EQUAL(f(f(e,f(b,e)),f(b,f(e,e))),f(a,c)). ** KEPT: 2491 (108,9,80,15) -EQUAL(f(f(e,f(b,e)),f(b,f(e,e))),d). ** KEPT: 2492 (108,9,79,150) -EQUAL(f(f(f(e,b),e),f(b,f(e,e))),f(a,c)). ** KEPT: 2493 (108,9,79,15) -EQUAL(f(f(f(e,b),e),f(b,f(e,e))),d). ** KEPT: 2494 (108,9,78,150) -EQUAL(f(f(f(e,b),b),f(b,f(e,e))),f(a,c)). ** KEPT: 2495 (108,9,78,15) -EQUAL(f(f(f(e,b),b),f(b,f(e,e))),d). ** KEPT: 2496 (108,9,69,150) -EQUAL(f(f(e,f(e,b)),f(b,f(e,e))),f(a,c)). ** KEPT: 2497 (108,9,69,15) -EQUAL(f(f(e,f(e,b)),f(b,f(e,e))),d). ** KEPT: 2498 (108,9,68,150) -EQUAL(f(f(b,f(e,b)),f(b,f(e,e))),f(a,c)). ** KEPT: 2499 (108,9,68,15) -EQUAL(f(f(b,f(e,b)),f(b,f(e,e))),d). ** KEPT: 2500 (108,9,57,150) -EQUAL(f(f(b,f(b,e)),f(b,f(e,e))),f(a,c)). ** KEPT: 2501 (108,9,57,15) -EQUAL(f(f(b,f(b,e)),f(b,f(e,e))),d). ** KEPT: 2502 (108,9,56,150) -EQUAL(f(f(f(b,b),e),f(b,f(e,e))),f(a,c)). ** KEPT: 2503 (108,9,56,15) -EQUAL(f(f(f(b,b),e),f(b,f(e,e))),d). ** KEPT: 2504 (108,9,55,150) -EQUAL(f(f(f(b,b),b),f(b,f(e,e))),f(a,c)). ** KEPT: 2505 (108,9,55,15) -EQUAL(f(f(f(b,b),b),f(b,f(e,e))),d). ** KEPT: 2506 (108,9,49,150) -EQUAL(f(f(e,f(b,b)),f(b,f(e,e))),f(a,c)). ** KEPT: 2507 (108,9,49,15) -EQUAL(f(f(e,f(b,b)),f(b,f(e,e))),d). ** KEPT: 2508 (108,9,48,150) -EQUAL(f(f(b,f(b,b)),f(b,f(e,e))),f(a,c)). ** KEPT: 2509 (108,9,48,15) -EQUAL(f(f(b,f(b,b)),f(b,f(e,e))),d). ** KEPT: 2510 (108,9,41,150) -EQUAL(f(f(g(b),e),f(b,f(e,e))),f(a,c)). ** KEPT: 2511 (108,9,41,15) -EQUAL(f(f(g(b),e),f(b,f(e,e))),d). ** KEPT: 2512 (108,9,40,150) -EQUAL(f(f(g(b),b),f(b,f(e,e))),f(a,c)). ** KEPT: 2513 (108,9,40,15) -EQUAL(f(f(g(b),b),f(b,f(e,e))),d). ** KEPT: 2514 (108,9,37,150) -EQUAL(f(f(e,g(b)),f(b,f(e,e))),f(a,c)). ** KEPT: 2515 (108,9,37,15) -EQUAL(f(f(e,g(b)),f(b,f(e,e))),d). ** KEPT: 2516 (108,9,36,150) -EQUAL(f(f(b,g(b)),f(b,f(e,e))),f(a,c)). ** KEPT: 2517 (108,9,36,15) -EQUAL(f(f(b,g(b)),f(b,f(e,e))),d). ** KEPT: 2518 (108,9,35,150) -EQUAL(f(f(g(b),g(b)),f(b,f(e,e))),f(a,c)). ** KEPT: 2519 (108,9,35,15) -EQUAL(f(f(g(b),g(b)),f(b,f(e,e))),d). ** KEPT: 2520 (108,9,27,150) -EQUAL(f(l(d,d),f(b,f(e,e))),f(a,c)). ** KEPT: 2521 (108,9,27,15) -EQUAL(f(l(d,d),f(b,f(e,e))),d). ** KEPT: 2522 (108,9,23,150) -EQUAL(f(f(b,e),f(b,f(e,e))),f(a,c)). ** KEPT: 2523 (108,9,23,15) -EQUAL(f(f(b,e),f(b,f(e,e))),d). ** KEPT: 2524 (108,9,22,150) -EQUAL(f(f(e,b),f(b,f(e,e))),f(a,c)). ** KEPT: 2525 (108,9,22,15) -EQUAL(f(f(e,b),f(b,f(e,e))),d). ** KEPT: 2526 (108,9,21,150) -EQUAL(f(f(b,b),f(b,f(e,e))),f(a,c)). ** KEPT: 2527 (108,9,21,15) -EQUAL(f(f(b,b),f(b,f(e,e))),d). ** KEPT: 2528 (108,9,12,150) -EQUAL(f(b,f(b,f(e,e))),f(a,c)). ** KEPT: 2529 (108,9,12,15) -EQUAL(f(b,f(b,f(e,e))),d). ** KEPT: 2530 (108,9,7,150) -EQUAL(f(e,f(b,f(e,e))),f(a,c)). ** KEPT: 2531 (108,9,7,15) -EQUAL(f(e,f(b,f(e,e))),d). ** KEPT: 2532 (108,9,303,6) O(f(f(e,e),f(b,f(e,e)))). ** KEPT: 2533 (108,9,303,5) O(f(e,f(e,f(b,f(e,e))))). ** KEPT: 2534 (108,9,142,6) O(f(g(l(d,d)),f(b,f(e,e)))). ** KEPT: 2535 (108,9,108,6) O(f(f(b,f(e,e)),f(b,f(e,e)))). ** KEPT: 2536 (108,9,108,5) O(f(b,f(f(e,e),f(b,f(e,e))))). ** KEPT: 2537 (108,9,107,6) O(f(f(f(b,e),e),f(b,f(e,e)))). ** KEPT: 2538 (108,9,107,5) O(f(f(b,e),f(e,f(b,f(e,e))))). ** KEPT: 2539 (108,9,106,6) O(f(f(f(b,e),b),f(b,f(e,e)))). ** KEPT: 2540 (108,9,106,5) O(f(f(b,e),f(b,f(b,f(e,e))))). ** KEPT: 2541 (108,9,80,6) O(f(f(e,f(b,e)),f(b,f(e,e)))). ** KEPT: 2542 (108,9,80,5) O(f(e,f(f(b,e),f(b,f(e,e))))). ** KEPT: 2543 (108,9,79,6) O(f(f(f(e,b),e),f(b,f(e,e)))). ** KEPT: 2544 (108,9,79,5) O(f(f(e,b),f(e,f(b,f(e,e))))). ** KEPT: 2545 (108,9,78,6) O(f(f(f(e,b),b),f(b,f(e,e)))). ** KEPT: 2546 (108,9,78,5) O(f(f(e,b),f(b,f(b,f(e,e))))). ** KEPT: 2547 (108,9,69,6) O(f(f(e,f(e,b)),f(b,f(e,e)))). ** KEPT: 2548 (108,9,69,5) O(f(e,f(f(e,b),f(b,f(e,e))))). ** KEPT: 2549 (108,9,68,6) O(f(f(b,f(e,b)),f(b,f(e,e)))). ** KEPT: 2550 (108,9,68,5) O(f(b,f(f(e,b),f(b,f(e,e))))). ** KEPT: 2551 (108,9,57,6) O(f(f(b,f(b,e)),f(b,f(e,e)))). ** KEPT: 2552 (108,9,57,5) O(f(b,f(f(b,e),f(b,f(e,e))))). ** KEPT: 2553 (108,9,56,6) O(f(f(f(b,b),e),f(b,f(e,e)))). ** KEPT: 2554 (108,9,56,5) O(f(f(b,b),f(e,f(b,f(e,e))))). ** KEPT: 2555 (108,9,55,6) O(f(f(f(b,b),b),f(b,f(e,e)))). ** KEPT: 2556 (108,9,55,5) O(f(f(b,b),f(b,f(b,f(e,e))))). ** KEPT: 2557 (108,9,49,6) O(f(f(e,f(b,b)),f(b,f(e,e)))). ** KEPT: 2558 (108,9,49,5) O(f(e,f(f(b,b),f(b,f(e,e))))). ** KEPT: 2559 (108,9,48,6) O(f(f(b,f(b,b)),f(b,f(e,e)))). ** KEPT: 2560 (108,9,48,5) O(f(b,f(f(b,b),f(b,f(e,e))))). ** KEPT: 2561 (108,9,41,6) O(f(f(g(b),e),f(b,f(e,e)))). ** KEPT: 2562 (108,9,41,5) O(f(g(b),f(e,f(b,f(e,e))))). ** KEPT: 2563 (108,9,40,6) O(f(f(g(b),b),f(b,f(e,e)))). ** KEPT: 2564 (108,9,37,6) O(f(f(e,g(b)),f(b,f(e,e)))). ** KEPT: 2565 (108,9,36,6) O(f(f(b,g(b)),f(b,f(e,e)))). ** KEPT: 2566 (108,9,35,6) O(f(f(g(b),g(b)),f(b,f(e,e)))). ** KEPT: 2567 (108,9,27,6) O(f(l(d,d),f(b,f(e,e)))). ** KEPT: 2568 (108,9,23,5) O(f(b,f(e,f(b,f(e,e))))). ** KEPT: 2569 (108,9,22,5) O(f(e,f(b,f(b,f(e,e))))). ** KEPT: 2570 (108,9,21,5) O(f(b,f(b,f(b,f(e,e))))). ** KEPT: 2571 (108,9,303,150) -EQUAL(f(f(b,f(e,e)),f(e,e)),f(a,c)). ** KEPT: 2572 (108,9,303,15) -EQUAL(f(f(b,f(e,e)),f(e,e)),d). ** KEPT: 2573 (108,9,142,150) -EQUAL(f(f(b,f(e,e)),g(l(d,d))),f(a,c)). ** KEPT: 2574 (108,9,142,15) -EQUAL(f(f(b,f(e,e)),g(l(d,d))),d). ** KEPT: 2575 (108,9,107,150) -EQUAL(f(f(b,f(e,e)),f(f(b,e),e)),f(a,c)). ** KEPT: 2576 (108,9,107,15) -EQUAL(f(f(b,f(e,e)),f(f(b,e),e)),d). ** KEPT: 2577 (108,9,106,150) -EQUAL(f(f(b,f(e,e)),f(f(b,e),b)),f(a,c)). ** KEPT: 2578 (108,9,106,15) -EQUAL(f(f(b,f(e,e)),f(f(b,e),b)),d). ** KEPT: 2579 (108,9,80,150) -EQUAL(f(f(b,f(e,e)),f(e,f(b,e))),f(a,c)). ** KEPT: 2580 (108,9,80,15) -EQUAL(f(f(b,f(e,e)),f(e,f(b,e))),d). ** KEPT: 2581 (108,9,79,150) -EQUAL(f(f(b,f(e,e)),f(f(e,b),e)),f(a,c)). ** KEPT: 2582 (108,9,79,15) -EQUAL(f(f(b,f(e,e)),f(f(e,b),e)),d). ** KEPT: 2583 (108,9,78,150) -EQUAL(f(f(b,f(e,e)),f(f(e,b),b)),f(a,c)). ** KEPT: 2584 (108,9,78,15) -EQUAL(f(f(b,f(e,e)),f(f(e,b),b)),d). ** KEPT: 2585 (108,9,69,150) -EQUAL(f(f(b,f(e,e)),f(e,f(e,b))),f(a,c)). ** KEPT: 2586 (108,9,69,15) -EQUAL(f(f(b,f(e,e)),f(e,f(e,b))),d). ** KEPT: 2587 (108,9,68,150) -EQUAL(f(f(b,f(e,e)),f(b,f(e,b))),f(a,c)). ** KEPT: 2588 (108,9,68,15) -EQUAL(f(f(b,f(e,e)),f(b,f(e,b))),d). ** KEPT: 2589 (108,9,57,150) -EQUAL(f(f(b,f(e,e)),f(b,f(b,e))),f(a,c)). ** KEPT: 2590 (108,9,57,15) -EQUAL(f(f(b,f(e,e)),f(b,f(b,e))),d). ** KEPT: 2591 (108,9,56,150) -EQUAL(f(f(b,f(e,e)),f(f(b,b),e)),f(a,c)). ** KEPT: 2592 (108,9,56,15) -EQUAL(f(f(b,f(e,e)),f(f(b,b),e)),d). ** KEPT: 2593 (108,9,55,150) -EQUAL(f(f(b,f(e,e)),f(f(b,b),b)),f(a,c)). ** KEPT: 2594 (108,9,55,15) -EQUAL(f(f(b,f(e,e)),f(f(b,b),b)),d). ** KEPT: 2595 (108,9,49,150) -EQUAL(f(f(b,f(e,e)),f(e,f(b,b))),f(a,c)). ** KEPT: 2596 (108,9,49,15) -EQUAL(f(f(b,f(e,e)),f(e,f(b,b))),d). ** KEPT: 2597 (108,9,48,150) -EQUAL(f(f(b,f(e,e)),f(b,f(b,b))),f(a,c)). ** KEPT: 2598 (108,9,48,15) -EQUAL(f(f(b,f(e,e)),f(b,f(b,b))),d). ** KEPT: 2599 (108,9,41,150) -EQUAL(f(f(b,f(e,e)),f(g(b),e)),f(a,c)). ** KEPT: 2600 (108,9,41,15) -EQUAL(f(f(b,f(e,e)),f(g(b),e)),d). ** KEPT: 2601 (108,9,40,150) -EQUAL(f(f(b,f(e,e)),f(g(b),b)),f(a,c)). ** KEPT: 2602 (108,9,40,15) -EQUAL(f(f(b,f(e,e)),f(g(b),b)),d). ** KEPT: 2603 (108,9,37,150) -EQUAL(f(f(b,f(e,e)),f(e,g(b))),f(a,c)). ** KEPT: 2604 (108,9,37,15) -EQUAL(f(f(b,f(e,e)),f(e,g(b))),d). ** KEPT: 2605 (108,9,36,150) -EQUAL(f(f(b,f(e,e)),f(b,g(b))),f(a,c)). ** KEPT: 2606 (108,9,36,15) -EQUAL(f(f(b,f(e,e)),f(b,g(b))),d). ** KEPT: 2607 (108,9,35,150) -EQUAL(f(f(b,f(e,e)),f(g(b),g(b))),f(a,c)). ** KEPT: 2608 (108,9,35,15) -EQUAL(f(f(b,f(e,e)),f(g(b),g(b))),d). ** KEPT: 2609 (108,9,27,150) -EQUAL(f(f(b,f(e,e)),l(d,d)),f(a,c)). ** KEPT: 2610 (108,9,27,15) -EQUAL(f(f(b,f(e,e)),l(d,d)),d). ** KEPT: 2611 (108,9,24,150) -EQUAL(f(f(b,f(e,e)),g(b)),f(a,c)). ** KEPT: 2612 (108,9,24,15) -EQUAL(f(f(b,f(e,e)),g(b)),d). ** KEPT: 2613 (108,9,23,150) -EQUAL(f(f(b,f(e,e)),f(b,e)),f(a,c)). ** KEPT: 2614 (108,9,23,15) -EQUAL(f(f(b,f(e,e)),f(b,e)),d). ** KEPT: 2615 (108,9,22,150) -EQUAL(f(f(b,f(e,e)),f(e,b)),f(a,c)). ** KEPT: 2616 (108,9,22,15) -EQUAL(f(f(b,f(e,e)),f(e,b)),d). ** KEPT: 2617 (108,9,21,150) -EQUAL(f(f(b,f(e,e)),f(b,b)),f(a,c)). ** KEPT: 2618 (108,9,21,15) -EQUAL(f(f(b,f(e,e)),f(b,b)),d). ** KEPT: 2619 (108,9,12,150) -EQUAL(f(f(b,f(e,e)),b),f(a,c)). ** KEPT: 2620 (108,9,12,15) -EQUAL(f(f(b,f(e,e)),b),d). ** KEPT: 2621 (108,9,7,150) -EQUAL(f(f(b,f(e,e)),e),f(a,c)). ** KEPT: 2622 (108,9,7,15) -EQUAL(f(f(b,f(e,e)),e),d). ** KEPT: 2623 (108,9,303,6) O(f(f(b,f(e,e)),f(e,e))). ** KEPT: 2624 (108,9,303,5) O(f(b,f(f(e,e),f(e,e)))). ** KEPT: 2625 (108,9,142,6) O(f(f(b,f(e,e)),g(l(d,d)))). ** KEPT: 2626 (108,9,142,5) O(f(b,f(f(e,e),g(l(d,d))))). ** KEPT: 2627 (108,9,107,6) O(f(f(b,f(e,e)),f(f(b,e),e))). ** KEPT: 2628 (108,9,107,5) O(f(b,f(f(e,e),f(f(b,e),e)))). ** KEPT: 2629 (108,9,106,6) O(f(f(b,f(e,e)),f(f(b,e),b))). ** KEPT: 2630 (108,9,106,5) O(f(b,f(f(e,e),f(f(b,e),b)))). ** KEPT: 2631 (108,9,80,6) O(f(f(b,f(e,e)),f(e,f(b,e)))). ** KEPT: 2632 (108,9,80,5) O(f(b,f(f(e,e),f(e,f(b,e))))). ** KEPT: 2633 (108,9,79,6) O(f(f(b,f(e,e)),f(f(e,b),e))). ** KEPT: 2634 (108,9,79,5) O(f(b,f(f(e,e),f(f(e,b),e)))). ** KEPT: 2635 (108,9,78,6) O(f(f(b,f(e,e)),f(f(e,b),b))). ** KEPT: 2636 (108,9,78,5) O(f(b,f(f(e,e),f(f(e,b),b)))). ** KEPT: 2637 (108,9,69,6) O(f(f(b,f(e,e)),f(e,f(e,b)))). ** KEPT: 2638 (108,9,69,5) O(f(b,f(f(e,e),f(e,f(e,b))))). ** KEPT: 2639 (108,9,68,6) O(f(f(b,f(e,e)),f(b,f(e,b)))). ** KEPT: 2640 (108,9,68,5) O(f(b,f(f(e,e),f(b,f(e,b))))). ** KEPT: 2641 (108,9,57,6) O(f(f(b,f(e,e)),f(b,f(b,e)))). ** KEPT: 2642 (108,9,57,5) O(f(b,f(f(e,e),f(b,f(b,e))))). ** KEPT: 2643 (108,9,56,6) O(f(f(b,f(e,e)),f(f(b,b),e))). ** KEPT: 2644 (108,9,56,5) O(f(b,f(f(e,e),f(f(b,b),e)))). ** KEPT: 2645 (108,9,55,6) O(f(f(b,f(e,e)),f(f(b,b),b))). ** KEPT: 2646 (108,9,55,5) O(f(b,f(f(e,e),f(f(b,b),b)))). ** KEPT: 2647 (108,9,49,6) O(f(f(b,f(e,e)),f(e,f(b,b)))). ** KEPT: 2648 (108,9,49,5) O(f(b,f(f(e,e),f(e,f(b,b))))). ** KEPT: 2649 (108,9,48,6) O(f(f(b,f(e,e)),f(b,f(b,b)))). ** KEPT: 2650 (108,9,48,5) O(f(b,f(f(e,e),f(b,f(b,b))))). ** KEPT: 2651 (108,9,41,6) O(f(f(b,f(e,e)),f(g(b),e))). ** KEPT: 2652 (108,9,41,5) O(f(b,f(f(e,e),f(g(b),e)))). ** KEPT: 2653 (108,9,40,6) O(f(f(b,f(e,e)),f(g(b),b))). ** KEPT: 2654 (108,9,40,5) O(f(b,f(f(e,e),f(g(b),b)))). ** KEPT: 2655 (108,9,37,6) O(f(f(b,f(e,e)),f(e,g(b)))). ** KEPT: 2656 (108,9,37,5) O(f(b,f(f(e,e),f(e,g(b))))). ** KEPT: 2657 (108,9,36,6) O(f(f(b,f(e,e)),f(b,g(b)))). ** KEPT: 2658 (108,9,36,5) O(f(b,f(f(e,e),f(b,g(b))))). ** KEPT: 2659 (108,9,35,6) O(f(f(b,f(e,e)),f(g(b),g(b)))). ** KEPT: 2660 (108,9,35,5) O(f(b,f(f(e,e),f(g(b),g(b))))). ** KEPT: 2661 (108,9,27,6) O(f(f(b,f(e,e)),l(d,d))). ** KEPT: 2662 (108,9,27,5) O(f(b,f(f(e,e),l(d,d)))). ** KEPT: 2663 (108,9,24,6) O(f(f(b,f(e,e)),g(b))). ** KEPT: 2664 (108,9,24,5) O(f(b,f(f(e,e),g(b)))). ** KEPT: 2665 (108,9,23,6) O(f(f(b,f(e,e)),f(b,e))). ** KEPT: 2666 (108,9,23,5) O(f(b,f(f(e,e),f(b,e)))). ** KEPT: 2667 (108,9,22,6) O(f(f(b,f(e,e)),f(e,b))). ** KEPT: 2668 (108,9,22,5) O(f(b,f(f(e,e),f(e,b)))). ** KEPT: 2669 (108,9,21,6) O(f(f(b,f(e,e)),f(b,b))). ** KEPT: 2670 (108,9,21,5) O(f(b,f(f(e,e),f(b,b)))). ** KEPT: 2671 (108,9,12,6) O(f(f(b,f(e,e)),b)). ** KEPT: 2672 (108,9,12,5) O(f(b,f(f(e,e),b))). ** KEPT: 2673 (108,9,7,6) O(f(f(b,f(e,e)),e)). ** KEPT: 2674 (108,9,7,5) O(f(b,f(f(e,e),e))). ** KEPT: 2675 (4,108) O(f(b,f(f(x,g(x)),e))). ** KEPT: 2676 (3,108) O(f(b,f(f(g(x),x),e))). ** KEPT: 2677 (4,108) O(f(b,f(e,f(x,g(x))))). ** KEPT: 2678 (3,108) O(f(b,f(e,f(g(x),x)))). 2677 back subsumes: 228 (36,9,23,5) O(f(b,f(e,f(b,g(b))))). 2678 back subsumes: 412 (40,9,23,5) O(f(b,f(e,f(g(b),b)))). new given clause: 111 (4,83) -EQUAL(f(x,g(x)),d). ** KEPT: 2679 (5,111,18) -EQUAL(f(x,f(y,f(g(x),g(y)))),d). new given clause: 112 (3,83) -EQUAL(f(g(x),x),d). ** KEPT: 2680 (5,112,18) -EQUAL(f(f(f(g(x),g(y)),x),y),d). new given clause: 128 (27,9,12,6) O(f(b,l(d,d))). ** KEPT: 2681 (128,9,303,150) -EQUAL(f(f(e,e),f(b,l(d,d))),f(a,c)). ** KEPT: 2682 (128,9,303,15) -EQUAL(f(f(e,e),f(b,l(d,d))),d). ** KEPT: 2683 (128,9,142,150) -EQUAL(f(g(l(d,d)),f(b,l(d,d))),f(a,c)). ** KEPT: 2684 (128,9,142,15) -EQUAL(f(g(l(d,d)),f(b,l(d,d))),d). ** KEPT: 2685 (128,9,128,150) -EQUAL(f(f(b,l(d,d)),f(b,l(d,d))),f(a,c)). ** KEPT: 2686 (128,9,128,15) -EQUAL(f(f(b,l(d,d)),f(b,l(d,d))),d). ** KEPT: 2687 (128,9,108,150) -EQUAL(f(f(b,f(e,e)),f(b,l(d,d))),f(a,c)). ** KEPT: 2688 (128,9,108,15) -EQUAL(f(f(b,f(e,e)),f(b,l(d,d))),d). ** KEPT: 2689 (128,9,107,150) -EQUAL(f(f(f(b,e),e),f(b,l(d,d))),f(a,c)). ** KEPT: 2690 (128,9,107,15) -EQUAL(f(f(f(b,e),e),f(b,l(d,d))),d). ** KEPT: 2691 (128,9,106,150) -EQUAL(f(f(f(b,e),b),f(b,l(d,d))),f(a,c)). ** KEPT: 2692 (128,9,106,15) -EQUAL(f(f(f(b,e),b),f(b,l(d,d))),d). ** KEPT: 2693 (128,9,80,150) -EQUAL(f(f(e,f(b,e)),f(b,l(d,d))),f(a,c)). ** KEPT: 2694 (128,9,80,15) -EQUAL(f(f(e,f(b,e)),f(b,l(d,d))),d). ** KEPT: 2695 (128,9,79,150) -EQUAL(f(f(f(e,b),e),f(b,l(d,d))),f(a,c)). ** KEPT: 2696 (128,9,79,15) -EQUAL(f(f(f(e,b),e),f(b,l(d,d))),d). ** KEPT: 2697 (128,9,78,150) -EQUAL(f(f(f(e,b),b),f(b,l(d,d))),f(a,c)). ** KEPT: 2698 (128,9,78,15) -EQUAL(f(f(f(e,b),b),f(b,l(d,d))),d). ** KEPT: 2699 (128,9,69,150) -EQUAL(f(f(e,f(e,b)),f(b,l(d,d))),f(a,c)). ** KEPT: 2700 (128,9,69,15) -EQUAL(f(f(e,f(e,b)),f(b,l(d,d))),d). ** KEPT: 2701 (128,9,68,150) -EQUAL(f(f(b,f(e,b)),f(b,l(d,d))),f(a,c)). ** KEPT: 2702 (128,9,68,15) -EQUAL(f(f(b,f(e,b)),f(b,l(d,d))),d). ** KEPT: 2703 (128,9,57,150) -EQUAL(f(f(b,f(b,e)),f(b,l(d,d))),f(a,c)). ** KEPT: 2704 (128,9,57,15) -EQUAL(f(f(b,f(b,e)),f(b,l(d,d))),d). ** KEPT: 2705 (128,9,56,150) -EQUAL(f(f(f(b,b),e),f(b,l(d,d))),f(a,c)). ** KEPT: 2706 (128,9,56,15) -EQUAL(f(f(f(b,b),e),f(b,l(d,d))),d). ** KEPT: 2707 (128,9,55,150) -EQUAL(f(f(f(b,b),b),f(b,l(d,d))),f(a,c)). ** KEPT: 2708 (128,9,55,15) -EQUAL(f(f(f(b,b),b),f(b,l(d,d))),d). ** KEPT: 2709 (128,9,49,150) -EQUAL(f(f(e,f(b,b)),f(b,l(d,d))),f(a,c)). ** KEPT: 2710 (128,9,49,15) -EQUAL(f(f(e,f(b,b)),f(b,l(d,d))),d). ** KEPT: 2711 (128,9,48,150) -EQUAL(f(f(b,f(b,b)),f(b,l(d,d))),f(a,c)). ** KEPT: 2712 (128,9,48,15) -EQUAL(f(f(b,f(b,b)),f(b,l(d,d))),d). ** KEPT: 2713 (128,9,41,150) -EQUAL(f(f(g(b),e),f(b,l(d,d))),f(a,c)). ** KEPT: 2714 (128,9,41,15) -EQUAL(f(f(g(b),e),f(b,l(d,d))),d). ** KEPT: 2715 (128,9,40,150) -EQUAL(f(f(g(b),b),f(b,l(d,d))),f(a,c)). ** KEPT: 2716 (128,9,40,15) -EQUAL(f(f(g(b),b),f(b,l(d,d))),d). ** KEPT: 2717 (128,9,37,150) -EQUAL(f(f(e,g(b)),f(b,l(d,d))),f(a,c)). ** KEPT: 2718 (128,9,37,15) -EQUAL(f(f(e,g(b)),f(b,l(d,d))),d). ** KEPT: 2719 (128,9,36,150) -EQUAL(f(f(b,g(b)),f(b,l(d,d))),f(a,c)). ** KEPT: 2720 (128,9,36,15) -EQUAL(f(f(b,g(b)),f(b,l(d,d))),d). ** KEPT: 2721 (128,9,35,150) -EQUAL(f(f(g(b),g(b)),f(b,l(d,d))),f(a,c)). ** KEPT: 2722 (128,9,35,15) -EQUAL(f(f(g(b),g(b)),f(b,l(d,d))),d). ** KEPT: 2723 (128,9,27,150) -EQUAL(f(l(d,d),f(b,l(d,d))),f(a,c)). ** KEPT: 2724 (128,9,27,15) -EQUAL(f(l(d,d),f(b,l(d,d))),d). ** KEPT: 2725 (128,9,24,150,20) -EQUAL(l(d,d),f(a,c)). ** KEPT: 2726 (128,9,24,15,20) -EQUAL(l(d,d),d). ** KEPT: 2727 (128,9,23,150) -EQUAL(f(f(b,e),f(b,l(d,d))),f(a,c)). ** KEPT: 2728 (128,9,23,15) -EQUAL(f(f(b,e),f(b,l(d,d))),d). ** KEPT: 2729 (128,9,22,150) -EQUAL(f(f(e,b),f(b,l(d,d))),f(a,c)). ** KEPT: 2730 (128,9,22,15) -EQUAL(f(f(e,b),f(b,l(d,d))),d). ** KEPT: 2731 (128,9,21,150) -EQUAL(f(f(b,b),f(b,l(d,d))),f(a,c)). ** KEPT: 2732 (128,9,21,15) -EQUAL(f(f(b,b),f(b,l(d,d))),d). ** KEPT: 2733 (128,9,12,150) -EQUAL(f(b,f(b,l(d,d))),f(a,c)). ** KEPT: 2734 (128,9,12,15) -EQUAL(f(b,f(b,l(d,d))),d). ** KEPT: 2735 (128,9,7,150) -EQUAL(f(e,f(b,l(d,d))),f(a,c)). ** KEPT: 2736 (128,9,7,15) -EQUAL(f(e,f(b,l(d,d))),d). ** KEPT: 2737 (128,9,303,6) O(f(f(e,e),f(b,l(d,d)))). ** KEPT: 2738 (128,9,303,5) O(f(e,f(e,f(b,l(d,d))))). ** KEPT: 2739 (128,9,142,6) O(f(g(l(d,d)),f(b,l(d,d)))). ** KEPT: 2740 (128,9,128,6) O(f(f(b,l(d,d)),f(b,l(d,d)))). ** KEPT: 2741 (128,9,128,5) O(f(b,f(l(d,d),f(b,l(d,d))))). ** KEPT: 2742 (128,9,108,6) O(f(f(b,f(e,e)),f(b,l(d,d)))). ** KEPT: 2743 (128,9,108,5) O(f(b,f(f(e,e),f(b,l(d,d))))). ** KEPT: 2744 (128,9,107,6) O(f(f(f(b,e),e),f(b,l(d,d)))). ** KEPT: 2745 (128,9,107,5) O(f(f(b,e),f(e,f(b,l(d,d))))). ** KEPT: 2746 (128,9,106,6) O(f(f(f(b,e),b),f(b,l(d,d)))). ** KEPT: 2747 (128,9,106,5) O(f(f(b,e),f(b,f(b,l(d,d))))). ** KEPT: 2748 (128,9,80,6) O(f(f(e,f(b,e)),f(b,l(d,d)))). ** KEPT: 2749 (128,9,80,5) O(f(e,f(f(b,e),f(b,l(d,d))))). ** KEPT: 2750 (128,9,79,6) O(f(f(f(e,b),e),f(b,l(d,d)))). ** KEPT: 2751 (128,9,79,5) O(f(f(e,b),f(e,f(b,l(d,d))))). ** KEPT: 2752 (128,9,78,6) O(f(f(f(e,b),b),f(b,l(d,d)))). ** KEPT: 2753 (128,9,78,5) O(f(f(e,b),f(b,f(b,l(d,d))))). ** KEPT: 2754 (128,9,69,6) O(f(f(e,f(e,b)),f(b,l(d,d)))). ** KEPT: 2755 (128,9,69,5) O(f(e,f(f(e,b),f(b,l(d,d))))). ** KEPT: 2756 (128,9,68,6) O(f(f(b,f(e,b)),f(b,l(d,d)))). ** KEPT: 2757 (128,9,68,5) O(f(b,f(f(e,b),f(b,l(d,d))))). ** KEPT: 2758 (128,9,57,6) O(f(f(b,f(b,e)),f(b,l(d,d)))). ** KEPT: 2759 (128,9,57,5) O(f(b,f(f(b,e),f(b,l(d,d))))). ** KEPT: 2760 (128,9,56,6) O(f(f(f(b,b),e),f(b,l(d,d)))). ** KEPT: 2761 (128,9,56,5) O(f(f(b,b),f(e,f(b,l(d,d))))). ** KEPT: 2762 (128,9,55,6) O(f(f(f(b,b),b),f(b,l(d,d)))). ** KEPT: 2763 (128,9,55,5) O(f(f(b,b),f(b,f(b,l(d,d))))). ** KEPT: 2764 (128,9,49,6) O(f(f(e,f(b,b)),f(b,l(d,d)))). ** KEPT: 2765 (128,9,49,5) O(f(e,f(f(b,b),f(b,l(d,d))))). ** KEPT: 2766 (128,9,48,6) O(f(f(b,f(b,b)),f(b,l(d,d)))). ** KEPT: 2767 (128,9,48,5) O(f(b,f(f(b,b),f(b,l(d,d))))). ** KEPT: 2768 (128,9,41,6) O(f(f(g(b),e),f(b,l(d,d)))). ** KEPT: 2769 (128,9,41,5) O(f(g(b),f(e,f(b,l(d,d))))). ** KEPT: 2770 (128,9,40,6) O(f(f(g(b),b),f(b,l(d,d)))). ** KEPT: 2771 (128,9,37,6) O(f(f(e,g(b)),f(b,l(d,d)))). ** KEPT: 2772 (128,9,36,6) O(f(f(b,g(b)),f(b,l(d,d)))). ** KEPT: 2773 (128,9,35,6) O(f(f(g(b),g(b)),f(b,l(d,d)))). ** KEPT: 2774 (128,9,27,6) O(f(l(d,d),f(b,l(d,d)))). ** KEPT: 2775 (128,9,23,5) O(f(b,f(e,f(b,l(d,d))))). ** KEPT: 2776 (128,9,22,5) O(f(e,f(b,f(b,l(d,d))))). ** KEPT: 2777 (128,9,21,5) O(f(b,f(b,f(b,l(d,d))))). ** KEPT: 2778 (128,9,303,150) -EQUAL(f(f(b,l(d,d)),f(e,e)),f(a,c)). ** KEPT: 2779 (128,9,303,15) -EQUAL(f(f(b,l(d,d)),f(e,e)),d). ** KEPT: 2780 (128,9,142,150) -EQUAL(f(f(b,l(d,d)),g(l(d,d))),f(a,c)). ** KEPT: 2781 (128,9,142,15) -EQUAL(f(f(b,l(d,d)),g(l(d,d))),d). ** KEPT: 2782 (128,9,108,150) -EQUAL(f(f(b,l(d,d)),f(b,f(e,e))),f(a,c)). ** KEPT: 2783 (128,9,108,15) -EQUAL(f(f(b,l(d,d)),f(b,f(e,e))),d). ** KEPT: 2784 (128,9,107,150) -EQUAL(f(f(b,l(d,d)),f(f(b,e),e)),f(a,c)). ** KEPT: 2785 (128,9,107,15) -EQUAL(f(f(b,l(d,d)),f(f(b,e),e)),d). ** KEPT: 2786 (128,9,106,150) -EQUAL(f(f(b,l(d,d)),f(f(b,e),b)),f(a,c)). ** KEPT: 2787 (128,9,106,15) -EQUAL(f(f(b,l(d,d)),f(f(b,e),b)),d). ** KEPT: 2788 (128,9,80,150) -EQUAL(f(f(b,l(d,d)),f(e,f(b,e))),f(a,c)). ** KEPT: 2789 (128,9,80,15) -EQUAL(f(f(b,l(d,d)),f(e,f(b,e))),d). ** KEPT: 2790 (128,9,79,150) -EQUAL(f(f(b,l(d,d)),f(f(e,b),e)),f(a,c)). ** KEPT: 2791 (128,9,79,15) -EQUAL(f(f(b,l(d,d)),f(f(e,b),e)),d). ** KEPT: 2792 (128,9,78,150) -EQUAL(f(f(b,l(d,d)),f(f(e,b),b)),f(a,c)). ** KEPT: 2793 (128,9,78,15) -EQUAL(f(f(b,l(d,d)),f(f(e,b),b)),d). ** KEPT: 2794 (128,9,69,150) -EQUAL(f(f(b,l(d,d)),f(e,f(e,b))),f(a,c)). ** KEPT: 2795 (128,9,69,15) -EQUAL(f(f(b,l(d,d)),f(e,f(e,b))),d). ** KEPT: 2796 (128,9,68,150) -EQUAL(f(f(b,l(d,d)),f(b,f(e,b))),f(a,c)). ** KEPT: 2797 (128,9,68,15) -EQUAL(f(f(b,l(d,d)),f(b,f(e,b))),d). ** KEPT: 2798 (128,9,57,150) -EQUAL(f(f(b,l(d,d)),f(b,f(b,e))),f(a,c)). ** KEPT: 2799 (128,9,57,15) -EQUAL(f(f(b,l(d,d)),f(b,f(b,e))),d). ** KEPT: 2800 (128,9,56,150) -EQUAL(f(f(b,l(d,d)),f(f(b,b),e)),f(a,c)). ** KEPT: 2801 (128,9,56,15) -EQUAL(f(f(b,l(d,d)),f(f(b,b),e)),d). ** KEPT: 2802 (128,9,55,150) -EQUAL(f(f(b,l(d,d)),f(f(b,b),b)),f(a,c)). ** KEPT: 2803 (128,9,55,15) -EQUAL(f(f(b,l(d,d)),f(f(b,b),b)),d). ** KEPT: 2804 (128,9,49,150) -EQUAL(f(f(b,l(d,d)),f(e,f(b,b))),f(a,c)). ** KEPT: 2805 (128,9,49,15) -EQUAL(f(f(b,l(d,d)),f(e,f(b,b))),d). ** KEPT: 2806 (128,9,48,150) -EQUAL(f(f(b,l(d,d)),f(b,f(b,b))),f(a,c)). ** KEPT: 2807 (128,9,48,15) -EQUAL(f(f(b,l(d,d)),f(b,f(b,b))),d). ** KEPT: 2808 (128,9,41,150) -EQUAL(f(f(b,l(d,d)),f(g(b),e)),f(a,c)). ** KEPT: 2809 (128,9,41,15) -EQUAL(f(f(b,l(d,d)),f(g(b),e)),d). ** KEPT: 2810 (128,9,40,150) -EQUAL(f(f(b,l(d,d)),f(g(b),b)),f(a,c)). ** KEPT: 2811 (128,9,40,15) -EQUAL(f(f(b,l(d,d)),f(g(b),b)),d). ** KEPT: 2812 (128,9,37,150) -EQUAL(f(f(b,l(d,d)),f(e,g(b))),f(a,c)). ** KEPT: 2813 (128,9,37,15) -EQUAL(f(f(b,l(d,d)),f(e,g(b))),d). ** KEPT: 2814 (128,9,36,150) -EQUAL(f(f(b,l(d,d)),f(b,g(b))),f(a,c)). ** KEPT: 2815 (128,9,36,15) -EQUAL(f(f(b,l(d,d)),f(b,g(b))),d). ** KEPT: 2816 (128,9,35,150) -EQUAL(f(f(b,l(d,d)),f(g(b),g(b))),f(a,c)). ** KEPT: 2817 (128,9,35,15) -EQUAL(f(f(b,l(d,d)),f(g(b),g(b))),d). ** KEPT: 2818 (128,9,27,150) -EQUAL(f(f(b,l(d,d)),l(d,d)),f(a,c)). ** KEPT: 2819 (128,9,27,15) -EQUAL(f(f(b,l(d,d)),l(d,d)),d). ** KEPT: 2820 (128,9,24,150) -EQUAL(f(f(b,l(d,d)),g(b)),f(a,c)). ** KEPT: 2821 (128,9,24,15) -EQUAL(f(f(b,l(d,d)),g(b)),d). ** KEPT: 2822 (128,9,23,150) -EQUAL(f(f(b,l(d,d)),f(b,e)),f(a,c)). ** KEPT: 2823 (128,9,23,15) -EQUAL(f(f(b,l(d,d)),f(b,e)),d). ** KEPT: 2824 (128,9,22,150) -EQUAL(f(f(b,l(d,d)),f(e,b)),f(a,c)). ** KEPT: 2825 (128,9,22,15) -EQUAL(f(f(b,l(d,d)),f(e,b)),d). ** KEPT: 2826 (128,9,21,150) -EQUAL(f(f(b,l(d,d)),f(b,b)),f(a,c)). ** KEPT: 2827 (128,9,21,15) -EQUAL(f(f(b,l(d,d)),f(b,b)),d). ** KEPT: 2828 (128,9,12,150) -EQUAL(f(f(b,l(d,d)),b),f(a,c)). ** KEPT: 2829 (128,9,12,15) -EQUAL(f(f(b,l(d,d)),b),d). ** KEPT: 2830 (128,9,7,150) -EQUAL(f(f(b,l(d,d)),e),f(a,c)). ** KEPT: 2831 (128,9,7,15) -EQUAL(f(f(b,l(d,d)),e),d). ** KEPT: 2832 (128,9,303,6) O(f(f(b,l(d,d)),f(e,e))). ** KEPT: 2833 (128,9,303,5) O(f(b,f(l(d,d),f(e,e)))). ** KEPT: 2834 (128,9,142,6) O(f(f(b,l(d,d)),g(l(d,d)))). ** KEPT: 2835 (128,9,108,6) O(f(f(b,l(d,d)),f(b,f(e,e)))). ** KEPT: 2836 (128,9,108,5) O(f(b,f(l(d,d),f(b,f(e,e))))). ** KEPT: 2837 (128,9,107,6) O(f(f(b,l(d,d)),f(f(b,e),e))). ** KEPT: 2838 (128,9,107,5) O(f(b,f(l(d,d),f(f(b,e),e)))). ** KEPT: 2839 (128,9,106,6) O(f(f(b,l(d,d)),f(f(b,e),b))). ** KEPT: 2840 (128,9,106,5) O(f(b,f(l(d,d),f(f(b,e),b)))). ** KEPT: 2841 (128,9,80,6) O(f(f(b,l(d,d)),f(e,f(b,e)))). ** KEPT: 2842 (128,9,80,5) O(f(b,f(l(d,d),f(e,f(b,e))))). ** KEPT: 2843 (128,9,79,6) O(f(f(b,l(d,d)),f(f(e,b),e))). ** KEPT: 2844 (128,9,79,5) O(f(b,f(l(d,d),f(f(e,b),e)))). ** KEPT: 2845 (128,9,78,6) O(f(f(b,l(d,d)),f(f(e,b),b))). ** KEPT: 2846 (128,9,78,5) O(f(b,f(l(d,d),f(f(e,b),b)))). ** KEPT: 2847 (128,9,69,6) O(f(f(b,l(d,d)),f(e,f(e,b)))). ** KEPT: 2848 (128,9,69,5) O(f(b,f(l(d,d),f(e,f(e,b))))). ** KEPT: 2849 (128,9,68,6) O(f(f(b,l(d,d)),f(b,f(e,b)))). ** KEPT: 2850 (128,9,68,5) O(f(b,f(l(d,d),f(b,f(e,b))))). ** KEPT: 2851 (128,9,57,6) O(f(f(b,l(d,d)),f(b,f(b,e)))). ** KEPT: 2852 (128,9,57,5) O(f(b,f(l(d,d),f(b,f(b,e))))). ** KEPT: 2853 (128,9,56,6) O(f(f(b,l(d,d)),f(f(b,b),e))). ** KEPT: 2854 (128,9,56,5) O(f(b,f(l(d,d),f(f(b,b),e)))). ** KEPT: 2855 (128,9,55,6) O(f(f(b,l(d,d)),f(f(b,b),b))). ** KEPT: 2856 (128,9,55,5) O(f(b,f(l(d,d),f(f(b,b),b)))). ** KEPT: 2857 (128,9,49,6) O(f(f(b,l(d,d)),f(e,f(b,b)))). ** KEPT: 2858 (128,9,49,5) O(f(b,f(l(d,d),f(e,f(b,b))))). ** KEPT: 2859 (128,9,48,6) O(f(f(b,l(d,d)),f(b,f(b,b)))). ** KEPT: 2860 (128,9,48,5) O(f(b,f(l(d,d),f(b,f(b,b))))). ** KEPT: 2861 (128,9,41,6) O(f(f(b,l(d,d)),f(g(b),e))). ** KEPT: 2862 (128,9,41,5) O(f(b,f(l(d,d),f(g(b),e)))). ** KEPT: 2863 (128,9,40,6) O(f(f(b,l(d,d)),f(g(b),b))). ** KEPT: 2864 (128,9,40,5) O(f(b,f(l(d,d),f(g(b),b)))). ** KEPT: 2865 (128,9,37,6) O(f(f(b,l(d,d)),f(e,g(b)))). ** KEPT: 2866 (128,9,37,5) O(f(b,f(l(d,d),f(e,g(b))))). ** KEPT: 2867 (128,9,36,6) O(f(f(b,l(d,d)),f(b,g(b)))). ** KEPT: 2868 (128,9,36,5) O(f(b,f(l(d,d),f(b,g(b))))). ** KEPT: 2869 (128,9,35,6) O(f(f(b,l(d,d)),f(g(b),g(b)))). ** KEPT: 2870 (128,9,35,5) O(f(b,f(l(d,d),f(g(b),g(b))))). ** KEPT: 2871 (128,9,27,6) O(f(f(b,l(d,d)),l(d,d))). ** KEPT: 2872 (128,9,27,5) O(f(b,f(l(d,d),l(d,d)))). ** KEPT: 2873 (128,9,24,6) O(f(f(b,l(d,d)),g(b))). ** KEPT: 2874 (128,9,24,5) O(f(b,f(l(d,d),g(b)))). ** KEPT: 2875 (128,9,23,6) O(f(f(b,l(d,d)),f(b,e))). ** KEPT: 2876 (128,9,23,5) O(f(b,f(l(d,d),f(b,e)))). ** KEPT: 2877 (128,9,22,6) O(f(f(b,l(d,d)),f(e,b))). ** KEPT: 2878 (128,9,22,5) O(f(b,f(l(d,d),f(e,b)))). ** KEPT: 2879 (128,9,21,6) O(f(f(b,l(d,d)),f(b,b))). ** KEPT: 2880 (128,9,21,5) O(f(b,f(l(d,d),f(b,b)))). ** KEPT: 2881 (128,9,12,6) O(f(f(b,l(d,d)),b)). ** KEPT: 2882 (128,9,12,5) O(f(b,f(l(d,d),b))). ** KEPT: 2883 (128,9,7,6) O(f(f(b,l(d,d)),e)). ** KEPT: 2884 (128,9,7,5) O(f(b,f(l(d,d),e))). ** KEPT: 2885 (14,128) O(f(b,l(f(a,c),d))). ** KEPT: 2886 (14,128) O(f(b,l(d,f(a,c)))). new given clause: 2726 (128,9,24,15,20) -EQUAL(l(d,d),d). ** KEPT: 2887 (14,2726) -EQUAL(l(f(a,c),d),d). ** KEPT: 2888 (14,2726) -EQUAL(l(d,f(a,c)),d). new given clause: 129 (27,9,7,6) O(f(e,l(d,d))). ** KEPT: 2889 (129,9,303,150) -EQUAL(f(f(e,e),f(e,l(d,d))),f(a,c)). ** KEPT: 2890 (129,9,303,15) -EQUAL(f(f(e,e),f(e,l(d,d))),d). ** KEPT: 2891 (129,9,142,150) -EQUAL(f(g(l(d,d)),f(e,l(d,d))),f(a,c)). ** KEPT: 2892 (129,9,142,15) -EQUAL(f(g(l(d,d)),f(e,l(d,d))),d). ** KEPT: 2893 (129,9,129,150) -EQUAL(f(f(e,l(d,d)),f(e,l(d,d))),f(a,c)). ** KEPT: 2894 (129,9,129,15) -EQUAL(f(f(e,l(d,d)),f(e,l(d,d))),d). ** KEPT: 2895 (129,9,128,150) -EQUAL(f(f(b,l(d,d)),f(e,l(d,d))),f(a,c)). ** KEPT: 2896 (129,9,128,15) -EQUAL(f(f(b,l(d,d)),f(e,l(d,d))),d). ** KEPT: 2897 (129,9,108,150) -EQUAL(f(f(b,f(e,e)),f(e,l(d,d))),f(a,c)). ** KEPT: 2898 (129,9,108,15) -EQUAL(f(f(b,f(e,e)),f(e,l(d,d))),d). ** KEPT: 2899 (129,9,107,150) -EQUAL(f(f(f(b,e),e),f(e,l(d,d))),f(a,c)). ** KEPT: 2900 (129,9,107,15) -EQUAL(f(f(f(b,e),e),f(e,l(d,d))),d). ** KEPT: 2901 (129,9,106,150) -EQUAL(f(f(f(b,e),b),f(e,l(d,d))),f(a,c)). ** KEPT: 2902 (129,9,106,15) -EQUAL(f(f(f(b,e),b),f(e,l(d,d))),d). ** KEPT: 2903 (129,9,80,150) -EQUAL(f(f(e,f(b,e)),f(e,l(d,d))),f(a,c)). ** KEPT: 2904 (129,9,80,15) -EQUAL(f(f(e,f(b,e)),f(e,l(d,d))),d). ** KEPT: 2905 (129,9,79,150) -EQUAL(f(f(f(e,b),e),f(e,l(d,d))),f(a,c)). ** KEPT: 2906 (129,9,79,15) -EQUAL(f(f(f(e,b),e),f(e,l(d,d))),d). ** KEPT: 2907 (129,9,78,150) -EQUAL(f(f(f(e,b),b),f(e,l(d,d))),f(a,c)). ** KEPT: 2908 (129,9,78,15) -EQUAL(f(f(f(e,b),b),f(e,l(d,d))),d). ** KEPT: 2909 (129,9,69,150) -EQUAL(f(f(e,f(e,b)),f(e,l(d,d))),f(a,c)). ** KEPT: 2910 (129,9,69,15) -EQUAL(f(f(e,f(e,b)),f(e,l(d,d))),d). ** KEPT: 2911 (129,9,68,150) -EQUAL(f(f(b,f(e,b)),f(e,l(d,d))),f(a,c)). ** KEPT: 2912 (129,9,68,15) -EQUAL(f(f(b,f(e,b)),f(e,l(d,d))),d). ** KEPT: 2913 (129,9,57,150) -EQUAL(f(f(b,f(b,e)),f(e,l(d,d))),f(a,c)). ** KEPT: 2914 (129,9,57,15) -EQUAL(f(f(b,f(b,e)),f(e,l(d,d))),d). ** KEPT: 2915 (129,9,56,150) -EQUAL(f(f(f(b,b),e),f(e,l(d,d))),f(a,c)). ** KEPT: 2916 (129,9,56,15) -EQUAL(f(f(f(b,b),e),f(e,l(d,d))),d). ** KEPT: 2917 (129,9,55,150) -EQUAL(f(f(f(b,b),b),f(e,l(d,d))),f(a,c)). ** KEPT: 2918 (129,9,55,15) -EQUAL(f(f(f(b,b),b),f(e,l(d,d))),d). ** KEPT: 2919 (129,9,49,150) -EQUAL(f(f(e,f(b,b)),f(e,l(d,d))),f(a,c)). ** KEPT: 2920 (129,9,49,15) -EQUAL(f(f(e,f(b,b)),f(e,l(d,d))),d). ** KEPT: 2921 (129,9,48,150) -EQUAL(f(f(b,f(b,b)),f(e,l(d,d))),f(a,c)). ** KEPT: 2922 (129,9,48,15) -EQUAL(f(f(b,f(b,b)),f(e,l(d,d))),d). ** KEPT: 2923 (129,9,41,150) -EQUAL(f(f(g(b),e),f(e,l(d,d))),f(a,c)). ** KEPT: 2924 (129,9,41,15) -EQUAL(f(f(g(b),e),f(e,l(d,d))),d). ** KEPT: 2925 (129,9,40,150) -EQUAL(f(f(g(b),b),f(e,l(d,d))),f(a,c)). ** KEPT: 2926 (129,9,40,15) -EQUAL(f(f(g(b),b),f(e,l(d,d))),d). ** KEPT: 2927 (129,9,37,150) -EQUAL(f(f(e,g(b)),f(e,l(d,d))),f(a,c)). ** KEPT: 2928 (129,9,37,15) -EQUAL(f(f(e,g(b)),f(e,l(d,d))),d). ** KEPT: 2929 (129,9,36,150) -EQUAL(f(f(b,g(b)),f(e,l(d,d))),f(a,c)). ** KEPT: 2930 (129,9,36,15) -EQUAL(f(f(b,g(b)),f(e,l(d,d))),d). ** KEPT: 2931 (129,9,35,150) -EQUAL(f(f(g(b),g(b)),f(e,l(d,d))),f(a,c)). ** KEPT: 2932 (129,9,35,15) -EQUAL(f(f(g(b),g(b)),f(e,l(d,d))),d). ** KEPT: 2933 (129,9,27,150) -EQUAL(f(l(d,d),f(e,l(d,d))),f(a,c)). ** KEPT: 2934 (129,9,27,15) -EQUAL(f(l(d,d),f(e,l(d,d))),d). ** KEPT: 2935 (129,9,24,150) -EQUAL(f(g(b),f(e,l(d,d))),f(a,c)). ** KEPT: 2936 (129,9,24,15) -EQUAL(f(g(b),f(e,l(d,d))),d). ** KEPT: 2937 (129,9,23,150) -EQUAL(f(f(b,e),f(e,l(d,d))),f(a,c)). ** KEPT: 2938 (129,9,23,15) -EQUAL(f(f(b,e),f(e,l(d,d))),d). ** KEPT: 2939 (129,9,22,150) -EQUAL(f(f(e,b),f(e,l(d,d))),f(a,c)). ** KEPT: 2940 (129,9,22,15) -EQUAL(f(f(e,b),f(e,l(d,d))),d). ** KEPT: 2941 (129,9,21,150) -EQUAL(f(f(b,b),f(e,l(d,d))),f(a,c)). ** KEPT: 2942 (129,9,21,15) -EQUAL(f(f(b,b),f(e,l(d,d))),d). ** KEPT: 2943 (129,9,12,150) -EQUAL(f(b,f(e,l(d,d))),f(a,c)). ** KEPT: 2944 (129,9,12,15) -EQUAL(f(b,f(e,l(d,d))),d). ** KEPT: 2945 (129,9,7,150) -EQUAL(f(e,f(e,l(d,d))),f(a,c)). ** KEPT: 2946 (129,9,7,15) -EQUAL(f(e,f(e,l(d,d))),d). ** KEPT: 2947 (129,9,303,6) O(f(f(e,e),f(e,l(d,d)))). ** KEPT: 2948 (129,9,303,5) O(f(e,f(e,f(e,l(d,d))))). ** KEPT: 2949 (129,9,142,6) O(f(g(l(d,d)),f(e,l(d,d)))). ** KEPT: 2950 (129,9,129,6) O(f(f(e,l(d,d)),f(e,l(d,d)))). ** KEPT: 2951 (129,9,129,5) O(f(e,f(l(d,d),f(e,l(d,d))))). ** KEPT: 2952 (129,9,128,6) O(f(f(b,l(d,d)),f(e,l(d,d)))). ** KEPT: 2953 (129,9,128,5) O(f(b,f(l(d,d),f(e,l(d,d))))). ** KEPT: 2954 (129,9,108,6) O(f(f(b,f(e,e)),f(e,l(d,d)))). ** KEPT: 2955 (129,9,108,5) O(f(b,f(f(e,e),f(e,l(d,d))))). ** KEPT: 2956 (129,9,107,6) O(f(f(f(b,e),e),f(e,l(d,d)))). ** KEPT: 2957 (129,9,107,5) O(f(f(b,e),f(e,f(e,l(d,d))))). ** KEPT: 2958 (129,9,106,6) O(f(f(f(b,e),b),f(e,l(d,d)))). ** KEPT: 2959 (129,9,106,5) O(f(f(b,e),f(b,f(e,l(d,d))))). ** KEPT: 2960 (129,9,80,6) O(f(f(e,f(b,e)),f(e,l(d,d)))). ** KEPT: 2961 (129,9,80,5) O(f(e,f(f(b,e),f(e,l(d,d))))). ** KEPT: 2962 (129,9,79,6) O(f(f(f(e,b),e),f(e,l(d,d)))). ** KEPT: 2963 (129,9,79,5) O(f(f(e,b),f(e,f(e,l(d,d))))). ** KEPT: 2964 (129,9,78,6) O(f(f(f(e,b),b),f(e,l(d,d)))). ** KEPT: 2965 (129,9,78,5) O(f(f(e,b),f(b,f(e,l(d,d))))). ** KEPT: 2966 (129,9,69,6) O(f(f(e,f(e,b)),f(e,l(d,d)))). ** KEPT: 2967 (129,9,69,5) O(f(e,f(f(e,b),f(e,l(d,d))))). ** KEPT: 2968 (129,9,68,6) O(f(f(b,f(e,b)),f(e,l(d,d)))). ** KEPT: 2969 (129,9,68,5) O(f(b,f(f(e,b),f(e,l(d,d))))). ** KEPT: 2970 (129,9,57,6) O(f(f(b,f(b,e)),f(e,l(d,d)))). ** KEPT: 2971 (129,9,57,5) O(f(b,f(f(b,e),f(e,l(d,d))))). ** KEPT: 2972 (129,9,56,6) O(f(f(f(b,b),e),f(e,l(d,d)))). ** KEPT: 2973 (129,9,56,5) O(f(f(b,b),f(e,f(e,l(d,d))))). ** KEPT: 2974 (129,9,55,6) O(f(f(f(b,b),b),f(e,l(d,d)))). ** KEPT: 2975 (129,9,55,5) O(f(f(b,b),f(b,f(e,l(d,d))))). ** KEPT: 2976 (129,9,49,6) O(f(f(e,f(b,b)),f(e,l(d,d)))). ** KEPT: 2977 (129,9,49,5) O(f(e,f(f(b,b),f(e,l(d,d))))). ** KEPT: 2978 (129,9,48,6) O(f(f(b,f(b,b)),f(e,l(d,d)))). ** KEPT: 2979 (129,9,48,5) O(f(b,f(f(b,b),f(e,l(d,d))))). ** KEPT: 2980 (129,9,41,6) O(f(f(g(b),e),f(e,l(d,d)))). ** KEPT: 2981 (129,9,41,5) O(f(g(b),f(e,f(e,l(d,d))))). ** KEPT: 2982 (129,9,40,6) O(f(f(g(b),b),f(e,l(d,d)))). ** KEPT: 2983 (129,9,37,6) O(f(f(e,g(b)),f(e,l(d,d)))). ** KEPT: 2984 (129,9,37,5) O(f(e,f(g(b),f(e,l(d,d))))). ** KEPT: 2985 (129,9,36,6) O(f(f(b,g(b)),f(e,l(d,d)))). ** KEPT: 2986 (129,9,35,6) O(f(f(g(b),g(b)),f(e,l(d,d)))). ** KEPT: 2987 (129,9,35,5) O(f(g(b),f(g(b),f(e,l(d,d))))). ** KEPT: 2988 (129,9,27,6) O(f(l(d,d),f(e,l(d,d)))). ** KEPT: 2989 (129,9,23,5) O(f(b,f(e,f(e,l(d,d))))). ** KEPT: 2990 (129,9,22,5) O(f(e,f(b,f(e,l(d,d))))). ** KEPT: 2991 (129,9,21,5) O(f(b,f(b,f(e,l(d,d))))). ** KEPT: 2992 (129,9,303,150) -EQUAL(f(f(e,l(d,d)),f(e,e)),f(a,c)). ** KEPT: 2993 (129,9,303,15) -EQUAL(f(f(e,l(d,d)),f(e,e)),d). ** KEPT: 2994 (129,9,142,150) -EQUAL(f(f(e,l(d,d)),g(l(d,d))),f(a,c)). ** KEPT: 2995 (129,9,142,15) -EQUAL(f(f(e,l(d,d)),g(l(d,d))),d). ** KEPT: 2996 (129,9,128,150) -EQUAL(f(f(e,l(d,d)),f(b,l(d,d))),f(a,c)). ** KEPT: 2997 (129,9,128,15) -EQUAL(f(f(e,l(d,d)),f(b,l(d,d))),d). ** KEPT: 2998 (129,9,108,150) -EQUAL(f(f(e,l(d,d)),f(b,f(e,e))),f(a,c)). ** KEPT: 2999 (129,9,108,15) -EQUAL(f(f(e,l(d,d)),f(b,f(e,e))),d). ** KEPT: 3000 (129,9,107,150) -EQUAL(f(f(e,l(d,d)),f(f(b,e),e)),f(a,c)). ** KEPT: 3001 (129,9,107,15) -EQUAL(f(f(e,l(d,d)),f(f(b,e),e)),d). ** KEPT: 3002 (129,9,106,150) -EQUAL(f(f(e,l(d,d)),f(f(b,e),b)),f(a,c)). ** KEPT: 3003 (129,9,106,15) -EQUAL(f(f(e,l(d,d)),f(f(b,e),b)),d). ** KEPT: 3004 (129,9,80,150) -EQUAL(f(f(e,l(d,d)),f(e,f(b,e))),f(a,c)). ** KEPT: 3005 (129,9,80,15) -EQUAL(f(f(e,l(d,d)),f(e,f(b,e))),d). ** KEPT: 3006 (129,9,79,150) -EQUAL(f(f(e,l(d,d)),f(f(e,b),e)),f(a,c)). ** KEPT: 3007 (129,9,79,15) -EQUAL(f(f(e,l(d,d)),f(f(e,b),e)),d). ** KEPT: 3008 (129,9,78,150) -EQUAL(f(f(e,l(d,d)),f(f(e,b),b)),f(a,c)). ** KEPT: 3009 (129,9,78,15) -EQUAL(f(f(e,l(d,d)),f(f(e,b),b)),d). ** KEPT: 3010 (129,9,69,150) -EQUAL(f(f(e,l(d,d)),f(e,f(e,b))),f(a,c)). ** KEPT: 3011 (129,9,69,15) -EQUAL(f(f(e,l(d,d)),f(e,f(e,b))),d). ** KEPT: 3012 (129,9,68,150) -EQUAL(f(f(e,l(d,d)),f(b,f(e,b))),f(a,c)). ** KEPT: 3013 (129,9,68,15) -EQUAL(f(f(e,l(d,d)),f(b,f(e,b))),d). ** KEPT: 3014 (129,9,57,150) -EQUAL(f(f(e,l(d,d)),f(b,f(b,e))),f(a,c)). ** KEPT: 3015 (129,9,57,15) -EQUAL(f(f(e,l(d,d)),f(b,f(b,e))),d). ** KEPT: 3016 (129,9,56,150) -EQUAL(f(f(e,l(d,d)),f(f(b,b),e)),f(a,c)). ** KEPT: 3017 (129,9,56,15) -EQUAL(f(f(e,l(d,d)),f(f(b,b),e)),d). ** KEPT: 3018 (129,9,55,150) -EQUAL(f(f(e,l(d,d)),f(f(b,b),b)),f(a,c)). ** KEPT: 3019 (129,9,55,15) -EQUAL(f(f(e,l(d,d)),f(f(b,b),b)),d). ** KEPT: 3020 (129,9,49,150) -EQUAL(f(f(e,l(d,d)),f(e,f(b,b))),f(a,c)). ** KEPT: 3021 (129,9,49,15) -EQUAL(f(f(e,l(d,d)),f(e,f(b,b))),d). ** KEPT: 3022 (129,9,48,150) -EQUAL(f(f(e,l(d,d)),f(b,f(b,b))),f(a,c)). ** KEPT: 3023 (129,9,48,15) -EQUAL(f(f(e,l(d,d)),f(b,f(b,b))),d). ** KEPT: 3024 (129,9,41,150) -EQUAL(f(f(e,l(d,d)),f(g(b),e)),f(a,c)). ** KEPT: 3025 (129,9,41,15) -EQUAL(f(f(e,l(d,d)),f(g(b),e)),d). ** KEPT: 3026 (129,9,40,150) -EQUAL(f(f(e,l(d,d)),f(g(b),b)),f(a,c)). ** KEPT: 3027 (129,9,40,15) -EQUAL(f(f(e,l(d,d)),f(g(b),b)),d). ** KEPT: 3028 (129,9,37,150) -EQUAL(f(f(e,l(d,d)),f(e,g(b))),f(a,c)). ** KEPT: 3029 (129,9,37,15) -EQUAL(f(f(e,l(d,d)),f(e,g(b))),d). ** KEPT: 3030 (129,9,36,150) -EQUAL(f(f(e,l(d,d)),f(b,g(b))),f(a,c)). ** KEPT: 3031 (129,9,36,15) -EQUAL(f(f(e,l(d,d)),f(b,g(b))),d). ** KEPT: 3032 (129,9,35,150) -EQUAL(f(f(e,l(d,d)),f(g(b),g(b))),f(a,c)). ** KEPT: 3033 (129,9,35,15) -EQUAL(f(f(e,l(d,d)),f(g(b),g(b))),d). ** KEPT: 3034 (129,9,27,150) -EQUAL(f(f(e,l(d,d)),l(d,d)),f(a,c)). ** KEPT: 3035 (129,9,27,15) -EQUAL(f(f(e,l(d,d)),l(d,d)),d). ** KEPT: 3036 (129,9,24,150) -EQUAL(f(f(e,l(d,d)),g(b)),f(a,c)). ** KEPT: 3037 (129,9,24,15) -EQUAL(f(f(e,l(d,d)),g(b)),d). ** KEPT: 3038 (129,9,23,150) -EQUAL(f(f(e,l(d,d)),f(b,e)),f(a,c)). ** KEPT: 3039 (129,9,23,15) -EQUAL(f(f(e,l(d,d)),f(b,e)),d). ** KEPT: 3040 (129,9,22,150) -EQUAL(f(f(e,l(d,d)),f(e,b)),f(a,c)). ** KEPT: 3041 (129,9,22,15) -EQUAL(f(f(e,l(d,d)),f(e,b)),d). ** KEPT: 3042 (129,9,21,150) -EQUAL(f(f(e,l(d,d)),f(b,b)),f(a,c)). ** KEPT: 3043 (129,9,21,15) -EQUAL(f(f(e,l(d,d)),f(b,b)),d). ** KEPT: 3044 (129,9,12,150) -EQUAL(f(f(e,l(d,d)),b),f(a,c)). ** KEPT: 3045 (129,9,12,15) -EQUAL(f(f(e,l(d,d)),b),d). ** KEPT: 3046 (129,9,7,150) -EQUAL(f(f(e,l(d,d)),e),f(a,c)). ** KEPT: 3047 (129,9,7,15) -EQUAL(f(f(e,l(d,d)),e),d). ** KEPT: 3048 (129,9,303,6) O(f(f(e,l(d,d)),f(e,e))). ** KEPT: 3049 (129,9,303,5) O(f(e,f(l(d,d),f(e,e)))). ** KEPT: 3050 (129,9,142,6) O(f(f(e,l(d,d)),g(l(d,d)))). ** KEPT: 3051 (129,9,128,6) O(f(f(e,l(d,d)),f(b,l(d,d)))). ** KEPT: 3052 (129,9,128,5) O(f(e,f(l(d,d),f(b,l(d,d))))). ** KEPT: 3053 (129,9,108,6) O(f(f(e,l(d,d)),f(b,f(e,e)))). ** KEPT: 3054 (129,9,108,5) O(f(e,f(l(d,d),f(b,f(e,e))))). ** KEPT: 3055 (129,9,107,6) O(f(f(e,l(d,d)),f(f(b,e),e))). ** KEPT: 3056 (129,9,107,5) O(f(e,f(l(d,d),f(f(b,e),e)))). ** KEPT: 3057 (129,9,106,6) O(f(f(e,l(d,d)),f(f(b,e),b))). ** KEPT: 3058 (129,9,106,5) O(f(e,f(l(d,d),f(f(b,e),b)))). ** KEPT: 3059 (129,9,80,6) O(f(f(e,l(d,d)),f(e,f(b,e)))). ** KEPT: 3060 (129,9,80,5) O(f(e,f(l(d,d),f(e,f(b,e))))). ** KEPT: 3061 (129,9,79,6) O(f(f(e,l(d,d)),f(f(e,b),e))). ** KEPT: 3062 (129,9,79,5) O(f(e,f(l(d,d),f(f(e,b),e)))). ** KEPT: 3063 (129,9,78,6) O(f(f(e,l(d,d)),f(f(e,b),b))). ** KEPT: 3064 (129,9,78,5) O(f(e,f(l(d,d),f(f(e,b),b)))). ** KEPT: 3065 (129,9,69,6) O(f(f(e,l(d,d)),f(e,f(e,b)))). ** KEPT: 3066 (129,9,69,5) O(f(e,f(l(d,d),f(e,f(e,b))))). ** KEPT: 3067 (129,9,68,6) O(f(f(e,l(d,d)),f(b,f(e,b)))). ** KEPT: 3068 (129,9,68,5) O(f(e,f(l(d,d),f(b,f(e,b))))). ** KEPT: 3069 (129,9,57,6) O(f(f(e,l(d,d)),f(b,f(b,e)))). ** KEPT: 3070 (129,9,57,5) O(f(e,f(l(d,d),f(b,f(b,e))))). ** KEPT: 3071 (129,9,56,6) O(f(f(e,l(d,d)),f(f(b,b),e))). ** KEPT: 3072 (129,9,56,5) O(f(e,f(l(d,d),f(f(b,b),e)))). ** KEPT: 3073 (129,9,55,6) O(f(f(e,l(d,d)),f(f(b,b),b))). ** KEPT: 3074 (129,9,55,5) O(f(e,f(l(d,d),f(f(b,b),b)))). ** KEPT: 3075 (129,9,49,6) O(f(f(e,l(d,d)),f(e,f(b,b)))). ** KEPT: 3076 (129,9,49,5) O(f(e,f(l(d,d),f(e,f(b,b))))). ** KEPT: 3077 (129,9,48,6) O(f(f(e,l(d,d)),f(b,f(b,b)))). ** KEPT: 3078 (129,9,48,5) O(f(e,f(l(d,d),f(b,f(b,b))))). ** KEPT: 3079 (129,9,41,6) O(f(f(e,l(d,d)),f(g(b),e))). ** KEPT: 3080 (129,9,41,5) O(f(e,f(l(d,d),f(g(b),e)))). ** KEPT: 3081 (129,9,40,6) O(f(f(e,l(d,d)),f(g(b),b))). ** KEPT: 3082 (129,9,40,5) O(f(e,f(l(d,d),f(g(b),b)))). ** KEPT: 3083 (129,9,37,6) O(f(f(e,l(d,d)),f(e,g(b)))). ** KEPT: 3084 (129,9,37,5) O(f(e,f(l(d,d),f(e,g(b))))). ** KEPT: 3085 (129,9,36,6) O(f(f(e,l(d,d)),f(b,g(b)))). ** KEPT: 3086 (129,9,36,5) O(f(e,f(l(d,d),f(b,g(b))))). ** KEPT: 3087 (129,9,35,6) O(f(f(e,l(d,d)),f(g(b),g(b)))). ** KEPT: 3088 (129,9,35,5) O(f(e,f(l(d,d),f(g(b),g(b))))). ** KEPT: 3089 (129,9,27,6) O(f(f(e,l(d,d)),l(d,d))). ** KEPT: 3090 (129,9,27,5) O(f(e,f(l(d,d),l(d,d)))). ** KEPT: 3091 (129,9,24,6) O(f(f(e,l(d,d)),g(b))). ** KEPT: 3092 (129,9,24,5) O(f(e,f(l(d,d),g(b)))). ** KEPT: 3093 (129,9,23,6) O(f(f(e,l(d,d)),f(b,e))). ** KEPT: 3094 (129,9,23,5) O(f(e,f(l(d,d),f(b,e)))). ** KEPT: 3095 (129,9,22,6) O(f(f(e,l(d,d)),f(e,b))). ** KEPT: 3096 (129,9,22,5) O(f(e,f(l(d,d),f(e,b)))). ** KEPT: 3097 (129,9,21,6) O(f(f(e,l(d,d)),f(b,b))). ** KEPT: 3098 (129,9,21,5) O(f(e,f(l(d,d),f(b,b)))). ** KEPT: 3099 (129,9,12,6) O(f(f(e,l(d,d)),b)). ** KEPT: 3100 (129,9,12,5) O(f(e,f(l(d,d),b))). ** KEPT: 3101 (129,9,7,6) O(f(f(e,l(d,d)),e)). ** KEPT: 3102 (129,9,7,5) O(f(e,f(l(d,d),e))). ** KEPT: 3103 (4,129) O(f(f(x,g(x)),l(d,d))). ** KEPT: 3104 (3,129) O(f(f(g(x),x),l(d,d))). ** KEPT: 3105 (14,129) O(f(e,l(f(a,c),d))). ** KEPT: 3106 (14,129) O(f(e,l(d,f(a,c)))). 3103 back subsumes: 245 (36,9,27,6) O(f(f(b,g(b)),l(d,d))). 3104 back subsumes: 436 (40,9,27,6) O(f(f(g(b),b),l(d,d))). new given clause: 140 (27,9,12,6) O(f(l(d,d),b)). ** KEPT: 3107 (140,9,303,150) -EQUAL(f(f(e,e),f(l(d,d),b)),f(a,c)). ** KEPT: 3108 (140,9,303,15) -EQUAL(f(f(e,e),f(l(d,d),b)),d). ** KEPT: 3109 (140,9,140,150) -EQUAL(f(f(l(d,d),b),f(l(d,d),b)),f(a,c)). ** KEPT: 3110 (140,9,140,15) -EQUAL(f(f(l(d,d),b),f(l(d,d),b)),d). ** KEPT: 3111 (140,9,129,150) -EQUAL(f(f(e,l(d,d)),f(l(d,d),b)),f(a,c)). ** KEPT: 3112 (140,9,129,15) -EQUAL(f(f(e,l(d,d)),f(l(d,d),b)),d). ** KEPT: 3113 (140,9,128,150) -EQUAL(f(f(b,l(d,d)),f(l(d,d),b)),f(a,c)). ** KEPT: 3114 (140,9,128,15) -EQUAL(f(f(b,l(d,d)),f(l(d,d),b)),d). ** KEPT: 3115 (140,9,108,150) -EQUAL(f(f(b,f(e,e)),f(l(d,d),b)),f(a,c)). ** KEPT: 3116 (140,9,108,15) -EQUAL(f(f(b,f(e,e)),f(l(d,d),b)),d). ** KEPT: 3117 (140,9,107,150) -EQUAL(f(f(f(b,e),e),f(l(d,d),b)),f(a,c)). ** KEPT: 3118 (140,9,107,15) -EQUAL(f(f(f(b,e),e),f(l(d,d),b)),d). ** KEPT: 3119 (140,9,106,150) -EQUAL(f(f(f(b,e),b),f(l(d,d),b)),f(a,c)). ** KEPT: 3120 (140,9,106,15) -EQUAL(f(f(f(b,e),b),f(l(d,d),b)),d). ** KEPT: 3121 (140,9,80,150) -EQUAL(f(f(e,f(b,e)),f(l(d,d),b)),f(a,c)). ** KEPT: 3122 (140,9,80,15) -EQUAL(f(f(e,f(b,e)),f(l(d,d),b)),d). ** KEPT: 3123 (140,9,79,150) -EQUAL(f(f(f(e,b),e),f(l(d,d),b)),f(a,c)). ** KEPT: 3124 (140,9,79,15) -EQUAL(f(f(f(e,b),e),f(l(d,d),b)),d). ** KEPT: 3125 (140,9,78,150) -EQUAL(f(f(f(e,b),b),f(l(d,d),b)),f(a,c)). ** KEPT: 3126 (140,9,78,15) -EQUAL(f(f(f(e,b),b),f(l(d,d),b)),d). ** KEPT: 3127 (140,9,69,150) -EQUAL(f(f(e,f(e,b)),f(l(d,d),b)),f(a,c)). ** KEPT: 3128 (140,9,69,15) -EQUAL(f(f(e,f(e,b)),f(l(d,d),b)),d). ** KEPT: 3129 (140,9,68,150) -EQUAL(f(f(b,f(e,b)),f(l(d,d),b)),f(a,c)). ** KEPT: 3130 (140,9,68,15) -EQUAL(f(f(b,f(e,b)),f(l(d,d),b)),d). ** KEPT: 3131 (140,9,57,150) -EQUAL(f(f(b,f(b,e)),f(l(d,d),b)),f(a,c)). ** KEPT: 3132 (140,9,57,15) -EQUAL(f(f(b,f(b,e)),f(l(d,d),b)),d). ** KEPT: 3133 (140,9,56,150) -EQUAL(f(f(f(b,b),e),f(l(d,d),b)),f(a,c)). ** KEPT: 3134 (140,9,56,15) -EQUAL(f(f(f(b,b),e),f(l(d,d),b)),d). ** KEPT: 3135 (140,9,55,150) -EQUAL(f(f(f(b,b),b),f(l(d,d),b)),f(a,c)). ** KEPT: 3136 (140,9,55,15) -EQUAL(f(f(f(b,b),b),f(l(d,d),b)),d). ** KEPT: 3137 (140,9,49,150) -EQUAL(f(f(e,f(b,b)),f(l(d,d),b)),f(a,c)). ** KEPT: 3138 (140,9,49,15) -EQUAL(f(f(e,f(b,b)),f(l(d,d),b)),d). ** KEPT: 3139 (140,9,48,150) -EQUAL(f(f(b,f(b,b)),f(l(d,d),b)),f(a,c)). ** KEPT: 3140 (140,9,48,15) -EQUAL(f(f(b,f(b,b)),f(l(d,d),b)),d). ** KEPT: 3141 (140,9,41,150) -EQUAL(f(f(g(b),e),f(l(d,d),b)),f(a,c)). ** KEPT: 3142 (140,9,41,15) -EQUAL(f(f(g(b),e),f(l(d,d),b)),d). ** KEPT: 3143 (140,9,40,150) -EQUAL(f(f(g(b),b),f(l(d,d),b)),f(a,c)). ** KEPT: 3144 (140,9,40,15) -EQUAL(f(f(g(b),b),f(l(d,d),b)),d). ** KEPT: 3145 (140,9,37,150) -EQUAL(f(f(e,g(b)),f(l(d,d),b)),f(a,c)). ** KEPT: 3146 (140,9,37,15) -EQUAL(f(f(e,g(b)),f(l(d,d),b)),d). ** KEPT: 3147 (140,9,36,150) -EQUAL(f(f(b,g(b)),f(l(d,d),b)),f(a,c)). ** KEPT: 3148 (140,9,36,15) -EQUAL(f(f(b,g(b)),f(l(d,d),b)),d). ** KEPT: 3149 (140,9,35,150) -EQUAL(f(f(g(b),g(b)),f(l(d,d),b)),f(a,c)). ** KEPT: 3150 (140,9,35,15) -EQUAL(f(f(g(b),g(b)),f(l(d,d),b)),d). ** KEPT: 3151 (140,9,27,150) -EQUAL(f(l(d,d),f(l(d,d),b)),f(a,c)). ** KEPT: 3152 (140,9,27,15) -EQUAL(f(l(d,d),f(l(d,d),b)),d). ** KEPT: 3153 (140,9,24,150) -EQUAL(f(g(b),f(l(d,d),b)),f(a,c)). ** KEPT: 3154 (140,9,24,15) -EQUAL(f(g(b),f(l(d,d),b)),d). ** KEPT: 3155 (140,9,23,150) -EQUAL(f(f(b,e),f(l(d,d),b)),f(a,c)). ** KEPT: 3156 (140,9,23,15) -EQUAL(f(f(b,e),f(l(d,d),b)),d). ** KEPT: 3157 (140,9,22,150) -EQUAL(f(f(e,b),f(l(d,d),b)),f(a,c)). ** KEPT: 3158 (140,9,22,15) -EQUAL(f(f(e,b),f(l(d,d),b)),d). ** KEPT: 3159 (140,9,21,150) -EQUAL(f(f(b,b),f(l(d,d),b)),f(a,c)). ** KEPT: 3160 (140,9,21,15) -EQUAL(f(f(b,b),f(l(d,d),b)),d). ** KEPT: 3161 (140,9,12,150) -EQUAL(f(b,f(l(d,d),b)),f(a,c)). ** KEPT: 3162 (140,9,12,15) -EQUAL(f(b,f(l(d,d),b)),d). ** KEPT: 3163 (140,9,7,150) -EQUAL(f(e,f(l(d,d),b)),f(a,c)). ** KEPT: 3164 (140,9,7,15) -EQUAL(f(e,f(l(d,d),b)),d). ** KEPT: 3165 (140,9,303,6) O(f(f(e,e),f(l(d,d),b))). ** KEPT: 3166 (140,9,303,5) O(f(e,f(e,f(l(d,d),b)))). ** KEPT: 3167 (140,9,140,6) O(f(f(l(d,d),b),f(l(d,d),b))). ** KEPT: 3168 (140,9,140,5) O(f(l(d,d),f(b,f(l(d,d),b)))). ** KEPT: 3169 (140,9,129,6) O(f(f(e,l(d,d)),f(l(d,d),b))). ** KEPT: 3170 (140,9,129,5) O(f(e,f(l(d,d),f(l(d,d),b)))). ** KEPT: 3171 (140,9,128,6) O(f(f(b,l(d,d)),f(l(d,d),b))). ** KEPT: 3172 (140,9,128,5) O(f(b,f(l(d,d),f(l(d,d),b)))). ** KEPT: 3173 (140,9,108,6) O(f(f(b,f(e,e)),f(l(d,d),b))). ** KEPT: 3174 (140,9,108,5) O(f(b,f(f(e,e),f(l(d,d),b)))). ** KEPT: 3175 (140,9,107,6) O(f(f(f(b,e),e),f(l(d,d),b))). ** KEPT: 3176 (140,9,107,5) O(f(f(b,e),f(e,f(l(d,d),b)))). ** KEPT: 3177 (140,9,106,6) O(f(f(f(b,e),b),f(l(d,d),b))). ** KEPT: 3178 (140,9,106,5) O(f(f(b,e),f(b,f(l(d,d),b)))). ** KEPT: 3179 (140,9,80,6) O(f(f(e,f(b,e)),f(l(d,d),b))). ** KEPT: 3180 (140,9,80,5) O(f(e,f(f(b,e),f(l(d,d),b)))). ** KEPT: 3181 (140,9,79,6) O(f(f(f(e,b),e),f(l(d,d),b))). ** KEPT: 3182 (140,9,79,5) O(f(f(e,b),f(e,f(l(d,d),b)))). ** KEPT: 3183 (140,9,78,6) O(f(f(f(e,b),b),f(l(d,d),b))). ** KEPT: 3184 (140,9,78,5) O(f(f(e,b),f(b,f(l(d,d),b)))). ** KEPT: 3185 (140,9,69,6) O(f(f(e,f(e,b)),f(l(d,d),b))). ** KEPT: 3186 (140,9,69,5) O(f(e,f(f(e,b),f(l(d,d),b)))). ** KEPT: 3187 (140,9,68,6) O(f(f(b,f(e,b)),f(l(d,d),b))). ** KEPT: 3188 (140,9,68,5) O(f(b,f(f(e,b),f(l(d,d),b)))). ** KEPT: 3189 (140,9,57,6) O(f(f(b,f(b,e)),f(l(d,d),b))). ** KEPT: 3190 (140,9,57,5) O(f(b,f(f(b,e),f(l(d,d),b)))). ** KEPT: 3191 (140,9,56,6) O(f(f(f(b,b),e),f(l(d,d),b))). ** KEPT: 3192 (140,9,56,5) O(f(f(b,b),f(e,f(l(d,d),b)))). ** KEPT: 3193 (140,9,55,6) O(f(f(f(b,b),b),f(l(d,d),b))). ** KEPT: 3194 (140,9,55,5) O(f(f(b,b),f(b,f(l(d,d),b)))). ** KEPT: 3195 (140,9,49,6) O(f(f(e,f(b,b)),f(l(d,d),b))). ** KEPT: 3196 (140,9,49,5) O(f(e,f(f(b,b),f(l(d,d),b)))). ** KEPT: 3197 (140,9,48,6) O(f(f(b,f(b,b)),f(l(d,d),b))). ** KEPT: 3198 (140,9,48,5) O(f(b,f(f(b,b),f(l(d,d),b)))). ** KEPT: 3199 (140,9,41,6) O(f(f(g(b),e),f(l(d,d),b))). ** KEPT: 3200 (140,9,41,5) O(f(g(b),f(e,f(l(d,d),b)))). ** KEPT: 3201 (140,9,40,6) O(f(f(g(b),b),f(l(d,d),b))). ** KEPT: 3202 (140,9,37,6) O(f(f(e,g(b)),f(l(d,d),b))). ** KEPT: 3203 (140,9,37,5) O(f(e,f(g(b),f(l(d,d),b)))). ** KEPT: 3204 (140,9,36,6) O(f(f(b,g(b)),f(l(d,d),b))). ** KEPT: 3205 (140,9,35,6) O(f(f(g(b),g(b)),f(l(d,d),b))). ** KEPT: 3206 (140,9,35,5) O(f(g(b),f(g(b),f(l(d,d),b)))). ** KEPT: 3207 (140,9,27,6) O(f(l(d,d),f(l(d,d),b))). ** KEPT: 3208 (140,9,24,6) O(f(g(b),f(l(d,d),b))). ** KEPT: 3209 (140,9,23,6) O(f(f(b,e),f(l(d,d),b))). ** KEPT: 3210 (140,9,23,5) O(f(b,f(e,f(l(d,d),b)))). ** KEPT: 3211 (140,9,22,6) O(f(f(e,b),f(l(d,d),b))). ** KEPT: 3212 (140,9,22,5) O(f(e,f(b,f(l(d,d),b)))). ** KEPT: 3213 (140,9,21,6) O(f(f(b,b),f(l(d,d),b))). ** KEPT: 3214 (140,9,21,5) O(f(b,f(b,f(l(d,d),b)))). ** KEPT: 3215 (140,9,303,150) -EQUAL(f(f(l(d,d),b),f(e,e)),f(a,c)). ** KEPT: 3216 (140,9,303,15) -EQUAL(f(f(l(d,d),b),f(e,e)),d). ** KEPT: 3217 (140,9,142,150) -EQUAL(f(f(l(d,d),b),g(l(d,d))),f(a,c)). ** KEPT: 3218 (140,9,142,15) -EQUAL(f(f(l(d,d),b),g(l(d,d))),d). ** KEPT: 3219 (140,9,129,150) -EQUAL(f(f(l(d,d),b),f(e,l(d,d))),f(a,c)). ** KEPT: 3220 (140,9,129,15) -EQUAL(f(f(l(d,d),b),f(e,l(d,d))),d). ** KEPT: 3221 (140,9,128,150) -EQUAL(f(f(l(d,d),b),f(b,l(d,d))),f(a,c)). ** KEPT: 3222 (140,9,128,15) -EQUAL(f(f(l(d,d),b),f(b,l(d,d))),d). ** KEPT: 3223 (140,9,108,150) -EQUAL(f(f(l(d,d),b),f(b,f(e,e))),f(a,c)). ** KEPT: 3224 (140,9,108,15) -EQUAL(f(f(l(d,d),b),f(b,f(e,e))),d). ** KEPT: 3225 (140,9,107,150) -EQUAL(f(f(l(d,d),b),f(f(b,e),e)),f(a,c)). ** KEPT: 3226 (140,9,107,15) -EQUAL(f(f(l(d,d),b),f(f(b,e),e)),d). ** KEPT: 3227 (140,9,106,150) -EQUAL(f(f(l(d,d),b),f(f(b,e),b)),f(a,c)). ** KEPT: 3228 (140,9,106,15) -EQUAL(f(f(l(d,d),b),f(f(b,e),b)),d). ** KEPT: 3229 (140,9,80,150) -EQUAL(f(f(l(d,d),b),f(e,f(b,e))),f(a,c)). ** KEPT: 3230 (140,9,80,15) -EQUAL(f(f(l(d,d),b),f(e,f(b,e))),d). ** KEPT: 3231 (140,9,79,150) -EQUAL(f(f(l(d,d),b),f(f(e,b),e)),f(a,c)). ** KEPT: 3232 (140,9,79,15) -EQUAL(f(f(l(d,d),b),f(f(e,b),e)),d). ** KEPT: 3233 (140,9,78,150) -EQUAL(f(f(l(d,d),b),f(f(e,b),b)),f(a,c)). ** KEPT: 3234 (140,9,78,15) -EQUAL(f(f(l(d,d),b),f(f(e,b),b)),d). ** KEPT: 3235 (140,9,69,150) -EQUAL(f(f(l(d,d),b),f(e,f(e,b))),f(a,c)). ** KEPT: 3236 (140,9,69,15) -EQUAL(f(f(l(d,d),b),f(e,f(e,b))),d). ** KEPT: 3237 (140,9,68,150) -EQUAL(f(f(l(d,d),b),f(b,f(e,b))),f(a,c)). ** KEPT: 3238 (140,9,68,15) -EQUAL(f(f(l(d,d),b),f(b,f(e,b))),d). ** KEPT: 3239 (140,9,57,150) -EQUAL(f(f(l(d,d),b),f(b,f(b,e))),f(a,c)). ** KEPT: 3240 (140,9,57,15) -EQUAL(f(f(l(d,d),b),f(b,f(b,e))),d). ** KEPT: 3241 (140,9,56,150) -EQUAL(f(f(l(d,d),b),f(f(b,b),e)),f(a,c)). ** KEPT: 3242 (140,9,56,15) -EQUAL(f(f(l(d,d),b),f(f(b,b),e)),d). ** KEPT: 3243 (140,9,55,150) -EQUAL(f(f(l(d,d),b),f(f(b,b),b)),f(a,c)). ** KEPT: 3244 (140,9,55,15) -EQUAL(f(f(l(d,d),b),f(f(b,b),b)),d). ** KEPT: 3245 (140,9,49,150) -EQUAL(f(f(l(d,d),b),f(e,f(b,b))),f(a,c)). ** KEPT: 3246 (140,9,49,15) -EQUAL(f(f(l(d,d),b),f(e,f(b,b))),d). ** KEPT: 3247 (140,9,48,150) -EQUAL(f(f(l(d,d),b),f(b,f(b,b))),f(a,c)). ** KEPT: 3248 (140,9,48,15) -EQUAL(f(f(l(d,d),b),f(b,f(b,b))),d). ** KEPT: 3249 (140,9,41,150) -EQUAL(f(f(l(d,d),b),f(g(b),e)),f(a,c)). ** KEPT: 3250 (140,9,41,15) -EQUAL(f(f(l(d,d),b),f(g(b),e)),d). ** KEPT: 3251 (140,9,40,150) -EQUAL(f(f(l(d,d),b),f(g(b),b)),f(a,c)). ** KEPT: 3252 (140,9,40,15) -EQUAL(f(f(l(d,d),b),f(g(b),b)),d). ** KEPT: 3253 (140,9,37,150) -EQUAL(f(f(l(d,d),b),f(e,g(b))),f(a,c)). ** KEPT: 3254 (140,9,37,15) -EQUAL(f(f(l(d,d),b),f(e,g(b))),d). ** KEPT: 3255 (140,9,36,150) -EQUAL(f(f(l(d,d),b),f(b,g(b))),f(a,c)). ** KEPT: 3256 (140,9,36,15) -EQUAL(f(f(l(d,d),b),f(b,g(b))),d). ** KEPT: 3257 (140,9,35,150) -EQUAL(f(f(l(d,d),b),f(g(b),g(b))),f(a,c)). ** KEPT: 3258 (140,9,35,15) -EQUAL(f(f(l(d,d),b),f(g(b),g(b))),d). ** KEPT: 3259 (140,9,27,150) -EQUAL(f(f(l(d,d),b),l(d,d)),f(a,c)). ** KEPT: 3260 (140,9,27,15) -EQUAL(f(f(l(d,d),b),l(d,d)),d). ** KEPT: 3261 (140,9,24,150) -EQUAL(f(f(l(d,d),b),g(b)),f(a,c)). ** KEPT: 3262 (140,9,24,15) -EQUAL(f(f(l(d,d),b),g(b)),d). ** KEPT: 3263 (140,9,23,150) -EQUAL(f(f(l(d,d),b),f(b,e)),f(a,c)). ** KEPT: 3264 (140,9,23,15) -EQUAL(f(f(l(d,d),b),f(b,e)),d). ** KEPT: 3265 (140,9,22,150) -EQUAL(f(f(l(d,d),b),f(e,b)),f(a,c)). ** KEPT: 3266 (140,9,22,15) -EQUAL(f(f(l(d,d),b),f(e,b)),d). ** KEPT: 3267 (140,9,21,150) -EQUAL(f(f(l(d,d),b),f(b,b)),f(a,c)). ** KEPT: 3268 (140,9,21,15) -EQUAL(f(f(l(d,d),b),f(b,b)),d). ** KEPT: 3269 (140,9,12,150) -EQUAL(f(f(l(d,d),b),b),f(a,c)). ** KEPT: 3270 (140,9,12,15) -EQUAL(f(f(l(d,d),b),b),d). ** KEPT: 3271 (140,9,7,150) -EQUAL(f(f(l(d,d),b),e),f(a,c)). ** KEPT: 3272 (140,9,7,15) -EQUAL(f(f(l(d,d),b),e),d). ** KEPT: 3273 (140,9,303,6) O(f(f(l(d,d),b),f(e,e))). ** KEPT: 3274 (140,9,142,6) O(f(f(l(d,d),b),g(l(d,d)))). ** KEPT: 3275 (140,9,142,5) O(f(l(d,d),f(b,g(l(d,d))))). ** KEPT: 3276 (140,9,129,6) O(f(f(l(d,d),b),f(e,l(d,d)))). ** KEPT: 3277 (140,9,129,5) O(f(l(d,d),f(b,f(e,l(d,d))))). ** KEPT: 3278 (140,9,128,6) O(f(f(l(d,d),b),f(b,l(d,d)))). ** KEPT: 3279 (140,9,128,5) O(f(l(d,d),f(b,f(b,l(d,d))))). ** KEPT: 3280 (140,9,108,6) O(f(f(l(d,d),b),f(b,f(e,e)))). ** KEPT: 3281 (140,9,108,5) O(f(l(d,d),f(b,f(b,f(e,e))))). ** KEPT: 3282 (140,9,107,6) O(f(f(l(d,d),b),f(f(b,e),e))). ** KEPT: 3283 (140,9,107,5) O(f(l(d,d),f(b,f(f(b,e),e)))). ** KEPT: 3284 (140,9,106,6) O(f(f(l(d,d),b),f(f(b,e),b))). ** KEPT: 3285 (140,9,106,5) O(f(l(d,d),f(b,f(f(b,e),b)))). ** KEPT: 3286 (140,9,80,6) O(f(f(l(d,d),b),f(e,f(b,e)))). ** KEPT: 3287 (140,9,80,5) O(f(l(d,d),f(b,f(e,f(b,e))))). ** KEPT: 3288 (140,9,79,6) O(f(f(l(d,d),b),f(f(e,b),e))). ** KEPT: 3289 (140,9,79,5) O(f(l(d,d),f(b,f(f(e,b),e)))). ** KEPT: 3290 (140,9,78,6) O(f(f(l(d,d),b),f(f(e,b),b))). ** KEPT: 3291 (140,9,78,5) O(f(l(d,d),f(b,f(f(e,b),b)))). ** KEPT: 3292 (140,9,69,6) O(f(f(l(d,d),b),f(e,f(e,b)))). ** KEPT: 3293 (140,9,69,5) O(f(l(d,d),f(b,f(e,f(e,b))))). ** KEPT: 3294 (140,9,68,6) O(f(f(l(d,d),b),f(b,f(e,b)))). ** KEPT: 3295 (140,9,68,5) O(f(l(d,d),f(b,f(b,f(e,b))))). ** KEPT: 3296 (140,9,57,6) O(f(f(l(d,d),b),f(b,f(b,e)))). ** KEPT: 3297 (140,9,57,5) O(f(l(d,d),f(b,f(b,f(b,e))))). ** KEPT: 3298 (140,9,56,6) O(f(f(l(d,d),b),f(f(b,b),e))). ** KEPT: 3299 (140,9,56,5) O(f(l(d,d),f(b,f(f(b,b),e)))). ** KEPT: 3300 (140,9,55,6) O(f(f(l(d,d),b),f(f(b,b),b))). ** KEPT: 3301 (140,9,55,5) O(f(l(d,d),f(b,f(f(b,b),b)))). ** KEPT: 3302 (140,9,49,6) O(f(f(l(d,d),b),f(e,f(b,b)))). ** KEPT: 3303 (140,9,49,5) O(f(l(d,d),f(b,f(e,f(b,b))))). ** KEPT: 3304 (140,9,48,6) O(f(f(l(d,d),b),f(b,f(b,b)))). ** KEPT: 3305 (140,9,48,5) O(f(l(d,d),f(b,f(b,f(b,b))))). ** KEPT: 3306 (140,9,41,6) O(f(f(l(d,d),b),f(g(b),e))). ** KEPT: 3307 (140,9,40,6) O(f(f(l(d,d),b),f(g(b),b))). ** KEPT: 3308 (140,9,37,6) O(f(f(l(d,d),b),f(e,g(b)))). ** KEPT: 3309 (140,9,37,5) O(f(l(d,d),f(b,f(e,g(b))))). ** KEPT: 3310 (140,9,36,6) O(f(f(l(d,d),b),f(b,g(b)))). ** KEPT: 3311 (140,9,36,5) O(f(l(d,d),f(b,f(b,g(b))))). ** KEPT: 3312 (140,9,35,6) O(f(f(l(d,d),b),f(g(b),g(b)))). ** KEPT: 3313 (140,9,27,6) O(f(f(l(d,d),b),l(d,d))). ** KEPT: 3314 (140,9,24,6) O(f(f(l(d,d),b),g(b))). ** KEPT: 3315 (140,9,23,6) O(f(f(l(d,d),b),f(b,e))). ** KEPT: 3316 (140,9,22,6) O(f(f(l(d,d),b),f(e,b))). ** KEPT: 3317 (140,9,21,6) O(f(f(l(d,d),b),f(b,b))). ** KEPT: 3318 (140,9,12,6) O(f(f(l(d,d),b),b)). ** KEPT: 3319 (140,9,7,6) O(f(f(l(d,d),b),e)). ** KEPT: 3320 (14,140) O(f(l(f(a,c),d),b)). ** KEPT: 3321 (14,140) O(f(l(d,f(a,c)),b)). new given clause: 141 (27,9,7,6) O(f(l(d,d),e)). ** KEPT: 3322 (141,9,303,150) -EQUAL(f(f(e,e),f(l(d,d),e)),f(a,c)). ** KEPT: 3323 (141,9,303,15) -EQUAL(f(f(e,e),f(l(d,d),e)),d). ** KEPT: 3324 (141,9,141,150) -EQUAL(f(f(l(d,d),e),f(l(d,d),e)),f(a,c)). ** KEPT: 3325 (141,9,141,15) -EQUAL(f(f(l(d,d),e),f(l(d,d),e)),d). ** KEPT: 3326 (141,9,140,150) -EQUAL(f(f(l(d,d),b),f(l(d,d),e)),f(a,c)). ** KEPT: 3327 (141,9,140,15) -EQUAL(f(f(l(d,d),b),f(l(d,d),e)),d). ** KEPT: 3328 (141,9,129,150) -EQUAL(f(f(e,l(d,d)),f(l(d,d),e)),f(a,c)). ** KEPT: 3329 (141,9,129,15) -EQUAL(f(f(e,l(d,d)),f(l(d,d),e)),d). ** KEPT: 3330 (141,9,128,150) -EQUAL(f(f(b,l(d,d)),f(l(d,d),e)),f(a,c)). ** KEPT: 3331 (141,9,128,15) -EQUAL(f(f(b,l(d,d)),f(l(d,d),e)),d). ** KEPT: 3332 (141,9,108,150) -EQUAL(f(f(b,f(e,e)),f(l(d,d),e)),f(a,c)). ** KEPT: 3333 (141,9,108,15) -EQUAL(f(f(b,f(e,e)),f(l(d,d),e)),d). ** KEPT: 3334 (141,9,107,150) -EQUAL(f(f(f(b,e),e),f(l(d,d),e)),f(a,c)). ** KEPT: 3335 (141,9,107,15) -EQUAL(f(f(f(b,e),e),f(l(d,d),e)),d). ** KEPT: 3336 (141,9,106,150) -EQUAL(f(f(f(b,e),b),f(l(d,d),e)),f(a,c)). ** KEPT: 3337 (141,9,106,15) -EQUAL(f(f(f(b,e),b),f(l(d,d),e)),d). ** KEPT: 3338 (141,9,80,150) -EQUAL(f(f(e,f(b,e)),f(l(d,d),e)),f(a,c)). ** KEPT: 3339 (141,9,80,15) -EQUAL(f(f(e,f(b,e)),f(l(d,d),e)),d). ** KEPT: 3340 (141,9,79,150) -EQUAL(f(f(f(e,b),e),f(l(d,d),e)),f(a,c)). ** KEPT: 3341 (141,9,79,15) -EQUAL(f(f(f(e,b),e),f(l(d,d),e)),d). ** KEPT: 3342 (141,9,78,150) -EQUAL(f(f(f(e,b),b),f(l(d,d),e)),f(a,c)). ** KEPT: 3343 (141,9,78,15) -EQUAL(f(f(f(e,b),b),f(l(d,d),e)),d). ** KEPT: 3344 (141,9,69,150) -EQUAL(f(f(e,f(e,b)),f(l(d,d),e)),f(a,c)). ** KEPT: 3345 (141,9,69,15) -EQUAL(f(f(e,f(e,b)),f(l(d,d),e)),d). ** KEPT: 3346 (141,9,68,150) -EQUAL(f(f(b,f(e,b)),f(l(d,d),e)),f(a,c)). ** KEPT: 3347 (141,9,68,15) -EQUAL(f(f(b,f(e,b)),f(l(d,d),e)),d). ** KEPT: 3348 (141,9,57,150) -EQUAL(f(f(b,f(b,e)),f(l(d,d),e)),f(a,c)). ** KEPT: 3349 (141,9,57,15) -EQUAL(f(f(b,f(b,e)),f(l(d,d),e)),d). ** KEPT: 3350 (141,9,56,150) -EQUAL(f(f(f(b,b),e),f(l(d,d),e)),f(a,c)). ** KEPT: 3351 (141,9,56,15) -EQUAL(f(f(f(b,b),e),f(l(d,d),e)),d). ** KEPT: 3352 (141,9,55,150) -EQUAL(f(f(f(b,b),b),f(l(d,d),e)),f(a,c)). ** KEPT: 3353 (141,9,55,15) -EQUAL(f(f(f(b,b),b),f(l(d,d),e)),d). ** KEPT: 3354 (141,9,49,150) -EQUAL(f(f(e,f(b,b)),f(l(d,d),e)),f(a,c)). ** KEPT: 3355 (141,9,49,15) -EQUAL(f(f(e,f(b,b)),f(l(d,d),e)),d). ** KEPT: 3356 (141,9,48,150) -EQUAL(f(f(b,f(b,b)),f(l(d,d),e)),f(a,c)). ** KEPT: 3357 (141,9,48,15) -EQUAL(f(f(b,f(b,b)),f(l(d,d),e)),d). ** KEPT: 3358 (141,9,41,150) -EQUAL(f(f(g(b),e),f(l(d,d),e)),f(a,c)). ** KEPT: 3359 (141,9,41,15) -EQUAL(f(f(g(b),e),f(l(d,d),e)),d). ** KEPT: 3360 (141,9,40,150) -EQUAL(f(f(g(b),b),f(l(d,d),e)),f(a,c)). ** KEPT: 3361 (141,9,40,15) -EQUAL(f(f(g(b),b),f(l(d,d),e)),d). ** KEPT: 3362 (141,9,37,150) -EQUAL(f(f(e,g(b)),f(l(d,d),e)),f(a,c)). ** KEPT: 3363 (141,9,37,15) -EQUAL(f(f(e,g(b)),f(l(d,d),e)),d). ** KEPT: 3364 (141,9,36,150) -EQUAL(f(f(b,g(b)),f(l(d,d),e)),f(a,c)). ** KEPT: 3365 (141,9,36,15) -EQUAL(f(f(b,g(b)),f(l(d,d),e)),d). ** KEPT: 3366 (141,9,35,150) -EQUAL(f(f(g(b),g(b)),f(l(d,d),e)),f(a,c)). ** KEPT: 3367 (141,9,35,15) -EQUAL(f(f(g(b),g(b)),f(l(d,d),e)),d). ** KEPT: 3368 (141,9,27,150) -EQUAL(f(l(d,d),f(l(d,d),e)),f(a,c)). ** KEPT: 3369 (141,9,27,15) -EQUAL(f(l(d,d),f(l(d,d),e)),d). ** KEPT: 3370 (141,9,24,150) -EQUAL(f(g(b),f(l(d,d),e)),f(a,c)). ** KEPT: 3371 (141,9,24,15) -EQUAL(f(g(b),f(l(d,d),e)),d). ** KEPT: 3372 (141,9,23,150) -EQUAL(f(f(b,e),f(l(d,d),e)),f(a,c)). ** KEPT: 3373 (141,9,23,15) -EQUAL(f(f(b,e),f(l(d,d),e)),d). ** KEPT: 3374 (141,9,22,150) -EQUAL(f(f(e,b),f(l(d,d),e)),f(a,c)). ** KEPT: 3375 (141,9,22,15) -EQUAL(f(f(e,b),f(l(d,d),e)),d). ** KEPT: 3376 (141,9,21,150) -EQUAL(f(f(b,b),f(l(d,d),e)),f(a,c)). ** KEPT: 3377 (141,9,21,15) -EQUAL(f(f(b,b),f(l(d,d),e)),d). ** KEPT: 3378 (141,9,12,150) -EQUAL(f(b,f(l(d,d),e)),f(a,c)). ** KEPT: 3379 (141,9,12,15) -EQUAL(f(b,f(l(d,d),e)),d). ** KEPT: 3380 (141,9,7,150) -EQUAL(f(e,f(l(d,d),e)),f(a,c)). ** KEPT: 3381 (141,9,7,15) -EQUAL(f(e,f(l(d,d),e)),d). ** KEPT: 3382 (141,9,303,6) O(f(f(e,e),f(l(d,d),e))). ** KEPT: 3383 (141,9,303,5) O(f(e,f(e,f(l(d,d),e)))). ** KEPT: 3384 (141,9,141,6) O(f(f(l(d,d),e),f(l(d,d),e))). ** KEPT: 3385 (141,9,141,5) O(f(l(d,d),f(e,f(l(d,d),e)))). ** KEPT: 3386 (141,9,140,6) O(f(f(l(d,d),b),f(l(d,d),e))). ** KEPT: 3387 (141,9,140,5) O(f(l(d,d),f(b,f(l(d,d),e)))). ** KEPT: 3388 (141,9,129,6) O(f(f(e,l(d,d)),f(l(d,d),e))). ** KEPT: 3389 (141,9,129,5) O(f(e,f(l(d,d),f(l(d,d),e)))). ** KEPT: 3390 (141,9,128,6) O(f(f(b,l(d,d)),f(l(d,d),e))). ** KEPT: 3391 (141,9,128,5) O(f(b,f(l(d,d),f(l(d,d),e)))). ** KEPT: 3392 (141,9,108,6) O(f(f(b,f(e,e)),f(l(d,d),e))). ** KEPT: 3393 (141,9,108,5) O(f(b,f(f(e,e),f(l(d,d),e)))). ** KEPT: 3394 (141,9,107,6) O(f(f(f(b,e),e),f(l(d,d),e))). ** KEPT: 3395 (141,9,107,5) O(f(f(b,e),f(e,f(l(d,d),e)))). ** KEPT: 3396 (141,9,106,6) O(f(f(f(b,e),b),f(l(d,d),e))). ** KEPT: 3397 (141,9,106,5) O(f(f(b,e),f(b,f(l(d,d),e)))). ** KEPT: 3398 (141,9,80,6) O(f(f(e,f(b,e)),f(l(d,d),e))). ** KEPT: 3399 (141,9,80,5) O(f(e,f(f(b,e),f(l(d,d),e)))). ** KEPT: 3400 (141,9,79,6) O(f(f(f(e,b),e),f(l(d,d),e))). ** KEPT: 3401 (141,9,79,5) O(f(f(e,b),f(e,f(l(d,d),e)))). ** KEPT: 3402 (141,9,78,6) O(f(f(f(e,b),b),f(l(d,d),e))). ** KEPT: 3403 (141,9,78,5) O(f(f(e,b),f(b,f(l(d,d),e)))). ** KEPT: 3404 (141,9,69,6) O(f(f(e,f(e,b)),f(l(d,d),e))). ** KEPT: 3405 (141,9,69,5) O(f(e,f(f(e,b),f(l(d,d),e)))). ** KEPT: 3406 (141,9,68,6) O(f(f(b,f(e,b)),f(l(d,d),e))). ** KEPT: 3407 (141,9,68,5) O(f(b,f(f(e,b),f(l(d,d),e)))). ** KEPT: 3408 (141,9,57,6) O(f(f(b,f(b,e)),f(l(d,d),e))). ** KEPT: 3409 (141,9,57,5) O(f(b,f(f(b,e),f(l(d,d),e)))). ** KEPT: 3410 (141,9,56,6) O(f(f(f(b,b),e),f(l(d,d),e))). ** KEPT: 3411 (141,9,56,5) O(f(f(b,b),f(e,f(l(d,d),e)))). ** KEPT: 3412 (141,9,55,6) O(f(f(f(b,b),b),f(l(d,d),e))). ** KEPT: 3413 (141,9,55,5) O(f(f(b,b),f(b,f(l(d,d),e)))). ** KEPT: 3414 (141,9,49,6) O(f(f(e,f(b,b)),f(l(d,d),e))). ** KEPT: 3415 (141,9,49,5) O(f(e,f(f(b,b),f(l(d,d),e)))). ** KEPT: 3416 (141,9,48,6) O(f(f(b,f(b,b)),f(l(d,d),e))). ** KEPT: 3417 (141,9,48,5) O(f(b,f(f(b,b),f(l(d,d),e)))). ** KEPT: 3418 (141,9,41,6) O(f(f(g(b),e),f(l(d,d),e))). ** KEPT: 3419 (141,9,41,5) O(f(g(b),f(e,f(l(d,d),e)))). ** KEPT: 3420 (141,9,40,6) O(f(f(g(b),b),f(l(d,d),e))). ** KEPT: 3421 (141,9,37,6) O(f(f(e,g(b)),f(l(d,d),e))). ** KEPT: 3422 (141,9,37,5) O(f(e,f(g(b),f(l(d,d),e)))). ** KEPT: 3423 (141,9,36,6) O(f(f(b,g(b)),f(l(d,d),e))). ** KEPT: 3424 (141,9,35,6) O(f(f(g(b),g(b)),f(l(d,d),e))). ** KEPT: 3425 (141,9,35,5) O(f(g(b),f(g(b),f(l(d,d),e)))). ** KEPT: 3426 (141,9,27,6) O(f(l(d,d),f(l(d,d),e))). ** KEPT: 3427 (141,9,24,6) O(f(g(b),f(l(d,d),e))). ** KEPT: 3428 (141,9,23,6) O(f(f(b,e),f(l(d,d),e))). ** KEPT: 3429 (141,9,23,5) O(f(b,f(e,f(l(d,d),e)))). ** KEPT: 3430 (141,9,22,6) O(f(f(e,b),f(l(d,d),e))). ** KEPT: 3431 (141,9,22,5) O(f(e,f(b,f(l(d,d),e)))). ** KEPT: 3432 (141,9,21,6) O(f(f(b,b),f(l(d,d),e))). ** KEPT: 3433 (141,9,21,5) O(f(b,f(b,f(l(d,d),e)))). ** KEPT: 3434 (141,9,303,150) -EQUAL(f(f(l(d,d),e),f(e,e)),f(a,c)). ** KEPT: 3435 (141,9,303,15) -EQUAL(f(f(l(d,d),e),f(e,e)),d). ** KEPT: 3436 (141,9,142,150) -EQUAL(f(f(l(d,d),e),g(l(d,d))),f(a,c)). ** KEPT: 3437 (141,9,142,15) -EQUAL(f(f(l(d,d),e),g(l(d,d))),d). ** KEPT: 3438 (141,9,140,150) -EQUAL(f(f(l(d,d),e),f(l(d,d),b)),f(a,c)). ** KEPT: 3439 (141,9,140,15) -EQUAL(f(f(l(d,d),e),f(l(d,d),b)),d). ** KEPT: 3440 (141,9,129,150) -EQUAL(f(f(l(d,d),e),f(e,l(d,d))),f(a,c)). ** KEPT: 3441 (141,9,129,15) -EQUAL(f(f(l(d,d),e),f(e,l(d,d))),d). ** KEPT: 3442 (141,9,128,150) -EQUAL(f(f(l(d,d),e),f(b,l(d,d))),f(a,c)). ** KEPT: 3443 (141,9,128,15) -EQUAL(f(f(l(d,d),e),f(b,l(d,d))),d). ** KEPT: 3444 (141,9,108,150) -EQUAL(f(f(l(d,d),e),f(b,f(e,e))),f(a,c)). ** KEPT: 3445 (141,9,108,15) -EQUAL(f(f(l(d,d),e),f(b,f(e,e))),d). ** KEPT: 3446 (141,9,107,150) -EQUAL(f(f(l(d,d),e),f(f(b,e),e)),f(a,c)). ** KEPT: 3447 (141,9,107,15) -EQUAL(f(f(l(d,d),e),f(f(b,e),e)),d). ** KEPT: 3448 (141,9,106,150) -EQUAL(f(f(l(d,d),e),f(f(b,e),b)),f(a,c)). ** KEPT: 3449 (141,9,106,15) -EQUAL(f(f(l(d,d),e),f(f(b,e),b)),d). ** KEPT: 3450 (141,9,80,150) -EQUAL(f(f(l(d,d),e),f(e,f(b,e))),f(a,c)). ** KEPT: 3451 (141,9,80,15) -EQUAL(f(f(l(d,d),e),f(e,f(b,e))),d). ** KEPT: 3452 (141,9,79,150) -EQUAL(f(f(l(d,d),e),f(f(e,b),e)),f(a,c)). ** KEPT: 3453 (141,9,79,15) -EQUAL(f(f(l(d,d),e),f(f(e,b),e)),d). ** KEPT: 3454 (141,9,78,150) -EQUAL(f(f(l(d,d),e),f(f(e,b),b)),f(a,c)). ** KEPT: 3455 (141,9,78,15) -EQUAL(f(f(l(d,d),e),f(f(e,b),b)),d). ** KEPT: 3456 (141,9,69,150) -EQUAL(f(f(l(d,d),e),f(e,f(e,b))),f(a,c)). ** KEPT: 3457 (141,9,69,15) -EQUAL(f(f(l(d,d),e),f(e,f(e,b))),d). ** KEPT: 3458 (141,9,68,150) -EQUAL(f(f(l(d,d),e),f(b,f(e,b))),f(a,c)). ** KEPT: 3459 (141,9,68,15) -EQUAL(f(f(l(d,d),e),f(b,f(e,b))),d). ** KEPT: 3460 (141,9,57,150) -EQUAL(f(f(l(d,d),e),f(b,f(b,e))),f(a,c)). ** KEPT: 3461 (141,9,57,15) -EQUAL(f(f(l(d,d),e),f(b,f(b,e))),d). ** KEPT: 3462 (141,9,56,150) -EQUAL(f(f(l(d,d),e),f(f(b,b),e)),f(a,c)). ** KEPT: 3463 (141,9,56,15) -EQUAL(f(f(l(d,d),e),f(f(b,b),e)),d). ** KEPT: 3464 (141,9,55,150) -EQUAL(f(f(l(d,d),e),f(f(b,b),b)),f(a,c)). ** KEPT: 3465 (141,9,55,15) -EQUAL(f(f(l(d,d),e),f(f(b,b),b)),d). ** KEPT: 3466 (141,9,49,150) -EQUAL(f(f(l(d,d),e),f(e,f(b,b))),f(a,c)). ** KEPT: 3467 (141,9,49,15) -EQUAL(f(f(l(d,d),e),f(e,f(b,b))),d). ** KEPT: 3468 (141,9,48,150) -EQUAL(f(f(l(d,d),e),f(b,f(b,b))),f(a,c)). ** KEPT: 3469 (141,9,48,15) -EQUAL(f(f(l(d,d),e),f(b,f(b,b))),d). ** KEPT: 3470 (141,9,41,150) -EQUAL(f(f(l(d,d),e),f(g(b),e)),f(a,c)). ** KEPT: 3471 (141,9,41,15) -EQUAL(f(f(l(d,d),e),f(g(b),e)),d). ** KEPT: 3472 (141,9,40,150) -EQUAL(f(f(l(d,d),e),f(g(b),b)),f(a,c)). ** KEPT: 3473 (141,9,40,15) -EQUAL(f(f(l(d,d),e),f(g(b),b)),d). ** KEPT: 3474 (141,9,37,150) -EQUAL(f(f(l(d,d),e),f(e,g(b))),f(a,c)). ** KEPT: 3475 (141,9,37,15) -EQUAL(f(f(l(d,d),e),f(e,g(b))),d). ** KEPT: 3476 (141,9,36,150) -EQUAL(f(f(l(d,d),e),f(b,g(b))),f(a,c)). ** KEPT: 3477 (141,9,36,15) -EQUAL(f(f(l(d,d),e),f(b,g(b))),d). ** KEPT: 3478 (141,9,35,150) -EQUAL(f(f(l(d,d),e),f(g(b),g(b))),f(a,c)). ** KEPT: 3479 (141,9,35,15) -EQUAL(f(f(l(d,d),e),f(g(b),g(b))),d). ** KEPT: 3480 (141,9,27,150) -EQUAL(f(f(l(d,d),e),l(d,d)),f(a,c)). ** KEPT: 3481 (141,9,27,15) -EQUAL(f(f(l(d,d),e),l(d,d)),d). ** KEPT: 3482 (141,9,24,150) -EQUAL(f(f(l(d,d),e),g(b)),f(a,c)). ** KEPT: 3483 (141,9,24,15) -EQUAL(f(f(l(d,d),e),g(b)),d). ** KEPT: 3484 (141,9,23,150) -EQUAL(f(f(l(d,d),e),f(b,e)),f(a,c)). ** KEPT: 3485 (141,9,23,15) -EQUAL(f(f(l(d,d),e),f(b,e)),d). ** KEPT: 3486 (141,9,22,150) -EQUAL(f(f(l(d,d),e),f(e,b)),f(a,c)). ** KEPT: 3487 (141,9,22,15) -EQUAL(f(f(l(d,d),e),f(e,b)),d). ** KEPT: 3488 (141,9,21,150) -EQUAL(f(f(l(d,d),e),f(b,b)),f(a,c)). ** KEPT: 3489 (141,9,21,15) -EQUAL(f(f(l(d,d),e),f(b,b)),d). ** KEPT: 3490 (141,9,12,150) -EQUAL(f(f(l(d,d),e),b),f(a,c)). ** KEPT: 3491 (141,9,12,15) -EQUAL(f(f(l(d,d),e),b),d). ** KEPT: 3492 (141,9,7,150) -EQUAL(f(f(l(d,d),e),e),f(a,c)). ** KEPT: 3493 (141,9,7,15) -EQUAL(f(f(l(d,d),e),e),d). ** KEPT: 3494 (141,9,303,6) O(f(f(l(d,d),e),f(e,e))). ** KEPT: 3495 (141,9,303,5) O(f(l(d,d),f(e,f(e,e)))). ** KEPT: 3496 (141,9,142,6) O(f(f(l(d,d),e),g(l(d,d)))). ** KEPT: 3497 (141,9,142,5) O(f(l(d,d),f(e,g(l(d,d))))). ** KEPT: 3498 (141,9,140,6) O(f(f(l(d,d),e),f(l(d,d),b))). ** KEPT: 3499 (141,9,140,5) O(f(l(d,d),f(e,f(l(d,d),b)))). ** KEPT: 3500 (141,9,129,6) O(f(f(l(d,d),e),f(e,l(d,d)))). ** KEPT: 3501 (141,9,129,5) O(f(l(d,d),f(e,f(e,l(d,d))))). ** KEPT: 3502 (141,9,128,6) O(f(f(l(d,d),e),f(b,l(d,d)))). ** KEPT: 3503 (141,9,128,5) O(f(l(d,d),f(e,f(b,l(d,d))))). ** KEPT: 3504 (141,9,108,6) O(f(f(l(d,d),e),f(b,f(e,e)))). ** KEPT: 3505 (141,9,108,5) O(f(l(d,d),f(e,f(b,f(e,e))))). ** KEPT: 3506 (141,9,107,6) O(f(f(l(d,d),e),f(f(b,e),e))). ** KEPT: 3507 (141,9,107,5) O(f(l(d,d),f(e,f(f(b,e),e)))). ** KEPT: 3508 (141,9,106,6) O(f(f(l(d,d),e),f(f(b,e),b))). ** KEPT: 3509 (141,9,106,5) O(f(l(d,d),f(e,f(f(b,e),b)))). ** KEPT: 3510 (141,9,80,6) O(f(f(l(d,d),e),f(e,f(b,e)))). ** KEPT: 3511 (141,9,80,5) O(f(l(d,d),f(e,f(e,f(b,e))))). ** KEPT: 3512 (141,9,79,6) O(f(f(l(d,d),e),f(f(e,b),e))). ** KEPT: 3513 (141,9,79,5) O(f(l(d,d),f(e,f(f(e,b),e)))). ** KEPT: 3514 (141,9,78,6) O(f(f(l(d,d),e),f(f(e,b),b))). ** KEPT: 3515 (141,9,78,5) O(f(l(d,d),f(e,f(f(e,b),b)))). ** KEPT: 3516 (141,9,69,6) O(f(f(l(d,d),e),f(e,f(e,b)))). ** KEPT: 3517 (141,9,69,5) O(f(l(d,d),f(e,f(e,f(e,b))))). ** KEPT: 3518 (141,9,68,6) O(f(f(l(d,d),e),f(b,f(e,b)))). ** KEPT: 3519 (141,9,68,5) O(f(l(d,d),f(e,f(b,f(e,b))))). ** KEPT: 3520 (141,9,57,6) O(f(f(l(d,d),e),f(b,f(b,e)))). ** KEPT: 3521 (141,9,57,5) O(f(l(d,d),f(e,f(b,f(b,e))))). ** KEPT: 3522 (141,9,56,6) O(f(f(l(d,d),e),f(f(b,b),e))). ** KEPT: 3523 (141,9,56,5) O(f(l(d,d),f(e,f(f(b,b),e)))). ** KEPT: 3524 (141,9,55,6) O(f(f(l(d,d),e),f(f(b,b),b))). ** KEPT: 3525 (141,9,55,5) O(f(l(d,d),f(e,f(f(b,b),b)))). ** KEPT: 3526 (141,9,49,6) O(f(f(l(d,d),e),f(e,f(b,b)))). ** KEPT: 3527 (141,9,49,5) O(f(l(d,d),f(e,f(e,f(b,b))))). ** KEPT: 3528 (141,9,48,6) O(f(f(l(d,d),e),f(b,f(b,b)))). ** KEPT: 3529 (141,9,48,5) O(f(l(d,d),f(e,f(b,f(b,b))))). ** KEPT: 3530 (141,9,41,6) O(f(f(l(d,d),e),f(g(b),e))). ** KEPT: 3531 (141,9,41,5) O(f(l(d,d),f(e,f(g(b),e)))). ** KEPT: 3532 (141,9,40,6) O(f(f(l(d,d),e),f(g(b),b))). ** KEPT: 3533 (141,9,40,5) O(f(l(d,d),f(e,f(g(b),b)))). ** KEPT: 3534 (141,9,37,6) O(f(f(l(d,d),e),f(e,g(b)))). ** KEPT: 3535 (141,9,37,5) O(f(l(d,d),f(e,f(e,g(b))))). ** KEPT: 3536 (141,9,36,6) O(f(f(l(d,d),e),f(b,g(b)))). ** KEPT: 3537 (141,9,36,5) O(f(l(d,d),f(e,f(b,g(b))))). ** KEPT: 3538 (141,9,35,6) O(f(f(l(d,d),e),f(g(b),g(b)))). ** KEPT: 3539 (141,9,35,5) O(f(l(d,d),f(e,f(g(b),g(b))))). ** KEPT: 3540 (141,9,27,6) O(f(f(l(d,d),e),l(d,d))). ** KEPT: 3541 (141,9,24,6) O(f(f(l(d,d),e),g(b))). ** KEPT: 3542 (141,9,23,6) O(f(f(l(d,d),e),f(b,e))). ** KEPT: 3543 (141,9,22,6) O(f(f(l(d,d),e),f(e,b))). ** KEPT: 3544 (141,9,21,6) O(f(f(l(d,d),e),f(b,b))). ** KEPT: 3545 (141,9,12,6) O(f(f(l(d,d),e),b)). ** KEPT: 3546 (141,9,7,6) O(f(f(l(d,d),e),e)). ** KEPT: 3547 (14,141) O(f(l(f(a,c),d),e)). ** KEPT: 3548 (14,141) O(f(l(d,f(a,c)),e)). ** KEPT: 3549 (4,141) O(f(l(d,d),f(x,g(x)))). ** KEPT: 3550 (3,141) O(f(l(d,d),f(g(x),x))). 3549 back subsumes: 226 (36,9,27,6) O(f(l(d,d),f(b,g(b)))). 3550 back subsumes: 409 (40,9,27,6) O(f(l(d,d),f(g(b),b))). new given clause: 148 (14,27) O(l(d,f(a,c))). ** KEPT: 3551 (148,9,303,150) -EQUAL(f(f(e,e),l(d,f(a,c))),f(a,c)). ** KEPT: 3552 (148,9,303,15) -EQUAL(f(f(e,e),l(d,f(a,c))),d). ** KEPT: 3553 (148,9,148,150) -EQUAL(f(l(d,f(a,c)),l(d,f(a,c))),f(a,c)). ** KEPT: 3554 (148,9,148,15) -EQUAL(f(l(d,f(a,c)),l(d,f(a,c))),d). ** KEPT: 3555 (148,9,142,150) -EQUAL(f(g(l(d,d)),l(d,f(a,c))),f(a,c)). ** KEPT: 3556 (148,9,142,15) -EQUAL(f(g(l(d,d)),l(d,f(a,c))),d). ** KEPT: 3557 (148,9,141,150) -EQUAL(f(f(l(d,d),e),l(d,f(a,c))),f(a,c)). ** KEPT: 3558 (148,9,141,15) -EQUAL(f(f(l(d,d),e),l(d,f(a,c))),d). ** KEPT: 3559 (148,9,140,150) -EQUAL(f(f(l(d,d),b),l(d,f(a,c))),f(a,c)). ** KEPT: 3560 (148,9,140,15) -EQUAL(f(f(l(d,d),b),l(d,f(a,c))),d). ** KEPT: 3561 (148,9,129,150) -EQUAL(f(f(e,l(d,d)),l(d,f(a,c))),f(a,c)). ** KEPT: 3562 (148,9,129,15) -EQUAL(f(f(e,l(d,d)),l(d,f(a,c))),d). ** KEPT: 3563 (148,9,128,150) -EQUAL(f(f(b,l(d,d)),l(d,f(a,c))),f(a,c)). ** KEPT: 3564 (148,9,128,15) -EQUAL(f(f(b,l(d,d)),l(d,f(a,c))),d). ** KEPT: 3565 (148,9,108,150) -EQUAL(f(f(b,f(e,e)),l(d,f(a,c))),f(a,c)). ** KEPT: 3566 (148,9,108,15) -EQUAL(f(f(b,f(e,e)),l(d,f(a,c))),d). ** KEPT: 3567 (148,9,107,150) -EQUAL(f(f(f(b,e),e),l(d,f(a,c))),f(a,c)). ** KEPT: 3568 (148,9,107,15) -EQUAL(f(f(f(b,e),e),l(d,f(a,c))),d). ** KEPT: 3569 (148,9,106,150) -EQUAL(f(f(f(b,e),b),l(d,f(a,c))),f(a,c)). ** KEPT: 3570 (148,9,106,15) -EQUAL(f(f(f(b,e),b),l(d,f(a,c))),d). ** KEPT: 3571 (148,9,80,150) -EQUAL(f(f(e,f(b,e)),l(d,f(a,c))),f(a,c)). ** KEPT: 3572 (148,9,80,15) -EQUAL(f(f(e,f(b,e)),l(d,f(a,c))),d). ** KEPT: 3573 (148,9,79,150) -EQUAL(f(f(f(e,b),e),l(d,f(a,c))),f(a,c)). ** KEPT: 3574 (148,9,79,15) -EQUAL(f(f(f(e,b),e),l(d,f(a,c))),d). ** KEPT: 3575 (148,9,78,150) -EQUAL(f(f(f(e,b),b),l(d,f(a,c))),f(a,c)). ** KEPT: 3576 (148,9,78,15) -EQUAL(f(f(f(e,b),b),l(d,f(a,c))),d). ** KEPT: 3577 (148,9,69,150) -EQUAL(f(f(e,f(e,b)),l(d,f(a,c))),f(a,c)). ** KEPT: 3578 (148,9,69,15) -EQUAL(f(f(e,f(e,b)),l(d,f(a,c))),d). ** KEPT: 3579 (148,9,68,150) -EQUAL(f(f(b,f(e,b)),l(d,f(a,c))),f(a,c)). ** KEPT: 3580 (148,9,68,15) -EQUAL(f(f(b,f(e,b)),l(d,f(a,c))),d). ** KEPT: 3581 (148,9,57,150) -EQUAL(f(f(b,f(b,e)),l(d,f(a,c))),f(a,c)). ** KEPT: 3582 (148,9,57,15) -EQUAL(f(f(b,f(b,e)),l(d,f(a,c))),d). ** KEPT: 3583 (148,9,56,150) -EQUAL(f(f(f(b,b),e),l(d,f(a,c))),f(a,c)). ** KEPT: 3584 (148,9,56,15) -EQUAL(f(f(f(b,b),e),l(d,f(a,c))),d). ** KEPT: 3585 (148,9,55,150) -EQUAL(f(f(f(b,b),b),l(d,f(a,c))),f(a,c)). ** KEPT: 3586 (148,9,55,15) -EQUAL(f(f(f(b,b),b),l(d,f(a,c))),d). ** KEPT: 3587 (148,9,49,150) -EQUAL(f(f(e,f(b,b)),l(d,f(a,c))),f(a,c)). ** KEPT: 3588 (148,9,49,15) -EQUAL(f(f(e,f(b,b)),l(d,f(a,c))),d). ** KEPT: 3589 (148,9,48,150) -EQUAL(f(f(b,f(b,b)),l(d,f(a,c))),f(a,c)). ** KEPT: 3590 (148,9,48,15) -EQUAL(f(f(b,f(b,b)),l(d,f(a,c))),d). ** KEPT: 3591 (148,9,41,150) -EQUAL(f(f(g(b),e),l(d,f(a,c))),f(a,c)). ** KEPT: 3592 (148,9,41,15) -EQUAL(f(f(g(b),e),l(d,f(a,c))),d). ** KEPT: 3593 (148,9,40,150) -EQUAL(f(f(g(b),b),l(d,f(a,c))),f(a,c)). ** KEPT: 3594 (148,9,40,15) -EQUAL(f(f(g(b),b),l(d,f(a,c))),d). ** KEPT: 3595 (148,9,37,150) -EQUAL(f(f(e,g(b)),l(d,f(a,c))),f(a,c)). ** KEPT: 3596 (148,9,37,15) -EQUAL(f(f(e,g(b)),l(d,f(a,c))),d). ** KEPT: 3597 (148,9,36,150) -EQUAL(f(f(b,g(b)),l(d,f(a,c))),f(a,c)). ** KEPT: 3598 (148,9,36,15) -EQUAL(f(f(b,g(b)),l(d,f(a,c))),d). ** KEPT: 3599 (148,9,35,150) -EQUAL(f(f(g(b),g(b)),l(d,f(a,c))),f(a,c)). ** KEPT: 3600 (148,9,35,15) -EQUAL(f(f(g(b),g(b)),l(d,f(a,c))),d). ** KEPT: 3601 (148,9,27,150) -EQUAL(f(l(d,d),l(d,f(a,c))),f(a,c)). ** KEPT: 3602 (148,9,27,15) -EQUAL(f(l(d,d),l(d,f(a,c))),d). ** KEPT: 3603 (148,9,24,150) -EQUAL(f(g(b),l(d,f(a,c))),f(a,c)). ** KEPT: 3604 (148,9,24,15) -EQUAL(f(g(b),l(d,f(a,c))),d). ** KEPT: 3605 (148,9,23,150) -EQUAL(f(f(b,e),l(d,f(a,c))),f(a,c)). ** KEPT: 3606 (148,9,23,15) -EQUAL(f(f(b,e),l(d,f(a,c))),d). ** KEPT: 3607 (148,9,22,150) -EQUAL(f(f(e,b),l(d,f(a,c))),f(a,c)). ** KEPT: 3608 (148,9,22,15) -EQUAL(f(f(e,b),l(d,f(a,c))),d). ** KEPT: 3609 (148,9,21,150) -EQUAL(f(f(b,b),l(d,f(a,c))),f(a,c)). ** KEPT: 3610 (148,9,21,15) -EQUAL(f(f(b,b),l(d,f(a,c))),d). ** KEPT: 3611 (148,9,12,150) -EQUAL(f(b,l(d,f(a,c))),f(a,c)). ** KEPT: 3612 (148,9,12,15) -EQUAL(f(b,l(d,f(a,c))),d). ** KEPT: 3613 (148,9,7,150) -EQUAL(f(e,l(d,f(a,c))),f(a,c)). ** KEPT: 3614 (148,9,7,15) -EQUAL(f(e,l(d,f(a,c))),d). ** KEPT: 3615 (148,9,303,6) O(f(f(e,e),l(d,f(a,c)))). ** KEPT: 3616 (148,9,303,5) O(f(e,f(e,l(d,f(a,c))))). ** KEPT: 3617 (148,9,148,6) O(f(l(d,f(a,c)),l(d,f(a,c)))). ** KEPT: 3618 (148,9,142,6) O(f(g(l(d,d)),l(d,f(a,c)))). ** KEPT: 3619 (148,9,141,6) O(f(f(l(d,d),e),l(d,f(a,c)))). ** KEPT: 3620 (148,9,141,5) O(f(l(d,d),f(e,l(d,f(a,c))))). ** KEPT: 3621 (148,9,140,6) O(f(f(l(d,d),b),l(d,f(a,c)))). ** KEPT: 3622 (148,9,140,5) O(f(l(d,d),f(b,l(d,f(a,c))))). ** KEPT: 3623 (148,9,129,6) O(f(f(e,l(d,d)),l(d,f(a,c)))). ** KEPT: 3624 (148,9,129,5) O(f(e,f(l(d,d),l(d,f(a,c))))). ** KEPT: 3625 (148,9,128,6) O(f(f(b,l(d,d)),l(d,f(a,c)))). ** KEPT: 3626 (148,9,128,5) O(f(b,f(l(d,d),l(d,f(a,c))))). ** KEPT: 3627 (148,9,108,6) O(f(f(b,f(e,e)),l(d,f(a,c)))). ** KEPT: 3628 (148,9,108,5) O(f(b,f(f(e,e),l(d,f(a,c))))). ** KEPT: 3629 (148,9,107,6) O(f(f(f(b,e),e),l(d,f(a,c)))). ** KEPT: 3630 (148,9,107,5) O(f(f(b,e),f(e,l(d,f(a,c))))). ** KEPT: 3631 (148,9,106,6) O(f(f(f(b,e),b),l(d,f(a,c)))). ** KEPT: 3632 (148,9,106,5) O(f(f(b,e),f(b,l(d,f(a,c))))). ** KEPT: 3633 (148,9,80,6) O(f(f(e,f(b,e)),l(d,f(a,c)))). ** KEPT: 3634 (148,9,80,5) O(f(e,f(f(b,e),l(d,f(a,c))))). ** KEPT: 3635 (148,9,79,6) O(f(f(f(e,b),e),l(d,f(a,c)))). ** KEPT: 3636 (148,9,79,5) O(f(f(e,b),f(e,l(d,f(a,c))))). ** KEPT: 3637 (148,9,78,6) O(f(f(f(e,b),b),l(d,f(a,c)))). ** KEPT: 3638 (148,9,78,5) O(f(f(e,b),f(b,l(d,f(a,c))))). ** KEPT: 3639 (148,9,69,6) O(f(f(e,f(e,b)),l(d,f(a,c)))). ** KEPT: 3640 (148,9,69,5) O(f(e,f(f(e,b),l(d,f(a,c))))). ** KEPT: 3641 (148,9,68,6) O(f(f(b,f(e,b)),l(d,f(a,c)))). ** KEPT: 3642 (148,9,68,5) O(f(b,f(f(e,b),l(d,f(a,c))))). ** KEPT: 3643 (148,9,57,6) O(f(f(b,f(b,e)),l(d,f(a,c)))). ** KEPT: 3644 (148,9,57,5) O(f(b,f(f(b,e),l(d,f(a,c))))). ** KEPT: 3645 (148,9,56,6) O(f(f(f(b,b),e),l(d,f(a,c)))). ** KEPT: 3646 (148,9,56,5) O(f(f(b,b),f(e,l(d,f(a,c))))). ** KEPT: 3647 (148,9,55,6) O(f(f(f(b,b),b),l(d,f(a,c)))). ** KEPT: 3648 (148,9,55,5) O(f(f(b,b),f(b,l(d,f(a,c))))). ** KEPT: 3649 (148,9,49,6) O(f(f(e,f(b,b)),l(d,f(a,c)))). ** KEPT: 3650 (148,9,49,5) O(f(e,f(f(b,b),l(d,f(a,c))))). ** KEPT: 3651 (148,9,48,6) O(f(f(b,f(b,b)),l(d,f(a,c)))). ** KEPT: 3652 (148,9,48,5) O(f(b,f(f(b,b),l(d,f(a,c))))). ** KEPT: 3653 (148,9,41,6) O(f(f(g(b),e),l(d,f(a,c)))). ** KEPT: 3654 (148,9,41,5) O(f(g(b),f(e,l(d,f(a,c))))). ** KEPT: 3655 (148,9,40,6) O(f(f(g(b),b),l(d,f(a,c)))). ** KEPT: 3656 (148,9,37,6) O(f(f(e,g(b)),l(d,f(a,c)))). ** KEPT: 3657 (148,9,37,5) O(f(e,f(g(b),l(d,f(a,c))))). ** KEPT: 3658 (148,9,36,6) O(f(f(b,g(b)),l(d,f(a,c)))). ** KEPT: 3659 (148,9,35,6) O(f(f(g(b),g(b)),l(d,f(a,c)))). ** KEPT: 3660 (148,9,35,5) O(f(g(b),f(g(b),l(d,f(a,c))))). ** KEPT: 3661 (148,9,27,6) O(f(l(d,d),l(d,f(a,c)))). ** KEPT: 3662 (148,9,24,6) O(f(g(b),l(d,f(a,c)))). ** KEPT: 3663 (148,9,23,6) O(f(f(b,e),l(d,f(a,c)))). ** KEPT: 3664 (148,9,23,5) O(f(b,f(e,l(d,f(a,c))))). ** KEPT: 3665 (148,9,22,6) O(f(f(e,b),l(d,f(a,c)))). ** KEPT: 3666 (148,9,22,5) O(f(e,f(b,l(d,f(a,c))))). ** KEPT: 3667 (148,9,21,6) O(f(f(b,b),l(d,f(a,c)))). ** KEPT: 3668 (148,9,21,5) O(f(b,f(b,l(d,f(a,c))))). ** KEPT: 3669 (148,9,303,150) -EQUAL(f(l(d,f(a,c)),f(e,e)),f(a,c)). ** KEPT: 3670 (148,9,303,15) -EQUAL(f(l(d,f(a,c)),f(e,e)),d). ** KEPT: 3671 (148,9,142,150) -EQUAL(f(l(d,f(a,c)),g(l(d,d))),f(a,c)). ** KEPT: 3672 (148,9,142,15) -EQUAL(f(l(d,f(a,c)),g(l(d,d))),d). ** KEPT: 3673 (148,9,141,150) -EQUAL(f(l(d,f(a,c)),f(l(d,d),e)),f(a,c)). ** KEPT: 3674 (148,9,141,15) -EQUAL(f(l(d,f(a,c)),f(l(d,d),e)),d). ** KEPT: 3675 (148,9,140,150) -EQUAL(f(l(d,f(a,c)),f(l(d,d),b)),f(a,c)). ** KEPT: 3676 (148,9,140,15) -EQUAL(f(l(d,f(a,c)),f(l(d,d),b)),d). ** KEPT: 3677 (148,9,129,150) -EQUAL(f(l(d,f(a,c)),f(e,l(d,d))),f(a,c)). ** KEPT: 3678 (148,9,129,15) -EQUAL(f(l(d,f(a,c)),f(e,l(d,d))),d). ** KEPT: 3679 (148,9,128,150) -EQUAL(f(l(d,f(a,c)),f(b,l(d,d))),f(a,c)). ** KEPT: 3680 (148,9,128,15) -EQUAL(f(l(d,f(a,c)),f(b,l(d,d))),d). ** KEPT: 3681 (148,9,108,150) -EQUAL(f(l(d,f(a,c)),f(b,f(e,e))),f(a,c)). ** KEPT: 3682 (148,9,108,15) -EQUAL(f(l(d,f(a,c)),f(b,f(e,e))),d). ** KEPT: 3683 (148,9,107,150) -EQUAL(f(l(d,f(a,c)),f(f(b,e),e)),f(a,c)). ** KEPT: 3684 (148,9,107,15) -EQUAL(f(l(d,f(a,c)),f(f(b,e),e)),d). ** KEPT: 3685 (148,9,106,150) -EQUAL(f(l(d,f(a,c)),f(f(b,e),b)),f(a,c)). ** KEPT: 3686 (148,9,106,15) -EQUAL(f(l(d,f(a,c)),f(f(b,e),b)),d). ** KEPT: 3687 (148,9,80,150) -EQUAL(f(l(d,f(a,c)),f(e,f(b,e))),f(a,c)). ** KEPT: 3688 (148,9,80,15) -EQUAL(f(l(d,f(a,c)),f(e,f(b,e))),d). ** KEPT: 3689 (148,9,79,150) -EQUAL(f(l(d,f(a,c)),f(f(e,b),e)),f(a,c)). ** KEPT: 3690 (148,9,79,15) -EQUAL(f(l(d,f(a,c)),f(f(e,b),e)),d). ** KEPT: 3691 (148,9,78,150) -EQUAL(f(l(d,f(a,c)),f(f(e,b),b)),f(a,c)). ** KEPT: 3692 (148,9,78,15) -EQUAL(f(l(d,f(a,c)),f(f(e,b),b)),d). ** KEPT: 3693 (148,9,69,150) -EQUAL(f(l(d,f(a,c)),f(e,f(e,b))),f(a,c)). ** KEPT: 3694 (148,9,69,15) -EQUAL(f(l(d,f(a,c)),f(e,f(e,b))),d). ** KEPT: 3695 (148,9,68,150) -EQUAL(f(l(d,f(a,c)),f(b,f(e,b))),f(a,c)). ** KEPT: 3696 (148,9,68,15) -EQUAL(f(l(d,f(a,c)),f(b,f(e,b))),d). ** KEPT: 3697 (148,9,57,150) -EQUAL(f(l(d,f(a,c)),f(b,f(b,e))),f(a,c)). ** KEPT: 3698 (148,9,57,15) -EQUAL(f(l(d,f(a,c)),f(b,f(b,e))),d). ** KEPT: 3699 (148,9,56,150) -EQUAL(f(l(d,f(a,c)),f(f(b,b),e)),f(a,c)). ** KEPT: 3700 (148,9,56,15) -EQUAL(f(l(d,f(a,c)),f(f(b,b),e)),d). ** KEPT: 3701 (148,9,55,150) -EQUAL(f(l(d,f(a,c)),f(f(b,b),b)),f(a,c)). ** KEPT: 3702 (148,9,55,15) -EQUAL(f(l(d,f(a,c)),f(f(b,b),b)),d). ** KEPT: 3703 (148,9,49,150) -EQUAL(f(l(d,f(a,c)),f(e,f(b,b))),f(a,c)). ** KEPT: 3704 (148,9,49,15) -EQUAL(f(l(d,f(a,c)),f(e,f(b,b))),d). ** KEPT: 3705 (148,9,48,150) -EQUAL(f(l(d,f(a,c)),f(b,f(b,b))),f(a,c)). ** KEPT: 3706 (148,9,48,15) -EQUAL(f(l(d,f(a,c)),f(b,f(b,b))),d). ** KEPT: 3707 (148,9,41,150) -EQUAL(f(l(d,f(a,c)),f(g(b),e)),f(a,c)). ** KEPT: 3708 (148,9,41,15) -EQUAL(f(l(d,f(a,c)),f(g(b),e)),d). ** KEPT: 3709 (148,9,40,150) -EQUAL(f(l(d,f(a,c)),f(g(b),b)),f(a,c)). ** KEPT: 3710 (148,9,40,15) -EQUAL(f(l(d,f(a,c)),f(g(b),b)),d). ** KEPT: 3711 (148,9,37,150) -EQUAL(f(l(d,f(a,c)),f(e,g(b))),f(a,c)). ** KEPT: 3712 (148,9,37,15) -EQUAL(f(l(d,f(a,c)),f(e,g(b))),d). ** KEPT: 3713 (148,9,36,150) -EQUAL(f(l(d,f(a,c)),f(b,g(b))),f(a,c)). ** KEPT: 3714 (148,9,36,15) -EQUAL(f(l(d,f(a,c)),f(b,g(b))),d). ** KEPT: 3715 (148,9,35,150) -EQUAL(f(l(d,f(a,c)),f(g(b),g(b))),f(a,c)). ** KEPT: 3716 (148,9,35,15) -EQUAL(f(l(d,f(a,c)),f(g(b),g(b))),d). ** KEPT: 3717 (148,9,27,150) -EQUAL(f(l(d,f(a,c)),l(d,d)),f(a,c)). ** KEPT: 3718 (148,9,27,15) -EQUAL(f(l(d,f(a,c)),l(d,d)),d). ** KEPT: 3719 (148,9,24,150) -EQUAL(f(l(d,f(a,c)),g(b)),f(a,c)). ** KEPT: 3720 (148,9,24,15) -EQUAL(f(l(d,f(a,c)),g(b)),d). ** KEPT: 3721 (148,9,23,150) -EQUAL(f(l(d,f(a,c)),f(b,e)),f(a,c)). ** KEPT: 3722 (148,9,23,15) -EQUAL(f(l(d,f(a,c)),f(b,e)),d). ** KEPT: 3723 (148,9,22,150) -EQUAL(f(l(d,f(a,c)),f(e,b)),f(a,c)). ** KEPT: 3724 (148,9,22,15) -EQUAL(f(l(d,f(a,c)),f(e,b)),d). ** KEPT: 3725 (148,9,21,150) -EQUAL(f(l(d,f(a,c)),f(b,b)),f(a,c)). ** KEPT: 3726 (148,9,21,15) -EQUAL(f(l(d,f(a,c)),f(b,b)),d). ** KEPT: 3727 (148,9,12,150) -EQUAL(f(l(d,f(a,c)),b),f(a,c)). ** KEPT: 3728 (148,9,12,15) -EQUAL(f(l(d,f(a,c)),b),d). ** KEPT: 3729 (148,9,7,150) -EQUAL(f(l(d,f(a,c)),e),f(a,c)). ** KEPT: 3730 (148,9,7,15) -EQUAL(f(l(d,f(a,c)),e),d). ** KEPT: 3731 (148,9,303,6) O(f(l(d,f(a,c)),f(e,e))). ** KEPT: 3732 (148,9,142,6) O(f(l(d,f(a,c)),g(l(d,d)))). ** KEPT: 3733 (148,9,141,6) O(f(l(d,f(a,c)),f(l(d,d),e))). ** KEPT: 3734 (148,9,140,6) O(f(l(d,f(a,c)),f(l(d,d),b))). ** KEPT: 3735 (148,9,129,6) O(f(l(d,f(a,c)),f(e,l(d,d)))). ** KEPT: 3736 (148,9,128,6) O(f(l(d,f(a,c)),f(b,l(d,d)))). ** KEPT: 3737 (148,9,108,6) O(f(l(d,f(a,c)),f(b,f(e,e)))). ** KEPT: 3738 (148,9,107,6) O(f(l(d,f(a,c)),f(f(b,e),e))). ** KEPT: 3739 (148,9,106,6) O(f(l(d,f(a,c)),f(f(b,e),b))). ** KEPT: 3740 (148,9,80,6) O(f(l(d,f(a,c)),f(e,f(b,e)))). ** KEPT: 3741 (148,9,79,6) O(f(l(d,f(a,c)),f(f(e,b),e))). ** KEPT: 3742 (148,9,78,6) O(f(l(d,f(a,c)),f(f(e,b),b))). ** KEPT: 3743 (148,9,69,6) O(f(l(d,f(a,c)),f(e,f(e,b)))). ** KEPT: 3744 (148,9,68,6) O(f(l(d,f(a,c)),f(b,f(e,b)))). ** KEPT: 3745 (148,9,57,6) O(f(l(d,f(a,c)),f(b,f(b,e)))). ** KEPT: 3746 (148,9,56,6) O(f(l(d,f(a,c)),f(f(b,b),e))). ** KEPT: 3747 (148,9,55,6) O(f(l(d,f(a,c)),f(f(b,b),b))). ** KEPT: 3748 (148,9,49,6) O(f(l(d,f(a,c)),f(e,f(b,b)))). ** KEPT: 3749 (148,9,48,6) O(f(l(d,f(a,c)),f(b,f(b,b)))). ** KEPT: 3750 (148,9,41,6) O(f(l(d,f(a,c)),f(g(b),e))). ** KEPT: 3751 (148,9,40,6) O(f(l(d,f(a,c)),f(g(b),b))). ** KEPT: 3752 (148,9,37,6) O(f(l(d,f(a,c)),f(e,g(b)))). ** KEPT: 3753 (148,9,36,6) O(f(l(d,f(a,c)),f(b,g(b)))). ** KEPT: 3754 (148,9,35,6) O(f(l(d,f(a,c)),f(g(b),g(b)))). ** KEPT: 3755 (148,9,27,6) O(f(l(d,f(a,c)),l(d,d))). ** KEPT: 3756 (148,9,24,6) O(f(l(d,f(a,c)),g(b))). ** KEPT: 3757 (148,9,23,6) O(f(l(d,f(a,c)),f(b,e))). ** KEPT: 3758 (148,9,22,6) O(f(l(d,f(a,c)),f(e,b))). ** KEPT: 3759 (148,9,21,6) O(f(l(d,f(a,c)),f(b,b))). new given clause: 149 (14,27) O(l(f(a,c),d)). ** KEPT: 3760 (149,9,303,150) -EQUAL(f(f(e,e),l(f(a,c),d)),f(a,c)). ** KEPT: 3761 (149,9,303,15) -EQUAL(f(f(e,e),l(f(a,c),d)),d). ** KEPT: 3762 (149,9,149,150) -EQUAL(f(l(f(a,c),d),l(f(a,c),d)),f(a,c)). ** KEPT: 3763 (149,9,149,15) -EQUAL(f(l(f(a,c),d),l(f(a,c),d)),d). ** KEPT: 3764 (149,9,148,150) -EQUAL(f(l(d,f(a,c)),l(f(a,c),d)),f(a,c)). ** KEPT: 3765 (149,9,148,15) -EQUAL(f(l(d,f(a,c)),l(f(a,c),d)),d). ** KEPT: 3766 (149,9,142,150) -EQUAL(f(g(l(d,d)),l(f(a,c),d)),f(a,c)). ** KEPT: 3767 (149,9,142,15) -EQUAL(f(g(l(d,d)),l(f(a,c),d)),d). ** KEPT: 3768 (149,9,141,150) -EQUAL(f(f(l(d,d),e),l(f(a,c),d)),f(a,c)). ** KEPT: 3769 (149,9,141,15) -EQUAL(f(f(l(d,d),e),l(f(a,c),d)),d). ** KEPT: 3770 (149,9,140,150) -EQUAL(f(f(l(d,d),b),l(f(a,c),d)),f(a,c)). ** KEPT: 3771 (149,9,140,15) -EQUAL(f(f(l(d,d),b),l(f(a,c),d)),d). ** KEPT: 3772 (149,9,129,150) -EQUAL(f(f(e,l(d,d)),l(f(a,c),d)),f(a,c)). ** KEPT: 3773 (149,9,129,15) -EQUAL(f(f(e,l(d,d)),l(f(a,c),d)),d). ** KEPT: 3774 (149,9,128,150) -EQUAL(f(f(b,l(d,d)),l(f(a,c),d)),f(a,c)). ** KEPT: 3775 (149,9,128,15) -EQUAL(f(f(b,l(d,d)),l(f(a,c),d)),d). ** KEPT: 3776 (149,9,108,150) -EQUAL(f(f(b,f(e,e)),l(f(a,c),d)),f(a,c)). ** KEPT: 3777 (149,9,108,15) -EQUAL(f(f(b,f(e,e)),l(f(a,c),d)),d). ** KEPT: 3778 (149,9,107,150) -EQUAL(f(f(f(b,e),e),l(f(a,c),d)),f(a,c)). ** KEPT: 3779 (149,9,107,15) -EQUAL(f(f(f(b,e),e),l(f(a,c),d)),d). ** KEPT: 3780 (149,9,106,150) -EQUAL(f(f(f(b,e),b),l(f(a,c),d)),f(a,c)). ** KEPT: 3781 (149,9,106,15) -EQUAL(f(f(f(b,e),b),l(f(a,c),d)),d). ** KEPT: 3782 (149,9,80,150) -EQUAL(f(f(e,f(b,e)),l(f(a,c),d)),f(a,c)). ** KEPT: 3783 (149,9,80,15) -EQUAL(f(f(e,f(b,e)),l(f(a,c),d)),d). ** KEPT: 3784 (149,9,79,150) -EQUAL(f(f(f(e,b),e),l(f(a,c),d)),f(a,c)). ** KEPT: 3785 (149,9,79,15) -EQUAL(f(f(f(e,b),e),l(f(a,c),d)),d). ** KEPT: 3786 (149,9,78,150) -EQUAL(f(f(f(e,b),b),l(f(a,c),d)),f(a,c)). ** KEPT: 3787 (149,9,78,15) -EQUAL(f(f(f(e,b),b),l(f(a,c),d)),d). ** KEPT: 3788 (149,9,69,150) -EQUAL(f(f(e,f(e,b)),l(f(a,c),d)),f(a,c)). ** KEPT: 3789 (149,9,69,15) -EQUAL(f(f(e,f(e,b)),l(f(a,c),d)),d). ** KEPT: 3790 (149,9,68,150) -EQUAL(f(f(b,f(e,b)),l(f(a,c),d)),f(a,c)). ** KEPT: 3791 (149,9,68,15) -EQUAL(f(f(b,f(e,b)),l(f(a,c),d)),d). ** KEPT: 3792 (149,9,57,150) -EQUAL(f(f(b,f(b,e)),l(f(a,c),d)),f(a,c)). ** KEPT: 3793 (149,9,57,15) -EQUAL(f(f(b,f(b,e)),l(f(a,c),d)),d). ** KEPT: 3794 (149,9,56,150) -EQUAL(f(f(f(b,b),e),l(f(a,c),d)),f(a,c)). ** KEPT: 3795 (149,9,56,15) -EQUAL(f(f(f(b,b),e),l(f(a,c),d)),d). ** KEPT: 3796 (149,9,55,150) -EQUAL(f(f(f(b,b),b),l(f(a,c),d)),f(a,c)). ** KEPT: 3797 (149,9,55,15) -EQUAL(f(f(f(b,b),b),l(f(a,c),d)),d). ** KEPT: 3798 (149,9,49,150) -EQUAL(f(f(e,f(b,b)),l(f(a,c),d)),f(a,c)). ** KEPT: 3799 (149,9,49,15) -EQUAL(f(f(e,f(b,b)),l(f(a,c),d)),d). ** KEPT: 3800 (149,9,48,150) -EQUAL(f(f(b,f(b,b)),l(f(a,c),d)),f(a,c)). ** KEPT: 3801 (149,9,48,15) -EQUAL(f(f(b,f(b,b)),l(f(a,c),d)),d). ** KEPT: 3802 (149,9,41,150) -EQUAL(f(f(g(b),e),l(f(a,c),d)),f(a,c)). ** KEPT: 3803 (149,9,41,15) -EQUAL(f(f(g(b),e),l(f(a,c),d)),d). ** KEPT: 3804 (149,9,40,150) -EQUAL(f(f(g(b),b),l(f(a,c),d)),f(a,c)). ** KEPT: 3805 (149,9,40,15) -EQUAL(f(f(g(b),b),l(f(a,c),d)),d). ** KEPT: 3806 (149,9,37,150) -EQUAL(f(f(e,g(b)),l(f(a,c),d)),f(a,c)). ** KEPT: 3807 (149,9,37,15) -EQUAL(f(f(e,g(b)),l(f(a,c),d)),d). ** KEPT: 3808 (149,9,36,150) -EQUAL(f(f(b,g(b)),l(f(a,c),d)),f(a,c)). ** KEPT: 3809 (149,9,36,15) -EQUAL(f(f(b,g(b)),l(f(a,c),d)),d). ** KEPT: 3810 (149,9,35,150) -EQUAL(f(f(g(b),g(b)),l(f(a,c),d)),f(a,c)). ** KEPT: 3811 (149,9,35,15) -EQUAL(f(f(g(b),g(b)),l(f(a,c),d)),d). ** KEPT: 3812 (149,9,27,150) -EQUAL(f(l(d,d),l(f(a,c),d)),f(a,c)). ** KEPT: 3813 (149,9,27,15) -EQUAL(f(l(d,d),l(f(a,c),d)),d). ** KEPT: 3814 (149,9,24,150) -EQUAL(f(g(b),l(f(a,c),d)),f(a,c)). ** KEPT: 3815 (149,9,24,15) -EQUAL(f(g(b),l(f(a,c),d)),d). ** KEPT: 3816 (149,9,23,150) -EQUAL(f(f(b,e),l(f(a,c),d)),f(a,c)). ** KEPT: 3817 (149,9,23,15) -EQUAL(f(f(b,e),l(f(a,c),d)),d). ** KEPT: 3818 (149,9,22,150) -EQUAL(f(f(e,b),l(f(a,c),d)),f(a,c)). ** KEPT: 3819 (149,9,22,15) -EQUAL(f(f(e,b),l(f(a,c),d)),d). ** KEPT: 3820 (149,9,21,150) -EQUAL(f(f(b,b),l(f(a,c),d)),f(a,c)). ** KEPT: 3821 (149,9,21,15) -EQUAL(f(f(b,b),l(f(a,c),d)),d). ** KEPT: 3822 (149,9,12,150) -EQUAL(f(b,l(f(a,c),d)),f(a,c)). ** KEPT: 3823 (149,9,12,15) -EQUAL(f(b,l(f(a,c),d)),d). ** KEPT: 3824 (149,9,7,150) -EQUAL(f(e,l(f(a,c),d)),f(a,c)). ** KEPT: 3825 (149,9,7,15) -EQUAL(f(e,l(f(a,c),d)),d). ** KEPT: 3826 (149,9,303,6) O(f(f(e,e),l(f(a,c),d))). ** KEPT: 3827 (149,9,303,5) O(f(e,f(e,l(f(a,c),d)))). ** KEPT: 3828 (149,9,149,6) O(f(l(f(a,c),d),l(f(a,c),d))). ** KEPT: 3829 (149,9,148,6) O(f(l(d,f(a,c)),l(f(a,c),d))). ** KEPT: 3830 (149,9,142,6) O(f(g(l(d,d)),l(f(a,c),d))). ** KEPT: 3831 (149,9,141,6) O(f(f(l(d,d),e),l(f(a,c),d))). ** KEPT: 3832 (149,9,141,5) O(f(l(d,d),f(e,l(f(a,c),d)))). ** KEPT: 3833 (149,9,140,6) O(f(f(l(d,d),b),l(f(a,c),d))). ** KEPT: 3834 (149,9,140,5) O(f(l(d,d),f(b,l(f(a,c),d)))). ** KEPT: 3835 (149,9,129,6) O(f(f(e,l(d,d)),l(f(a,c),d))). ** KEPT: 3836 (149,9,129,5) O(f(e,f(l(d,d),l(f(a,c),d)))). ** KEPT: 3837 (149,9,128,6) O(f(f(b,l(d,d)),l(f(a,c),d))). ** KEPT: 3838 (149,9,128,5) O(f(b,f(l(d,d),l(f(a,c),d)))). ** KEPT: 3839 (149,9,108,6) O(f(f(b,f(e,e)),l(f(a,c),d))). ** KEPT: 3840 (149,9,108,5) O(f(b,f(f(e,e),l(f(a,c),d)))). ** KEPT: 3841 (149,9,107,6) O(f(f(f(b,e),e),l(f(a,c),d))). ** KEPT: 3842 (149,9,107,5) O(f(f(b,e),f(e,l(f(a,c),d)))). ** KEPT: 3843 (149,9,106,6) O(f(f(f(b,e),b),l(f(a,c),d))). ** KEPT: 3844 (149,9,106,5) O(f(f(b,e),f(b,l(f(a,c),d)))). ** KEPT: 3845 (149,9,80,6) O(f(f(e,f(b,e)),l(f(a,c),d))). ** KEPT: 3846 (149,9,80,5) O(f(e,f(f(b,e),l(f(a,c),d)))). ** KEPT: 3847 (149,9,79,6) O(f(f(f(e,b),e),l(f(a,c),d))). ** KEPT: 3848 (149,9,79,5) O(f(f(e,b),f(e,l(f(a,c),d)))). ** KEPT: 3849 (149,9,78,6) O(f(f(f(e,b),b),l(f(a,c),d))). ** KEPT: 3850 (149,9,78,5) O(f(f(e,b),f(b,l(f(a,c),d)))). ** KEPT: 3851 (149,9,69,6) O(f(f(e,f(e,b)),l(f(a,c),d))). ** KEPT: 3852 (149,9,69,5) O(f(e,f(f(e,b),l(f(a,c),d)))). ** KEPT: 3853 (149,9,68,6) O(f(f(b,f(e,b)),l(f(a,c),d))). ** KEPT: 3854 (149,9,68,5) O(f(b,f(f(e,b),l(f(a,c),d)))). ** KEPT: 3855 (149,9,57,6) O(f(f(b,f(b,e)),l(f(a,c),d))). ** KEPT: 3856 (149,9,57,5) O(f(b,f(f(b,e),l(f(a,c),d)))). ** KEPT: 3857 (149,9,56,6) O(f(f(f(b,b),e),l(f(a,c),d))). ** KEPT: 3858 (149,9,56,5) O(f(f(b,b),f(e,l(f(a,c),d)))). ** KEPT: 3859 (149,9,55,6) O(f(f(f(b,b),b),l(f(a,c),d))). ** KEPT: 3860 (149,9,55,5) O(f(f(b,b),f(b,l(f(a,c),d)))). ** KEPT: 3861 (149,9,49,6) O(f(f(e,f(b,b)),l(f(a,c),d))). ** KEPT: 3862 (149,9,49,5) O(f(e,f(f(b,b),l(f(a,c),d)))). ** KEPT: 3863 (149,9,48,6) O(f(f(b,f(b,b)),l(f(a,c),d))). ** KEPT: 3864 (149,9,48,5) O(f(b,f(f(b,b),l(f(a,c),d)))). ** KEPT: 3865 (149,9,41,6) O(f(f(g(b),e),l(f(a,c),d))). ** KEPT: 3866 (149,9,41,5) O(f(g(b),f(e,l(f(a,c),d)))). ** KEPT: 3867 (149,9,40,6) O(f(f(g(b),b),l(f(a,c),d))). ** KEPT: 3868 (149,9,37,6) O(f(f(e,g(b)),l(f(a,c),d))). ** KEPT: 3869 (149,9,37,5) O(f(e,f(g(b),l(f(a,c),d)))). ** KEPT: 3870 (149,9,36,6) O(f(f(b,g(b)),l(f(a,c),d))). ** KEPT: 3871 (149,9,35,6) O(f(f(g(b),g(b)),l(f(a,c),d))). ** KEPT: 3872 (149,9,35,5) O(f(g(b),f(g(b),l(f(a,c),d)))). ** KEPT: 3873 (149,9,27,6) O(f(l(d,d),l(f(a,c),d))). ** KEPT: 3874 (149,9,24,6) O(f(g(b),l(f(a,c),d))). ** KEPT: 3875 (149,9,23,6) O(f(f(b,e),l(f(a,c),d))). ** KEPT: 3876 (149,9,23,5) O(f(b,f(e,l(f(a,c),d)))). ** KEPT: 3877 (149,9,22,6) O(f(f(e,b),l(f(a,c),d))). ** KEPT: 3878 (149,9,22,5) O(f(e,f(b,l(f(a,c),d)))). ** KEPT: 3879 (149,9,21,6) O(f(f(b,b),l(f(a,c),d))). ** KEPT: 3880 (149,9,21,5) O(f(b,f(b,l(f(a,c),d)))). ** KEPT: 3881 (149,9,303,150) -EQUAL(f(l(f(a,c),d),f(e,e)),f(a,c)). ** KEPT: 3882 (149,9,303,15) -EQUAL(f(l(f(a,c),d),f(e,e)),d). ** KEPT: 3883 (149,9,148,150) -EQUAL(f(l(f(a,c),d),l(d,f(a,c))),f(a,c)). ** KEPT: 3884 (149,9,148,15) -EQUAL(f(l(f(a,c),d),l(d,f(a,c))),d). ** KEPT: 3885 (149,9,142,150) -EQUAL(f(l(f(a,c),d),g(l(d,d))),f(a,c)). ** KEPT: 3886 (149,9,142,15) -EQUAL(f(l(f(a,c),d),g(l(d,d))),d). ** KEPT: 3887 (149,9,141,150) -EQUAL(f(l(f(a,c),d),f(l(d,d),e)),f(a,c)). ** KEPT: 3888 (149,9,141,15) -EQUAL(f(l(f(a,c),d),f(l(d,d),e)),d). ** KEPT: 3889 (149,9,140,150) -EQUAL(f(l(f(a,c),d),f(l(d,d),b)),f(a,c)). ** KEPT: 3890 (149,9,140,15) -EQUAL(f(l(f(a,c),d),f(l(d,d),b)),d). ** KEPT: 3891 (149,9,129,150) -EQUAL(f(l(f(a,c),d),f(e,l(d,d))),f(a,c)). ** KEPT: 3892 (149,9,129,15) -EQUAL(f(l(f(a,c),d),f(e,l(d,d))),d). ** KEPT: 3893 (149,9,128,150) -EQUAL(f(l(f(a,c),d),f(b,l(d,d))),f(a,c)). ** KEPT: 3894 (149,9,128,15) -EQUAL(f(l(f(a,c),d),f(b,l(d,d))),d). ** KEPT: 3895 (149,9,108,150) -EQUAL(f(l(f(a,c),d),f(b,f(e,e))),f(a,c)). ** KEPT: 3896 (149,9,108,15) -EQUAL(f(l(f(a,c),d),f(b,f(e,e))),d). ** KEPT: 3897 (149,9,107,150) -EQUAL(f(l(f(a,c),d),f(f(b,e),e)),f(a,c)). ** KEPT: 3898 (149,9,107,15) -EQUAL(f(l(f(a,c),d),f(f(b,e),e)),d). ** KEPT: 3899 (149,9,106,150) -EQUAL(f(l(f(a,c),d),f(f(b,e),b)),f(a,c)). ** KEPT: 3900 (149,9,106,15) -EQUAL(f(l(f(a,c),d),f(f(b,e),b)),d). ** KEPT: 3901 (149,9,80,150) -EQUAL(f(l(f(a,c),d),f(e,f(b,e))),f(a,c)). ** KEPT: 3902 (149,9,80,15) -EQUAL(f(l(f(a,c),d),f(e,f(b,e))),d). ** KEPT: 3903 (149,9,79,150) -EQUAL(f(l(f(a,c),d),f(f(e,b),e)),f(a,c)). ** KEPT: 3904 (149,9,79,15) -EQUAL(f(l(f(a,c),d),f(f(e,b),e)),d). ** KEPT: 3905 (149,9,78,150) -EQUAL(f(l(f(a,c),d),f(f(e,b),b)),f(a,c)). ** KEPT: 3906 (149,9,78,15) -EQUAL(f(l(f(a,c),d),f(f(e,b),b)),d). ** KEPT: 3907 (149,9,69,150) -EQUAL(f(l(f(a,c),d),f(e,f(e,b))),f(a,c)). ** KEPT: 3908 (149,9,69,15) -EQUAL(f(l(f(a,c),d),f(e,f(e,b))),d). ** KEPT: 3909 (149,9,68,150) -EQUAL(f(l(f(a,c),d),f(b,f(e,b))),f(a,c)). ** KEPT: 3910 (149,9,68,15) -EQUAL(f(l(f(a,c),d),f(b,f(e,b))),d). ** KEPT: 3911 (149,9,57,150) -EQUAL(f(l(f(a,c),d),f(b,f(b,e))),f(a,c)). ** KEPT: 3912 (149,9,57,15) -EQUAL(f(l(f(a,c),d),f(b,f(b,e))),d). ** KEPT: 3913 (149,9,56,150) -EQUAL(f(l(f(a,c),d),f(f(b,b),e)),f(a,c)). ** KEPT: 3914 (149,9,56,15) -EQUAL(f(l(f(a,c),d),f(f(b,b),e)),d). ** KEPT: 3915 (149,9,55,150) -EQUAL(f(l(f(a,c),d),f(f(b,b),b)),f(a,c)). ** KEPT: 3916 (149,9,55,15) -EQUAL(f(l(f(a,c),d),f(f(b,b),b)),d). ** KEPT: 3917 (149,9,49,150) -EQUAL(f(l(f(a,c),d),f(e,f(b,b))),f(a,c)). ** KEPT: 3918 (149,9,49,15) -EQUAL(f(l(f(a,c),d),f(e,f(b,b))),d). ** KEPT: 3919 (149,9,48,150) -EQUAL(f(l(f(a,c),d),f(b,f(b,b))),f(a,c)). ** KEPT: 3920 (149,9,48,15) -EQUAL(f(l(f(a,c),d),f(b,f(b,b))),d). ** KEPT: 3921 (149,9,41,150) -EQUAL(f(l(f(a,c),d),f(g(b),e)),f(a,c)). ** KEPT: 3922 (149,9,41,15) -EQUAL(f(l(f(a,c),d),f(g(b),e)),d). ** KEPT: 3923 (149,9,40,150) -EQUAL(f(l(f(a,c),d),f(g(b),b)),f(a,c)). ** KEPT: 3924 (149,9,40,15) -EQUAL(f(l(f(a,c),d),f(g(b),b)),d). ** KEPT: 3925 (149,9,37,150) -EQUAL(f(l(f(a,c),d),f(e,g(b))),f(a,c)). ** KEPT: 3926 (149,9,37,15) -EQUAL(f(l(f(a,c),d),f(e,g(b))),d). ** KEPT: 3927 (149,9,36,150) -EQUAL(f(l(f(a,c),d),f(b,g(b))),f(a,c)). ** KEPT: 3928 (149,9,36,15) -EQUAL(f(l(f(a,c),d),f(b,g(b))),d). ** KEPT: 3929 (149,9,35,150) -EQUAL(f(l(f(a,c),d),f(g(b),g(b))),f(a,c)). ** KEPT: 3930 (149,9,35,15) -EQUAL(f(l(f(a,c),d),f(g(b),g(b))),d). ** KEPT: 3931 (149,9,27,150) -EQUAL(f(l(f(a,c),d),l(d,d)),f(a,c)). ** KEPT: 3932 (149,9,27,15) -EQUAL(f(l(f(a,c),d),l(d,d)),d). ** KEPT: 3933 (149,9,24,150) -EQUAL(f(l(f(a,c),d),g(b)),f(a,c)). ** KEPT: 3934 (149,9,24,15) -EQUAL(f(l(f(a,c),d),g(b)),d). ** KEPT: 3935 (149,9,23,150) -EQUAL(f(l(f(a,c),d),f(b,e)),f(a,c)). ** KEPT: 3936 (149,9,23,15) -EQUAL(f(l(f(a,c),d),f(b,e)),d). ** KEPT: 3937 (149,9,22,150) -EQUAL(f(l(f(a,c),d),f(e,b)),f(a,c)). ** KEPT: 3938 (149,9,22,15) -EQUAL(f(l(f(a,c),d),f(e,b)),d). ** KEPT: 3939 (149,9,21,150) -EQUAL(f(l(f(a,c),d),f(b,b)),f(a,c)). ** KEPT: 3940 (149,9,21,15) -EQUAL(f(l(f(a,c),d),f(b,b)),d). ** KEPT: 3941 (149,9,12,150) -EQUAL(f(l(f(a,c),d),b),f(a,c)). ** KEPT: 3942 (149,9,12,15) -EQUAL(f(l(f(a,c),d),b),d). ** KEPT: 3943 (149,9,7,150) -EQUAL(f(l(f(a,c),d),e),f(a,c)). ** KEPT: 3944 (149,9,7,15) -EQUAL(f(l(f(a,c),d),e),d). ** KEPT: 3945 (149,9,303,6) O(f(l(f(a,c),d),f(e,e))). ** KEPT: 3946 (149,9,148,6) O(f(l(f(a,c),d),l(d,f(a,c)))). ** KEPT: 3947 (149,9,142,6) O(f(l(f(a,c),d),g(l(d,d)))). ** KEPT: 3948 (149,9,141,6) O(f(l(f(a,c),d),f(l(d,d),e))). ** KEPT: 3949 (149,9,140,6) O(f(l(f(a,c),d),f(l(d,d),b))). ** KEPT: 3950 (149,9,129,6) O(f(l(f(a,c),d),f(e,l(d,d)))). ** KEPT: 3951 (149,9,128,6) O(f(l(f(a,c),d),f(b,l(d,d)))). ** KEPT: 3952 (149,9,108,6) O(f(l(f(a,c),d),f(b,f(e,e)))). ** KEPT: 3953 (149,9,107,6) O(f(l(f(a,c),d),f(f(b,e),e))). ** KEPT: 3954 (149,9,106,6) O(f(l(f(a,c),d),f(f(b,e),b))). ** KEPT: 3955 (149,9,80,6) O(f(l(f(a,c),d),f(e,f(b,e)))). ** KEPT: 3956 (149,9,79,6) O(f(l(f(a,c),d),f(f(e,b),e))). ** KEPT: 3957 (149,9,78,6) O(f(l(f(a,c),d),f(f(e,b),b))). ** KEPT: 3958 (149,9,69,6) O(f(l(f(a,c),d),f(e,f(e,b)))). ** KEPT: 3959 (149,9,68,6) O(f(l(f(a,c),d),f(b,f(e,b)))). ** KEPT: 3960 (149,9,57,6) O(f(l(f(a,c),d),f(b,f(b,e)))). ** KEPT: 3961 (149,9,56,6) O(f(l(f(a,c),d),f(f(b,b),e))). ** KEPT: 3962 (149,9,55,6) O(f(l(f(a,c),d),f(f(b,b),b))). ** KEPT: 3963 (149,9,49,6) O(f(l(f(a,c),d),f(e,f(b,b)))). ** KEPT: 3964 (149,9,48,6) O(f(l(f(a,c),d),f(b,f(b,b)))). ** KEPT: 3965 (149,9,41,6) O(f(l(f(a,c),d),f(g(b),e))). ** KEPT: 3966 (149,9,40,6) O(f(l(f(a,c),d),f(g(b),b))). ** KEPT: 3967 (149,9,37,6) O(f(l(f(a,c),d),f(e,g(b)))). ** KEPT: 3968 (149,9,36,6) O(f(l(f(a,c),d),f(b,g(b)))). ** KEPT: 3969 (149,9,35,6) O(f(l(f(a,c),d),f(g(b),g(b)))). ** KEPT: 3970 (149,9,27,6) O(f(l(f(a,c),d),l(d,d))). ** KEPT: 3971 (149,9,24,6) O(f(l(f(a,c),d),g(b))). ** KEPT: 3972 (149,9,23,6) O(f(l(f(a,c),d),f(b,e))). ** KEPT: 3973 (149,9,22,6) O(f(l(f(a,c),d),f(e,b))). ** KEPT: 3974 (149,9,21,6) O(f(l(f(a,c),d),f(b,b))). new given clause: 215 (36,9,24,150,20) -EQUAL(f(a,c),g(b)). new given clause: 346 (303,9,7,6) O(f(e,f(e,e))). ** KEPT: 3975 (346,9,346,150) -EQUAL(f(f(e,f(e,e)),f(e,f(e,e))),f(a,c)). ** KEPT: 3976 (346,9,346,15) -EQUAL(f(f(e,f(e,e)),f(e,f(e,e))),d). ** KEPT: 3977 (346,9,303,150) -EQUAL(f(f(e,e),f(e,f(e,e))),f(a,c)). ** KEPT: 3978 (346,9,303,15) -EQUAL(f(f(e,e),f(e,f(e,e))),d). ** KEPT: 3979 (346,9,149,150) -EQUAL(f(l(f(a,c),d),f(e,f(e,e))),f(a,c)). ** KEPT: 3980 (346,9,149,15) -EQUAL(f(l(f(a,c),d),f(e,f(e,e))),d). ** KEPT: 3981 (346,9,148,150) -EQUAL(f(l(d,f(a,c)),f(e,f(e,e))),f(a,c)). ** KEPT: 3982 (346,9,148,15) -EQUAL(f(l(d,f(a,c)),f(e,f(e,e))),d). ** KEPT: 3983 (346,9,142,150) -EQUAL(f(g(l(d,d)),f(e,f(e,e))),f(a,c)). ** KEPT: 3984 (346,9,142,15) -EQUAL(f(g(l(d,d)),f(e,f(e,e))),d). ** KEPT: 3985 (346,9,141,150) -EQUAL(f(f(l(d,d),e),f(e,f(e,e))),f(a,c)). ** KEPT: 3986 (346,9,141,15) -EQUAL(f(f(l(d,d),e),f(e,f(e,e))),d). ** KEPT: 3987 (346,9,140,150) -EQUAL(f(f(l(d,d),b),f(e,f(e,e))),f(a,c)). ** KEPT: 3988 (346,9,140,15) -EQUAL(f(f(l(d,d),b),f(e,f(e,e))),d). ** KEPT: 3989 (346,9,129,150) -EQUAL(f(f(e,l(d,d)),f(e,f(e,e))),f(a,c)). ** KEPT: 3990 (346,9,129,15) -EQUAL(f(f(e,l(d,d)),f(e,f(e,e))),d). ** KEPT: 3991 (346,9,128,150) -EQUAL(f(f(b,l(d,d)),f(e,f(e,e))),f(a,c)). ** KEPT: 3992 (346,9,128,15) -EQUAL(f(f(b,l(d,d)),f(e,f(e,e))),d). ** KEPT: 3993 (346,9,108,150) -EQUAL(f(f(b,f(e,e)),f(e,f(e,e))),f(a,c)). ** KEPT: 3994 (346,9,108,15) -EQUAL(f(f(b,f(e,e)),f(e,f(e,e))),d). ** KEPT: 3995 (346,9,107,150) -EQUAL(f(f(f(b,e),e),f(e,f(e,e))),f(a,c)). ** KEPT: 3996 (346,9,107,15) -EQUAL(f(f(f(b,e),e),f(e,f(e,e))),d). ** KEPT: 3997 (346,9,106,150) -EQUAL(f(f(f(b,e),b),f(e,f(e,e))),f(a,c)). ** KEPT: 3998 (346,9,106,15) -EQUAL(f(f(f(b,e),b),f(e,f(e,e))),d). ** KEPT: 3999 (346,9,80,150) -EQUAL(f(f(e,f(b,e)),f(e,f(e,e))),f(a,c)). ** KEPT: 4000 (346,9,80,15) -EQUAL(f(f(e,f(b,e)),f(e,f(e,e))),d). ** KEPT: 4001 (346,9,79,150) -EQUAL(f(f(f(e,b),e),f(e,f(e,e))),f(a,c)). ** KEPT: 4002 (346,9,79,15) -EQUAL(f(f(f(e,b),e),f(e,f(e,e))),d). ** KEPT: 4003 (346,9,78,150) -EQUAL(f(f(f(e,b),b),f(e,f(e,e))),f(a,c)). ** KEPT: 4004 (346,9,78,15) -EQUAL(f(f(f(e,b),b),f(e,f(e,e))),d). ** KEPT: 4005 (346,9,69,150) -EQUAL(f(f(e,f(e,b)),f(e,f(e,e))),f(a,c)). ** KEPT: 4006 (346,9,69,15) -EQUAL(f(f(e,f(e,b)),f(e,f(e,e))),d). ** KEPT: 4007 (346,9,68,150) -EQUAL(f(f(b,f(e,b)),f(e,f(e,e))),f(a,c)). ** KEPT: 4008 (346,9,68,15) -EQUAL(f(f(b,f(e,b)),f(e,f(e,e))),d). ** KEPT: 4009 (346,9,57,150) -EQUAL(f(f(b,f(b,e)),f(e,f(e,e))),f(a,c)). ** KEPT: 4010 (346,9,57,15) -EQUAL(f(f(b,f(b,e)),f(e,f(e,e))),d). ** KEPT: 4011 (346,9,56,150) -EQUAL(f(f(f(b,b),e),f(e,f(e,e))),f(a,c)). ** KEPT: 4012 (346,9,56,15) -EQUAL(f(f(f(b,b),e),f(e,f(e,e))),d). ** KEPT: 4013 (346,9,55,150) -EQUAL(f(f(f(b,b),b),f(e,f(e,e))),f(a,c)). ** KEPT: 4014 (346,9,55,15) -EQUAL(f(f(f(b,b),b),f(e,f(e,e))),d). ** KEPT: 4015 (346,9,49,150) -EQUAL(f(f(e,f(b,b)),f(e,f(e,e))),f(a,c)). ** KEPT: 4016 (346,9,49,15) -EQUAL(f(f(e,f(b,b)),f(e,f(e,e))),d). ** KEPT: 4017 (346,9,48,150) -EQUAL(f(f(b,f(b,b)),f(e,f(e,e))),f(a,c)). ** KEPT: 4018 (346,9,48,15) -EQUAL(f(f(b,f(b,b)),f(e,f(e,e))),d). ** KEPT: 4019 (346,9,41,150) -EQUAL(f(f(g(b),e),f(e,f(e,e))),f(a,c)). ** KEPT: 4020 (346,9,41,15) -EQUAL(f(f(g(b),e),f(e,f(e,e))),d). ** KEPT: 4021 (346,9,40,150) -EQUAL(f(f(g(b),b),f(e,f(e,e))),f(a,c)). ** KEPT: 4022 (346,9,40,15) -EQUAL(f(f(g(b),b),f(e,f(e,e))),d). ** KEPT: 4023 (346,9,37,150) -EQUAL(f(f(e,g(b)),f(e,f(e,e))),f(a,c)). ** KEPT: 4024 (346,9,37,15) -EQUAL(f(f(e,g(b)),f(e,f(e,e))),d). ** KEPT: 4025 (346,9,36,150) -EQUAL(f(f(b,g(b)),f(e,f(e,e))),f(a,c)). ** KEPT: 4026 (346,9,36,15) -EQUAL(f(f(b,g(b)),f(e,f(e,e))),d). ** KEPT: 4027 (346,9,35,150) -EQUAL(f(f(g(b),g(b)),f(e,f(e,e))),f(a,c)). ** KEPT: 4028 (346,9,35,15) -EQUAL(f(f(g(b),g(b)),f(e,f(e,e))),d). ** KEPT: 4029 (346,9,27,150) -EQUAL(f(l(d,d),f(e,f(e,e))),f(a,c)). ** KEPT: 4030 (346,9,27,15) -EQUAL(f(l(d,d),f(e,f(e,e))),d). ** KEPT: 4031 (346,9,24,150) -EQUAL(f(g(b),f(e,f(e,e))),f(a,c)). ** KEPT: 4032 (346,9,24,15) -EQUAL(f(g(b),f(e,f(e,e))),d). ** KEPT: 4033 (346,9,23,150) -EQUAL(f(f(b,e),f(e,f(e,e))),f(a,c)). ** KEPT: 4034 (346,9,23,15) -EQUAL(f(f(b,e),f(e,f(e,e))),d). ** KEPT: 4035 (346,9,22,150) -EQUAL(f(f(e,b),f(e,f(e,e))),f(a,c)). ** KEPT: 4036 (346,9,22,15) -EQUAL(f(f(e,b),f(e,f(e,e))),d). ** KEPT: 4037 (346,9,21,150) -EQUAL(f(f(b,b),f(e,f(e,e))),f(a,c)). ** KEPT: 4038 (346,9,21,15) -EQUAL(f(f(b,b),f(e,f(e,e))),d). ** KEPT: 4039 (346,9,12,150) -EQUAL(f(b,f(e,f(e,e))),f(a,c)). ** KEPT: 4040 (346,9,12,15) -EQUAL(f(b,f(e,f(e,e))),d). ** KEPT: 4041 (346,9,7,150) -EQUAL(f(e,f(e,f(e,e))),f(a,c)). ** KEPT: 4042 (346,9,7,15) -EQUAL(f(e,f(e,f(e,e))),d). ** KEPT: 4043 (346,9,346,6) O(f(f(e,f(e,e)),f(e,f(e,e)))). ** KEPT: 4044 (346,9,346,5) O(f(e,f(f(e,e),f(e,f(e,e))))). ** KEPT: 4045 (346,9,303,6) O(f(f(e,e),f(e,f(e,e)))). ** KEPT: 4046 (346,9,303,5) O(f(e,f(e,f(e,f(e,e))))). ** KEPT: 4047 (346,9,149,6) O(f(l(f(a,c),d),f(e,f(e,e)))). ** KEPT: 4048 (346,9,148,6) O(f(l(d,f(a,c)),f(e,f(e,e)))). ** KEPT: 4049 (346,9,142,6) O(f(g(l(d,d)),f(e,f(e,e)))). ** KEPT: 4050 (346,9,141,6) O(f(f(l(d,d),e),f(e,f(e,e)))). ** KEPT: 4051 (346,9,141,5) O(f(l(d,d),f(e,f(e,f(e,e))))). ** KEPT: 4052 (346,9,140,6) O(f(f(l(d,d),b),f(e,f(e,e)))). ** KEPT: 4053 (346,9,140,5) O(f(l(d,d),f(b,f(e,f(e,e))))). ** KEPT: 4054 (346,9,129,6) O(f(f(e,l(d,d)),f(e,f(e,e)))). ** KEPT: 4055 (346,9,129,5) O(f(e,f(l(d,d),f(e,f(e,e))))). ** KEPT: 4056 (346,9,128,6) O(f(f(b,l(d,d)),f(e,f(e,e)))). ** KEPT: 4057 (346,9,128,5) O(f(b,f(l(d,d),f(e,f(e,e))))). ** KEPT: 4058 (346,9,108,6) O(f(f(b,f(e,e)),f(e,f(e,e)))). ** KEPT: 4059 (346,9,108,5) O(f(b,f(f(e,e),f(e,f(e,e))))). ** KEPT: 4060 (346,9,107,6) O(f(f(f(b,e),e),f(e,f(e,e)))). ** KEPT: 4061 (346,9,107,5) O(f(f(b,e),f(e,f(e,f(e,e))))). ** KEPT: 4062 (346,9,106,6) O(f(f(f(b,e),b),f(e,f(e,e)))). ** KEPT: 4063 (346,9,106,5) O(f(f(b,e),f(b,f(e,f(e,e))))). ** KEPT: 4064 (346,9,80,6) O(f(f(e,f(b,e)),f(e,f(e,e)))). ** KEPT: 4065 (346,9,80,5) O(f(e,f(f(b,e),f(e,f(e,e))))). ** KEPT: 4066 (346,9,79,6) O(f(f(f(e,b),e),f(e,f(e,e)))). ** KEPT: 4067 (346,9,79,5) O(f(f(e,b),f(e,f(e,f(e,e))))). ** KEPT: 4068 (346,9,78,6) O(f(f(f(e,b),b),f(e,f(e,e)))). ** KEPT: 4069 (346,9,78,5) O(f(f(e,b),f(b,f(e,f(e,e))))). ** KEPT: 4070 (346,9,69,6) O(f(f(e,f(e,b)),f(e,f(e,e)))). ** KEPT: 4071 (346,9,69,5) O(f(e,f(f(e,b),f(e,f(e,e))))). ** KEPT: 4072 (346,9,68,6) O(f(f(b,f(e,b)),f(e,f(e,e)))). ** KEPT: 4073 (346,9,68,5) O(f(b,f(f(e,b),f(e,f(e,e))))). ** KEPT: 4074 (346,9,57,6) O(f(f(b,f(b,e)),f(e,f(e,e)))). ** KEPT: 4075 (346,9,57,5) O(f(b,f(f(b,e),f(e,f(e,e))))). ** KEPT: 4076 (346,9,56,6) O(f(f(f(b,b),e),f(e,f(e,e)))). ** KEPT: 4077 (346,9,56,5) O(f(f(b,b),f(e,f(e,f(e,e))))). ** KEPT: 4078 (346,9,55,6) O(f(f(f(b,b),b),f(e,f(e,e)))). ** KEPT: 4079 (346,9,55,5) O(f(f(b,b),f(b,f(e,f(e,e))))). ** KEPT: 4080 (346,9,49,6) O(f(f(e,f(b,b)),f(e,f(e,e)))). ** KEPT: 4081 (346,9,49,5) O(f(e,f(f(b,b),f(e,f(e,e))))). ** KEPT: 4082 (346,9,48,6) O(f(f(b,f(b,b)),f(e,f(e,e)))). ** KEPT: 4083 (346,9,48,5) O(f(b,f(f(b,b),f(e,f(e,e))))). ** KEPT: 4084 (346,9,41,6) O(f(f(g(b),e),f(e,f(e,e)))). ** KEPT: 4085 (346,9,41,5) O(f(g(b),f(e,f(e,f(e,e))))). ** KEPT: 4086 (346,9,40,6) O(f(f(g(b),b),f(e,f(e,e)))). ** KEPT: 4087 (346,9,37,6) O(f(f(e,g(b)),f(e,f(e,e)))). ** KEPT: 4088 (346,9,37,5) O(f(e,f(g(b),f(e,f(e,e))))). ** KEPT: 4089 (346,9,36,6) O(f(f(b,g(b)),f(e,f(e,e)))). ** KEPT: 4090 (346,9,35,6) O(f(f(g(b),g(b)),f(e,f(e,e)))). ** KEPT: 4091 (346,9,35,5) O(f(g(b),f(g(b),f(e,f(e,e))))). ** KEPT: 4092 (346,9,23,5) O(f(b,f(e,f(e,f(e,e))))). ** KEPT: 4093 (346,9,22,5) O(f(e,f(b,f(e,f(e,e))))). ** KEPT: 4094 (346,9,21,5) O(f(b,f(b,f(e,f(e,e))))). ** KEPT: 4095 (346,9,303,150) -EQUAL(f(f(e,f(e,e)),f(e,e)),f(a,c)). ** KEPT: 4096 (346,9,303,15) -EQUAL(f(f(e,f(e,e)),f(e,e)),d). ** KEPT: 4097 (346,9,149,150) -EQUAL(f(f(e,f(e,e)),l(f(a,c),d)),f(a,c)). ** KEPT: 4098 (346,9,149,15) -EQUAL(f(f(e,f(e,e)),l(f(a,c),d)),d). ** KEPT: 4099 (346,9,148,150) -EQUAL(f(f(e,f(e,e)),l(d,f(a,c))),f(a,c)). ** KEPT: 4100 (346,9,148,15) -EQUAL(f(f(e,f(e,e)),l(d,f(a,c))),d). ** KEPT: 4101 (346,9,142,150) -EQUAL(f(f(e,f(e,e)),g(l(d,d))),f(a,c)). ** KEPT: 4102 (346,9,142,15) -EQUAL(f(f(e,f(e,e)),g(l(d,d))),d). ** KEPT: 4103 (346,9,141,150) -EQUAL(f(f(e,f(e,e)),f(l(d,d),e)),f(a,c)). ** KEPT: 4104 (346,9,141,15) -EQUAL(f(f(e,f(e,e)),f(l(d,d),e)),d). ** KEPT: 4105 (346,9,140,150) -EQUAL(f(f(e,f(e,e)),f(l(d,d),b)),f(a,c)). ** KEPT: 4106 (346,9,140,15) -EQUAL(f(f(e,f(e,e)),f(l(d,d),b)),d). ** KEPT: 4107 (346,9,129,150) -EQUAL(f(f(e,f(e,e)),f(e,l(d,d))),f(a,c)). ** KEPT: 4108 (346,9,129,15) -EQUAL(f(f(e,f(e,e)),f(e,l(d,d))),d). ** KEPT: 4109 (346,9,128,150) -EQUAL(f(f(e,f(e,e)),f(b,l(d,d))),f(a,c)). ** KEPT: 4110 (346,9,128,15) -EQUAL(f(f(e,f(e,e)),f(b,l(d,d))),d). ** KEPT: 4111 (346,9,108,150) -EQUAL(f(f(e,f(e,e)),f(b,f(e,e))),f(a,c)). ** KEPT: 4112 (346,9,108,15) -EQUAL(f(f(e,f(e,e)),f(b,f(e,e))),d). ** KEPT: 4113 (346,9,107,150) -EQUAL(f(f(e,f(e,e)),f(f(b,e),e)),f(a,c)). ** KEPT: 4114 (346,9,107,15) -EQUAL(f(f(e,f(e,e)),f(f(b,e),e)),d). ** KEPT: 4115 (346,9,106,150) -EQUAL(f(f(e,f(e,e)),f(f(b,e),b)),f(a,c)). ** KEPT: 4116 (346,9,106,15) -EQUAL(f(f(e,f(e,e)),f(f(b,e),b)),d). ** KEPT: 4117 (346,9,80,150) -EQUAL(f(f(e,f(e,e)),f(e,f(b,e))),f(a,c)). ** KEPT: 4118 (346,9,80,15) -EQUAL(f(f(e,f(e,e)),f(e,f(b,e))),d). ** KEPT: 4119 (346,9,79,150) -EQUAL(f(f(e,f(e,e)),f(f(e,b),e)),f(a,c)). ** KEPT: 4120 (346,9,79,15) -EQUAL(f(f(e,f(e,e)),f(f(e,b),e)),d). ** KEPT: 4121 (346,9,78,150) -EQUAL(f(f(e,f(e,e)),f(f(e,b),b)),f(a,c)). ** KEPT: 4122 (346,9,78,15) -EQUAL(f(f(e,f(e,e)),f(f(e,b),b)),d). ** KEPT: 4123 (346,9,69,150) -EQUAL(f(f(e,f(e,e)),f(e,f(e,b))),f(a,c)). ** KEPT: 4124 (346,9,69,15) -EQUAL(f(f(e,f(e,e)),f(e,f(e,b))),d). ** KEPT: 4125 (346,9,68,150) -EQUAL(f(f(e,f(e,e)),f(b,f(e,b))),f(a,c)). ** KEPT: 4126 (346,9,68,15) -EQUAL(f(f(e,f(e,e)),f(b,f(e,b))),d). ** KEPT: 4127 (346,9,57,150) -EQUAL(f(f(e,f(e,e)),f(b,f(b,e))),f(a,c)). ** KEPT: 4128 (346,9,57,15) -EQUAL(f(f(e,f(e,e)),f(b,f(b,e))),d). ** KEPT: 4129 (346,9,56,150) -EQUAL(f(f(e,f(e,e)),f(f(b,b),e)),f(a,c)). ** KEPT: 4130 (346,9,56,15) -EQUAL(f(f(e,f(e,e)),f(f(b,b),e)),d). ** KEPT: 4131 (346,9,55,150) -EQUAL(f(f(e,f(e,e)),f(f(b,b),b)),f(a,c)). ** KEPT: 4132 (346,9,55,15) -EQUAL(f(f(e,f(e,e)),f(f(b,b),b)),d). ** KEPT: 4133 (346,9,49,150) -EQUAL(f(f(e,f(e,e)),f(e,f(b,b))),f(a,c)). ** KEPT: 4134 (346,9,49,15) -EQUAL(f(f(e,f(e,e)),f(e,f(b,b))),d). ** KEPT: 4135 (346,9,48,150) -EQUAL(f(f(e,f(e,e)),f(b,f(b,b))),f(a,c)). ** KEPT: 4136 (346,9,48,15) -EQUAL(f(f(e,f(e,e)),f(b,f(b,b))),d). ** KEPT: 4137 (346,9,41,150) -EQUAL(f(f(e,f(e,e)),f(g(b),e)),f(a,c)). ** KEPT: 4138 (346,9,41,15) -EQUAL(f(f(e,f(e,e)),f(g(b),e)),d). ** KEPT: 4139 (346,9,40,150) -EQUAL(f(f(e,f(e,e)),f(g(b),b)),f(a,c)). ** KEPT: 4140 (346,9,40,15) -EQUAL(f(f(e,f(e,e)),f(g(b),b)),d). ** KEPT: 4141 (346,9,37,150) -EQUAL(f(f(e,f(e,e)),f(e,g(b))),f(a,c)). ** KEPT: 4142 (346,9,37,15) -EQUAL(f(f(e,f(e,e)),f(e,g(b))),d). ** KEPT: 4143 (346,9,36,150) -EQUAL(f(f(e,f(e,e)),f(b,g(b))),f(a,c)). ** KEPT: 4144 (346,9,36,15) -EQUAL(f(f(e,f(e,e)),f(b,g(b))),d). ** KEPT: 4145 (346,9,35,150) -EQUAL(f(f(e,f(e,e)),f(g(b),g(b))),f(a,c)). ** KEPT: 4146 (346,9,35,15) -EQUAL(f(f(e,f(e,e)),f(g(b),g(b))),d). ** KEPT: 4147 (346,9,27,150) -EQUAL(f(f(e,f(e,e)),l(d,d)),f(a,c)). ** KEPT: 4148 (346,9,27,15) -EQUAL(f(f(e,f(e,e)),l(d,d)),d). ** KEPT: 4149 (346,9,24,150) -EQUAL(f(f(e,f(e,e)),g(b)),f(a,c)). ** KEPT: 4150 (346,9,24,15) -EQUAL(f(f(e,f(e,e)),g(b)),d). ** KEPT: 4151 (346,9,23,150) -EQUAL(f(f(e,f(e,e)),f(b,e)),f(a,c)). ** KEPT: 4152 (346,9,23,15) -EQUAL(f(f(e,f(e,e)),f(b,e)),d). ** KEPT: 4153 (346,9,22,150) -EQUAL(f(f(e,f(e,e)),f(e,b)),f(a,c)). ** KEPT: 4154 (346,9,22,15) -EQUAL(f(f(e,f(e,e)),f(e,b)),d). ** KEPT: 4155 (346,9,21,150) -EQUAL(f(f(e,f(e,e)),f(b,b)),f(a,c)). ** KEPT: 4156 (346,9,21,15) -EQUAL(f(f(e,f(e,e)),f(b,b)),d). ** KEPT: 4157 (346,9,12,150) -EQUAL(f(f(e,f(e,e)),b),f(a,c)). ** KEPT: 4158 (346,9,12,15) -EQUAL(f(f(e,f(e,e)),b),d). ** KEPT: 4159 (346,9,7,150) -EQUAL(f(f(e,f(e,e)),e),f(a,c)). ** KEPT: 4160 (346,9,7,15) -EQUAL(f(f(e,f(e,e)),e),d). ** KEPT: 4161 (346,9,303,6) O(f(f(e,f(e,e)),f(e,e))). ** KEPT: 4162 (346,9,303,5) O(f(e,f(f(e,e),f(e,e)))). ** KEPT: 4163 (346,9,149,6) O(f(f(e,f(e,e)),l(f(a,c),d))). ** KEPT: 4164 (346,9,149,5) O(f(e,f(f(e,e),l(f(a,c),d)))). ** KEPT: 4165 (346,9,148,6) O(f(f(e,f(e,e)),l(d,f(a,c)))). ** KEPT: 4166 (346,9,148,5) O(f(e,f(f(e,e),l(d,f(a,c))))). ** KEPT: 4167 (346,9,142,6) O(f(f(e,f(e,e)),g(l(d,d)))). ** KEPT: 4168 (346,9,142,5) O(f(e,f(f(e,e),g(l(d,d))))). ** KEPT: 4169 (346,9,141,6) O(f(f(e,f(e,e)),f(l(d,d),e))). ** KEPT: 4170 (346,9,141,5) O(f(e,f(f(e,e),f(l(d,d),e)))). ** KEPT: 4171 (346,9,140,6) O(f(f(e,f(e,e)),f(l(d,d),b))). ** KEPT: 4172 (346,9,140,5) O(f(e,f(f(e,e),f(l(d,d),b)))). ** KEPT: 4173 (346,9,129,6) O(f(f(e,f(e,e)),f(e,l(d,d)))). ** KEPT: 4174 (346,9,129,5) O(f(e,f(f(e,e),f(e,l(d,d))))). ** KEPT: 4175 (346,9,128,6) O(f(f(e,f(e,e)),f(b,l(d,d)))). ** KEPT: 4176 (346,9,128,5) O(f(e,f(f(e,e),f(b,l(d,d))))). ** KEPT: 4177 (346,9,108,6) O(f(f(e,f(e,e)),f(b,f(e,e)))). ** KEPT: 4178 (346,9,108,5) O(f(e,f(f(e,e),f(b,f(e,e))))). ** KEPT: 4179 (346,9,107,6) O(f(f(e,f(e,e)),f(f(b,e),e))). ** KEPT: 4180 (346,9,107,5) O(f(e,f(f(e,e),f(f(b,e),e)))). ** KEPT: 4181 (346,9,106,6) O(f(f(e,f(e,e)),f(f(b,e),b))). ** KEPT: 4182 (346,9,106,5) O(f(e,f(f(e,e),f(f(b,e),b)))). ** KEPT: 4183 (346,9,80,6) O(f(f(e,f(e,e)),f(e,f(b,e)))). ** KEPT: 4184 (346,9,80,5) O(f(e,f(f(e,e),f(e,f(b,e))))). ** KEPT: 4185 (346,9,79,6) O(f(f(e,f(e,e)),f(f(e,b),e))). ** KEPT: 4186 (346,9,79,5) O(f(e,f(f(e,e),f(f(e,b),e)))). ** KEPT: 4187 (346,9,78,6) O(f(f(e,f(e,e)),f(f(e,b),b))). ** KEPT: 4188 (346,9,78,5) O(f(e,f(f(e,e),f(f(e,b),b)))). ** KEPT: 4189 (346,9,69,6) O(f(f(e,f(e,e)),f(e,f(e,b)))). ** KEPT: 4190 (346,9,69,5) O(f(e,f(f(e,e),f(e,f(e,b))))). ** KEPT: 4191 (346,9,68,6) O(f(f(e,f(e,e)),f(b,f(e,b)))). ** KEPT: 4192 (346,9,68,5) O(f(e,f(f(e,e),f(b,f(e,b))))). ** KEPT: 4193 (346,9,57,6) O(f(f(e,f(e,e)),f(b,f(b,e)))). ** KEPT: 4194 (346,9,57,5) O(f(e,f(f(e,e),f(b,f(b,e))))). ** KEPT: 4195 (346,9,56,6) O(f(f(e,f(e,e)),f(f(b,b),e))). ** KEPT: 4196 (346,9,56,5) O(f(e,f(f(e,e),f(f(b,b),e)))). ** KEPT: 4197 (346,9,55,6) O(f(f(e,f(e,e)),f(f(b,b),b))). ** KEPT: 4198 (346,9,55,5) O(f(e,f(f(e,e),f(f(b,b),b)))). ** KEPT: 4199 (346,9,49,6) O(f(f(e,f(e,e)),f(e,f(b,b)))). ** KEPT: 4200 (346,9,49,5) O(f(e,f(f(e,e),f(e,f(b,b))))). ** KEPT: 4201 (346,9,48,6) O(f(f(e,f(e,e)),f(b,f(b,b)))). ** KEPT: 4202 (346,9,48,5) O(f(e,f(f(e,e),f(b,f(b,b))))). ** KEPT: 4203 (346,9,41,6) O(f(f(e,f(e,e)),f(g(b),e))). ** KEPT: 4204 (346,9,41,5) O(f(e,f(f(e,e),f(g(b),e)))). ** KEPT: 4205 (346,9,40,6) O(f(f(e,f(e,e)),f(g(b),b))). ** KEPT: 4206 (346,9,40,5) O(f(e,f(f(e,e),f(g(b),b)))). ** KEPT: 4207 (346,9,37,6) O(f(f(e,f(e,e)),f(e,g(b)))). ** KEPT: 4208 (346,9,37,5) O(f(e,f(f(e,e),f(e,g(b))))). ** KEPT: 4209 (346,9,36,6) O(f(f(e,f(e,e)),f(b,g(b)))). ** KEPT: 4210 (346,9,36,5) O(f(e,f(f(e,e),f(b,g(b))))). ** KEPT: 4211 (346,9,35,6) O(f(f(e,f(e,e)),f(g(b),g(b)))). ** KEPT: 4212 (346,9,35,5) O(f(e,f(f(e,e),f(g(b),g(b))))). ** KEPT: 4213 (346,9,27,6) O(f(f(e,f(e,e)),l(d,d))). ** KEPT: 4214 (346,9,27,5) O(f(e,f(f(e,e),l(d,d)))). ** KEPT: 4215 (346,9,24,6) O(f(f(e,f(e,e)),g(b))). ** KEPT: 4216 (346,9,24,5) O(f(e,f(f(e,e),g(b)))). ** KEPT: 4217 (346,9,23,6) O(f(f(e,f(e,e)),f(b,e))). ** KEPT: 4218 (346,9,23,5) O(f(e,f(f(e,e),f(b,e)))). ** KEPT: 4219 (346,9,22,6) O(f(f(e,f(e,e)),f(e,b))). ** KEPT: 4220 (346,9,22,5) O(f(e,f(f(e,e),f(e,b)))). ** KEPT: 4221 (346,9,21,6) O(f(f(e,f(e,e)),f(b,b))). ** KEPT: 4222 (346,9,21,5) O(f(e,f(f(e,e),f(b,b)))). ** KEPT: 4223 (346,9,12,6) O(f(f(e,f(e,e)),b)). ** KEPT: 4224 (346,9,12,5) O(f(e,f(f(e,e),b))). ** KEPT: 4225 (346,9,7,6) O(f(f(e,f(e,e)),e)). ** KEPT: 4226 (346,9,7,5) O(f(e,f(f(e,e),e))). ** KEPT: 4227 (4,346) O(f(f(x,g(x)),f(e,e))). ** KEPT: 4228 (3,346) O(f(f(g(x),x),f(e,e))). ** KEPT: 4229 (4,346) O(f(e,f(f(x,g(x)),e))). ** KEPT: 4230 (3,346) O(f(e,f(f(g(x),x),e))). ** KEPT: 4231 (4,346) O(f(e,f(e,f(x,g(x))))). ** KEPT: 4232 (3,346) O(f(e,f(e,f(g(x),x)))). 4227 back subsumes: 337 (303,9,36,6) O(f(f(b,g(b)),f(e,e))). 4228 back subsumes: 433 (40,9,303,6) O(f(f(g(b),b),f(e,e))). 4231 back subsumes: 368 (303,9,36,5) O(f(e,f(e,f(b,g(b))))). 4232 back subsumes: 404 (40,9,303,5) O(f(e,f(e,f(g(b),b)))). new given clause: 378 (303,9,12,6) O(f(f(e,e),b)). ** KEPT: 4233 (378,9,378,150) -EQUAL(f(f(f(e,e),b),f(f(e,e),b)),f(a,c)). ** KEPT: 4234 (378,9,378,15) -EQUAL(f(f(f(e,e),b),f(f(e,e),b)),d). ** KEPT: 4235 (378,9,346,150) -EQUAL(f(f(e,f(e,e)),f(f(e,e),b)),f(a,c)). ** KEPT: 4236 (378,9,346,15) -EQUAL(f(f(e,f(e,e)),f(f(e,e),b)),d). ** KEPT: 4237 (378,9,303,150) -EQUAL(f(f(e,e),f(f(e,e),b)),f(a,c)). ** KEPT: 4238 (378,9,303,15) -EQUAL(f(f(e,e),f(f(e,e),b)),d). ** KEPT: 4239 (378,9,149,150) -EQUAL(f(l(f(a,c),d),f(f(e,e),b)),f(a,c)). ** KEPT: 4240 (378,9,149,15) -EQUAL(f(l(f(a,c),d),f(f(e,e),b)),d). ** KEPT: 4241 (378,9,148,150) -EQUAL(f(l(d,f(a,c)),f(f(e,e),b)),f(a,c)). ** KEPT: 4242 (378,9,148,15) -EQUAL(f(l(d,f(a,c)),f(f(e,e),b)),d). ** KEPT: 4243 (378,9,142,150) -EQUAL(f(g(l(d,d)),f(f(e,e),b)),f(a,c)). ** KEPT: 4244 (378,9,142,15) -EQUAL(f(g(l(d,d)),f(f(e,e),b)),d). ** KEPT: 4245 (378,9,141,150) -EQUAL(f(f(l(d,d),e),f(f(e,e),b)),f(a,c)). ** KEPT: 4246 (378,9,141,15) -EQUAL(f(f(l(d,d),e),f(f(e,e),b)),d). ** KEPT: 4247 (378,9,140,150) -EQUAL(f(f(l(d,d),b),f(f(e,e),b)),f(a,c)). ** KEPT: 4248 (378,9,140,15) -EQUAL(f(f(l(d,d),b),f(f(e,e),b)),d). ** KEPT: 4249 (378,9,129,150) -EQUAL(f(f(e,l(d,d)),f(f(e,e),b)),f(a,c)). ** KEPT: 4250 (378,9,129,15) -EQUAL(f(f(e,l(d,d)),f(f(e,e),b)),d). ** KEPT: 4251 (378,9,128,150) -EQUAL(f(f(b,l(d,d)),f(f(e,e),b)),f(a,c)). ** KEPT: 4252 (378,9,128,15) -EQUAL(f(f(b,l(d,d)),f(f(e,e),b)),d). ** KEPT: 4253 (378,9,108,150) -EQUAL(f(f(b,f(e,e)),f(f(e,e),b)),f(a,c)). ** KEPT: 4254 (378,9,108,15) -EQUAL(f(f(b,f(e,e)),f(f(e,e),b)),d). ** KEPT: 4255 (378,9,107,150) -EQUAL(f(f(f(b,e),e),f(f(e,e),b)),f(a,c)). ** KEPT: 4256 (378,9,107,15) -EQUAL(f(f(f(b,e),e),f(f(e,e),b)),d). ** KEPT: 4257 (378,9,106,150) -EQUAL(f(f(f(b,e),b),f(f(e,e),b)),f(a,c)). ** KEPT: 4258 (378,9,106,15) -EQUAL(f(f(f(b,e),b),f(f(e,e),b)),d). ** KEPT: 4259 (378,9,80,150) -EQUAL(f(f(e,f(b,e)),f(f(e,e),b)),f(a,c)). ** KEPT: 4260 (378,9,80,15) -EQUAL(f(f(e,f(b,e)),f(f(e,e),b)),d). ** KEPT: 4261 (378,9,79,150) -EQUAL(f(f(f(e,b),e),f(f(e,e),b)),f(a,c)). ** KEPT: 4262 (378,9,79,15) -EQUAL(f(f(f(e,b),e),f(f(e,e),b)),d). ** KEPT: 4263 (378,9,78,150) -EQUAL(f(f(f(e,b),b),f(f(e,e),b)),f(a,c)). ** KEPT: 4264 (378,9,78,15) -EQUAL(f(f(f(e,b),b),f(f(e,e),b)),d). ** KEPT: 4265 (378,9,69,150) -EQUAL(f(f(e,f(e,b)),f(f(e,e),b)),f(a,c)). ** KEPT: 4266 (378,9,69,15) -EQUAL(f(f(e,f(e,b)),f(f(e,e),b)),d). ** KEPT: 4267 (378,9,68,150) -EQUAL(f(f(b,f(e,b)),f(f(e,e),b)),f(a,c)). ** KEPT: 4268 (378,9,68,15) -EQUAL(f(f(b,f(e,b)),f(f(e,e),b)),d). ** KEPT: 4269 (378,9,57,150) -EQUAL(f(f(b,f(b,e)),f(f(e,e),b)),f(a,c)). ** KEPT: 4270 (378,9,57,15) -EQUAL(f(f(b,f(b,e)),f(f(e,e),b)),d). ** KEPT: 4271 (378,9,56,150) -EQUAL(f(f(f(b,b),e),f(f(e,e),b)),f(a,c)). ** KEPT: 4272 (378,9,56,15) -EQUAL(f(f(f(b,b),e),f(f(e,e),b)),d). ** KEPT: 4273 (378,9,55,150) -EQUAL(f(f(f(b,b),b),f(f(e,e),b)),f(a,c)). ** KEPT: 4274 (378,9,55,15) -EQUAL(f(f(f(b,b),b),f(f(e,e),b)),d). ** KEPT: 4275 (378,9,49,150) -EQUAL(f(f(e,f(b,b)),f(f(e,e),b)),f(a,c)). ** KEPT: 4276 (378,9,49,15) -EQUAL(f(f(e,f(b,b)),f(f(e,e),b)),d). ** KEPT: 4277 (378,9,48,150) -EQUAL(f(f(b,f(b,b)),f(f(e,e),b)),f(a,c)). ** KEPT: 4278 (378,9,48,15) -EQUAL(f(f(b,f(b,b)),f(f(e,e),b)),d). ** KEPT: 4279 (378,9,41,150) -EQUAL(f(f(g(b),e),f(f(e,e),b)),f(a,c)). ** KEPT: 4280 (378,9,41,15) -EQUAL(f(f(g(b),e),f(f(e,e),b)),d). ** KEPT: 4281 (378,9,40,150) -EQUAL(f(f(g(b),b),f(f(e,e),b)),f(a,c)). ** KEPT: 4282 (378,9,40,15) -EQUAL(f(f(g(b),b),f(f(e,e),b)),d). ** KEPT: 4283 (378,9,37,150) -EQUAL(f(f(e,g(b)),f(f(e,e),b)),f(a,c)). ** KEPT: 4284 (378,9,37,15) -EQUAL(f(f(e,g(b)),f(f(e,e),b)),d). ** KEPT: 4285 (378,9,36,150) -EQUAL(f(f(b,g(b)),f(f(e,e),b)),f(a,c)). ** KEPT: 4286 (378,9,36,15) -EQUAL(f(f(b,g(b)),f(f(e,e),b)),d). ** KEPT: 4287 (378,9,35,150) -EQUAL(f(f(g(b),g(b)),f(f(e,e),b)),f(a,c)). ** KEPT: 4288 (378,9,35,15) -EQUAL(f(f(g(b),g(b)),f(f(e,e),b)),d). ** KEPT: 4289 (378,9,27,150) -EQUAL(f(l(d,d),f(f(e,e),b)),f(a,c)). ** KEPT: 4290 (378,9,27,15) -EQUAL(f(l(d,d),f(f(e,e),b)),d). ** KEPT: 4291 (378,9,24,150) -EQUAL(f(g(b),f(f(e,e),b)),f(a,c)). ** KEPT: 4292 (378,9,24,15) -EQUAL(f(g(b),f(f(e,e),b)),d). ** KEPT: 4293 (378,9,23,150) -EQUAL(f(f(b,e),f(f(e,e),b)),f(a,c)). ** KEPT: 4294 (378,9,23,15) -EQUAL(f(f(b,e),f(f(e,e),b)),d). ** KEPT: 4295 (378,9,22,150) -EQUAL(f(f(e,b),f(f(e,e),b)),f(a,c)). ** KEPT: 4296 (378,9,22,15) -EQUAL(f(f(e,b),f(f(e,e),b)),d). ** KEPT: 4297 (378,9,21,150) -EQUAL(f(f(b,b),f(f(e,e),b)),f(a,c)). ** KEPT: 4298 (378,9,21,15) -EQUAL(f(f(b,b),f(f(e,e),b)),d). ** KEPT: 4299 (378,9,12,150) -EQUAL(f(b,f(f(e,e),b)),f(a,c)). ** KEPT: 4300 (378,9,12,15) -EQUAL(f(b,f(f(e,e),b)),d). ** KEPT: 4301 (378,9,7,150) -EQUAL(f(e,f(f(e,e),b)),f(a,c)). ** KEPT: 4302 (378,9,7,15) -EQUAL(f(e,f(f(e,e),b)),d). ** KEPT: 4303 (378,9,378,6) O(f(f(f(e,e),b),f(f(e,e),b))). ** KEPT: 4304 (378,9,378,5) O(f(f(e,e),f(b,f(f(e,e),b)))). ** KEPT: 4305 (378,9,346,6) O(f(f(e,f(e,e)),f(f(e,e),b))). ** KEPT: 4306 (378,9,346,5) O(f(e,f(f(e,e),f(f(e,e),b)))). ** KEPT: 4307 (378,9,303,6) O(f(f(e,e),f(f(e,e),b))). ** KEPT: 4308 (378,9,303,5) O(f(e,f(e,f(f(e,e),b)))). ** KEPT: 4309 (378,9,149,6) O(f(l(f(a,c),d),f(f(e,e),b))). ** KEPT: 4310 (378,9,148,6) O(f(l(d,f(a,c)),f(f(e,e),b))). ** KEPT: 4311 (378,9,142,6) O(f(g(l(d,d)),f(f(e,e),b))). ** KEPT: 4312 (378,9,141,6) O(f(f(l(d,d),e),f(f(e,e),b))). ** KEPT: 4313 (378,9,141,5) O(f(l(d,d),f(e,f(f(e,e),b)))). ** KEPT: 4314 (378,9,140,6) O(f(f(l(d,d),b),f(f(e,e),b))). ** KEPT: 4315 (378,9,140,5) O(f(l(d,d),f(b,f(f(e,e),b)))). ** KEPT: 4316 (378,9,129,6) O(f(f(e,l(d,d)),f(f(e,e),b))). ** KEPT: 4317 (378,9,129,5) O(f(e,f(l(d,d),f(f(e,e),b)))). ** KEPT: 4318 (378,9,128,6) O(f(f(b,l(d,d)),f(f(e,e),b))). ** KEPT: 4319 (378,9,128,5) O(f(b,f(l(d,d),f(f(e,e),b)))). ** KEPT: 4320 (378,9,108,6) O(f(f(b,f(e,e)),f(f(e,e),b))). ** KEPT: 4321 (378,9,108,5) O(f(b,f(f(e,e),f(f(e,e),b)))). ** KEPT: 4322 (378,9,107,6) O(f(f(f(b,e),e),f(f(e,e),b))). ** KEPT: 4323 (378,9,107,5) O(f(f(b,e),f(e,f(f(e,e),b)))). ** KEPT: 4324 (378,9,106,6) O(f(f(f(b,e),b),f(f(e,e),b))). ** KEPT: 4325 (378,9,106,5) O(f(f(b,e),f(b,f(f(e,e),b)))). ** KEPT: 4326 (378,9,80,6) O(f(f(e,f(b,e)),f(f(e,e),b))). ** KEPT: 4327 (378,9,80,5) O(f(e,f(f(b,e),f(f(e,e),b)))). ** KEPT: 4328 (378,9,79,6) O(f(f(f(e,b),e),f(f(e,e),b))). ** KEPT: 4329 (378,9,79,5) O(f(f(e,b),f(e,f(f(e,e),b)))). ** KEPT: 4330 (378,9,78,6) O(f(f(f(e,b),b),f(f(e,e),b))). ** KEPT: 4331 (378,9,78,5) O(f(f(e,b),f(b,f(f(e,e),b)))). ** KEPT: 4332 (378,9,69,6) O(f(f(e,f(e,b)),f(f(e,e),b))). ** KEPT: 4333 (378,9,69,5) O(f(e,f(f(e,b),f(f(e,e),b)))). ** KEPT: 4334 (378,9,68,6) O(f(f(b,f(e,b)),f(f(e,e),b))). ** KEPT: 4335 (378,9,68,5) O(f(b,f(f(e,b),f(f(e,e),b)))). ** KEPT: 4336 (378,9,57,6) O(f(f(b,f(b,e)),f(f(e,e),b))). ** KEPT: 4337 (378,9,57,5) O(f(b,f(f(b,e),f(f(e,e),b)))). ** KEPT: 4338 (378,9,56,6) O(f(f(f(b,b),e),f(f(e,e),b))). ** KEPT: 4339 (378,9,56,5) O(f(f(b,b),f(e,f(f(e,e),b)))). ** KEPT: 4340 (378,9,55,6) O(f(f(f(b,b),b),f(f(e,e),b))). ** KEPT: 4341 (378,9,55,5) O(f(f(b,b),f(b,f(f(e,e),b)))). ** KEPT: 4342 (378,9,49,6) O(f(f(e,f(b,b)),f(f(e,e),b))). ** KEPT: 4343 (378,9,49,5) O(f(e,f(f(b,b),f(f(e,e),b)))). ** KEPT: 4344 (378,9,48,6) O(f(f(b,f(b,b)),f(f(e,e),b))). ** KEPT: 4345 (378,9,48,5) O(f(b,f(f(b,b),f(f(e,e),b)))). ** KEPT: 4346 (378,9,41,6) O(f(f(g(b),e),f(f(e,e),b))). ** KEPT: 4347 (378,9,41,5) O(f(g(b),f(e,f(f(e,e),b)))). ** KEPT: 4348 (378,9,40,6) O(f(f(g(b),b),f(f(e,e),b))). ** KEPT: 4349 (378,9,37,6) O(f(f(e,g(b)),f(f(e,e),b))). ** KEPT: 4350 (378,9,37,5) O(f(e,f(g(b),f(f(e,e),b)))). ** KEPT: 4351 (378,9,36,6) O(f(f(b,g(b)),f(f(e,e),b))). ** KEPT: 4352 (378,9,35,6) O(f(f(g(b),g(b)),f(f(e,e),b))). ** KEPT: 4353 (378,9,35,5) O(f(g(b),f(g(b),f(f(e,e),b)))). ** KEPT: 4354 (378,9,27,6) O(f(l(d,d),f(f(e,e),b))). ** KEPT: 4355 (378,9,24,6) O(f(g(b),f(f(e,e),b))). ** KEPT: 4356 (378,9,23,6) O(f(f(b,e),f(f(e,e),b))). ** KEPT: 4357 (378,9,23,5) O(f(b,f(e,f(f(e,e),b)))). ** KEPT: 4358 (378,9,22,6) O(f(f(e,b),f(f(e,e),b))). ** KEPT: 4359 (378,9,22,5) O(f(e,f(b,f(f(e,e),b)))). ** KEPT: 4360 (378,9,21,6) O(f(f(b,b),f(f(e,e),b))). ** KEPT: 4361 (378,9,21,5) O(f(b,f(b,f(f(e,e),b)))). ** KEPT: 4362 (378,9,346,150) -EQUAL(f(f(f(e,e),b),f(e,f(e,e))),f(a,c)). ** KEPT: 4363 (378,9,346,15) -EQUAL(f(f(f(e,e),b),f(e,f(e,e))),d). ** KEPT: 4364 (378,9,303,150) -EQUAL(f(f(f(e,e),b),f(e,e)),f(a,c)). ** KEPT: 4365 (378,9,303,15) -EQUAL(f(f(f(e,e),b),f(e,e)),d). ** KEPT: 4366 (378,9,149,150) -EQUAL(f(f(f(e,e),b),l(f(a,c),d)),f(a,c)). ** KEPT: 4367 (378,9,149,15) -EQUAL(f(f(f(e,e),b),l(f(a,c),d)),d). ** KEPT: 4368 (378,9,148,150) -EQUAL(f(f(f(e,e),b),l(d,f(a,c))),f(a,c)). ** KEPT: 4369 (378,9,148,15) -EQUAL(f(f(f(e,e),b),l(d,f(a,c))),d). ** KEPT: 4370 (378,9,142,150) -EQUAL(f(f(f(e,e),b),g(l(d,d))),f(a,c)). ** KEPT: 4371 (378,9,142,15) -EQUAL(f(f(f(e,e),b),g(l(d,d))),d). ** KEPT: 4372 (378,9,141,150) -EQUAL(f(f(f(e,e),b),f(l(d,d),e)),f(a,c)). ** KEPT: 4373 (378,9,141,15) -EQUAL(f(f(f(e,e),b),f(l(d,d),e)),d). ** KEPT: 4374 (378,9,140,150) -EQUAL(f(f(f(e,e),b),f(l(d,d),b)),f(a,c)). ** KEPT: 4375 (378,9,140,15) -EQUAL(f(f(f(e,e),b),f(l(d,d),b)),d). ** KEPT: 4376 (378,9,129,150) -EQUAL(f(f(f(e,e),b),f(e,l(d,d))),f(a,c)). ** KEPT: 4377 (378,9,129,15) -EQUAL(f(f(f(e,e),b),f(e,l(d,d))),d). ** KEPT: 4378 (378,9,128,150) -EQUAL(f(f(f(e,e),b),f(b,l(d,d))),f(a,c)). ** KEPT: 4379 (378,9,128,15) -EQUAL(f(f(f(e,e),b),f(b,l(d,d))),d). ** KEPT: 4380 (378,9,108,150) -EQUAL(f(f(f(e,e),b),f(b,f(e,e))),f(a,c)). ** KEPT: 4381 (378,9,108,15) -EQUAL(f(f(f(e,e),b),f(b,f(e,e))),d). ** KEPT: 4382 (378,9,107,150) -EQUAL(f(f(f(e,e),b),f(f(b,e),e)),f(a,c)). ** KEPT: 4383 (378,9,107,15) -EQUAL(f(f(f(e,e),b),f(f(b,e),e)),d). ** KEPT: 4384 (378,9,106,150) -EQUAL(f(f(f(e,e),b),f(f(b,e),b)),f(a,c)). ** KEPT: 4385 (378,9,106,15) -EQUAL(f(f(f(e,e),b),f(f(b,e),b)),d). ** KEPT: 4386 (378,9,80,150) -EQUAL(f(f(f(e,e),b),f(e,f(b,e))),f(a,c)). ** KEPT: 4387 (378,9,80,15) -EQUAL(f(f(f(e,e),b),f(e,f(b,e))),d). ** KEPT: 4388 (378,9,79,150) -EQUAL(f(f(f(e,e),b),f(f(e,b),e)),f(a,c)). ** KEPT: 4389 (378,9,79,15) -EQUAL(f(f(f(e,e),b),f(f(e,b),e)),d). ** KEPT: 4390 (378,9,78,150) -EQUAL(f(f(f(e,e),b),f(f(e,b),b)),f(a,c)). ** KEPT: 4391 (378,9,78,15) -EQUAL(f(f(f(e,e),b),f(f(e,b),b)),d). ** KEPT: 4392 (378,9,69,150) -EQUAL(f(f(f(e,e),b),f(e,f(e,b))),f(a,c)). ** KEPT: 4393 (378,9,69,15) -EQUAL(f(f(f(e,e),b),f(e,f(e,b))),d). ** KEPT: 4394 (378,9,68,150) -EQUAL(f(f(f(e,e),b),f(b,f(e,b))),f(a,c)). ** KEPT: 4395 (378,9,68,15) -EQUAL(f(f(f(e,e),b),f(b,f(e,b))),d). ** KEPT: 4396 (378,9,57,150) -EQUAL(f(f(f(e,e),b),f(b,f(b,e))),f(a,c)). ** KEPT: 4397 (378,9,57,15) -EQUAL(f(f(f(e,e),b),f(b,f(b,e))),d). ** KEPT: 4398 (378,9,56,150) -EQUAL(f(f(f(e,e),b),f(f(b,b),e)),f(a,c)). ** KEPT: 4399 (378,9,56,15) -EQUAL(f(f(f(e,e),b),f(f(b,b),e)),d). ** KEPT: 4400 (378,9,55,150) -EQUAL(f(f(f(e,e),b),f(f(b,b),b)),f(a,c)). ** KEPT: 4401 (378,9,55,15) -EQUAL(f(f(f(e,e),b),f(f(b,b),b)),d). ** KEPT: 4402 (378,9,49,150) -EQUAL(f(f(f(e,e),b),f(e,f(b,b))),f(a,c)). ** KEPT: 4403 (378,9,49,15) -EQUAL(f(f(f(e,e),b),f(e,f(b,b))),d). ** KEPT: 4404 (378,9,48,150) -EQUAL(f(f(f(e,e),b),f(b,f(b,b))),f(a,c)). ** KEPT: 4405 (378,9,48,15) -EQUAL(f(f(f(e,e),b),f(b,f(b,b))),d). ** KEPT: 4406 (378,9,41,150) -EQUAL(f(f(f(e,e),b),f(g(b),e)),f(a,c)). ** KEPT: 4407 (378,9,41,15) -EQUAL(f(f(f(e,e),b),f(g(b),e)),d). ** KEPT: 4408 (378,9,40,150) -EQUAL(f(f(f(e,e),b),f(g(b),b)),f(a,c)). ** KEPT: 4409 (378,9,40,15) -EQUAL(f(f(f(e,e),b),f(g(b),b)),d). ** KEPT: 4410 (378,9,37,150) -EQUAL(f(f(f(e,e),b),f(e,g(b))),f(a,c)). ** KEPT: 4411 (378,9,37,15) -EQUAL(f(f(f(e,e),b),f(e,g(b))),d). ** KEPT: 4412 (378,9,36,150) -EQUAL(f(f(f(e,e),b),f(b,g(b))),f(a,c)). ** KEPT: 4413 (378,9,36,15) -EQUAL(f(f(f(e,e),b),f(b,g(b))),d). ** KEPT: 4414 (378,9,35,150) -EQUAL(f(f(f(e,e),b),f(g(b),g(b))),f(a,c)). ** KEPT: 4415 (378,9,35,15) -EQUAL(f(f(f(e,e),b),f(g(b),g(b))),d). ** KEPT: 4416 (378,9,27,150) -EQUAL(f(f(f(e,e),b),l(d,d)),f(a,c)). ** KEPT: 4417 (378,9,27,15) -EQUAL(f(f(f(e,e),b),l(d,d)),d). ** KEPT: 4418 (378,9,24,150) -EQUAL(f(f(f(e,e),b),g(b)),f(a,c)). ** KEPT: 4419 (378,9,24,15) -EQUAL(f(f(f(e,e),b),g(b)),d). ** KEPT: 4420 (378,9,23,150) -EQUAL(f(f(f(e,e),b),f(b,e)),f(a,c)). ** KEPT: 4421 (378,9,23,15) -EQUAL(f(f(f(e,e),b),f(b,e)),d). ** KEPT: 4422 (378,9,22,150) -EQUAL(f(f(f(e,e),b),f(e,b)),f(a,c)). ** KEPT: 4423 (378,9,22,15) -EQUAL(f(f(f(e,e),b),f(e,b)),d). ** KEPT: 4424 (378,9,21,150) -EQUAL(f(f(f(e,e),b),f(b,b)),f(a,c)). ** KEPT: 4425 (378,9,21,15) -EQUAL(f(f(f(e,e),b),f(b,b)),d). ** KEPT: 4426 (378,9,12,150) -EQUAL(f(f(f(e,e),b),b),f(a,c)). ** KEPT: 4427 (378,9,12,15) -EQUAL(f(f(f(e,e),b),b),d). ** KEPT: 4428 (378,9,7,150) -EQUAL(f(f(f(e,e),b),e),f(a,c)). ** KEPT: 4429 (378,9,7,15) -EQUAL(f(f(f(e,e),b),e),d). ** KEPT: 4430 (378,9,346,6) O(f(f(f(e,e),b),f(e,f(e,e)))). ** KEPT: 4431 (378,9,346,5) O(f(f(e,e),f(b,f(e,f(e,e))))). ** KEPT: 4432 (378,9,303,6) O(f(f(f(e,e),b),f(e,e))). ** KEPT: 4433 (378,9,149,6) O(f(f(f(e,e),b),l(f(a,c),d))). ** KEPT: 4434 (378,9,149,5) O(f(f(e,e),f(b,l(f(a,c),d)))). ** KEPT: 4435 (378,9,148,6) O(f(f(f(e,e),b),l(d,f(a,c)))). ** KEPT: 4436 (378,9,148,5) O(f(f(e,e),f(b,l(d,f(a,c))))). ** KEPT: 4437 (378,9,142,6) O(f(f(f(e,e),b),g(l(d,d)))). ** KEPT: 4438 (378,9,142,5) O(f(f(e,e),f(b,g(l(d,d))))). ** KEPT: 4439 (378,9,141,6) O(f(f(f(e,e),b),f(l(d,d),e))). ** KEPT: 4440 (378,9,141,5) O(f(f(e,e),f(b,f(l(d,d),e)))). ** KEPT: 4441 (378,9,140,6) O(f(f(f(e,e),b),f(l(d,d),b))). ** KEPT: 4442 (378,9,140,5) O(f(f(e,e),f(b,f(l(d,d),b)))). ** KEPT: 4443 (378,9,129,6) O(f(f(f(e,e),b),f(e,l(d,d)))). ** KEPT: 4444 (378,9,129,5) O(f(f(e,e),f(b,f(e,l(d,d))))). ** KEPT: 4445 (378,9,128,6) O(f(f(f(e,e),b),f(b,l(d,d)))). ** KEPT: 4446 (378,9,128,5) O(f(f(e,e),f(b,f(b,l(d,d))))). ** KEPT: 4447 (378,9,108,6) O(f(f(f(e,e),b),f(b,f(e,e)))). ** KEPT: 4448 (378,9,108,5) O(f(f(e,e),f(b,f(b,f(e,e))))). ** KEPT: 4449 (378,9,107,6) O(f(f(f(e,e),b),f(f(b,e),e))). ** KEPT: 4450 (378,9,107,5) O(f(f(e,e),f(b,f(f(b,e),e)))). ** KEPT: 4451 (378,9,106,6) O(f(f(f(e,e),b),f(f(b,e),b))). ** KEPT: 4452 (378,9,106,5) O(f(f(e,e),f(b,f(f(b,e),b)))). ** KEPT: 4453 (378,9,80,6) O(f(f(f(e,e),b),f(e,f(b,e)))). ** KEPT: 4454 (378,9,80,5) O(f(f(e,e),f(b,f(e,f(b,e))))). ** KEPT: 4455 (378,9,79,6) O(f(f(f(e,e),b),f(f(e,b),e))). ** KEPT: 4456 (378,9,79,5) O(f(f(e,e),f(b,f(f(e,b),e)))). ** KEPT: 4457 (378,9,78,6) O(f(f(f(e,e),b),f(f(e,b),b))). ** KEPT: 4458 (378,9,78,5) O(f(f(e,e),f(b,f(f(e,b),b)))). ** KEPT: 4459 (378,9,69,6) O(f(f(f(e,e),b),f(e,f(e,b)))). ** KEPT: 4460 (378,9,69,5) O(f(f(e,e),f(b,f(e,f(e,b))))). ** KEPT: 4461 (378,9,68,6) O(f(f(f(e,e),b),f(b,f(e,b)))). ** KEPT: 4462 (378,9,68,5) O(f(f(e,e),f(b,f(b,f(e,b))))). ** KEPT: 4463 (378,9,57,6) O(f(f(f(e,e),b),f(b,f(b,e)))). ** KEPT: 4464 (378,9,57,5) O(f(f(e,e),f(b,f(b,f(b,e))))). ** KEPT: 4465 (378,9,56,6) O(f(f(f(e,e),b),f(f(b,b),e))). ** KEPT: 4466 (378,9,56,5) O(f(f(e,e),f(b,f(f(b,b),e)))). ** KEPT: 4467 (378,9,55,6) O(f(f(f(e,e),b),f(f(b,b),b))). ** KEPT: 4468 (378,9,55,5) O(f(f(e,e),f(b,f(f(b,b),b)))). ** KEPT: 4469 (378,9,49,6) O(f(f(f(e,e),b),f(e,f(b,b)))). ** KEPT: 4470 (378,9,49,5) O(f(f(e,e),f(b,f(e,f(b,b))))). ** KEPT: 4471 (378,9,48,6) O(f(f(f(e,e),b),f(b,f(b,b)))). ** KEPT: 4472 (378,9,48,5) O(f(f(e,e),f(b,f(b,f(b,b))))). ** KEPT: 4473 (378,9,41,6) O(f(f(f(e,e),b),f(g(b),e))). ** KEPT: 4474 (378,9,40,6) O(f(f(f(e,e),b),f(g(b),b))). ** KEPT: 4475 (378,9,37,6) O(f(f(f(e,e),b),f(e,g(b)))). ** KEPT: 4476 (378,9,37,5) O(f(f(e,e),f(b,f(e,g(b))))). ** KEPT: 4477 (378,9,36,6) O(f(f(f(e,e),b),f(b,g(b)))). ** KEPT: 4478 (378,9,36,5) O(f(f(e,e),f(b,f(b,g(b))))). ** KEPT: 4479 (378,9,35,6) O(f(f(f(e,e),b),f(g(b),g(b)))). ** KEPT: 4480 (378,9,27,6) O(f(f(f(e,e),b),l(d,d))). ** KEPT: 4481 (378,9,24,6) O(f(f(f(e,e),b),g(b))). ** KEPT: 4482 (378,9,23,6) O(f(f(f(e,e),b),f(b,e))). ** KEPT: 4483 (378,9,22,6) O(f(f(f(e,e),b),f(e,b))). ** KEPT: 4484 (378,9,21,6) O(f(f(f(e,e),b),f(b,b))). ** KEPT: 4485 (378,9,12,6) O(f(f(f(e,e),b),b)). ** KEPT: 4486 (378,9,7,6) O(f(f(f(e,e),b),e)). ** KEPT: 4487 (4,378) O(f(f(f(x,g(x)),e),b)). ** KEPT: 4488 (3,378) O(f(f(f(g(x),x),e),b)). ** KEPT: 4489 (4,378) O(f(f(e,f(x,g(x))),b)). ** KEPT: 4490 (3,378) O(f(f(e,f(g(x),x)),b)). new given clause: 379 (303,9,7,6) O(f(f(e,e),e)). ** KEPT: 4491 (379,9,379,150) -EQUAL(f(f(f(e,e),e),f(f(e,e),e)),f(a,c)). ** KEPT: 4492 (379,9,379,15) -EQUAL(f(f(f(e,e),e),f(f(e,e),e)),d). ** KEPT: 4493 (379,9,378,150) -EQUAL(f(f(f(e,e),b),f(f(e,e),e)),f(a,c)). ** KEPT: 4494 (379,9,378,15) -EQUAL(f(f(f(e,e),b),f(f(e,e),e)),d). ** KEPT: 4495 (379,9,346,150) -EQUAL(f(f(e,f(e,e)),f(f(e,e),e)),f(a,c)). ** KEPT: 4496 (379,9,346,15) -EQUAL(f(f(e,f(e,e)),f(f(e,e),e)),d). ** KEPT: 4497 (379,9,303,150) -EQUAL(f(f(e,e),f(f(e,e),e)),f(a,c)). ** KEPT: 4498 (379,9,303,15) -EQUAL(f(f(e,e),f(f(e,e),e)),d). ** KEPT: 4499 (379,9,149,150) -EQUAL(f(l(f(a,c),d),f(f(e,e),e)),f(a,c)). ** KEPT: 4500 (379,9,149,15) -EQUAL(f(l(f(a,c),d),f(f(e,e),e)),d). ** KEPT: 4501 (379,9,148,150) -EQUAL(f(l(d,f(a,c)),f(f(e,e),e)),f(a,c)). ** KEPT: 4502 (379,9,148,15) -EQUAL(f(l(d,f(a,c)),f(f(e,e),e)),d). ** KEPT: 4503 (379,9,142,150) -EQUAL(f(g(l(d,d)),f(f(e,e),e)),f(a,c)). ** KEPT: 4504 (379,9,142,15) -EQUAL(f(g(l(d,d)),f(f(e,e),e)),d). ** KEPT: 4505 (379,9,141,150) -EQUAL(f(f(l(d,d),e),f(f(e,e),e)),f(a,c)). ** KEPT: 4506 (379,9,141,15) -EQUAL(f(f(l(d,d),e),f(f(e,e),e)),d). ** KEPT: 4507 (379,9,140,150) -EQUAL(f(f(l(d,d),b),f(f(e,e),e)),f(a,c)). ** KEPT: 4508 (379,9,140,15) -EQUAL(f(f(l(d,d),b),f(f(e,e),e)),d). ** KEPT: 4509 (379,9,129,150) -EQUAL(f(f(e,l(d,d)),f(f(e,e),e)),f(a,c)). ** KEPT: 4510 (379,9,129,15) -EQUAL(f(f(e,l(d,d)),f(f(e,e),e)),d). ** KEPT: 4511 (379,9,128,150) -EQUAL(f(f(b,l(d,d)),f(f(e,e),e)),f(a,c)). ** KEPT: 4512 (379,9,128,15) -EQUAL(f(f(b,l(d,d)),f(f(e,e),e)),d). ** KEPT: 4513 (379,9,108,150) -EQUAL(f(f(b,f(e,e)),f(f(e,e),e)),f(a,c)). ** KEPT: 4514 (379,9,108,15) -EQUAL(f(f(b,f(e,e)),f(f(e,e),e)),d). ** KEPT: 4515 (379,9,107,150) -EQUAL(f(f(f(b,e),e),f(f(e,e),e)),f(a,c)). ** KEPT: 4516 (379,9,107,15) -EQUAL(f(f(f(b,e),e),f(f(e,e),e)),d). ** KEPT: 4517 (379,9,106,150) -EQUAL(f(f(f(b,e),b),f(f(e,e),e)),f(a,c)). ** KEPT: 4518 (379,9,106,15) -EQUAL(f(f(f(b,e),b),f(f(e,e),e)),d). ** KEPT: 4519 (379,9,80,150) -EQUAL(f(f(e,f(b,e)),f(f(e,e),e)),f(a,c)). ** KEPT: 4520 (379,9,80,15) -EQUAL(f(f(e,f(b,e)),f(f(e,e),e)),d). ** KEPT: 4521 (379,9,79,150) -EQUAL(f(f(f(e,b),e),f(f(e,e),e)),f(a,c)). ** KEPT: 4522 (379,9,79,15) -EQUAL(f(f(f(e,b),e),f(f(e,e),e)),d). ** KEPT: 4523 (379,9,78,150) -EQUAL(f(f(f(e,b),b),f(f(e,e),e)),f(a,c)). ** KEPT: 4524 (379,9,78,15) -EQUAL(f(f(f(e,b),b),f(f(e,e),e)),d). ** KEPT: 4525 (379,9,69,150) -EQUAL(f(f(e,f(e,b)),f(f(e,e),e)),f(a,c)). ** KEPT: 4526 (379,9,69,15) -EQUAL(f(f(e,f(e,b)),f(f(e,e),e)),d). ** KEPT: 4527 (379,9,68,150) -EQUAL(f(f(b,f(e,b)),f(f(e,e),e)),f(a,c)). ** KEPT: 4528 (379,9,68,15) -EQUAL(f(f(b,f(e,b)),f(f(e,e),e)),d). ** KEPT: 4529 (379,9,57,150) -EQUAL(f(f(b,f(b,e)),f(f(e,e),e)),f(a,c)). ** KEPT: 4530 (379,9,57,15) -EQUAL(f(f(b,f(b,e)),f(f(e,e),e)),d). ** KEPT: 4531 (379,9,56,150) -EQUAL(f(f(f(b,b),e),f(f(e,e),e)),f(a,c)). ** KEPT: 4532 (379,9,56,15) -EQUAL(f(f(f(b,b),e),f(f(e,e),e)),d). ** KEPT: 4533 (379,9,55,150) -EQUAL(f(f(f(b,b),b),f(f(e,e),e)),f(a,c)). ** KEPT: 4534 (379,9,55,15) -EQUAL(f(f(f(b,b),b),f(f(e,e),e)),d). ** KEPT: 4535 (379,9,49,150) -EQUAL(f(f(e,f(b,b)),f(f(e,e),e)),f(a,c)). ** KEPT: 4536 (379,9,49,15) -EQUAL(f(f(e,f(b,b)),f(f(e,e),e)),d). ** KEPT: 4537 (379,9,48,150) -EQUAL(f(f(b,f(b,b)),f(f(e,e),e)),f(a,c)). ** KEPT: 4538 (379,9,48,15) -EQUAL(f(f(b,f(b,b)),f(f(e,e),e)),d). ** KEPT: 4539 (379,9,41,150) -EQUAL(f(f(g(b),e),f(f(e,e),e)),f(a,c)). ** KEPT: 4540 (379,9,41,15) -EQUAL(f(f(g(b),e),f(f(e,e),e)),d). ** KEPT: 4541 (379,9,40,150) -EQUAL(f(f(g(b),b),f(f(e,e),e)),f(a,c)). ** KEPT: 4542 (379,9,40,15) -EQUAL(f(f(g(b),b),f(f(e,e),e)),d). ** KEPT: 4543 (379,9,37,150) -EQUAL(f(f(e,g(b)),f(f(e,e),e)),f(a,c)). ** KEPT: 4544 (379,9,37,15) -EQUAL(f(f(e,g(b)),f(f(e,e),e)),d). ** KEPT: 4545 (379,9,36,150) -EQUAL(f(f(b,g(b)),f(f(e,e),e)),f(a,c)). ** KEPT: 4546 (379,9,36,15) -EQUAL(f(f(b,g(b)),f(f(e,e),e)),d). ** KEPT: 4547 (379,9,35,150) -EQUAL(f(f(g(b),g(b)),f(f(e,e),e)),f(a,c)). ** KEPT: 4548 (379,9,35,15) -EQUAL(f(f(g(b),g(b)),f(f(e,e),e)),d). ** KEPT: 4549 (379,9,27,150) -EQUAL(f(l(d,d),f(f(e,e),e)),f(a,c)). ** KEPT: 4550 (379,9,27,15) -EQUAL(f(l(d,d),f(f(e,e),e)),d). ** KEPT: 4551 (379,9,24,150) -EQUAL(f(g(b),f(f(e,e),e)),f(a,c)). ** KEPT: 4552 (379,9,24,15) -EQUAL(f(g(b),f(f(e,e),e)),d). ** KEPT: 4553 (379,9,23,150) -EQUAL(f(f(b,e),f(f(e,e),e)),f(a,c)). ** KEPT: 4554 (379,9,23,15) -EQUAL(f(f(b,e),f(f(e,e),e)),d). ** KEPT: 4555 (379,9,22,150) -EQUAL(f(f(e,b),f(f(e,e),e)),f(a,c)). ** KEPT: 4556 (379,9,22,15) -EQUAL(f(f(e,b),f(f(e,e),e)),d). ** KEPT: 4557 (379,9,21,150) -EQUAL(f(f(b,b),f(f(e,e),e)),f(a,c)). ** KEPT: 4558 (379,9,21,15) -EQUAL(f(f(b,b),f(f(e,e),e)),d). ** KEPT: 4559 (379,9,12,150) -EQUAL(f(b,f(f(e,e),e)),f(a,c)). ** KEPT: 4560 (379,9,12,15) -EQUAL(f(b,f(f(e,e),e)),d). ** KEPT: 4561 (379,9,7,150) -EQUAL(f(e,f(f(e,e),e)),f(a,c)). ** KEPT: 4562 (379,9,7,15) -EQUAL(f(e,f(f(e,e),e)),d). ** KEPT: 4563 (379,9,379,6) O(f(f(f(e,e),e),f(f(e,e),e))). ** KEPT: 4564 (379,9,379,5) O(f(f(e,e),f(e,f(f(e,e),e)))). ** KEPT: 4565 (379,9,378,6) O(f(f(f(e,e),b),f(f(e,e),e))). ** KEPT: 4566 (379,9,378,5) O(f(f(e,e),f(b,f(f(e,e),e)))). ** KEPT: 4567 (379,9,346,6) O(f(f(e,f(e,e)),f(f(e,e),e))). ** KEPT: 4568 (379,9,346,5) O(f(e,f(f(e,e),f(f(e,e),e)))). ** KEPT: 4569 (379,9,303,6) O(f(f(e,e),f(f(e,e),e))). ** KEPT: 4570 (379,9,303,5) O(f(e,f(e,f(f(e,e),e)))). ** KEPT: 4571 (379,9,149,6) O(f(l(f(a,c),d),f(f(e,e),e))). ** KEPT: 4572 (379,9,148,6) O(f(l(d,f(a,c)),f(f(e,e),e))). ** KEPT: 4573 (379,9,142,6) O(f(g(l(d,d)),f(f(e,e),e))). ** KEPT: 4574 (379,9,141,6) O(f(f(l(d,d),e),f(f(e,e),e))). ** KEPT: 4575 (379,9,141,5) O(f(l(d,d),f(e,f(f(e,e),e)))). ** KEPT: 4576 (379,9,140,6) O(f(f(l(d,d),b),f(f(e,e),e))). ** KEPT: 4577 (379,9,140,5) O(f(l(d,d),f(b,f(f(e,e),e)))). ** KEPT: 4578 (379,9,129,6) O(f(f(e,l(d,d)),f(f(e,e),e))). ** KEPT: 4579 (379,9,129,5) O(f(e,f(l(d,d),f(f(e,e),e)))). ** KEPT: 4580 (379,9,128,6) O(f(f(b,l(d,d)),f(f(e,e),e))). ** KEPT: 4581 (379,9,128,5) O(f(b,f(l(d,d),f(f(e,e),e)))). ** KEPT: 4582 (379,9,108,6) O(f(f(b,f(e,e)),f(f(e,e),e))). ** KEPT: 4583 (379,9,108,5) O(f(b,f(f(e,e),f(f(e,e),e)))). ** KEPT: 4584 (379,9,107,6) O(f(f(f(b,e),e),f(f(e,e),e))). ** KEPT: 4585 (379,9,107,5) O(f(f(b,e),f(e,f(f(e,e),e)))). ** KEPT: 4586 (379,9,106,6) O(f(f(f(b,e),b),f(f(e,e),e))). ** KEPT: 4587 (379,9,106,5) O(f(f(b,e),f(b,f(f(e,e),e)))). ** KEPT: 4588 (379,9,80,6) O(f(f(e,f(b,e)),f(f(e,e),e))). ** KEPT: 4589 (379,9,80,5) O(f(e,f(f(b,e),f(f(e,e),e)))). ** KEPT: 4590 (379,9,79,6) O(f(f(f(e,b),e),f(f(e,e),e))). ** KEPT: 4591 (379,9,79,5) O(f(f(e,b),f(e,f(f(e,e),e)))). ** KEPT: 4592 (379,9,78,6) O(f(f(f(e,b),b),f(f(e,e),e))). ** KEPT: 4593 (379,9,78,5) O(f(f(e,b),f(b,f(f(e,e),e)))). ** KEPT: 4594 (379,9,69,6) O(f(f(e,f(e,b)),f(f(e,e),e))). ** KEPT: 4595 (379,9,69,5) O(f(e,f(f(e,b),f(f(e,e),e)))). ** KEPT: 4596 (379,9,68,6) O(f(f(b,f(e,b)),f(f(e,e),e))). ** KEPT: 4597 (379,9,68,5) O(f(b,f(f(e,b),f(f(e,e),e)))). ** KEPT: 4598 (379,9,57,6) O(f(f(b,f(b,e)),f(f(e,e),e))). ** KEPT: 4599 (379,9,57,5) O(f(b,f(f(b,e),f(f(e,e),e)))). ** KEPT: 4600 (379,9,56,6) O(f(f(f(b,b),e),f(f(e,e),e))). ** KEPT: 4601 (379,9,56,5) O(f(f(b,b),f(e,f(f(e,e),e)))). ** KEPT: 4602 (379,9,55,6) O(f(f(f(b,b),b),f(f(e,e),e))). ** KEPT: 4603 (379,9,55,5) O(f(f(b,b),f(b,f(f(e,e),e)))). ** KEPT: 4604 (379,9,49,6) O(f(f(e,f(b,b)),f(f(e,e),e))). ** KEPT: 4605 (379,9,49,5) O(f(e,f(f(b,b),f(f(e,e),e)))). ** KEPT: 4606 (379,9,48,6) O(f(f(b,f(b,b)),f(f(e,e),e))). ** KEPT: 4607 (379,9,48,5) O(f(b,f(f(b,b),f(f(e,e),e)))). ** KEPT: 4608 (379,9,41,6) O(f(f(g(b),e),f(f(e,e),e))). ** KEPT: 4609 (379,9,41,5) O(f(g(b),f(e,f(f(e,e),e)))). ** KEPT: 4610 (379,9,40,6) O(f(f(g(b),b),f(f(e,e),e))). ** KEPT: 4611 (379,9,37,6) O(f(f(e,g(b)),f(f(e,e),e))). ** KEPT: 4612 (379,9,37,5) O(f(e,f(g(b),f(f(e,e),e)))). ** KEPT: 4613 (379,9,36,6) O(f(f(b,g(b)),f(f(e,e),e))). ** KEPT: 4614 (379,9,35,6) O(f(f(g(b),g(b)),f(f(e,e),e))). ** KEPT: 4615 (379,9,35,5) O(f(g(b),f(g(b),f(f(e,e),e)))). ** KEPT: 4616 (379,9,27,6) O(f(l(d,d),f(f(e,e),e))). ** KEPT: 4617 (379,9,24,6) O(f(g(b),f(f(e,e),e))). ** KEPT: 4618 (379,9,23,6) O(f(f(b,e),f(f(e,e),e))). ** KEPT: 4619 (379,9,23,5) O(f(b,f(e,f(f(e,e),e)))). ** KEPT: 4620 (379,9,22,6) O(f(f(e,b),f(f(e,e),e))). ** KEPT: 4621 (379,9,22,5) O(f(e,f(b,f(f(e,e),e)))). ** KEPT: 4622 (379,9,21,6) O(f(f(b,b),f(f(e,e),e))). ** KEPT: 4623 (379,9,21,5) O(f(b,f(b,f(f(e,e),e)))). ** KEPT: 4624 (379,9,378,150) -EQUAL(f(f(f(e,e),e),f(f(e,e),b)),f(a,c)). ** KEPT: 4625 (379,9,378,15) -EQUAL(f(f(f(e,e),e),f(f(e,e),b)),d). ** KEPT: 4626 (379,9,346,150) -EQUAL(f(f(f(e,e),e),f(e,f(e,e))),f(a,c)). ** KEPT: 4627 (379,9,346,15) -EQUAL(f(f(f(e,e),e),f(e,f(e,e))),d). ** KEPT: 4628 (379,9,303,150) -EQUAL(f(f(f(e,e),e),f(e,e)),f(a,c)). ** KEPT: 4629 (379,9,303,15) -EQUAL(f(f(f(e,e),e),f(e,e)),d). ** KEPT: 4630 (379,9,149,150) -EQUAL(f(f(f(e,e),e),l(f(a,c),d)),f(a,c)). ** KEPT: 4631 (379,9,149,15) -EQUAL(f(f(f(e,e),e),l(f(a,c),d)),d). ** KEPT: 4632 (379,9,148,150) -EQUAL(f(f(f(e,e),e),l(d,f(a,c))),f(a,c)). ** KEPT: 4633 (379,9,148,15) -EQUAL(f(f(f(e,e),e),l(d,f(a,c))),d). ** KEPT: 4634 (379,9,142,150) -EQUAL(f(f(f(e,e),e),g(l(d,d))),f(a,c)). ** KEPT: 4635 (379,9,142,15) -EQUAL(f(f(f(e,e),e),g(l(d,d))),d). ** KEPT: 4636 (379,9,141,150) -EQUAL(f(f(f(e,e),e),f(l(d,d),e)),f(a,c)). ** KEPT: 4637 (379,9,141,15) -EQUAL(f(f(f(e,e),e),f(l(d,d),e)),d). ** KEPT: 4638 (379,9,140,150) -EQUAL(f(f(f(e,e),e),f(l(d,d),b)),f(a,c)). ** KEPT: 4639 (379,9,140,15) -EQUAL(f(f(f(e,e),e),f(l(d,d),b)),d). ** KEPT: 4640 (379,9,129,150) -EQUAL(f(f(f(e,e),e),f(e,l(d,d))),f(a,c)). ** KEPT: 4641 (379,9,129,15) -EQUAL(f(f(f(e,e),e),f(e,l(d,d))),d). ** KEPT: 4642 (379,9,128,150) -EQUAL(f(f(f(e,e),e),f(b,l(d,d))),f(a,c)). ** KEPT: 4643 (379,9,128,15) -EQUAL(f(f(f(e,e),e),f(b,l(d,d))),d). ** KEPT: 4644 (379,9,108,150) -EQUAL(f(f(f(e,e),e),f(b,f(e,e))),f(a,c)). ** KEPT: 4645 (379,9,108,15) -EQUAL(f(f(f(e,e),e),f(b,f(e,e))),d). ** KEPT: 4646 (379,9,107,150) -EQUAL(f(f(f(e,e),e),f(f(b,e),e)),f(a,c)). ** KEPT: 4647 (379,9,107,15) -EQUAL(f(f(f(e,e),e),f(f(b,e),e)),d). ** KEPT: 4648 (379,9,106,150) -EQUAL(f(f(f(e,e),e),f(f(b,e),b)),f(a,c)). ** KEPT: 4649 (379,9,106,15) -EQUAL(f(f(f(e,e),e),f(f(b,e),b)),d). ** KEPT: 4650 (379,9,80,150) -EQUAL(f(f(f(e,e),e),f(e,f(b,e))),f(a,c)). ** KEPT: 4651 (379,9,80,15) -EQUAL(f(f(f(e,e),e),f(e,f(b,e))),d). ** KEPT: 4652 (379,9,79,150) -EQUAL(f(f(f(e,e),e),f(f(e,b),e)),f(a,c)). ** KEPT: 4653 (379,9,79,15) -EQUAL(f(f(f(e,e),e),f(f(e,b),e)),d). ** KEPT: 4654 (379,9,78,150) -EQUAL(f(f(f(e,e),e),f(f(e,b),b)),f(a,c)). ** KEPT: 4655 (379,9,78,15) -EQUAL(f(f(f(e,e),e),f(f(e,b),b)),d). ** KEPT: 4656 (379,9,69,150) -EQUAL(f(f(f(e,e),e),f(e,f(e,b))),f(a,c)). ** KEPT: 4657 (379,9,69,15) -EQUAL(f(f(f(e,e),e),f(e,f(e,b))),d). ** KEPT: 4658 (379,9,68,150) -EQUAL(f(f(f(e,e),e),f(b,f(e,b))),f(a,c)). ** KEPT: 4659 (379,9,68,15) -EQUAL(f(f(f(e,e),e),f(b,f(e,b))),d). ** KEPT: 4660 (379,9,57,150) -EQUAL(f(f(f(e,e),e),f(b,f(b,e))),f(a,c)). ** KEPT: 4661 (379,9,57,15) -EQUAL(f(f(f(e,e),e),f(b,f(b,e))),d). ** KEPT: 4662 (379,9,56,150) -EQUAL(f(f(f(e,e),e),f(f(b,b),e)),f(a,c)). ** KEPT: 4663 (379,9,56,15) -EQUAL(f(f(f(e,e),e),f(f(b,b),e)),d). ** KEPT: 4664 (379,9,55,150) -EQUAL(f(f(f(e,e),e),f(f(b,b),b)),f(a,c)). ** KEPT: 4665 (379,9,55,15) -EQUAL(f(f(f(e,e),e),f(f(b,b),b)),d). ** KEPT: 4666 (379,9,49,150) -EQUAL(f(f(f(e,e),e),f(e,f(b,b))),f(a,c)). ** KEPT: 4667 (379,9,49,15) -EQUAL(f(f(f(e,e),e),f(e,f(b,b))),d). ** KEPT: 4668 (379,9,48,150) -EQUAL(f(f(f(e,e),e),f(b,f(b,b))),f(a,c)). ** KEPT: 4669 (379,9,48,15) -EQUAL(f(f(f(e,e),e),f(b,f(b,b))),d). ** KEPT: 4670 (379,9,41,150) -EQUAL(f(f(f(e,e),e),f(g(b),e)),f(a,c)). ** KEPT: 4671 (379,9,41,15) -EQUAL(f(f(f(e,e),e),f(g(b),e)),d). ** KEPT: 4672 (379,9,40,150) -EQUAL(f(f(f(e,e),e),f(g(b),b)),f(a,c)). ** KEPT: 4673 (379,9,40,15) -EQUAL(f(f(f(e,e),e),f(g(b),b)),d). ** KEPT: 4674 (379,9,37,150) -EQUAL(f(f(f(e,e),e),f(e,g(b))),f(a,c)). ** KEPT: 4675 (379,9,37,15) -EQUAL(f(f(f(e,e),e),f(e,g(b))),d). ** KEPT: 4676 (379,9,36,150) -EQUAL(f(f(f(e,e),e),f(b,g(b))),f(a,c)). ** KEPT: 4677 (379,9,36,15) -EQUAL(f(f(f(e,e),e),f(b,g(b))),d). ** KEPT: 4678 (379,9,35,150) -EQUAL(f(f(f(e,e),e),f(g(b),g(b))),f(a,c)). ** KEPT: 4679 (379,9,35,15) -EQUAL(f(f(f(e,e),e),f(g(b),g(b))),d). ** KEPT: 4680 (379,9,27,150) -EQUAL(f(f(f(e,e),e),l(d,d)),f(a,c)). ** KEPT: 4681 (379,9,27,15) -EQUAL(f(f(f(e,e),e),l(d,d)),d). ** KEPT: 4682 (379,9,24,150) -EQUAL(f(f(f(e,e),e),g(b)),f(a,c)). ** KEPT: 4683 (379,9,24,15) -EQUAL(f(f(f(e,e),e),g(b)),d). ** KEPT: 4684 (379,9,23,150) -EQUAL(f(f(f(e,e),e),f(b,e)),f(a,c)). ** KEPT: 4685 (379,9,23,15) -EQUAL(f(f(f(e,e),e),f(b,e)),d). ** KEPT: 4686 (379,9,22,150) -EQUAL(f(f(f(e,e),e),f(e,b)),f(a,c)). ** KEPT: 4687 (379,9,22,15) -EQUAL(f(f(f(e,e),e),f(e,b)),d). ** KEPT: 4688 (379,9,21,150) -EQUAL(f(f(f(e,e),e),f(b,b)),f(a,c)). ** KEPT: 4689 (379,9,21,15) -EQUAL(f(f(f(e,e),e),f(b,b)),d). ** KEPT: 4690 (379,9,12,150) -EQUAL(f(f(f(e,e),e),b),f(a,c)). ** KEPT: 4691 (379,9,12,15) -EQUAL(f(f(f(e,e),e),b),d). ** KEPT: 4692 (379,9,7,150) -EQUAL(f(f(f(e,e),e),e),f(a,c)). ** KEPT: 4693 (379,9,7,15) -EQUAL(f(f(f(e,e),e),e),d). ** KEPT: 4694 (379,9,378,6) O(f(f(f(e,e),e),f(f(e,e),b))). ** KEPT: 4695 (379,9,378,5) O(f(f(e,e),f(e,f(f(e,e),b)))). ** KEPT: 4696 (379,9,346,6) O(f(f(f(e,e),e),f(e,f(e,e)))). ** KEPT: 4697 (379,9,346,5) O(f(f(e,e),f(e,f(e,f(e,e))))). ** KEPT: 4698 (379,9,303,6) O(f(f(f(e,e),e),f(e,e))). ** KEPT: 4699 (379,9,149,6) O(f(f(f(e,e),e),l(f(a,c),d))). ** KEPT: 4700 (379,9,149,5) O(f(f(e,e),f(e,l(f(a,c),d)))). ** KEPT: 4701 (379,9,148,6) O(f(f(f(e,e),e),l(d,f(a,c)))). ** KEPT: 4702 (379,9,148,5) O(f(f(e,e),f(e,l(d,f(a,c))))). ** KEPT: 4703 (379,9,142,6) O(f(f(f(e,e),e),g(l(d,d)))). ** KEPT: 4704 (379,9,142,5) O(f(f(e,e),f(e,g(l(d,d))))). ** KEPT: 4705 (379,9,141,6) O(f(f(f(e,e),e),f(l(d,d),e))). ** KEPT: 4706 (379,9,141,5) O(f(f(e,e),f(e,f(l(d,d),e)))). ** KEPT: 4707 (379,9,140,6) O(f(f(f(e,e),e),f(l(d,d),b))). ** KEPT: 4708 (379,9,140,5) O(f(f(e,e),f(e,f(l(d,d),b)))). ** KEPT: 4709 (379,9,129,6) O(f(f(f(e,e),e),f(e,l(d,d)))). ** KEPT: 4710 (379,9,129,5) O(f(f(e,e),f(e,f(e,l(d,d))))). ** KEPT: 4711 (379,9,128,6) O(f(f(f(e,e),e),f(b,l(d,d)))). ** KEPT: 4712 (379,9,128,5) O(f(f(e,e),f(e,f(b,l(d,d))))). ** KEPT: 4713 (379,9,108,6) O(f(f(f(e,e),e),f(b,f(e,e)))). ** KEPT: 4714 (379,9,108,5) O(f(f(e,e),f(e,f(b,f(e,e))))). ** KEPT: 4715 (379,9,107,6) O(f(f(f(e,e),e),f(f(b,e),e))). ** KEPT: 4716 (379,9,107,5) O(f(f(e,e),f(e,f(f(b,e),e)))). ** KEPT: 4717 (379,9,106,6) O(f(f(f(e,e),e),f(f(b,e),b))). ** KEPT: 4718 (379,9,106,5) O(f(f(e,e),f(e,f(f(b,e),b)))). ** KEPT: 4719 (379,9,80,6) O(f(f(f(e,e),e),f(e,f(b,e)))). ** KEPT: 4720 (379,9,80,5) O(f(f(e,e),f(e,f(e,f(b,e))))). ** KEPT: 4721 (379,9,79,6) O(f(f(f(e,e),e),f(f(e,b),e))). ** KEPT: 4722 (379,9,79,5) O(f(f(e,e),f(e,f(f(e,b),e)))). ** KEPT: 4723 (379,9,78,6) O(f(f(f(e,e),e),f(f(e,b),b))). ** KEPT: 4724 (379,9,78,5) O(f(f(e,e),f(e,f(f(e,b),b)))). ** KEPT: 4725 (379,9,69,6) O(f(f(f(e,e),e),f(e,f(e,b)))). ** KEPT: 4726 (379,9,69,5) O(f(f(e,e),f(e,f(e,f(e,b))))). ** KEPT: 4727 (379,9,68,6) O(f(f(f(e,e),e),f(b,f(e,b)))). ** KEPT: 4728 (379,9,68,5) O(f(f(e,e),f(e,f(b,f(e,b))))). ** KEPT: 4729 (379,9,57,6) O(f(f(f(e,e),e),f(b,f(b,e)))). ** KEPT: 4730 (379,9,57,5) O(f(f(e,e),f(e,f(b,f(b,e))))). ** KEPT: 4731 (379,9,56,6) O(f(f(f(e,e),e),f(f(b,b),e))). ** KEPT: 4732 (379,9,56,5) O(f(f(e,e),f(e,f(f(b,b),e)))). ** KEPT: 4733 (379,9,55,6) O(f(f(f(e,e),e),f(f(b,b),b))). ** KEPT: 4734 (379,9,55,5) O(f(f(e,e),f(e,f(f(b,b),b)))). ** KEPT: 4735 (379,9,49,6) O(f(f(f(e,e),e),f(e,f(b,b)))). ** KEPT: 4736 (379,9,49,5) O(f(f(e,e),f(e,f(e,f(b,b))))). ** KEPT: 4737 (379,9,48,6) O(f(f(f(e,e),e),f(b,f(b,b)))). ** KEPT: 4738 (379,9,48,5) O(f(f(e,e),f(e,f(b,f(b,b))))). ** KEPT: 4739 (379,9,41,6) O(f(f(f(e,e),e),f(g(b),e))). ** KEPT: 4740 (379,9,41,5) O(f(f(e,e),f(e,f(g(b),e)))). ** KEPT: 4741 (379,9,40,6) O(f(f(f(e,e),e),f(g(b),b))). ** KEPT: 4742 (379,9,40,5) O(f(f(e,e),f(e,f(g(b),b)))). ** KEPT: 4743 (379,9,37,6) O(f(f(f(e,e),e),f(e,g(b)))). ** KEPT: 4744 (379,9,37,5) O(f(f(e,e),f(e,f(e,g(b))))). ** KEPT: 4745 (379,9,36,6) O(f(f(f(e,e),e),f(b,g(b)))). ** KEPT: 4746 (379,9,36,5) O(f(f(e,e),f(e,f(b,g(b))))). ** KEPT: 4747 (379,9,35,6) O(f(f(f(e,e),e),f(g(b),g(b)))). ** KEPT: 4748 (379,9,35,5) O(f(f(e,e),f(e,f(g(b),g(b))))). ** KEPT: 4749 (379,9,27,6) O(f(f(f(e,e),e),l(d,d))). ** KEPT: 4750 (379,9,24,6) O(f(f(f(e,e),e),g(b))). ** KEPT: 4751 (379,9,23,6) O(f(f(f(e,e),e),f(b,e))). ** KEPT: 4752 (379,9,22,6) O(f(f(f(e,e),e),f(e,b))). ** KEPT: 4753 (379,9,21,6) O(f(f(f(e,e),e),f(b,b))). ** KEPT: 4754 (379,9,12,6) O(f(f(f(e,e),e),b)). ** KEPT: 4755 (379,9,7,6) O(f(f(f(e,e),e),e)). ** KEPT: 4756 (4,379) O(f(f(f(x,g(x)),e),e)). ** KEPT: 4757 (3,379) O(f(f(f(g(x),x),e),e)). ** KEPT: 4758 (4,379) O(f(f(e,f(x,g(x))),e)). ** KEPT: 4759 (3,379) O(f(f(e,f(g(x),x)),e)). ** KEPT: 4760 (4,379) O(f(f(e,e),f(x,g(x)))). ** KEPT: 4761 (3,379) O(f(f(e,e),f(g(x),x))). 4760 back subsumes: 367 (303,9,36,6) O(f(f(e,e),f(b,g(b)))). 4761 back subsumes: 403 (40,9,303,6) O(f(f(e,e),f(g(b),b))). new given clause: 25 (15,11,15) EQUAL(f(d,l(d,d)),d). ** KEPT: 4762 (14,25) EQUAL(f(f(a,c),l(d,d)),d). ---> New Demodulator: 4763 (4762) EQUAL(f(f(a,c),l(d,d)),d). ** KEPT: 4764 (14,25) EQUAL(f(d,l(f(a,c),d)),d). ---> New Demodulator: 4765 (4764) EQUAL(f(d,l(f(a,c),d)),d). ** KEPT: 4766 (14,25) EQUAL(f(d,l(d,f(a,c))),d). ---> New Demodulator: 4767 (4766) EQUAL(f(d,l(d,f(a,c))),d). >>>> Starting back demodulation with: 4763 (4762) EQUAL(f(f(a,c),l(d,d)),d). >>>> Starting back demodulation with: 4765 (4764) EQUAL(f(d,l(f(a,c),d)),d). >>>> Starting back demodulation with: 4767 (4766) EQUAL(f(d,l(d,f(a,c))),d). >> back demodulating: 152 (150,11,15) EQUAL(f(d,l(d,f(a,c))),f(a,c)). ** KEPT: 4768 (25,5) EQUAL(f(f(x,d),l(d,d)),f(x,d)). ** KEPT: 4769 (25,5) EQUAL(f(d,f(l(d,d),x)),f(d,x)). new given clause: 32 (24,9,24,15) -EQUAL(f(g(b),g(b)),d). new given clause: 44 (21,9,12,15) -EQUAL(f(b,f(b,b)),d). new given clause: 45 (21,9,7,15) -EQUAL(f(e,f(b,b)),d). ** KEPT: 4770 (4,45) -EQUAL(f(f(x,g(x)),f(b,b)),d). ** KEPT: 4771 (3,45) -EQUAL(f(f(g(x),x),f(b,b)),d). 4770 back subsumes: 242 (36,9,21,15) -EQUAL(f(f(b,g(b)),f(b,b)),d). 4771 back subsumes: 430 (40,9,21,15) -EQUAL(f(f(g(b),b),f(b,b)),d). new given clause: 51 (21,9,12,15) -EQUAL(f(f(b,b),b),d). new given clause: 52 (21,9,7,15) -EQUAL(f(f(b,b),e),d). ** KEPT: 4772 (4,52) -EQUAL(f(f(b,b),f(x,g(x))),d). ** KEPT: 4773 (3,52) -EQUAL(f(f(b,b),f(g(x),x)),d). 4772 back subsumes: 222 (36,9,21,15) -EQUAL(f(f(b,b),f(b,g(b))),d). 4773 back subsumes: 401 (40,9,21,15) -EQUAL(f(f(b,b),f(g(b),b)),d). new given clause: 53 (21,9,24,6) O(f(f(b,b),g(b))). ** KEPT: 4774 (53,9,379,150) -EQUAL(f(f(f(e,e),e),f(f(b,b),g(b))),f(a,c)). ** KEPT: 4775 (53,9,379,15) -EQUAL(f(f(f(e,e),e),f(f(b,b),g(b))),d). ** KEPT: 4776 (53,9,378,150) -EQUAL(f(f(f(e,e),b),f(f(b,b),g(b))),f(a,c)). ** KEPT: 4777 (53,9,378,15) -EQUAL(f(f(f(e,e),b),f(f(b,b),g(b))),d). ** KEPT: 4778 (53,9,346,150) -EQUAL(f(f(e,f(e,e)),f(f(b,b),g(b))),f(a,c)). ** KEPT: 4779 (53,9,346,15) -EQUAL(f(f(e,f(e,e)),f(f(b,b),g(b))),d). ** KEPT: 4780 (53,9,303,150) -EQUAL(f(f(e,e),f(f(b,b),g(b))),f(a,c)). ** KEPT: 4781 (53,9,303,15) -EQUAL(f(f(e,e),f(f(b,b),g(b))),d). ** KEPT: 4782 (53,9,149,150) -EQUAL(f(l(f(a,c),d),f(f(b,b),g(b))),f(a,c)). ** KEPT: 4783 (53,9,149,15) -EQUAL(f(l(f(a,c),d),f(f(b,b),g(b))),d). ** KEPT: 4784 (53,9,148,150) -EQUAL(f(l(d,f(a,c)),f(f(b,b),g(b))),f(a,c)). ** KEPT: 4785 (53,9,148,15) -EQUAL(f(l(d,f(a,c)),f(f(b,b),g(b))),d). ** KEPT: 4786 (53,9,142,150) -EQUAL(f(g(l(d,d)),f(f(b,b),g(b))),f(a,c)). ** KEPT: 4787 (53,9,142,15) -EQUAL(f(g(l(d,d)),f(f(b,b),g(b))),d). ** KEPT: 4788 (53,9,141,150) -EQUAL(f(f(l(d,d),e),f(f(b,b),g(b))),f(a,c)). ** KEPT: 4789 (53,9,141,15) -EQUAL(f(f(l(d,d),e),f(f(b,b),g(b))),d). ** KEPT: 4790 (53,9,140,150) -EQUAL(f(f(l(d,d),b),f(f(b,b),g(b))),f(a,c)). ** KEPT: 4791 (53,9,140,15) -EQUAL(f(f(l(d,d),b),f(f(b,b),g(b))),d). ** KEPT: 4792 (53,9,129,150) -EQUAL(f(f(e,l(d,d)),f(f(b,b),g(b))),f(a,c)). ** KEPT: 4793 (53,9,129,15) -EQUAL(f(f(e,l(d,d)),f(f(b,b),g(b))),d). ** KEPT: 4794 (53,9,128,150) -EQUAL(f(f(b,l(d,d)),f(f(b,b),g(b))),f(a,c)). ** KEPT: 4795 (53,9,128,15) -EQUAL(f(f(b,l(d,d)),f(f(b,b),g(b))),d). ** KEPT: 4796 (53,9,108,150) -EQUAL(f(f(b,f(e,e)),f(f(b,b),g(b))),f(a,c)). ** KEPT: 4797 (53,9,108,15) -EQUAL(f(f(b,f(e,e)),f(f(b,b),g(b))),d). ** KEPT: 4798 (53,9,107,150) -EQUAL(f(f(f(b,e),e),f(f(b,b),g(b))),f(a,c)). ** KEPT: 4799 (53,9,107,15) -EQUAL(f(f(f(b,e),e),f(f(b,b),g(b))),d). ** KEPT: 4800 (53,9,106,150) -EQUAL(f(f(f(b,e),b),f(f(b,b),g(b))),f(a,c)). ** KEPT: 4801 (53,9,106,15) -EQUAL(f(f(f(b,e),b),f(f(b,b),g(b))),d). ** KEPT: 4802 (53,9,80,150) -EQUAL(f(f(e,f(b,e)),f(f(b,b),g(b))),f(a,c)). ** KEPT: 4803 (53,9,80,15) -EQUAL(f(f(e,f(b,e)),f(f(b,b),g(b))),d). ** KEPT: 4804 (53,9,79,150) -EQUAL(f(f(f(e,b),e),f(f(b,b),g(b))),f(a,c)). ** KEPT: 4805 (53,9,79,15) -EQUAL(f(f(f(e,b),e),f(f(b,b),g(b))),d). ** KEPT: 4806 (53,9,78,150) -EQUAL(f(f(f(e,b),b),f(f(b,b),g(b))),f(a,c)). ** KEPT: 4807 (53,9,78,15) -EQUAL(f(f(f(e,b),b),f(f(b,b),g(b))),d). ** KEPT: 4808 (53,9,69,150) -EQUAL(f(f(e,f(e,b)),f(f(b,b),g(b))),f(a,c)). ** KEPT: 4809 (53,9,69,15) -EQUAL(f(f(e,f(e,b)),f(f(b,b),g(b))),d). ** KEPT: 4810 (53,9,68,150) -EQUAL(f(f(b,f(e,b)),f(f(b,b),g(b))),f(a,c)). ** KEPT: 4811 (53,9,68,15) -EQUAL(f(f(b,f(e,b)),f(f(b,b),g(b))),d). ** KEPT: 4812 (53,9,57,150) -EQUAL(f(f(b,f(b,e)),f(f(b,b),g(b))),f(a,c)). ** KEPT: 4813 (53,9,57,15) -EQUAL(f(f(b,f(b,e)),f(f(b,b),g(b))),d). ** KEPT: 4814 (53,9,56,150) -EQUAL(f(f(f(b,b),e),f(f(b,b),g(b))),f(a,c)). ** KEPT: 4815 (53,9,56,15) -EQUAL(f(f(f(b,b),e),f(f(b,b),g(b))),d). ** KEPT: 4816 (53,9,55,150) -EQUAL(f(f(f(b,b),b),f(f(b,b),g(b))),f(a,c)). ** KEPT: 4817 (53,9,55,15) -EQUAL(f(f(f(b,b),b),f(f(b,b),g(b))),d). ** KEPT: 4818 (53,9,53,150) -EQUAL(f(f(f(b,b),g(b)),f(f(b,b),g(b))),f(a,c)). ** KEPT: 4819 (53,9,53,15) -EQUAL(f(f(f(b,b),g(b)),f(f(b,b),g(b))),d). ** KEPT: 4820 (53,9,49,150) -EQUAL(f(f(e,f(b,b)),f(f(b,b),g(b))),f(a,c)). ** KEPT: 4821 (53,9,49,15) -EQUAL(f(f(e,f(b,b)),f(f(b,b),g(b))),d). ** KEPT: 4822 (53,9,48,150) -EQUAL(f(f(b,f(b,b)),f(f(b,b),g(b))),f(a,c)). ** KEPT: 4823 (53,9,48,15) -EQUAL(f(f(b,f(b,b)),f(f(b,b),g(b))),d). ** KEPT: 4824 (53,9,41,150) -EQUAL(f(f(g(b),e),f(f(b,b),g(b))),f(a,c)). ** KEPT: 4825 (53,9,41,15) -EQUAL(f(f(g(b),e),f(f(b,b),g(b))),d). ** KEPT: 4826 (53,9,40,150) -EQUAL(f(f(g(b),b),f(f(b,b),g(b))),f(a,c)). ** KEPT: 4827 (53,9,40,15) -EQUAL(f(f(g(b),b),f(f(b,b),g(b))),d). ** KEPT: 4828 (53,9,37,150) -EQUAL(f(f(e,g(b)),f(f(b,b),g(b))),f(a,c)). ** KEPT: 4829 (53,9,37,15) -EQUAL(f(f(e,g(b)),f(f(b,b),g(b))),d). ** KEPT: 4830 (53,9,36,150) -EQUAL(f(f(b,g(b)),f(f(b,b),g(b))),f(a,c)). ** KEPT: 4831 (53,9,36,15) -EQUAL(f(f(b,g(b)),f(f(b,b),g(b))),d). ** KEPT: 4832 (53,9,35,150) -EQUAL(f(f(g(b),g(b)),f(f(b,b),g(b))),f(a,c)). ** KEPT: 4833 (53,9,35,15) -EQUAL(f(f(g(b),g(b)),f(f(b,b),g(b))),d). ** KEPT: 4834 (53,9,27,150) -EQUAL(f(l(d,d),f(f(b,b),g(b))),f(a,c)). ** KEPT: 4835 (53,9,27,15) -EQUAL(f(l(d,d),f(f(b,b),g(b))),d). ** KEPT: 4836 (53,9,24,150) -EQUAL(f(g(b),f(f(b,b),g(b))),f(a,c)). ** KEPT: 4837 (53,9,24,15) -EQUAL(f(g(b),f(f(b,b),g(b))),d). ** KEPT: 4838 (53,9,23,150) -EQUAL(f(f(b,e),f(f(b,b),g(b))),f(a,c)). ** KEPT: 4839 (53,9,23,15) -EQUAL(f(f(b,e),f(f(b,b),g(b))),d). ** KEPT: 4840 (53,9,22,150) -EQUAL(f(f(e,b),f(f(b,b),g(b))),f(a,c)). ** KEPT: 4841 (53,9,22,15) -EQUAL(f(f(e,b),f(f(b,b),g(b))),d). ** KEPT: 4842 (53,9,21,150) -EQUAL(f(f(b,b),f(f(b,b),g(b))),f(a,c)). ** KEPT: 4843 (53,9,21,15) -EQUAL(f(f(b,b),f(f(b,b),g(b))),d). ** KEPT: 4844 (53,9,12,150) -EQUAL(f(b,f(f(b,b),g(b))),f(a,c)). ** KEPT: 4845 (53,9,12,15) -EQUAL(f(b,f(f(b,b),g(b))),d). ** KEPT: 4846 (53,9,7,150) -EQUAL(f(e,f(f(b,b),g(b))),f(a,c)). ** KEPT: 4847 (53,9,7,15) -EQUAL(f(e,f(f(b,b),g(b))),d). ** KEPT: 4848 (53,9,379,6) O(f(f(f(e,e),e),f(f(b,b),g(b)))). ** KEPT: 4849 (53,9,379,5) O(f(f(e,e),f(e,f(f(b,b),g(b))))). ** KEPT: 4850 (53,9,378,6) O(f(f(f(e,e),b),f(f(b,b),g(b)))). ** KEPT: 4851 (53,9,378,5) O(f(f(e,e),f(b,f(f(b,b),g(b))))). ** KEPT: 4852 (53,9,346,6) O(f(f(e,f(e,e)),f(f(b,b),g(b)))). ** KEPT: 4853 (53,9,346,5) O(f(e,f(f(e,e),f(f(b,b),g(b))))). ** KEPT: 4854 (53,9,303,6) O(f(f(e,e),f(f(b,b),g(b)))). ** KEPT: 4855 (53,9,303,5) O(f(e,f(e,f(f(b,b),g(b))))). ** KEPT: 4856 (53,9,149,6) O(f(l(f(a,c),d),f(f(b,b),g(b)))). ** KEPT: 4857 (53,9,148,6) O(f(l(d,f(a,c)),f(f(b,b),g(b)))). ** KEPT: 4858 (53,9,142,6) O(f(g(l(d,d)),f(f(b,b),g(b)))). ** KEPT: 4859 (53,9,141,6) O(f(f(l(d,d),e),f(f(b,b),g(b)))). ** KEPT: 4860 (53,9,141,5) O(f(l(d,d),f(e,f(f(b,b),g(b))))). ** KEPT: 4861 (53,9,140,6) O(f(f(l(d,d),b),f(f(b,b),g(b)))). ** KEPT: 4862 (53,9,140,5) O(f(l(d,d),f(b,f(f(b,b),g(b))))). ** KEPT: 4863 (53,9,129,6) O(f(f(e,l(d,d)),f(f(b,b),g(b)))). ** KEPT: 4864 (53,9,129,5) O(f(e,f(l(d,d),f(f(b,b),g(b))))). ** KEPT: 4865 (53,9,128,6) O(f(f(b,l(d,d)),f(f(b,b),g(b)))). ** KEPT: 4866 (53,9,128,5) O(f(b,f(l(d,d),f(f(b,b),g(b))))). ** KEPT: 4867 (53,9,108,6) O(f(f(b,f(e,e)),f(f(b,b),g(b)))). ** KEPT: 4868 (53,9,108,5) O(f(b,f(f(e,e),f(f(b,b),g(b))))). ** KEPT: 4869 (53,9,107,6) O(f(f(f(b,e),e),f(f(b,b),g(b)))). ** KEPT: 4870 (53,9,107,5) O(f(f(b,e),f(e,f(f(b,b),g(b))))). ** KEPT: 4871 (53,9,106,6) O(f(f(f(b,e),b),f(f(b,b),g(b)))). ** KEPT: 4872 (53,9,106,5) O(f(f(b,e),f(b,f(f(b,b),g(b))))). ** KEPT: 4873 (53,9,80,6) O(f(f(e,f(b,e)),f(f(b,b),g(b)))). ** KEPT: 4874 (53,9,80,5) O(f(e,f(f(b,e),f(f(b,b),g(b))))). ** KEPT: 4875 (53,9,79,6) O(f(f(f(e,b),e),f(f(b,b),g(b)))). ** KEPT: 4876 (53,9,79,5) O(f(f(e,b),f(e,f(f(b,b),g(b))))). ** KEPT: 4877 (53,9,78,6) O(f(f(f(e,b),b),f(f(b,b),g(b)))). ** KEPT: 4878 (53,9,78,5) O(f(f(e,b),f(b,f(f(b,b),g(b))))). ** KEPT: 4879 (53,9,69,6) O(f(f(e,f(e,b)),f(f(b,b),g(b)))). ** KEPT: 4880 (53,9,69,5) O(f(e,f(f(e,b),f(f(b,b),g(b))))). ** KEPT: 4881 (53,9,68,6) O(f(f(b,f(e,b)),f(f(b,b),g(b)))). ** KEPT: 4882 (53,9,68,5) O(f(b,f(f(e,b),f(f(b,b),g(b))))). ** KEPT: 4883 (53,9,57,6) O(f(f(b,f(b,e)),f(f(b,b),g(b)))). ** KEPT: 4884 (53,9,57,5) O(f(b,f(f(b,e),f(f(b,b),g(b))))). ** KEPT: 4885 (53,9,56,6) O(f(f(f(b,b),e),f(f(b,b),g(b)))). ** KEPT: 4886 (53,9,56,5) O(f(f(b,b),f(e,f(f(b,b),g(b))))). ** KEPT: 4887 (53,9,55,6) O(f(f(f(b,b),b),f(f(b,b),g(b)))). ** KEPT: 4888 (53,9,55,5) O(f(f(b,b),f(b,f(f(b,b),g(b))))). ** KEPT: 4889 (53,9,53,6) O(f(f(f(b,b),g(b)),f(f(b,b),g(b)))). ** KEPT: 4890 (53,9,53,5) O(f(f(b,b),f(g(b),f(f(b,b),g(b))))). ** KEPT: 4891 (53,9,49,6) O(f(f(e,f(b,b)),f(f(b,b),g(b)))). ** KEPT: 4892 (53,9,49,5) O(f(e,f(f(b,b),f(f(b,b),g(b))))). ** KEPT: 4893 (53,9,48,6) O(f(f(b,f(b,b)),f(f(b,b),g(b)))). ** KEPT: 4894 (53,9,48,5) O(f(b,f(f(b,b),f(f(b,b),g(b))))). ** KEPT: 4895 (53,9,41,6) O(f(f(g(b),e),f(f(b,b),g(b)))). ** KEPT: 4896 (53,9,41,5) O(f(g(b),f(e,f(f(b,b),g(b))))). ** KEPT: 4897 (53,9,40,6) O(f(f(g(b),b),f(f(b,b),g(b)))). ** KEPT: 4898 (53,9,37,6) O(f(f(e,g(b)),f(f(b,b),g(b)))). ** KEPT: 4899 (53,9,37,5) O(f(e,f(g(b),f(f(b,b),g(b))))). ** KEPT: 4900 (53,9,36,6) O(f(f(b,g(b)),f(f(b,b),g(b)))). ** KEPT: 4901 (53,9,35,6) O(f(f(g(b),g(b)),f(f(b,b),g(b)))). ** KEPT: 4902 (53,9,35,5) O(f(g(b),f(g(b),f(f(b,b),g(b))))). ** KEPT: 4903 (53,9,27,6) O(f(l(d,d),f(f(b,b),g(b)))). ** KEPT: 4904 (53,9,24,6) O(f(g(b),f(f(b,b),g(b)))). ** KEPT: 4905 (53,9,23,6) O(f(f(b,e),f(f(b,b),g(b)))). ** KEPT: 4906 (53,9,23,5) O(f(b,f(e,f(f(b,b),g(b))))). ** KEPT: 4907 (53,9,22,6) O(f(f(e,b),f(f(b,b),g(b)))). ** KEPT: 4908 (53,9,22,5) O(f(e,f(b,f(f(b,b),g(b))))). ** KEPT: 4909 (53,9,21,6) O(f(f(b,b),f(f(b,b),g(b)))). ** KEPT: 4910 (53,9,21,5) O(f(b,f(b,f(f(b,b),g(b))))). ** KEPT: 4911 (53,9,379,150) -EQUAL(f(f(f(b,b),g(b)),f(f(e,e),e)),f(a,c)). ** KEPT: 4912 (53,9,379,15) -EQUAL(f(f(f(b,b),g(b)),f(f(e,e),e)),d). ** KEPT: 4913 (53,9,378,150) -EQUAL(f(f(f(b,b),g(b)),f(f(e,e),b)),f(a,c)). ** KEPT: 4914 (53,9,378,15) -EQUAL(f(f(f(b,b),g(b)),f(f(e,e),b)),d). ** KEPT: 4915 (53,9,346,150) -EQUAL(f(f(f(b,b),g(b)),f(e,f(e,e))),f(a,c)). ** KEPT: 4916 (53,9,346,15) -EQUAL(f(f(f(b,b),g(b)),f(e,f(e,e))),d). ** KEPT: 4917 (53,9,303,150) -EQUAL(f(f(f(b,b),g(b)),f(e,e)),f(a,c)). ** KEPT: 4918 (53,9,303,15) -EQUAL(f(f(f(b,b),g(b)),f(e,e)),d). ** KEPT: 4919 (53,9,149,150) -EQUAL(f(f(f(b,b),g(b)),l(f(a,c),d)),f(a,c)). ** KEPT: 4920 (53,9,149,15) -EQUAL(f(f(f(b,b),g(b)),l(f(a,c),d)),d). ** KEPT: 4921 (53,9,148,150) -EQUAL(f(f(f(b,b),g(b)),l(d,f(a,c))),f(a,c)). ** KEPT: 4922 (53,9,148,15) -EQUAL(f(f(f(b,b),g(b)),l(d,f(a,c))),d). ** KEPT: 4923 (53,9,142,150) -EQUAL(f(f(f(b,b),g(b)),g(l(d,d))),f(a,c)). ** KEPT: 4924 (53,9,142,15) -EQUAL(f(f(f(b,b),g(b)),g(l(d,d))),d). ** KEPT: 4925 (53,9,141,150) -EQUAL(f(f(f(b,b),g(b)),f(l(d,d),e)),f(a,c)). ** KEPT: 4926 (53,9,141,15) -EQUAL(f(f(f(b,b),g(b)),f(l(d,d),e)),d). ** KEPT: 4927 (53,9,140,150) -EQUAL(f(f(f(b,b),g(b)),f(l(d,d),b)),f(a,c)). ** KEPT: 4928 (53,9,140,15) -EQUAL(f(f(f(b,b),g(b)),f(l(d,d),b)),d). ** KEPT: 4929 (53,9,129,150) -EQUAL(f(f(f(b,b),g(b)),f(e,l(d,d))),f(a,c)). ** KEPT: 4930 (53,9,129,15) -EQUAL(f(f(f(b,b),g(b)),f(e,l(d,d))),d). ** KEPT: 4931 (53,9,128,150) -EQUAL(f(f(f(b,b),g(b)),f(b,l(d,d))),f(a,c)). ** KEPT: 4932 (53,9,128,15) -EQUAL(f(f(f(b,b),g(b)),f(b,l(d,d))),d). ** KEPT: 4933 (53,9,108,150) -EQUAL(f(f(f(b,b),g(b)),f(b,f(e,e))),f(a,c)). ** KEPT: 4934 (53,9,108,15) -EQUAL(f(f(f(b,b),g(b)),f(b,f(e,e))),d). ** KEPT: 4935 (53,9,107,150) -EQUAL(f(f(f(b,b),g(b)),f(f(b,e),e)),f(a,c)). ** KEPT: 4936 (53,9,107,15) -EQUAL(f(f(f(b,b),g(b)),f(f(b,e),e)),d). ** KEPT: 4937 (53,9,106,150) -EQUAL(f(f(f(b,b),g(b)),f(f(b,e),b)),f(a,c)). ** KEPT: 4938 (53,9,106,15) -EQUAL(f(f(f(b,b),g(b)),f(f(b,e),b)),d). ** KEPT: 4939 (53,9,80,150) -EQUAL(f(f(f(b,b),g(b)),f(e,f(b,e))),f(a,c)). ** KEPT: 4940 (53,9,80,15) -EQUAL(f(f(f(b,b),g(b)),f(e,f(b,e))),d). ** KEPT: 4941 (53,9,79,150) -EQUAL(f(f(f(b,b),g(b)),f(f(e,b),e)),f(a,c)). ** KEPT: 4942 (53,9,79,15) -EQUAL(f(f(f(b,b),g(b)),f(f(e,b),e)),d). ** KEPT: 4943 (53,9,78,150) -EQUAL(f(f(f(b,b),g(b)),f(f(e,b),b)),f(a,c)). ** KEPT: 4944 (53,9,78,15) -EQUAL(f(f(f(b,b),g(b)),f(f(e,b),b)),d). ** KEPT: 4945 (53,9,69,150) -EQUAL(f(f(f(b,b),g(b)),f(e,f(e,b))),f(a,c)). ** KEPT: 4946 (53,9,69,15) -EQUAL(f(f(f(b,b),g(b)),f(e,f(e,b))),d). ** KEPT: 4947 (53,9,68,150) -EQUAL(f(f(f(b,b),g(b)),f(b,f(e,b))),f(a,c)). ** KEPT: 4948 (53,9,68,15) -EQUAL(f(f(f(b,b),g(b)),f(b,f(e,b))),d). ** KEPT: 4949 (53,9,57,150) -EQUAL(f(f(f(b,b),g(b)),f(b,f(b,e))),f(a,c)). ** KEPT: 4950 (53,9,57,15) -EQUAL(f(f(f(b,b),g(b)),f(b,f(b,e))),d). ** KEPT: 4951 (53,9,56,150) -EQUAL(f(f(f(b,b),g(b)),f(f(b,b),e)),f(a,c)). ** KEPT: 4952 (53,9,56,15) -EQUAL(f(f(f(b,b),g(b)),f(f(b,b),e)),d). ** KEPT: 4953 (53,9,55,150) -EQUAL(f(f(f(b,b),g(b)),f(f(b,b),b)),f(a,c)). ** KEPT: 4954 (53,9,55,15) -EQUAL(f(f(f(b,b),g(b)),f(f(b,b),b)),d). ** KEPT: 4955 (53,9,49,150) -EQUAL(f(f(f(b,b),g(b)),f(e,f(b,b))),f(a,c)). ** KEPT: 4956 (53,9,49,15) -EQUAL(f(f(f(b,b),g(b)),f(e,f(b,b))),d). ** KEPT: 4957 (53,9,48,150) -EQUAL(f(f(f(b,b),g(b)),f(b,f(b,b))),f(a,c)). ** KEPT: 4958 (53,9,48,15) -EQUAL(f(f(f(b,b),g(b)),f(b,f(b,b))),d). ** KEPT: 4959 (53,9,41,150) -EQUAL(f(f(f(b,b),g(b)),f(g(b),e)),f(a,c)). ** KEPT: 4960 (53,9,41,15) -EQUAL(f(f(f(b,b),g(b)),f(g(b),e)),d). ** KEPT: 4961 (53,9,40,150) -EQUAL(f(f(f(b,b),g(b)),f(g(b),b)),f(a,c)). ** KEPT: 4962 (53,9,40,15) -EQUAL(f(f(f(b,b),g(b)),f(g(b),b)),d). ** KEPT: 4963 (53,9,37,150) -EQUAL(f(f(f(b,b),g(b)),f(e,g(b))),f(a,c)). ** KEPT: 4964 (53,9,37,15) -EQUAL(f(f(f(b,b),g(b)),f(e,g(b))),d). ** KEPT: 4965 (53,9,36,150) -EQUAL(f(f(f(b,b),g(b)),f(b,g(b))),f(a,c)). ** KEPT: 4966 (53,9,36,15) -EQUAL(f(f(f(b,b),g(b)),f(b,g(b))),d). ** KEPT: 4967 (53,9,35,150) -EQUAL(f(f(f(b,b),g(b)),f(g(b),g(b))),f(a,c)). ** KEPT: 4968 (53,9,35,15) -EQUAL(f(f(f(b,b),g(b)),f(g(b),g(b))),d). ** KEPT: 4969 (53,9,27,150) -EQUAL(f(f(f(b,b),g(b)),l(d,d)),f(a,c)). ** KEPT: 4970 (53,9,27,15) -EQUAL(f(f(f(b,b),g(b)),l(d,d)),d). ** KEPT: 4971 (53,9,24,150) -EQUAL(f(f(f(b,b),g(b)),g(b)),f(a,c)). ** KEPT: 4972 (53,9,24,15) -EQUAL(f(f(f(b,b),g(b)),g(b)),d). ** KEPT: 4973 (53,9,23,150) -EQUAL(f(f(f(b,b),g(b)),f(b,e)),f(a,c)). ** KEPT: 4974 (53,9,23,15) -EQUAL(f(f(f(b,b),g(b)),f(b,e)),d). ** KEPT: 4975 (53,9,22,150) -EQUAL(f(f(f(b,b),g(b)),f(e,b)),f(a,c)). ** KEPT: 4976 (53,9,22,15) -EQUAL(f(f(f(b,b),g(b)),f(e,b)),d). ** KEPT: 4977 (53,9,21,150) -EQUAL(f(f(f(b,b),g(b)),f(b,b)),f(a,c)). ** KEPT: 4978 (53,9,21,15) -EQUAL(f(f(f(b,b),g(b)),f(b,b)),d). ** KEPT: 4979 (53,9,12,150) -EQUAL(f(f(f(b,b),g(b)),b),f(a,c)). ** KEPT: 4980 (53,9,12,15) -EQUAL(f(f(f(b,b),g(b)),b),d). ** KEPT: 4981 (53,9,7,150) -EQUAL(f(f(f(b,b),g(b)),e),f(a,c)). ** KEPT: 4982 (53,9,7,15) -EQUAL(f(f(f(b,b),g(b)),e),d). ** KEPT: 4983 (53,9,379,6) O(f(f(f(b,b),g(b)),f(f(e,e),e))). ** KEPT: 4984 (53,9,379,5) O(f(f(b,b),f(g(b),f(f(e,e),e)))). ** KEPT: 4985 (53,9,378,6) O(f(f(f(b,b),g(b)),f(f(e,e),b))). ** KEPT: 4986 (53,9,378,5) O(f(f(b,b),f(g(b),f(f(e,e),b)))). ** KEPT: 4987 (53,9,346,6) O(f(f(f(b,b),g(b)),f(e,f(e,e)))). ** KEPT: 4988 (53,9,346,5) O(f(f(b,b),f(g(b),f(e,f(e,e))))). ** KEPT: 4989 (53,9,303,6) O(f(f(f(b,b),g(b)),f(e,e))). ** KEPT: 4990 (53,9,303,5) O(f(f(b,b),f(g(b),f(e,e)))). ** KEPT: 4991 (53,9,149,6) O(f(f(f(b,b),g(b)),l(f(a,c),d))). ** KEPT: 4992 (53,9,149,5) O(f(f(b,b),f(g(b),l(f(a,c),d)))). ** KEPT: 4993 (53,9,148,6) O(f(f(f(b,b),g(b)),l(d,f(a,c)))). ** KEPT: 4994 (53,9,148,5) O(f(f(b,b),f(g(b),l(d,f(a,c))))). ** KEPT: 4995 (53,9,142,6) O(f(f(f(b,b),g(b)),g(l(d,d)))). ** KEPT: 4996 (53,9,142,5) O(f(f(b,b),f(g(b),g(l(d,d))))). ** KEPT: 4997 (53,9,141,6) O(f(f(f(b,b),g(b)),f(l(d,d),e))). ** KEPT: 4998 (53,9,141,5) O(f(f(b,b),f(g(b),f(l(d,d),e)))). ** KEPT: 4999 (53,9,140,6) O(f(f(f(b,b),g(b)),f(l(d,d),b))). ** KEPT: 5000 (53,9,140,5) O(f(f(b,b),f(g(b),f(l(d,d),b)))). ** KEPT: 5001 (53,9,129,6) O(f(f(f(b,b),g(b)),f(e,l(d,d)))). ** KEPT: 5002 (53,9,129,5) O(f(f(b,b),f(g(b),f(e,l(d,d))))). ** KEPT: 5003 (53,9,128,6) O(f(f(f(b,b),g(b)),f(b,l(d,d)))). ** KEPT: 5004 (53,9,108,6) O(f(f(f(b,b),g(b)),f(b,f(e,e)))). ** KEPT: 5005 (53,9,107,6) O(f(f(f(b,b),g(b)),f(f(b,e),e))). ** KEPT: 5006 (53,9,107,5) O(f(f(b,b),f(g(b),f(f(b,e),e)))). ** KEPT: 5007 (53,9,106,6) O(f(f(f(b,b),g(b)),f(f(b,e),b))). ** KEPT: 5008 (53,9,106,5) O(f(f(b,b),f(g(b),f(f(b,e),b)))). ** KEPT: 5009 (53,9,80,6) O(f(f(f(b,b),g(b)),f(e,f(b,e)))). ** KEPT: 5010 (53,9,80,5) O(f(f(b,b),f(g(b),f(e,f(b,e))))). ** KEPT: 5011 (53,9,79,6) O(f(f(f(b,b),g(b)),f(f(e,b),e))). ** KEPT: 5012 (53,9,79,5) O(f(f(b,b),f(g(b),f(f(e,b),e)))). ** KEPT: 5013 (53,9,78,6) O(f(f(f(b,b),g(b)),f(f(e,b),b))). ** KEPT: 5014 (53,9,78,5) O(f(f(b,b),f(g(b),f(f(e,b),b)))). ** KEPT: 5015 (53,9,69,6) O(f(f(f(b,b),g(b)),f(e,f(e,b)))). ** KEPT: 5016 (53,9,69,5) O(f(f(b,b),f(g(b),f(e,f(e,b))))). ** KEPT: 5017 (53,9,68,6) O(f(f(f(b,b),g(b)),f(b,f(e,b)))). ** KEPT: 5018 (53,9,57,6) O(f(f(f(b,b),g(b)),f(b,f(b,e)))). ** KEPT: 5019 (53,9,56,6) O(f(f(f(b,b),g(b)),f(f(b,b),e))). ** KEPT: 5020 (53,9,56,5) O(f(f(b,b),f(g(b),f(f(b,b),e)))). ** KEPT: 5021 (53,9,55,6) O(f(f(f(b,b),g(b)),f(f(b,b),b))). ** KEPT: 5022 (53,9,55,5) O(f(f(b,b),f(g(b),f(f(b,b),b)))). ** KEPT: 5023 (53,9,49,6) O(f(f(f(b,b),g(b)),f(e,f(b,b)))). ** KEPT: 5024 (53,9,49,5) O(f(f(b,b),f(g(b),f(e,f(b,b))))). ** KEPT: 5025 (53,9,48,6) O(f(f(f(b,b),g(b)),f(b,f(b,b)))). ** KEPT: 5026 (53,9,41,6) O(f(f(f(b,b),g(b)),f(g(b),e))). ** KEPT: 5027 (53,9,41,5) O(f(f(b,b),f(g(b),f(g(b),e)))). ** KEPT: 5028 (53,9,40,6) O(f(f(f(b,b),g(b)),f(g(b),b))). ** KEPT: 5029 (53,9,40,5) O(f(f(b,b),f(g(b),f(g(b),b)))). ** KEPT: 5030 (53,9,37,6) O(f(f(f(b,b),g(b)),f(e,g(b)))). ** KEPT: 5031 (53,9,37,5) O(f(f(b,b),f(g(b),f(e,g(b))))). ** KEPT: 5032 (53,9,36,6) O(f(f(f(b,b),g(b)),f(b,g(b)))). ** KEPT: 5033 (53,9,35,6) O(f(f(f(b,b),g(b)),f(g(b),g(b)))). ** KEPT: 5034 (53,9,35,5) O(f(f(b,b),f(g(b),f(g(b),g(b))))). ** KEPT: 5035 (53,9,27,6) O(f(f(f(b,b),g(b)),l(d,d))). ** KEPT: 5036 (53,9,27,5) O(f(f(b,b),f(g(b),l(d,d)))). ** KEPT: 5037 (53,9,24,6) O(f(f(f(b,b),g(b)),g(b))). ** KEPT: 5038 (53,9,23,6) O(f(f(f(b,b),g(b)),f(b,e))). ** KEPT: 5039 (53,9,22,6) O(f(f(f(b,b),g(b)),f(e,b))). ** KEPT: 5040 (53,9,22,5) O(f(f(b,b),f(g(b),f(e,b)))). ** KEPT: 5041 (53,9,21,6) O(f(f(f(b,b),g(b)),f(b,b))). ** KEPT: 5042 (53,9,12,6) O(f(f(f(b,b),g(b)),b)). ** KEPT: 5043 (53,9,7,6) O(f(f(f(b,b),g(b)),e)). ------------ END OF SEARCH ------------ search stopped by max_kept option. --------------- options --------------- set(UR_res). set(para_from). set(para_into). set(para_from_left). set(para_from_right). set(demod_hist). set(for_sub). set(print_kept). set(back_sub). set(print_back_sub). set(print_given). set(check_arity). set(back_demod). set(print_new_demod). set(print_back_demod). clear(binary_res). clear(hyper_res). clear(demod_inf). clear(para_into_vars). clear(para_from_vars). clear(para_all). clear(para_ones_rule). clear(no_para_into_left). clear(no_para_into_right). clear(demod_linear). clear(print_gen). clear(sort_literals). clear(Unit_deletion). clear(factor). clear(print_weight). clear(sos_fifo). clear(bird_print). clear(atom_wt_max_args). clear(print_lists_at_end). clear(free_all_mem). clear(for_sub_fpa). clear(no_fapl). clear(no_fanl). clear(order_eq). clear(dynamic_demod). assign(report, 0). assign(max_seconds, 0). assign(max_given, 0). assign(max_kept, 5000). assign(max_gen, 0). assign(max_mem, 0). assign(max_weight, 0). assign(max_literals, 0). assign(fpa_literals, 3). assign(fpa_terms, 3). assign(demod_limit, 100). assign(max_proofs, 1). assign(neg_weight, 0). ------------- memory usage ------------ 43 mallocs of 32700 bytes each (1373.1+ K) type (bytes each) gets frees in use avail bytes sym_ent ( 64) 28 0 28 0 1.8 K term ( 16) 88134 80708 7426 12 116.2 K rel ( 20) 78910 66423 12487 12 244.1 K term_ptr ( 8) 51333 434 50899 0 397.6 K fpa_head ( 12) 426 3 423 0 5.0 K fpa_tree ( 28) 106852 106852 0 29 0.8 K context ( 260) 26967 26967 0 5 1.3 K trail ( 12) 29349 29349 0 7 0.1 K imd_tree ( 24) 45 0 45 0 1.1 K imd_pos ( 416) 23710 23710 0 3 1.2 K is_tree ( 12) 13377 88 13289 0 155.7 K is_pos (1216) 24660 24660 0 4 4.8 K fsub_pos ( 8) 5736 5736 0 1 0.0 K literal ( 16) 5916 859 5057 2 79.0 K clause ( 28) 5777 734 5043 1 137.9 K list ( 60) 3 0 3 0 0.2 K clash_nd ( 32) 162 162 0 2 0.1 K clause_ptr ( 8) 5104 61 5043 0 39.4 K int_ptr ( 8) 22680 2843 19837 5 155.0 K -------------- statistics ------------- clauses input 20 clauses given 61 clauses generated 5744 demodulation rewrites 314 clauses wt or lit delete 0 tautologies deleted 0 clauses forward subsumed 731 (clauses subsumed by sos) 394 unit deletions 0 clauses kept 5017 new demodualtors 6 empty clauses 0 factors generated 0 clauses back demodulated 4 clauses back subsumed 45 clauses not processed 0 ----------- times (seconds) ----------- run time 159.16 input time 0.25 binary_res time 0.00 hyper_res time 0.00 UR_res time 15.41 para_into time 0.34 para_from time 0.09 pre_process time 67.38 demod time 10.61 weigh time 2.07 for_sub time 9.52 unit_del time 0.00 post_process time 73.39 back_sub time 58.98 conflict time 10.85 factor time 0.00 back demod time 0.68 FPA build time 6.03 IS build time 3.27 print_cl time 20.60 cl integrate time 6.72 window time 0.00 SHAR_EOF if test -f 'invers1.desc' then echo shar: over-writing existing file "'invers1.desc'" fi cat << \SHAR_EOF > 'invers1.desc' problem-set/algebra/groups/invers1.desc created : 07/09/86 revised : 08/12/88 Natural Language Description: Theorem: the inverse is unique; i.e., if ab=ba=e and ac=ca=e, then b=c [e is the identity]. Versions : invers1.ver1 : uses UR resolution with a standard p-formulation. created : from McCharen, Overbeek, & Wos [Aug. 1976]. verified for ITP : 7/11/86 translated for OTTER : caw. verified for OTTER : 08/12/88. SHAR_EOF if test -f 'invers1.ver1.clauses' then echo shar: over-writing existing file "'invers1.ver1.clauses'" fi cat << \SHAR_EOF > 'invers1.ver1.clauses' % problem-set/algebra/groups/invers1.ver1.clauses % created : 07/09/86 % revised : 08/12/88 % description: % % Theorem: the inverse is unique; i.e., if ab=ba=e and ac=ca=e, then % b=c [e is the identity]. % representation: % % declare_predicate(1,[O]). % declare_predicate(2,[EQUAL]). % declare_predicate(3,[P]). % declare_functions(1,[g,k]). % declare_functions(2,[f,l]). % declare_constants([e,a,b,c,d,h,j,k]). % declare_variables([x,y,z,u,v,w]). % % O(x) : used for membership in a subgroup of index 2 (see index) % P(x,y) : product of x and y is z % g(x) : inverse of x % k(x) : used to name some inverse of x (see ident2) % f(x,y) : names the product of x and y % l(x,y) : names an element of the subgroup of index 2 (see index) % e : identity element % existence of identity P(e,x,x). P(x,e,x). % existence of inverse P(g(x),x,e). P(x,g(x),e). % closure P(x,y,f(x,y)). % associative property -P(x,y,u) | -P(y,z,v) | -P(u,z,w) | P(x,v,w). -P(x,y,u) | -P(y,z,v) | -P(x,v,w) | P(u,z,w). % the operation is well defined -P(x,y,z) | -P(x,y,w) | EQUAL(z,w) . % equality axioms EQUAL(x,x). -EQUAL(x,y) | EQUAL(y,x). -EQUAL(x,y) | -EQUAL(y,z) | EQUAL(x,z). % equality substitution axioms -EQUAL(x,y) | -P(x,w,z) | P(y,w,z). -EQUAL(x,y) | -P(w,x,z) | P(w,y,z). -EQUAL(x,y) | -P(w,z,x) | P(w,z,y). -EQUAL(x,y) | EQUAL(f(x,w),f(y,w)). -EQUAL(x,y) | EQUAL(f(w,x),f(w,y)). -EQUAL(x,y) | EQUAL(g(x),g(y)). % denial of the theorem P(a,b,c). P(b,a,e). P(a,c,e). P(c,a,e). -EQUAL(b,c). SHAR_EOF if test -f 'invers1.ver1.in' then echo shar: over-writing existing file "'invers1.ver1.in'" fi cat << \SHAR_EOF > 'invers1.ver1.in' % problem-set/algebra/groups/invers1.ver1.in % created : 07/09/86 % revised : 08/12/88 % description: % % Theorem: the inverse is unique; i.e., if ab=ba=e and ac=ca=e, then % b=c [e is the identity]. % representation: % % declare_predicate(1,[O]). % declare_predicate(2,[EQUAL]). % declare_predicate(3,[P]). % declare_functions(1,[g,k]). % declare_functions(2,[f,l]). % declare_constants([e,a,b,c,d,h,j,k]). % declare_variables([x,y,z,u,v,w]). % % O(x) : used for membership in a subgroup of index 2 (see index) % P(x,y) : product of x and y is z % g(x) : inverse of x % k(x) : used to name some inverse of x (see ident2) % f(x,y) : names the product of x and y % l(x,y) : names an element of the subgroup of index 2 (see index) % e : identity element set(UR_res). set(back_demod). set(factor). set(Unit_deletion). assign(max_kept,5000). list(axioms). % existence of identity P(e,x,x). P(x,e,x). % existence of inverse P(g(x),x,e). P(x,g(x),e). % closure P(x,y,f(x,y)). % associative property -P(x,y,u) | -P(y,z,v) | -P(u,z,w) | P(x,v,w). -P(x,y,u) | -P(y,z,v) | -P(x,v,w) | P(u,z,w). % the operation is well defined -P(x,y,z) | -P(x,y,w) | EQUAL(z,w) . % equality axioms EQUAL(x,x). -EQUAL(x,y) | EQUAL(y,x). -EQUAL(x,y) | -EQUAL(y,z) | EQUAL(x,z). % equality substitution axioms -EQUAL(x,y) | -P(x,w,z) | P(y,w,z). -EQUAL(x,y) | -P(w,x,z) | P(w,y,z). -EQUAL(x,y) | -P(w,z,x) | P(w,z,y). -EQUAL(x,y) | EQUAL(f(x,w),f(y,w)). -EQUAL(x,y) | EQUAL(f(w,x),f(w,y)). -EQUAL(x,y) | EQUAL(g(x),g(y)). end_of_list. list(sos). % denial of the theorem P(a,b,e). P(b,a,e). P(a,c,e). P(c,a,e). -EQUAL(b,c). end_of_list. SHAR_EOF if test -f 'invers1.ver1.out' then echo shar: over-writing existing file "'invers1.ver1.out'" fi cat << \SHAR_EOF > 'invers1.ver1.out' % problem-set/algebra/groups/invers1.ver1.out % created : 08/12/88 % revised : 08/12/88 OTTER version 0.91, 14 June 1988. set(UR_res). set(back_demod). set(factor). set(Unit_deletion). assign(max_kept,5000). list(axioms). 1 P(e,x,x). 2 P(x,e,x). 3 P(g(x),x,e). 4 P(x,g(x),e). 5 P(x,y,f(x,y)). 6 -P(x,y,u) | -P(y,z,v) | -P(u,z,w) | P(x,v,w). 7 -P(x,y,u) | -P(y,z,v) | -P(x,v,w) | P(u,z,w). 8 -P(x,y,z) | -P(x,y,w) | EQUAL(z,w). 9 EQUAL(x,x). 10 -EQUAL(x,y) | EQUAL(y,x). 11 -EQUAL(x,y) | -EQUAL(y,z) | EQUAL(x,z). 12 -EQUAL(x,y) | -P(x,w,z) | P(y,w,z). 13 -EQUAL(x,y) | -P(w,x,z) | P(w,y,z). 14 -EQUAL(x,y) | -P(w,z,x) | P(w,z,y). 15 -EQUAL(x,y) | EQUAL(f(x,w),f(y,w)). 16 -EQUAL(x,y) | EQUAL(f(w,x),f(w,y)). 17 -EQUAL(x,y) | EQUAL(g(x),g(y)). end_of_list. list(sos). 18 P(a,b,e). 19 P(b,a,e). 20 P(a,c,e). 21 P(c,a,e). 22 -EQUAL(b,c). end_of_list. new given clause: 22 -EQUAL(b,c). ** KEPT: 23 (22,11,9) -EQUAL(c,b). ** KEPT: 24 (22,8,2) -P(c,e,b). ** KEPT: 25 (22,8,1) -P(e,c,b). ** KEPT: 26 (22,8,2) -P(b,e,c). ** KEPT: 27 (22,8,1) -P(e,b,c). new given clause: 23 (22,11,9) -EQUAL(c,b). new given clause: 18 P(a,b,e). ** KEPT: 28 (18,8,5) EQUAL(f(a,b),e). ---> New Demodulator: 29 (28) EQUAL(f(a,b),e). ** KEPT: 30 (18,7,5,1) P(f(a,e),b,e). ** KEPT: 31 (18,7,5,5) P(f(x,a),b,f(x,e)). ** KEPT: 32 (18,7,5,3) P(f(g(e),a),b,e). ** KEPT: 33 (18,7,5,2) P(f(x,a),b,x). ** KEPT: 34 (18,7,3,5) P(e,b,f(g(a),e)). ** KEPT: 35 (18,7,3,2) P(e,b,g(a)). ** KEPT: 36 (18,7,1,5) P(a,b,f(e,e)). ** KEPT: 37 (18,7,5,5) P(e,x,f(a,f(b,x))). ** KEPT: 38 (18,7,4,5) P(e,g(b),f(a,e)). ** KEPT: 39 (18,7,4,2) P(e,g(b),a). ** KEPT: 40 (18,6,2,5) P(a,f(e,b),e). ** KEPT: 41 (18,6,5,5) P(x,e,f(f(x,a),b)). ** KEPT: 42 (18,6,3,5) P(g(a),e,f(e,b)). ** KEPT: 43 (18,6,3,1) P(g(a),e,b). ** KEPT: 44 (18,6,5,5) P(a,f(b,x),f(e,x)). ** KEPT: 45 (18,6,5,4) P(a,f(b,g(e)),e). ** KEPT: 46 (18,6,5,2) P(a,f(b,e),e). ** KEPT: 47 (18,6,5,1) P(a,f(b,x),x). ** KEPT: 48 (18,6,4,5) P(a,e,f(e,g(b))). ** KEPT: 49 (18,6,4,1) P(a,e,g(b)). >>>> Starting back demodulation with: 29 (28) EQUAL(f(a,b),e). 47 back subsumes: 46 (18,6,5,2) P(a,f(b,e),e). new given clause: 19 P(b,a,e). ** KEPT: 50 (19,8,5) EQUAL(f(b,a),e). ---> New Demodulator: 51 (50) EQUAL(f(b,a),e). ** KEPT: 52 (19,7,5,1) P(f(b,e),a,e). ** KEPT: 53 (19,7,18,5) P(e,a,f(a,e)). ** KEPT: 54 (19,7,5,5) P(f(x,b),a,f(x,e)). ** KEPT: 55 (19,7,5,3) P(f(g(e),b),a,e). ** KEPT: 56 (19,7,5,2) P(f(x,b),a,x). ** KEPT: 57 (19,7,3,5) P(e,a,f(g(b),e)). ** KEPT: 58 (19,7,3,2) P(e,a,g(b)). ** KEPT: 59 (19,7,1,5) P(b,a,f(e,e)). ** KEPT: 60 (19,7,18,5) P(e,b,f(b,e)). ** KEPT: 61 (19,7,5,5) P(e,x,f(b,f(a,x))). ** KEPT: 62 (19,7,4,5) P(e,g(a),f(b,e)). ** KEPT: 63 (19,7,4,2) P(e,g(a),b). ** KEPT: 64 (19,6,2,5) P(b,f(e,a),e). ** KEPT: 65 (19,6,18,5) P(a,e,f(e,a)). ** KEPT: 66 (19,6,5,5) P(x,e,f(f(x,b),a)). ** KEPT: 67 (19,6,3,5) P(g(b),e,f(e,a)). ** KEPT: 68 (19,6,3,1) P(g(b),e,a). ** KEPT: 69 (19,6,18,5) P(b,e,f(e,b)). ** KEPT: 70 (19,6,5,5) P(b,f(a,x),f(e,x)). ** KEPT: 71 (19,6,5,4) P(b,f(a,g(e)),e). ** KEPT: 72 (19,6,5,2) P(b,f(a,e),e). ** KEPT: 73 (19,6,5,1) P(b,f(a,x),x). ** KEPT: 74 (19,6,4,5) P(b,e,f(e,g(a))). ** KEPT: 75 (19,6,4,1) P(b,e,g(a)). >>>> Starting back demodulation with: 51 (50) EQUAL(f(b,a),e). 73 back subsumes: 72 (19,6,5,2) P(b,f(a,e),e). new given clause: 20 P(a,c,e). ---------------- PROOF ---------------- ** KEPT: 76 (20,8,5) EQUAL(f(a,c),e). ---> New Demodulator: 77 (76) EQUAL(f(a,c),e). ** KEPT: 78 (20,7,5,1) P(f(a,e),c,e). ** KEPT: 79 (20,7,19,5) P(e,c,f(b,e)). ** KEPT: 80 (20,7,19,2,25) . ** KEPT: 81 (20,7,5,5) P(f(x,a),c,f(x,e)). ** KEPT: 82 (20,7,5,3) P(f(g(e),a),c,e). ** KEPT: 83 (20,7,5,2) P(f(x,a),c,x). ** KEPT: 84 (20,7,3,5) P(e,c,f(g(a),e)). ** KEPT: 85 (20,7,3,2) P(e,c,g(a)). ** KEPT: 86 (20,7,1,5) P(a,c,f(e,e)). ** KEPT: 87 (20,7,5,5) P(e,x,f(a,f(c,x))). ** KEPT: 88 (20,7,4,5) P(e,g(c),f(a,e)). ** KEPT: 89 (20,7,4,2) P(e,g(c),a). ** KEPT: 90 (20,6,2,5) P(a,f(e,c),e). ** KEPT: 91 (20,6,19,5) P(b,e,f(e,c)). ** KEPT: 92 (20,6,19,1,26) . ** KEPT: 93 (20,6,5,5) P(x,e,f(f(x,a),c)). ** KEPT: 94 (20,6,3,5) P(g(a),e,f(e,c)). ** KEPT: 95 (20,6,3,1) P(g(a),e,c). ** KEPT: 96 (20,6,5,5) P(a,f(c,x),f(e,x)). ** KEPT: 97 (20,6,5,4) P(a,f(c,g(e)),e). ** KEPT: 98 (20,6,5,2) P(a,f(c,e),e). ** KEPT: 99 (20,6,5,1) P(a,f(c,x),x). ** KEPT: 100 (20,6,4,5) P(a,e,f(e,g(c))). ** KEPT: 101 (20,6,4,1) P(a,e,g(c)). >>>> Starting back demodulation with: 77 (76) EQUAL(f(a,c),e). ------------> EMPTY CLAUSE -----------> 80 (20,7,19,2,25) . ------------ END OF SEARCH ------------ ---------------- PROOF ---------------- 1 P(e,x,x). 2 P(x,e,x). 7 -P(x,y,u) | -P(y,z,v) | -P(x,v,w) | P(u,z,w). 8 -P(x,y,z) | -P(x,y,w) | EQUAL(z,w). 19 P(b,a,e). 20 P(a,c,e). 22 -EQUAL(b,c). 25 (22,8,1) -P(e,c,b). 80 (20,7,19,2,25) . --------------- options --------------- set(UR_res). set(demod_hist). set(for_sub). set(Unit_deletion). set(print_kept). set(factor). set(back_sub). set(print_back_sub). set(print_given). set(check_arity). set(back_demod). set(print_new_demod). set(print_back_demod). clear(binary_res). clear(hyper_res). clear(para_from). clear(para_into). clear(demod_inf). clear(para_from_left). clear(para_from_right). clear(para_into_vars). clear(para_from_vars). clear(para_all). clear(para_ones_rule). clear(no_para_into_left). clear(no_para_into_right). clear(demod_linear). clear(print_gen). clear(sort_literals). clear(print_weight). clear(sos_fifo). clear(bird_print). clear(atom_wt_max_args). clear(print_lists_at_end). clear(free_all_mem). clear(for_sub_fpa). clear(no_fapl). clear(no_fanl). clear(order_eq). clear(dynamic_demod). assign(report, 0). assign(max_seconds, 0). assign(max_given, 0). assign(max_kept, 5000). assign(max_gen, 0). assign(max_mem, 0). assign(max_weight, 0). assign(max_literals, 0). assign(fpa_literals, 3). assign(fpa_terms, 3). assign(demod_limit, 100). assign(max_proofs, 1). assign(neg_weight, 0). ------------- memory usage ------------ 2 mallocs of 32700 bytes each (63.9+ K) type (bytes each) gets frees in use avail bytes sym_ent ( 64) 26 0 26 0 1.6 K term ( 16) 2204 2009 195 6 3.1 K rel ( 20) 1699 1277 422 5 8.3 K term_ptr ( 8) 987 20 967 2 7.6 K fpa_head ( 12) 159 2 157 0 1.8 K fpa_tree ( 28) 1608 1608 0 15 0.4 K context ( 260) 651 651 0 5 1.3 K trail ( 12) 1048 1048 0 9 0.1 K imd_tree ( 24) 7 0 7 0 0.2 K imd_pos ( 416) 0 0 0 0 0.0 K is_tree ( 12) 297 4 293 0 3.4 K is_pos (1216) 2961 2961 0 3 3.6 K fsub_pos ( 8) 231 231 0 1 0.0 K literal ( 16) 239 120 119 2 1.9 K clause ( 28) 182 81 101 1 2.8 K list ( 60) 3 0 3 0 0.2 K clash_nd ( 32) 55 55 0 2 0.1 K clause_ptr ( 8) 118 17 101 9 0.9 K int_ptr ( 8) 603 302 301 4 2.4 K -------------- statistics ------------- clauses input 22 clauses given 5 clauses generated 155 demodulation rewrites 15 clauses wt or lit delete 0 tautologies deleted 0 clauses forward subsumed 79 (clauses subsumed by sos) 12 unit deletions 2 clauses kept 76 new demodualtors 3 empty clauses 1 factors generated 0 clauses back demodulated 0 clauses back subsumed 2 clauses not processed 25 ----------- times (seconds) ----------- run time 3.40 input time 0.41 binary_res time 0.00 hyper_res time 0.00 UR_res time 1.03 para_into time 0.00 para_from time 0.00 pre_process time 1.36 demod time 0.11 weigh time 0.03 for_sub time 0.31 unit_del time 0.20 post_process time 0.38 back_sub time 0.08 conflict time 0.19 factor time 0.01 back demod time 0.06 FPA build time 0.16 IS build time 0.07 print_cl time 0.38 cl integrate time 0.10 window time 0.00 SHAR_EOF if test -f 'invers2.desc' then echo shar: over-writing existing file "'invers2.desc'" fi cat << \SHAR_EOF > 'invers2.desc' problem-set/algebra/groups/invers2.desc created : 07/09/86 revised : 08/12/88 Natural Language Description: Theorem: the right inverse axiom is dependant on the rest of the axiom set; i.e., each element has a right inverse. Note: the axioms P(x,e,x) and P(x,g(x),e) must be deleted. Versions : invers2.ver1 : uses UR resolution and a standard p-formulation. created : 7/9/86 from McCharen, Overbeek, & Wos [Aug. 1976]. verified for ITP : 7/11/86. translated for OTTER : caw. verified for OTTER : 08/12/88. SHAR_EOF if test -f 'invers2.ver1.clauses' then echo shar: over-writing existing file "'invers2.ver1.clauses'" fi cat << \SHAR_EOF > 'invers2.ver1.clauses' % problem-set/algebra/groups/invers2.ver1.clauses % created : 07/09/86 % revised : 08/12/88 % description: % % Theorem: the right inverse axiom is dependant on the rest of the % axiom set; i.e., each element has a right inverse. % % Note: the axioms P(x,e,x) and P(x,g(x),e) must be deleted. % representation: % % declare_predicate(1,[O]). % declare_predicate(2,[EQUAL]). % declare_predicate(3,[P]). % declare_functions(1,[g,k]). % declare_functions(2,[f,l]). % declare_constants([e,a,b,c,d,h,j,k]). % declare_variables([x,y,z,u,v,w]). % % O(x) : used for membership in a subgroup of index 2 (see index) % P(x,y) : product of x and y is z % g(x) : inverse of x % k(x) : used to name some inverse of x (see ident2) % f(x,y) : names the product of x and y % l(x,y) : names an element of the subgroup of index 2 (see index) % e : identity element % existence of identity P(e,x,x). P(x,e,x). % existence of inverse P(g(x),x,e). P(x,g(x),e). % closure P(x,y,f(x,y)). % associative property -P(x,y,u) | -P(y,z,v) | -P(u,z,w) | P(x,v,w). -P(x,y,u) | -P(y,z,v) | -P(x,v,w) | P(u,z,w). % the operation is well defined -P(x,y,z) | -P(x,y,w) | EQUAL(z,w) . % equality axioms EQUAL(x,x). -EQUAL(x,y) | EQUAL(y,x). -EQUAL(x,y) | -EQUAL(y,z) | EQUAL(x,z). % equality substitution axioms -EQUAL(x,y) | -P(x,w,z) | P(y,w,z). -EQUAL(x,y) | -P(w,x,z) | P(w,y,z). -EQUAL(x,y) | -P(w,z,x) | P(w,z,y). -EQUAL(x,y) | EQUAL(f(x,w),f(y,w)). -EQUAL(x,y) | EQUAL(f(w,x),f(w,y)). -EQUAL(x,y) | EQUAL(g(x),g(y)). % denial of the theorem -P(a,y,e). SHAR_EOF if test -f 'invers2.ver1.in' then echo shar: over-writing existing file "'invers2.ver1.in'" fi cat << \SHAR_EOF > 'invers2.ver1.in' % problem-set/algebra/groups/invers2.ver1.in % created : 07/09/86 % revised : 08/11/88 % description: % % Theorem: the right inverse axiom is dependant on the rest of the % axiom set; i.e., each element has a right inverse. % % Note: the axioms P(x,e,x) and P(x,g(x),e) must be deleted. % representation: % % declare_predicate(1,[O]). % declare_predicate(2,[EQUAL]). % declare_predicate(3,[P]). % declare_functions(1,[g,k]). % declare_functions(2,[f,l]). % declare_constants([e,a,b,c,d,h,j,k]). % declare_variables([x,y,z,u,v,w]). % % O(x) : used for membership in a subgroup of index 2 (see index) % P(x,y) : product of x and y is z % g(x) : inverse of x % k(x) : used to name some inverse of x (see ident2) % f(x,y) : names the product of x and y % l(x,y) : names an element of the subgroup of index 2 (see index) % e : identity element set(UR_res). set(back_demod). set(factor). set(Unit_deletion). assign(max_kept,5000). list(axioms). % existence of identity P(e,x,x). % P(x,e,x). DELETED DUE TO THEOREM % existence of inverse P(g(x),x,e). % P(x,g(x),e). DELETED DUE TO THEOREM % closure P(x,y,f(x,y)). % associative property -P(x,y,u) | -P(y,z,v) | -P(u,z,w) | P(x,v,w). -P(x,y,u) | -P(y,z,v) | -P(x,v,w) | P(u,z,w). % the operation is well defined -P(x,y,z) | -P(x,y,w) | EQUAL(z,w) . % equality axioms EQUAL(x,x). -EQUAL(x,y) | EQUAL(y,x). -EQUAL(x,y) | -EQUAL(y,z) | EQUAL(x,z). % equality substitution axioms -EQUAL(x,y) | -P(x,w,z) | P(y,w,z). -EQUAL(x,y) | -P(w,x,z) | P(w,y,z). -EQUAL(x,y) | -P(w,z,x) | P(w,z,y). -EQUAL(x,y) | EQUAL(f(x,w),f(y,w)). -EQUAL(x,y) | EQUAL(f(w,x),f(w,y)). -EQUAL(x,y) | EQUAL(g(x),g(y)). end_of_list. list(sos). % denial of the theorem -P(a,y,e). end_of_list. SHAR_EOF if test -f 'invers2.ver1.out' then echo shar: over-writing existing file "'invers2.ver1.out'" fi cat << \SHAR_EOF > 'invers2.ver1.out' % problem-set/algebra/groups/invers2.ver1.out % created : 08/12/88 % revised : 08/12/88 OTTER version 0.91, 14 June 1988. set(UR_res). set(back_demod). set(factor). set(Unit_deletion). assign(max_kept,5000). list(axioms). 1 P(e,x,x). 2 P(g(x),x,e). 3 P(x,y,f(x,y)). 4 -P(x,y,u) | -P(y,z,v) | -P(u,z,w) | P(x,v,w). 5 -P(x,y,u) | -P(y,z,v) | -P(x,v,w) | P(u,z,w). 6 -P(x,y,z) | -P(x,y,w) | EQUAL(z,w). 7 EQUAL(x,x). 8 -EQUAL(x,y) | EQUAL(y,x). 9 -EQUAL(x,y) | -EQUAL(y,z) | EQUAL(x,z). 10 -EQUAL(x,y) | -P(x,w,z) | P(y,w,z). 11 -EQUAL(x,y) | -P(w,x,z) | P(w,y,z). 12 -EQUAL(x,y) | -P(w,z,x) | P(w,z,y). 13 -EQUAL(x,y) | EQUAL(f(x,w),f(y,w)). 14 -EQUAL(x,y) | EQUAL(f(w,x),f(w,y)). 15 -EQUAL(x,y) | EQUAL(g(x),g(y)). end_of_list. list(sos). 16 -P(a,y,e). end_of_list. new given clause: 16 -P(a,y,e). ** KEPT: 17 (16,12,3) -EQUAL(f(a,x),e). ** KEPT: 18 (16,10,2) -EQUAL(g(x),a). ** KEPT: 19 (16,10,1) -EQUAL(a,e). ** KEPT: 20 (16,5,3,2) -P(g(f(x,y)),x,a). ** KEPT: 21 (16,5,2,2) -P(g(e),g(x),a). ** KEPT: 22 (16,5,2,1) -P(e,g(x),a). ** KEPT: 23 (16,5,1,2) -P(g(x),e,a). ** KEPT: 24 (16,5,1,1) -P(e,e,a). ** KEPT: 25 (16,5,1,3) -P(e,f(a,x),e). ** KEPT: 26 (16,4,3,2) -P(a,x,g(y)). ** KEPT: 27 (16,4,3,3) -P(f(a,x),y,e). new given clause: 19 (16,10,1) -EQUAL(a,e). ** KEPT: 28 (19,6,2) -P(g(x),x,a). ** KEPT: 29 (19,6,1) -P(e,a,e). new given clause: 18 (16,10,2) -EQUAL(g(x),a). ** KEPT: 30 (18,6,1) -P(e,a,g(x)). new given clause: 24 (16,5,1,1) -P(e,e,a). ** KEPT: 31 (24,12,3) -EQUAL(f(e,e),a). ** KEPT: 32 (24,5,2,3) -P(g(x),f(x,e),a). ** KEPT: 33 (24,5,1,3) -P(e,f(e,e),a). ** KEPT: 34 (24,4,2,1) -P(e,g(a),e). ** KEPT: 35 (24,4,3,2) -P(f(e,g(x)),x,a). ** KEPT: 36 (24,4,3,1) -P(f(e,e),e,a). new given clause: 29 (19,6,1) -P(e,a,e). ** KEPT: 37 (29,12,3) -EQUAL(f(e,a),e). ** KEPT: 38 (29,10,2) -EQUAL(g(a),e). ** KEPT: 39 (29,5,3,2) -P(g(f(x,a)),x,e). ** KEPT: 40 (29,5,2,2) -P(g(e),g(a),e). ** KEPT: 41 (29,5,1,2) -P(g(a),e,e). ** KEPT: 42 (29,5,2,2) -P(x,a,x). ** KEPT: 43 (29,5,2,3) -P(g(x),f(x,a),e). ** KEPT: 44 (29,5,2,2) -P(g(g(a)),e,e). ** KEPT: 45 (29,5,2,1) -P(g(e),a,e). ** KEPT: 46 (29,5,1,3) -P(e,f(e,a),e). ** KEPT: 47 (29,4,1,2) -P(e,e,g(a)). ** KEPT: 48 (29,4,3,1) -P(f(e,e),a,e). 42 back subsumes: 29 (19,6,1) -P(e,a,e). new given clause: 38 (29,10,2) -EQUAL(g(a),e). ** KEPT: 49 (38,6,2) -P(g(x),x,g(a)). new given clause: 42 (29,5,2,2) -P(x,a,x). ** KEPT: 50 (42,12,3) -EQUAL(f(x,a),x). ** KEPT: 51 (42,5,3,3) -P(x,y,f(x,f(y,a))). ** KEPT: 52 (42,5,3,1) -P(e,x,f(x,a)). ** KEPT: 53 (42,5,2,3) -P(x,g(a),f(x,e)). ** KEPT: 54 (42,5,1,3) -P(x,e,f(x,a)). ** KEPT: 55 (42,5,3,1) -P(x,a,f(e,x)). ** KEPT: 56 (42,5,1,3) -P(f(e,x),a,x). ** KEPT: 57 (42,5,3,3) -P(x,f(y,a),f(x,y)). ** KEPT: 58 (42,5,3,2) -P(x,e,f(x,g(a))). ** KEPT: 59 (42,5,3,1) -P(x,a,f(x,e)). ** KEPT: 60 (42,5,1,3) -P(e,f(x,a),x). ** KEPT: 61 (42,4,1,3) -P(f(x,a),e,x). ** KEPT: 62 (42,4,2,1) -P(x,g(x),a). ** KEPT: 63 (42,4,3,1) -P(f(x,e),a,x). 50 back subsumes: 37 (29,12,3) -EQUAL(f(e,a),e). 56 back subsumes: 48 (29,4,3,1) -P(f(e,e),a,e). 60 back subsumes: 46 (29,5,1,3) -P(e,f(e,a),e). new given clause: 17 (16,12,3) -EQUAL(f(a,x),e). ** KEPT: 64 (17,6,2) -P(g(x),x,f(a,y)). ** KEPT: 65 (17,6,1) -P(e,e,f(a,x)). new given clause: 22 (16,5,2,1) -P(e,g(x),a). ** KEPT: 66 (22,12,3) -EQUAL(f(e,g(x)),a). ** KEPT: 67 (22,5,2,3) -P(g(x),f(x,g(y)),a). ** KEPT: 68 (22,5,1,3) -P(e,f(e,g(x)),a). ** KEPT: 69 (22,4,3,1) -P(f(e,e),g(x),a). new given clause: 23 (16,5,1,2) -P(g(x),e,a). ---------------- PROOF ---------------- ** KEPT: 70 (23,12,3) -EQUAL(f(g(x),e),a). ** KEPT: 71 (23,5,1,3) -P(e,f(g(x),e),a). ** KEPT: 72 (23,4,2,1) -P(g(x),g(a),e). ** KEPT: 73 (23,4,2,1) -P(x,a,e). ** KEPT: 74 (23,4,3,2) -P(f(g(x),g(y)),y,a). ** KEPT: 75 (23,4,3,1) -P(f(g(x),e),e,a). ** KEPT: 76 (23,4,2,2) -P(e,x,a). ----> UNIT CONFLICT at 2.85 sec ----> 77 (72,2) . ------------ END OF SEARCH ------------ ---------------- PROOF ---------------- 1 P(e,x,x). 2 P(g(x),x,e). 4 -P(x,y,u) | -P(y,z,v) | -P(u,z,w) | P(x,v,w). 5 -P(x,y,u) | -P(y,z,v) | -P(x,v,w) | P(u,z,w). 16 -P(a,y,e). 23 (16,5,1,2) -P(g(x),e,a). 72 (23,4,2,1) -P(g(x),g(a),e). 77 (72,2) . --------------- options --------------- set(UR_res). set(demod_hist). set(for_sub). set(Unit_deletion). set(print_kept). set(factor). set(back_sub). set(print_back_sub). set(print_given). set(check_arity). set(back_demod). set(print_new_demod). set(print_back_demod). clear(binary_res). clear(hyper_res). clear(para_from). clear(para_into). clear(demod_inf). clear(para_from_left). clear(para_from_right). clear(para_into_vars). clear(para_from_vars). clear(para_all). clear(para_ones_rule). clear(no_para_into_left). clear(no_para_into_right). clear(demod_linear). clear(print_gen). clear(sort_literals). clear(print_weight). clear(sos_fifo). clear(bird_print). clear(atom_wt_max_args). clear(print_lists_at_end). clear(free_all_mem). clear(for_sub_fpa). clear(no_fapl). clear(no_fanl). clear(order_eq). clear(dynamic_demod). assign(report, 0). assign(max_seconds, 0). assign(max_given, 0). assign(max_kept, 5000). assign(max_gen, 0). assign(max_mem, 0). assign(max_weight, 0). assign(max_literals, 0). assign(fpa_literals, 3). assign(fpa_terms, 3). assign(demod_limit, 100). assign(max_proofs, 1). assign(neg_weight, 0). ------------- memory usage ------------ 2 mallocs of 32700 bytes each (63.9+ K) type (bytes each) gets frees in use avail bytes sym_ent ( 64) 24 0 24 0 1.5 K term ( 16) 1627 1479 148 5 2.4 K rel ( 20) 1262 949 313 3 6.2 K term_ptr ( 8) 817 29 788 0 6.2 K fpa_head ( 12) 155 1 154 0 1.8 K fpa_tree ( 28) 1041 1041 0 19 0.5 K context ( 260) 510 510 0 5 1.3 K trail ( 12) 859 859 0 9 0.1 K imd_tree ( 24) 0 0 0 0 0.0 K imd_pos ( 416) 0 0 0 0 0.0 K is_tree ( 12) 259 7 252 0 3.0 K is_pos (1216) 3081 3081 0 3 3.6 K fsub_pos ( 8) 218 218 0 1 0.0 K literal ( 16) 236 140 96 2 1.5 K clause ( 28) 177 100 77 0 2.1 K list ( 60) 2 0 2 0 0.1 K clash_nd ( 32) 50 50 0 2 0.1 K clause_ptr ( 8) 89 12 77 8 0.7 K int_ptr ( 8) 566 339 227 2 1.8 K -------------- statistics ------------- clauses input 16 clauses given 10 clauses generated 159 demodulation rewrites 0 clauses wt or lit delete 0 tautologies deleted 0 clauses forward subsumed 98 (clauses subsumed by sos) 34 unit deletions 0 clauses kept 61 new demodualtors 0 empty clauses 1 factors generated 0 clauses back demodulated 0 clauses back subsumed 4 clauses not processed 8 ----------- times (seconds) ----------- run time 3.01 input time 0.35 binary_res time 0.00 hyper_res time 0.00 UR_res time 0.75 para_into time 0.00 para_from time 0.00 pre_process time 1.31 demod time 0.00 weigh time 0.03 for_sub time 0.48 unit_del time 0.14 post_process time 0.32 back_sub time 0.07 conflict time 0.17 factor time 0.01 back demod time 0.00 FPA build time 0.15 IS build time 0.06 print_cl time 0.34 cl integrate time 0.09 window time 0.00 SHAR_EOF if test -f 'order2.desc' then echo shar: over-writing existing file "'order2.desc'" fi cat << \SHAR_EOF > 'order2.desc' problem-set/algebra/groups/order2.desc created : 07/09/86 revised : 08/15/88 Natural Language Description: Theorem: all groups of order 2 are isomorphic; i.e., if G1 has exactly two elements and G2 has exactly two elements, then there exists an isomorphism [a one-to-one and onto homomorphism] between them. Versions : order2.ver3 : uses UR resolution and an extended p-formulation whereby the group is specified in each predicate. Note: this is the original formulation of the problem. In order to prove the theorem, the group tables and a particular homomorphism are specified, and the contradiction comes from the fact that this is the actual isomorphism. Not only is this formulation cheating, but also it does not prove the theorem in full generality. For a newer form, see .ver4. created : 7/22/86 from McCharen, Overbeek, & Wos [Aug. 1976]. verified for ITP : 7/22/86 translated for OTTER : caw. verified for OTTER : 08/12/88. order2.ver4 : uses UR resolution and an extended p-formulation whereby the group is specified in each predicate. Note: in order to prove the theorem, we specify one element of each group as the identity element and take as a previously-proven lemma (obvious) that maps from G1 -> G2 which are not one-to-one or which are not onto need not be considered for isomorphisms between the groups. Thus we consider only the two one-to-one and onto maps between the groups, and show that assuming neither of them are homomorphisms gives a contradiction. created : 8/11/88, Cynthia A. Wick verified for ITP : no. translated for OTTER : caw. verified for OTTER : 08/15/88. SHAR_EOF if test -f 'order2.ver3.clauses' then echo shar: over-writing existing file "'order2.ver3.clauses'" fi cat << \SHAR_EOF > 'order2.ver3.clauses' % problem-set/algebra/groups/order2.ver3.clauses % created : 07/22/86 % revised : 08/12/88 % description: % % Theorem: all groups of order 2 are isomorphic; i.e., if G1 has exactly % two elements and G2 has exactly two elements, then there exists an % isomorphism [a one-to-one and onto homomorphism] between them. % % The following are the usual axioms of a group with an additional argument % in the usual predicates and functions to identify the group. % representation: % % declare_predicates(2,[EL,EQUAL]). % declare_predicate(4,[P]). % declare_functions(1,[e,k,r,s,p1,p2,p3,q1,q2,q3]). % declare_functions(2,[g,m]). % declare_function(3,[f]). % declare_constants([a,b,c,d,i,h,j,d1,d2,d3,G,G1,G2]). % declare_variables([x,y,z,w,xg,yg,xy,yz,xyz]). % % EL(x,y) : x is an element of group y % P(x,y,z,w) : in group x, the product of y and z is w % e(x) : names the identity element of group x % k(x) : names an isomorphism (see order2.ver3, order3.ver3) % r(x) : is a possible isomorphism (see order2.ver4) % s(x) : is a possible isomorphism (see order2.ver4) % p1(x) : is a possible isomorphism (see order3.ver4) % p2(x) : is a possible isomorphism (see order3.ver4) % p3(x) : is a possible isomorphism (see order3.ver4) % q1(x) : is a possible isomorphism (see order3.ver4) % q2(x) : is a possible isomorphism (see order3.ver4) % q3(x) : is a possible isomorphism (see order3.ver4) % g(x,y) : in group x, names inverse of y % m(x,y) : in group x, names an element which does not equal any power of % y; (see cyclic) % f(x,y,z) : in group x, names the product of y and z % i : identity element in group G named % closure property -EL(x,xg) | -EL(y,xg) | P(xg,x,y,f(xg,x,y)). -EL(x,xg) | -EL(y,xg) | EL(f(xg,x,y),xg). % the operation is well defined -P(xg,x,y,z) | -P(xg,x,y,w) | EQUAL(w,z). % existence of identity EL(e(xg),xg). P(xg,e(xg),x,x). P(xg,x,e(xg),x). % existence of inverses -EL(x,xg) | EL(g(xg,x),xg). P(xg,g(xg,x),x,e(xg)). P(xg,x,g(xg,x),e(xg)). % associative property -P(xg,x,y,xy) | -P(xg,y,z,yz) | -P(xg,xy,z,xyz) | P(xg,x,xy,xyz). -P(xg,x,y,xy) | -P(xg,y,z,yz) | -P(xg,x,yz,xyz) | P(xg,xy,z,xyz). % equality axioms EQUAL(x,x). -EQUAL(x,y) | EQUAL(y,x). -EQUAL(x,y) | -EQUAL(y,z) | EQUAL(x,z). % equality substitution axioms -EQUAL(xg,yg)| -P(xg,x,y,z) | P(yg,x,y,z). -EQUAL(x,y) | -P(xg,x,z,w) | P(xg,y,z,w). -EQUAL(x,y) | -P(xg,w,x,z) | P(xg,w,y,z). -EQUAL(x,y) | -P(xg,w,z,x) | P(xg,w,z,y). -EQUAL(xg,yg)| EQUAL(f(xg,x,y),f(yg,x,y)). -EQUAL(x,y) | EQUAL(f(xg,x,z),f(xg,y,z)). -EQUAL(x,y) | EQUAL(f(xg,z,x),f(xg,z,y)). -EQUAL(xg,yg)| EQUAL(g(xg,x),g(yg,x)). -EQUAL(x,y) | EQUAL(g(xg,x),g(xg,y)). -EQUAL(xg,yg)| -EL(x,xg) | EL(x,yg). -EQUAL(x,y) | -EL(x,xg) | EL(y,xg). -EQUAL(xg,yg)| EQUAL(e(xg),e(yg)). % definition of the two groups EL(a,g1). EL(b,g1). EL(c1,g2). EL(c2,g2). -EL(x,g1) | EQUAL(x,a) | EQUAL(x,b). -EL(x,g2) | EQUAL(x,c1) | EQUAL(x,c2). P(g1,a,a,a). P(g1,a,b,b). P(g1,b,a,b). P(g1,b,b,a). P(g2,c1,c1,c1). P(g2,c1,c2,c2). P(g2,c2,c1,c2). P(g2,c2,c2,c1). % definition of a function k EQUAL(k(a),c1). EQUAL(k(b),c2). % denial that k is an isomorphism EL(d1,g1). EL(d2,g1). EL(d3,g1). P(g1,d1,d2,d3). -P(g2,k(d1),k(d2),k(d3)). SHAR_EOF if test -f 'order2.ver3.in' then echo shar: over-writing existing file "'order2.ver3.in'" fi cat << \SHAR_EOF > 'order2.ver3.in' % problem-set/algebra/groups/order2.ver3.in % created : 07/22/86 % revised : 08/12/88 % description: % % Theorem: all groups of order 2 are isomorphic; i.e., if G1 has exactly % two elements and G2 has exactly two elements, then there exists an % isomorphism [a one-to-one and onto homomorphism] between them. % % The following are the usual axioms of a group with an additional argument % in the usual predicates and functions to identify the group. % representation: % % declare_predicates(2,[EL,EQUAL]). % declare_predicate(4,[P]). % declare_functions(1,[e,k,r,s,p1,p2,p3,q1,q2,q3]). % declare_functions(2,[g,m]). % declare_function(3,[f]). % declare_constants([a,b,c,d,i,h,j,d1,d2,d3,G,G1,G2]). % declare_variables([x,y,z,w,xg,yg,xy,yz,xyz]). % % EL(x,y) : x is an element of group y % P(x,y,z,w) : in group x, the product of y and z is w % e(x) : names the identity element of group x % k(x) : names an isomorphism (see order2.ver3, order3.ver3) % r(x) : is a possible isomorphism (see order2.ver4) % s(x) : is a possible isomorphism (see order2.ver4) % p1(x) : is a possible isomorphism (see order3.ver4) % p2(x) : is a possible isomorphism (see order3.ver4) % p3(x) : is a possible isomorphism (see order3.ver4) % q1(x) : is a possible isomorphism (see order3.ver4) % q2(x) : is a possible isomorphism (see order3.ver4) % q3(x) : is a possible isomorphism (see order3.ver4) % g(x,y) : in group x, names inverse of y % m(x,y) : in group x, names an element which does not equal any power of % y; (see cyclic) % f(x,y,z) : in group x, names the product of y and z % i : identity element in group G named set(UR_res). set(back_demod). set(factor). set(Unit_deletion). assign(max_kept,5000). list(axioms). % closure property -EL(x,xg) | -EL(y,xg) | P(xg,x,y,f(xg,x,y)). -EL(x,xg) | -EL(y,xg) | EL(f(xg,x,y),xg). % the operation is well defined -P(xg,x,y,z) | -P(xg,x,y,w) | EQUAL(w,z). % existence of identity EL(e(xg),xg). P(xg,e(xg),x,x). P(xg,x,e(xg),x). % existence of inverses -EL(x,xg) | EL(g(xg,x),xg). P(xg,g(xg,x),x,e(xg)). P(xg,x,g(xg,x),e(xg)). % associative property -P(xg,x,y,xy) | -P(xg,y,z,yz) | -P(xg,xy,z,xyz) | P(xg,x,xy,xyz). -P(xg,x,y,xy) | -P(xg,y,z,yz) | -P(xg,x,yz,xyz) | P(xg,xy,z,xyz). % equality axioms EQUAL(x,x). -EQUAL(x,y) | EQUAL(y,x). -EQUAL(x,y) | -EQUAL(y,z) | EQUAL(x,z). % equality substitution axioms -EQUAL(xg,yg)| -P(xg,x,y,z) | P(yg,x,y,z). -EQUAL(x,y) | -P(xg,x,z,w) | P(xg,y,z,w). -EQUAL(x,y) | -P(xg,w,x,z) | P(xg,w,y,z). -EQUAL(x,y) | -P(xg,w,z,x) | P(xg,w,z,y). -EQUAL(xg,yg)| EQUAL(f(xg,x,y),f(yg,x,y)). -EQUAL(x,y) | EQUAL(f(xg,x,z),f(xg,y,z)). -EQUAL(x,y) | EQUAL(f(xg,z,x),f(xg,z,y)). -EQUAL(xg,yg)| EQUAL(g(xg,x),g(yg,x)). -EQUAL(x,y) | EQUAL(g(xg,x),g(xg,y)). -EQUAL(xg,yg)| -EL(x,xg) | EL(x,yg). -EQUAL(x,y) | -EL(x,xg) | EL(y,xg). -EQUAL(xg,yg)| EQUAL(e(xg),e(yg)). % definition of the two groups EL(a,g1). EL(b,g1). EL(c1,g2). EL(c2,g2). -EL(x,g1) | EQUAL(x,a) | EQUAL(x,b). -EL(x,g2) | EQUAL(x,c1) | EQUAL(x,c2). P(g1,a,a,a). P(g1,a,b,b). P(g1,b,a,b). P(g1,b,b,a). P(g2,c1,c1,c1). P(g2,c1,c2,c2). P(g2,c2,c1,c2). P(g2,c2,c2,c1). % definition of a function k EQUAL(k(a),c1). EQUAL(k(b),c2). end_of_list. list(sos). % denial that k is an isomorphism EL(d1,g1). EL(d2,g1). EL(d3,g1). P(g1,d1,d2,d3). -P(g2,k(d1),k(d2),k(d3)). end_of_list. list(demodulators). EQUAL(g(xg,e(xg)),e(xg)). EQUAL(g(xg,g(xg,x)),x). EQUAL(f(xg,e(xg),x),x). EQUAL(f(xg,x,e(xg)),x). EQUAL(f(xg,x,g(xg,x)),e(xg)). EQUAL(f(xg,g(xg,x),x),e(xg)). end_of_list. SHAR_EOF if test -f 'order2.ver3.out' then echo shar: over-writing existing file "'order2.ver3.out'" fi cat << \SHAR_EOF > 'order2.ver3.out' % problem-set/algebra/groups/order2.ver3.out % created : 08/12/88 % revised : 08/12/88 OTTER version 0.91, 14 June 1988. set(UR_res). set(back_demod). set(factor). set(Unit_deletion). assign(max_kept,5000). list(axioms). 1 -EL(x,xg) | -EL(y,xg) | P(xg,x,y,f(xg,x,y)). 2 -EL(x,xg) | -EL(y,xg) | EL(f(xg,x,y),xg). 3 -P(xg,x,y,z) | -P(xg,x,y,w) | EQUAL(w,z). 4 EL(e(xg),xg). 5 P(xg,e(xg),x,x). 6 P(xg,x,e(xg),x). 7 -EL(x,xg) | EL(g(xg,x),xg). 8 P(xg,g(xg,x),x,e(xg)). 9 P(xg,x,g(xg,x),e(xg)). 10 -P(xg,x,y,xy) | -P(xg,y,z,yz) | -P(xg,xy,z,xyz) | P(xg,x,xy,xyz). 11 -P(xg,x,y,xy) | -P(xg,y,z,yz) | -P(xg,x,yz,xyz) | P(xg,xy,z,xyz). 12 EQUAL(x,x). 13 -EQUAL(x,y) | EQUAL(y,x). 14 -EQUAL(x,y) | -EQUAL(y,z) | EQUAL(x,z). 15 -EQUAL(xg,yg) | -P(xg,x,y,z) | P(yg,x,y,z). 16 -EQUAL(x,y) | -P(xg,x,z,w) | P(xg,y,z,w). 17 -EQUAL(x,y) | -P(xg,w,x,z) | P(xg,w,y,z). 18 -EQUAL(x,y) | -P(xg,w,z,x) | P(xg,w,z,y). 19 -EQUAL(xg,yg) | EQUAL(f(xg,x,y),f(yg,x,y)). 20 -EQUAL(x,y) | EQUAL(f(xg,x,z),f(xg,y,z)). 21 -EQUAL(x,y) | EQUAL(f(xg,z,x),f(xg,z,y)). 22 -EQUAL(xg,yg) | EQUAL(g(xg,x),g(yg,x)). 23 -EQUAL(x,y) | EQUAL(g(xg,x),g(xg,y)). 24 -EQUAL(xg,yg) | -EL(x,xg) | EL(x,yg). 25 -EQUAL(x,y) | -EL(x,xg) | EL(y,xg). 26 -EQUAL(xg,yg) | EQUAL(e(xg),e(yg)). 27 EL(a,g1). 28 EL(b,g1). 29 EL(c1,g2). 30 EL(c2,g2). 31 -EL(x,g1) | EQUAL(x,a) | EQUAL(x,b). 32 -EL(x,g2) | EQUAL(x,c1) | EQUAL(x,c2). 33 P(g1,a,a,a). 34 P(g1,a,b,b). 35 P(g1,b,a,b). 36 P(g1,b,b,a). 37 P(g2,c1,c1,c1). 38 P(g2,c1,c2,c2). 39 P(g2,c2,c1,c2). 40 P(g2,c2,c2,c1). 41 EQUAL(k(a),c1). 42 EQUAL(k(b),c2). end_of_list. list(sos). 43 EL(d1,g1). 44 EL(d2,g1). 45 EL(d3,g1). 46 P(g1,d1,d2,d3). 47 -P(g2,k(d1),k(d2),k(d3)). end_of_list. list(demodulators). 48 EQUAL(g(xg,e(xg)),e(xg)). 49 EQUAL(g(xg,g(xg,x)),x). 50 EQUAL(f(xg,e(xg),x),x). 51 EQUAL(f(xg,x,e(xg)),x). 52 EQUAL(f(xg,x,g(xg,x)),e(xg)). 53 EQUAL(f(xg,g(xg,x),x),e(xg)). end_of_list. ----> UNIT CONFLICT at 149.25 sec ----> 1890 (1864,1838) . ------------ END OF SEARCH ------------ ---------------- PROOF ---------------- 3 -P(xg,x,y,z) | -P(xg,x,y,w) | EQUAL(w,z). 5 P(xg,e(xg),x,x). 6 P(xg,x,e(xg),x). 8 P(xg,g(xg,x),x,e(xg)). 9 P(xg,x,g(xg,x),e(xg)). 10 -P(xg,x,y,xy) | -P(xg,y,z,yz) | -P(xg,xy,z,xyz) | P(xg,x,xy,xyz). 11 -P(xg,x,y,xy) | -P(xg,y,z,yz) | -P(xg,x,yz,xyz) | P(xg,xy,z,xyz). 17 -EQUAL(x,y) | -P(xg,w,x,z) | P(xg,w,y,z). 46 P(g1,d1,d2,d3). 47 -P(g2,k(d1),k(d2),k(d3)). 100 (46,10,6,5) P(g1,d1,d1,d3). 101 (46,10,5,46) P(g1,e(g1),d1,d3). 103 (46,10,6,6) P(g1,d1,d3,d3). 177 (103,10,9,9) P(g1,d1,d3,e(g1)). 1770 (101,3,5) EQUAL(d3,d1). 1771 (1770) EQUAL(d3,d1). 1772 (46,1771) P(g1,d1,d2,d1). 1773 (47,1771) -P(g2,k(d1),k(d2),k(d1)). 1775 (100,1771) P(g1,d1,d1,d1). 1777 (177,1771) P(g1,d1,d1,e(g1)). 1783 (1777,10,1772,5) P(g1,d1,e(g1),d2). 1785 (1777,3,1775) EQUAL(e(g1),d1). 1786 (1785) EQUAL(e(g1),d1). 1791 (1783,1786) P(g1,d1,d1,d2). 1794 (1785,17,6) P(g1,x,d1,x). 1809 (1794,10,1794,1794) P(g1,x,x,x). 1811 (1794,10,9,1794,1786,1786) P(g1,x,d1,d1). 1813 (1794,3,1791) EQUAL(d2,d1). 1814 (1813) EQUAL(d2,d1). 1817 (1773,1814) -P(g2,k(d1),k(d1),k(d1)). 1838 (1809,11,8,6) P(g1,g(g1,x),x,g(g1,x)). 1859 (1811,3,1794) EQUAL(d1,x). 1860 (1859) EQUAL(d1,x). 1861 (1811,3,8,1860,1786,1860) EQUAL(y,x). 1862 (1861) EQUAL(y,x). 1864 (1817,1862,1862,1862,1862,1862,1862,1862) -P(x,y,z,u). 1890 (1864,1838) . --------------- options --------------- set(UR_res). set(demod_hist). set(for_sub). set(Unit_deletion). set(print_kept). set(factor). set(back_sub). set(print_back_sub). set(print_given). set(check_arity). set(back_demod). set(print_new_demod). set(print_back_demod). clear(binary_res). clear(hyper_res). clear(para_from). clear(para_into). clear(demod_inf). clear(para_from_left). clear(para_from_right). clear(para_into_vars). clear(para_from_vars). clear(para_all). clear(para_ones_rule). clear(no_para_into_left). clear(no_para_into_right). clear(demod_linear). clear(print_gen). clear(sort_literals). clear(print_weight). clear(sos_fifo). clear(bird_print). clear(atom_wt_max_args). clear(print_lists_at_end). clear(free_all_mem). clear(for_sub_fpa). clear(no_fapl). clear(no_fanl). clear(order_eq). clear(dynamic_demod). assign(report, 0). assign(max_seconds, 0). assign(max_given, 0). assign(max_kept, 5000). assign(max_gen, 0). assign(max_mem, 0). assign(max_weight, 0). assign(max_literals, 0). assign(fpa_literals, 3). assign(fpa_terms, 3). assign(demod_limit, 100). assign(max_proofs, 1). assign(neg_weight, 0). -------------- statistics ------------- clauses input 53 clauses given 48 clauses generated 3139 demodulation rewrites 5318 clauses wt or lit delete 0 tautologies deleted 0 clauses forward subsumed 3106 (clauses subsumed by sos) 1990 unit deletions 25 clauses kept 1827 new demodualtors 10 empty clauses 1 factors generated 0 clauses back demodulated 1794 clauses back subsumed 41 clauses not processed 1814 ----------- times (seconds) ----------- run time 149.51 input time 0.85 binary_res time 0.00 hyper_res time 0.00 UR_res time 15.50 para_into time 0.00 para_from time 0.00 pre_process time 60.09 demod time 11.87 weigh time 1.07 for_sub time 14.36 unit_del time 4.55 post_process time 86.11 back_sub time 11.41 conflict time 6.01 factor time 0.32 back demod time 67.20 FPA build time 4.32 IS build time 1.90 print_cl time 21.63 cl integrate time 3.55 window time 0.00 SHAR_EOF if test -f 'order2.ver4.clauses' then echo shar: over-writing existing file "'order2.ver4.clauses'" fi cat << \SHAR_EOF > 'order2.ver4.clauses' % problem-set/algebra/groups/order2.ver4.clauses % created : 07/22/86 % revised : 08/15/88 % description: % % Theorem: all groups of order 2 are isomorphic; i.e., if G1 has exactly % two elements and G2 has exactly two elements, then there exists an % isomorphism [a one-to-one and onto homomorphism] between them. % % Note: in order to prove the theorem, we specify one element of each group % as the identity element and take as a previously-proven lemma (obvious) % that maps from G1 -> G2 which are not one-to-one or which are not onto % need not be considered for isomorphisms between the groups. Thus we % consider only the two one-to-one and onto maps between the groups, and % show that assuming neither of them are homomorphisms gives a contradiction. % representation: % % declare_predicates(2,[EL,EQUAL]). % declare_predicate(4,[P]). % declare_functions(1,[e,k,r,s,p1,p2,p3,q1,q2,q3]). % declare_functions(2,[g,m]). % declare_function(3,[f]). % declare_constants([a,b,c,d,i,h,j,d1,d2,d3,G,G1,G2]). % declare_variables([x,y,z,w,xg,yg,xy,yz,xyz]). % % EL(x,y) : x is an element of group y % P(x,y,z,w) : in group x, the product of y and z is w % e(x) : names the identity element of group x % k(x) : names an isomorphism (see order2.ver3, order3.ver3) % r(x) : is a possible isomorphism (see order2.ver4) % s(x) : is a possible isomorphism (see order2.ver4) % p1(x) : is a possible isomorphism (see order3.ver4) % p2(x) : is a possible isomorphism (see order3.ver4) % p3(x) : is a possible isomorphism (see order3.ver4) % q1(x) : is a possible isomorphism (see order3.ver4) % q2(x) : is a possible isomorphism (see order3.ver4) % q3(x) : is a possible isomorphism (see order3.ver4) % g(x,y) : in group x, names inverse of y % m(x,y) : in group x, names an element which does not equal any power of % y; (see cyclic) % f(x,y,z) : in group x, names the product of y and z % i : identity element in group G named % The following are the usual axioms of a group with an additional argument % in the usual predicates and functions to identify the group. % closure property -EL(x,xg) | -EL(y,xg) | P(xg,x,y,f(xg,x,y)). -EL(x,xg) | -EL(y,xg) | EL(f(xg,x,y),xg). % the operation is well defined -P(xg,x,y,z) | -P(xg,x,y,w) | EQUAL(w,z). -P(xg,x,z,y) | -P(xg,x,w,y) | EQUAL(w,z). -P(xg,z,y,x) | -P(xg,w,y,x) | EQUAL(w,z). % existence of identity EL(e(xg),xg). P(xg,e(xg),x,x). P(xg,x,e(xg),x). % existence of inverses -EL(x,xg) | EL(g(xg,x),xg). P(xg,g(xg,x),x,e(xg)). P(xg,x,g(xg,x),e(xg)). % associative property -P(xg,x,y,xy) | -P(xg,y,z,yz) | -P(xg,xy,z,xyz) | P(xg,x,xy,xyz). -P(xg,x,y,xy) | -P(xg,y,z,yz) | -P(xg,x,yz,xyz) | P(xg,xy,z,xyz). % equality axioms EQUAL(x,x). -EQUAL(x,y) | EQUAL(y,x). -EQUAL(x,y) | -EQUAL(y,z) | EQUAL(x,z). % equality substitution axioms -EQUAL(xg,yg)| -P(xg,x,y,z) | P(yg,x,y,z). -EQUAL(x,y) | -P(xg,x,z,w) | P(xg,y,z,w). -EQUAL(x,y) | -P(xg,w,x,z) | P(xg,w,y,z). -EQUAL(x,y) | -P(xg,w,z,x) | P(xg,w,z,y). -EQUAL(xg,yg)| EQUAL(f(xg,x,y),f(yg,x,y)). -EQUAL(x,y) | EQUAL(f(xg,x,z),f(xg,y,z)). -EQUAL(x,y) | EQUAL(f(xg,z,x),f(xg,z,y)). -EQUAL(xg,yg)| EQUAL(g(xg,x),g(yg,x)). -EQUAL(x,y) | EQUAL(g(xg,x),g(xg,y)). -EQUAL(xg,yg)| -EL(x,xg) | EL(x,yg). -EQUAL(x,y) | -EL(x,xg) | EL(y,xg). -EQUAL(xg,yg)| EQUAL(e(xg),e(yg)). % definition of the two different groups of order 2 % at least two: -EQUAL(G1,G2). EL(a,G1). EL(b,G1). -EQUAL(a,b). EL(c,G2). EL(d,G2). -EQUAL(c,d). -EQUAL(a,c). -EQUAL(a,d). -EQUAL(b,c). -EQUAL(b,d). % only two: -EL(x,G1) | EQUAL(x,a) | EQUAL(x,b). -EL(x,G2) | EQUAL(x,c) | EQUAL(x,d). % a is the identity element of G1, c is the identity element of G2 EQUAL(e(G1),a). EQUAL(e(G2),c). P(G1,a,x,x). P(G1,x,a,x). P(G2,c,x,x). P(G2,x,c,x). % definition of maps r and s, two possible isomorphisms EQUAL(r(a),c). EQUAL(r(b),d). EQUAL(s(a),d). EQUAL(s(b),c). % equality substitution axioms for r,s -EQUAL(x,y) | EQUAL(r(x),r(y)). -EQUAL(x,y) | EQUAL(s(x),s(y)). -EQUAL(x,r(z)) | -EQUAL(y,r(z)) | EQUAL(x,y). -EQUAL(x,s(z)) | -EQUAL(y,s(z)) | EQUAL(x,y). % denial that one of r,s is a homomorphism EL(d1,G1). EL(d2,G1). EL(d3,G1). P(G1,d1,d2,d3). -P(G2,r(d1),r(d2),r(d3)) | -P(G2,s(d1),s(d2),s(d3)). EQUAL(g(xg,e(xg)),e(xg)). EQUAL(g(xg,g(xg,x)),x). EQUAL(g(xg,f(xg,x,y)),f(xg,g(xg,x),g(xg,y))). EQUAL(f(xg,x,f(xg,g(xg,x),y)),y). EQUAL(f(xg,g(xg,x),f(xg,x,y)),y). EQUAL(f(xg,f(xg,x,y),z),f(xg,x,f(xg,y,z))). SHAR_EOF if test -f 'order2.ver4.in' then echo shar: over-writing existing file "'order2.ver4.in'" fi cat << \SHAR_EOF > 'order2.ver4.in' % problem-set/algebra/groups/order2.ver4.in % created : 07/22/86 % revised : 08/15/88 % description: % % Theorem: all groups of order 2 are isomorphic; i.e., if G1 has exactly % two elements and G2 has exactly two elements, then there exists an % isomorphism [a one-to-one and onto homomorphism] between them. % % Note: in order to prove the theorem, we specify one element of each group % as the identity element and take as a previously-proven lemma (obvious) % that maps from G1 -> G2 which are not one-to-one or which are not onto % need not be considered for isomorphisms between the groups. Thus we % consider only the two one-to-one and onto maps between the groups, and % show that assuming neither of them are homomorphisms gives a contradiction. % representation: % % declare_predicates(2,[EL,EQUAL]). % declare_predicate(4,[P]). % declare_functions(1,[e,k,r,s,p1,p2,p3,q1,q2,q3]). % declare_functions(2,[g,m]). % declare_function(3,[f]). % declare_constants([a,b,c,d,i,h,j,d1,d2,d3,G,G1,G2]). % declare_variables([x,y,z,w,xg,yg,xy,yz,xyz]). % % EL(x,y) : x is an element of group y % P(x,y,z,w) : in group x, the product of y and z is w % e(x) : names the identity element of group x % k(x) : names an isomorphism (see order2.ver3, order3.ver3) % r(x) : is a possible isomorphism (see order2.ver4) % s(x) : is a possible isomorphism (see order2.ver4) % p1(x) : is a possible isomorphism (see order3.ver4) % p2(x) : is a possible isomorphism (see order3.ver4) % p3(x) : is a possible isomorphism (see order3.ver4) % q1(x) : is a possible isomorphism (see order3.ver4) % q2(x) : is a possible isomorphism (see order3.ver4) % q3(x) : is a possible isomorphism (see order3.ver4) % g(x,y) : in group x, names inverse of y % m(x,y) : in group x, names an element which does not equal any power of % y; (see cyclic) % f(x,y,z) : in group x, names the product of y and z % i : identity element in group G named set(UR_res). set(back_demod). set(factor). set(Unit_deletion). assign(max_kept,5000). list(axioms). % The following are the usual axioms of a group with an additional argument % in the usual predicates and functions to identify the group. % closure property -EL(x,xg) | -EL(y,xg) | P(xg,x,y,f(xg,x,y)). -EL(x,xg) | -EL(y,xg) | EL(f(xg,x,y),xg). % the operation is well defined -P(xg,x,y,z) | -P(xg,x,y,w) | EQUAL(w,z). -P(xg,x,z,y) | -P(xg,x,w,y) | EQUAL(w,z). -P(xg,z,y,x) | -P(xg,w,y,x) | EQUAL(w,z). % existence of identity EL(e(xg),xg). P(xg,e(xg),x,x). P(xg,x,e(xg),x). % existence of inverses -EL(x,xg) | EL(g(xg,x),xg). P(xg,g(xg,x),x,e(xg)). P(xg,x,g(xg,x),e(xg)). % associative property -P(xg,x,y,xy) | -P(xg,y,z,yz) | -P(xg,xy,z,xyz) | P(xg,x,xy,xyz). -P(xg,x,y,xy) | -P(xg,y,z,yz) | -P(xg,x,yz,xyz) | P(xg,xy,z,xyz). % equality axioms EQUAL(x,x). -EQUAL(x,y) | EQUAL(y,x). -EQUAL(x,y) | -EQUAL(y,z) | EQUAL(x,z). % equality substitution axioms -EQUAL(xg,yg)| -P(xg,x,y,z) | P(yg,x,y,z). -EQUAL(x,y) | -P(xg,x,z,w) | P(xg,y,z,w). -EQUAL(x,y) | -P(xg,w,x,z) | P(xg,w,y,z). -EQUAL(x,y) | -P(xg,w,z,x) | P(xg,w,z,y). -EQUAL(xg,yg)| EQUAL(f(xg,x,y),f(yg,x,y)). -EQUAL(x,y) | EQUAL(f(xg,x,z),f(xg,y,z)). -EQUAL(x,y) | EQUAL(f(xg,z,x),f(xg,z,y)). -EQUAL(xg,yg)| EQUAL(g(xg,x),g(yg,x)). -EQUAL(x,y) | EQUAL(g(xg,x),g(xg,y)). -EQUAL(xg,yg)| -EL(x,xg) | EL(x,yg). -EQUAL(x,y) | -EL(x,xg) | EL(y,xg). -EQUAL(xg,yg)| EQUAL(e(xg),e(yg)). % definition of the two different groups of order 2 % at least two: -EQUAL(G1,G2). EL(a,G1). EL(b,G1). -EQUAL(a,b). EL(c,G2). EL(d,G2). -EQUAL(c,d). -EQUAL(a,c). -EQUAL(a,d). -EQUAL(b,c). -EQUAL(b,d). % only two: -EL(x,G1) | EQUAL(x,a) | EQUAL(x,b). -EL(x,G2) | EQUAL(x,c) | EQUAL(x,d). % a is the identity element of G1, c is the identity element of G2 EQUAL(e(G1),a). EQUAL(e(G2),c). P(G1,a,x,x). P(G1,x,a,x). P(G2,c,x,x). P(G2,x,c,x). % definition of maps r and s, two possible isomorphisms EQUAL(r(a),c). EQUAL(r(b),d). EQUAL(s(a),d). EQUAL(s(b),c). % equality substitution axioms for r,s -EQUAL(x,y) | EQUAL(r(x),r(y)). -EQUAL(x,y) | EQUAL(s(x),s(y)). -EQUAL(x,r(z)) | -EQUAL(y,r(z)) | EQUAL(x,y). -EQUAL(x,s(z)) | -EQUAL(y,s(z)) | EQUAL(x,y). end_of_list. list(sos). % denial that one of r,s is a homomorphism EL(d1,G1). EL(d2,G1). EL(d3,G1). P(G1,d1,d2,d3). -P(G2,r(d1),r(d2),r(d3)) | -P(G2,s(d1),s(d2),s(d3)). end_of_list. list(demodulators). EQUAL(g(xg,e(xg)),e(xg)). EQUAL(g(xg,g(xg,x)),x). EQUAL(f(xg,e(xg),x),x). EQUAL(f(xg,x,e(xg)),x). EQUAL(f(xg,x,g(xg,x)),e(xg)). EQUAL(f(xg,g(xg,x),x),e(xg)). EQUAL(g(xg,f(xg,x,y)),f(xg,g(xg,x),g(xg,y))). EQUAL(f(xg,x,f(xg,g(xg,x),y)),y). EQUAL(f(xg,g(xg,x),f(xg,x,y)),y). EQUAL(f(xg,f(xg,x,y),z),f(xg,x,f(xg,y,z))). EQUAL(e(G1),a). EQUAL(e(G2),c). EQUAL(r(a),c). EQUAL(r(b),d). EQUAL(s(a),d). EQUAL(s(b),c). end_of_list. SHAR_EOF if test -f 'order2.ver4.out' then echo shar: over-writing existing file "'order2.ver4.out'" fi cat << \SHAR_EOF > 'order2.ver4.out' % problem-set/algebra/groups/order2.ver4.out % created : 08/15/88 % revised : 08/15/88 OTTER version 0.91, 14 June 1988. set(UR_res). set(back_demod). set(factor). set(Unit_deletion). assign(max_kept,5000). list(axioms). 1 -EL(x,xg) | -EL(y,xg) | P(xg,x,y,f(xg,x,y)). 2 -EL(x,xg) | -EL(y,xg) | EL(f(xg,x,y),xg). 3 -P(xg,x,y,z) | -P(xg,x,y,w) | EQUAL(w,z). 4 -P(xg,x,z,y) | -P(xg,x,w,y) | EQUAL(w,z). 5 -P(xg,z,y,x) | -P(xg,w,y,x) | EQUAL(w,z). 6 EL(e(xg),xg). 7 P(xg,e(xg),x,x). 8 P(xg,x,e(xg),x). 9 -EL(x,xg) | EL(g(xg,x),xg). 10 P(xg,g(xg,x),x,e(xg)). 11 P(xg,x,g(xg,x),e(xg)). 12 -P(xg,x,y,xy) | -P(xg,y,z,yz) | -P(xg,xy,z,xyz) | P(xg,x,xy,xyz). 13 -P(xg,x,y,xy) | -P(xg,y,z,yz) | -P(xg,x,yz,xyz) | P(xg,xy,z,xyz). 14 EQUAL(x,x). 15 -EQUAL(x,y) | EQUAL(y,x). 16 -EQUAL(x,y) | -EQUAL(y,z) | EQUAL(x,z). 17 -EQUAL(xg,yg) | -P(xg,x,y,z) | P(yg,x,y,z). 18 -EQUAL(x,y) | -P(xg,x,z,w) | P(xg,y,z,w). 19 -EQUAL(x,y) | -P(xg,w,x,z) | P(xg,w,y,z). 20 -EQUAL(x,y) | -P(xg,w,z,x) | P(xg,w,z,y). 21 -EQUAL(xg,yg) | EQUAL(f(xg,x,y),f(yg,x,y)). 22 -EQUAL(x,y) | EQUAL(f(xg,x,z),f(xg,y,z)). 23 -EQUAL(x,y) | EQUAL(f(xg,z,x),f(xg,z,y)). 24 -EQUAL(xg,yg) | EQUAL(g(xg,x),g(yg,x)). 25 -EQUAL(x,y) | EQUAL(g(xg,x),g(xg,y)). 26 -EQUAL(xg,yg) | -EL(x,xg) | EL(x,yg). 27 -EQUAL(x,y) | -EL(x,xg) | EL(y,xg). 28 -EQUAL(xg,yg) | EQUAL(e(xg),e(yg)). 29 -EQUAL(G1,G2). 30 EL(a,G1). 31 EL(b,G1). 32 -EQUAL(a,b). 33 EL(c,G2). 34 EL(d,G2). 35 -EQUAL(c,d). 36 -EQUAL(a,c). 37 -EQUAL(a,d). 38 -EQUAL(b,c). 39 -EQUAL(b,d). 40 -EL(x,G1) | EQUAL(x,a) | EQUAL(x,b). 41 -EL(x,G2) | EQUAL(x,c) | EQUAL(x,d). 42 EQUAL(e(G1),a). 43 EQUAL(e(G2),c). 44 P(G1,a,x,x). 45 P(G1,x,a,x). 46 P(G2,c,x,x). 47 P(G2,x,c,x). 48 EQUAL(r(a),c). 49 EQUAL(r(b),d). 50 EQUAL(s(a),d). 51 EQUAL(s(b),c). 52 -EQUAL(x,y) | EQUAL(r(x),r(y)). 53 -EQUAL(x,y) | EQUAL(s(x),s(y)). 54 -EQUAL(x,r(z)) | -EQUAL(y,r(z)) | EQUAL(x,y). 55 -EQUAL(x,s(z)) | -EQUAL(y,s(z)) | EQUAL(x,y). end_of_list. list(sos). 56 EL(d1,G1). 57 EL(d2,G1). 58 EL(d3,G1). 59 P(G1,d1,d2,d3). 60 -P(G2,r(d1),r(d2),r(d3)) | -P(G2,s(d1),s(d2),s(d3)). end_of_list. list(demodulators). 61 EQUAL(g(xg,e(xg)),e(xg)). 62 EQUAL(g(xg,g(xg,x)),x). 63 EQUAL(f(xg,e(xg),x),x). 64 EQUAL(f(xg,x,e(xg)),x). 65 EQUAL(f(xg,x,g(xg,x)),e(xg)). 66 EQUAL(f(xg,g(xg,x),x),e(xg)). 67 EQUAL(g(xg,f(xg,x,y)),f(xg,g(xg,x),g(xg,y))). 68 EQUAL(f(xg,x,f(xg,g(xg,x),y)),y). 69 EQUAL(f(xg,g(xg,x),f(xg,x,y)),y). 70 EQUAL(f(xg,f(xg,x,y),z),f(xg,x,f(xg,y,z))). 71 EQUAL(e(G1),a). 72 EQUAL(e(G2),c). 73 EQUAL(r(a),c). 74 EQUAL(r(b),d). 75 EQUAL(s(a),d). 76 EQUAL(s(b),c). end_of_list. new given clause: 56 EL(d1,G1). ----> UNIT CONFLICT at 9.66 sec ----> 248 (246,47) . ------------ END OF SEARCH ------------ ---------------- PROOF ---------------- 4 -P(xg,x,z,y) | -P(xg,x,w,y) | EQUAL(w,z). 5 -P(xg,z,y,x) | -P(xg,w,y,x) | EQUAL(w,z). 12 -P(xg,x,y,xy) | -P(xg,y,z,yz) | -P(xg,xy,z,xyz) | P(xg,x,xy,xyz). 44 P(G1,a,x,x). 45 P(G1,x,a,x). 47 P(G2,x,c,x). 59 P(G1,d1,d2,d3). 60 -P(G2,r(d1),r(d2),r(d3)) | -P(G2,s(d1),s(d2),s(d3)). 73 EQUAL(r(a),c). 75 EQUAL(s(a),d). 123 (59,12,45,44) P(G1,d1,d1,d3). 124 (59,12,44,59) P(G1,a,d1,d3). 201 (123,4,59) EQUAL(d2,d1). 202 (201) EQUAL(d2,d1). 203 (60,202,202) -P(G2,r(d1),r(d1),r(d3)) | -P(G2,s(d1),s(d1),s(d3)). 216 (124,5,123) EQUAL(d1,a). 217 (216) EQUAL(d1,a). 218 (124,4,44,217) EQUAL(d3,a). 219 (218) EQUAL(d3,a). 220 (203,217,73,217,73,219,73,217,75,217,75,219,75,47) -P(G2,d,d,d). 246 (220,12,47,47) -P(G2,d,x,d). 248 (246,47) . --------------- options --------------- set(UR_res). set(demod_hist). set(for_sub). set(Unit_deletion). set(print_kept). set(factor). set(back_sub). set(print_back_sub). set(print_given). set(check_arity). set(back_demod). set(print_new_demod). set(print_back_demod). clear(binary_res). clear(hyper_res). clear(para_from). clear(para_into). clear(demod_inf). clear(para_from_left). clear(para_from_right). clear(para_into_vars). clear(para_from_vars). clear(para_all). clear(para_ones_rule). clear(no_para_into_left). clear(no_para_into_right). clear(demod_linear). clear(print_gen). clear(sort_literals). clear(print_weight). clear(sos_fifo). clear(bird_print). clear(atom_wt_max_args). clear(print_lists_at_end). clear(free_all_mem). clear(for_sub_fpa). clear(no_fapl). clear(no_fanl). clear(order_eq). clear(dynamic_demod). assign(report, 0). assign(max_seconds, 0). assign(max_given, 0). assign(max_kept, 5000). assign(max_gen, 0). assign(max_mem, 0). assign(max_weight, 0). assign(max_literals, 0). assign(fpa_literals, 3). assign(fpa_terms, 3). assign(demod_limit, 100). assign(max_proofs, 1). assign(neg_weight, 0). -------------- statistics ------------- clauses input 76 clauses given 14 clauses generated 458 demodulation rewrites 597 clauses wt or lit delete 0 tautologies deleted 0 clauses forward subsumed 434 (clauses subsumed by sos) 185 unit deletions 1 clauses kept 168 new demodualtors 4 empty clauses 1 factors generated 0 clauses back demodulated 144 clauses back subsumed 0 clauses not processed 7 ----------- times (seconds) ----------- run time 9.81 input time 0.93 binary_res time 0.00 hyper_res time 0.00 UR_res time 2.33 para_into time 0.00 para_from time 0.00 pre_process time 4.20 demod time 0.75 weigh time 0.05 for_sub time 1.36 unit_del time 0.42 post_process time 2.97 back_sub time 0.31 conflict time 0.55 factor time 0.02 back demod time 2.01 FPA build time 0.32 IS build time 0.13 print_cl time 1.26 cl integrate time 0.20 window time 0.00 SHAR_EOF if test -f 'order3.desc' then echo shar: over-writing existing file "'order3.desc'" fi cat << \SHAR_EOF > 'order3.desc' problem-set/algebra/groups/order3.desc created : 07/09/86 revised : 08/15/88 Natural Language Description: Theorem: all groups of order 3 are isomorphic; i.e., if G1 and G2 each have exactly three elements, then there exists an isomorphism [a one-to-one and onto homomorphism] between them. Versions : order3.ver3 : uses UR resolution and an extended p-formulation whereby the group is specified in each predicate. Note: this is the original formulation of the problem. In order to prove the theorem, the group tables and a particular homomorphism are specified, and the contradiction comes from the fact that this is the actual isomorphism. Not only is this formulation cheating, but also it does not prove the theorem in full generality. For a newer form, see .ver4. created : 7/22/86 from McCharen, Overbeek, & Wos [Aug. 1976]. verified for ITP : 7/22/86 translated for OTTER : caw. verified for OTTER : 08/12/88. order3.ver4 : uses UR resolution and an extended p-formulation whereby the group is specified in each predicate. Note: in order to prove the theorem, we specify one element of each group as the identity element and take as a previously-proven lemma (obvious) that maps from G1 -> G2 which are not one-to-one or which are not onto need not be considered for isomorphisms between the groups. Thus we consider only the six one-to-one and onto maps between the groups, and show that assuming none of them are homomorphisms gives a contradiction. created : 8/11/88, Cynthia A. Wick verified for ITP : no. translated for OTTER : caw. verified for OTTER : 08/15/88. SHAR_EOF if test -f 'order3.ver3.clauses' then echo shar: over-writing existing file "'order3.ver3.clauses'" fi cat << \SHAR_EOF > 'order3.ver3.clauses' % problem-set/algebra/groups/order3.ver3.clauses % created : 07/22/86 % revised : 08/12/88 % description: % % Theorem: all groups of order 3 are isomorphic; i.e., if G1 and G2 each % have exactly three elements, then there exists an isomorphism [a % one-to-one and onto homomorphism] between them. % % The following are the usual axioms of a group with an additional argument % in the usual predicates and functions to identify the group. % representation: % % declare_predicates(2,[EL,EQUAL]). % declare_predicate(4,[P]). % declare_functions(1,[e,k,r,s,p1,p2,p3,q1,q2,q3]). % declare_functions(2,[g,m]). % declare_function(3,[f]). % declare_constants([a,b,c,d,i,h,j,d1,d2,d3,G,G1,G2]). % declare_variables([x,y,z,w,xg,yg,xy,yz,xyz]). % % EL(x,y) : x is an element of group y % P(x,y,z,w) : in group x, the product of y and z is w % e(x) : names the identity element of group x % k(x) : names an isomorphism (see order2.ver3, order3.ver3) % r(x) : is a possible isomorphism (see order2.ver4) % s(x) : is a possible isomorphism (see order2.ver4) % p1(x) : is a possible isomorphism (see order3.ver4) % p2(x) : is a possible isomorphism (see order3.ver4) % p3(x) : is a possible isomorphism (see order3.ver4) % q1(x) : is a possible isomorphism (see order3.ver4) % q2(x) : is a possible isomorphism (see order3.ver4) % q3(x) : is a possible isomorphism (see order3.ver4) % g(x,y) : in group x, names inverse of y % m(x,y) : in group x, names an element which does not equal any power of % y; (see cyclic) % f(x,y,z) : in group x, names the product of y and z % i : identity element in group G named % closure property -EL(x,xg) | -EL(y,xg) | P(xg,x,y,f(xg,x,y)). -EL(x,xg) | -EL(y,xg) | EL(f(xg,x,y),xg). % the operation is well defined -P(xg,x,y,z) | -P(xg,x,y,w) | EQUAL(w,z). % existence of identity EL(e(xg),xg). P(xg,e(xg),x,x). P(xg,x,e(xg),x). % existence of inverses -EL(x,xg) | EL(g(xg,x),xg). P(xg,g(xg,x),x,e(xg)). P(xg,x,g(xg,x),e(xg)). % associative property -P(xg,x,y,xy) | -P(xg,y,z,yz) | -P(xg,xy,z,xyz) | P(xg,x,xy,xyz). -P(xg,x,y,xy) | -P(xg,y,z,yz) | -P(xg,x,yz,xyz) | P(xg,xy,z,xyz). % equality axioms EQUAL(x,x). -EQUAL(x,y) | EQUAL(y,x). -EQUAL(x,y) | -EQUAL(y,z) | EQUAL(x,z). % equality substitution axioms -EQUAL(xg,yg)| -P(xg,x,y,z) | P(yg,x,y,z). -EQUAL(x,y) | -P(xg,x,z,w) | P(xg,y,z,w). -EQUAL(x,y) | -P(xg,w,x,z) | P(xg,w,y,z). -EQUAL(x,y) | -P(xg,w,z,x) | P(xg,w,z,y). -EQUAL(xg,yg)| EQUAL(f(xg,x,y),f(yg,x,y)). -EQUAL(x,y) | EQUAL(f(xg,x,z),f(xg,y,z)). -EQUAL(x,y) | EQUAL(f(xg,z,x),f(xg,z,y)). -EQUAL(xg,yg)| EQUAL(g(xg,x),g(yg,x)). -EQUAL(x,y) | EQUAL(g(xg,x),g(xg,y)). -EQUAL(xg,yg)| -EL(x,xg) | EL(x,yg). -EQUAL(x,y) | -EL(x,xg) | EL(y,xg). -EQUAL(xg,yg)| EQUAL(e(xg),e(yg)). % definition of the two groups EL(a,g1). EL(b,g1). EL(c,g1). EL(c1,g2). EL(c2,g2). EL(c3,g2). -EL(x,g1) | EQUAL(x,a) | EQUAL(x,b) | EQUAL(x,c). -EL(x,g2) | EQUAL(x,c1) | EQUAL(x,c2) | EQUAL(x,c3). P(g1,a,a,a). P(g1,a,b,b). P(g1,b,a,b). P(g1,a,c,c). P(g1,c,a,c). P(g1,b,b,c). P(g1,b,c,a). P(g1,c,b,a). P(g1,c,c,b). P(g2,c1,c1,c1). P(g2,c1,c2,c2). P(g2,c2,c1,c2). P(g2,c1,c3,c3). P(g2,c3,c1,c3). P(g2,c2,c2,c3). P(g2,c2,c3,c1). P(g2,c3,c2,c1). P(g2,c3,c3,c2). % definition of a function k EQUAL(k(a),c1). EQUAL(k(b),c2). EQUAL(k(c),c3). % denial that k is an isomorphism EL(d1,g1). EL(d2,g1). EL(d3,g1). P(g1,d1,d2,d3). -P(g1,k(d1),k(d2),k(d3)). SHAR_EOF if test -f 'order3.ver3.in' then echo shar: over-writing existing file "'order3.ver3.in'" fi cat << \SHAR_EOF > 'order3.ver3.in' % problem-set/algebra/groups/order3.ver3.in % created : 07/22/86 % revised : 08/12/88 % description: % % Theorem: all groups of order 3 are isomorphic; i.e., if G1 and G2 each % have exactly three elements, then there exists an isomorphism [a % one-to-one and onto homomorphism] between them. % % The following are the usual axioms of a group with an additional argument % in the usual predicates and functions to identify the group. % representation: % % declare_predicates(2,[EL,EQUAL]). % declare_predicate(4,[P]). % declare_functions(1,[e,k,r,s,p1,p2,p3,q1,q2,q3]). % declare_functions(2,[g,m]). % declare_function(3,[f]). % declare_constants([a,b,c,d,i,h,j,d1,d2,d3,G,G1,G2]). % declare_variables([x,y,z,w,xg,yg,xy,yz,xyz]). % % EL(x,y) : x is an element of group y % P(x,y,z,w) : in group x, the product of y and z is w % e(x) : names the identity element of group x % k(x) : names an isomorphism (see order2.ver3, order3.ver3) % r(x) : is a possible isomorphism (see order2.ver4) % s(x) : is a possible isomorphism (see order2.ver4) % p1(x) : is a possible isomorphism (see order3.ver4) % p2(x) : is a possible isomorphism (see order3.ver4) % p3(x) : is a possible isomorphism (see order3.ver4) % q1(x) : is a possible isomorphism (see order3.ver4) % q2(x) : is a possible isomorphism (see order3.ver4) % q3(x) : is a possible isomorphism (see order3.ver4) % g(x,y) : in group x, names inverse of y % m(x,y) : in group x, names an element which does not equal any power of % y; (see cyclic) % f(x,y,z) : in group x, names the product of y and z % i : identity element in group G named set(UR_res). set(back_demod). set(factor). set(Unit_deletion). assign(max_kept,5000). list(axioms). % closure property -EL(x,xg) | -EL(y,xg) | P(xg,x,y,f(xg,x,y)). -EL(x,xg) | -EL(y,xg) | EL(f(xg,x,y),xg). % the operation is well defined -P(xg,x,y,z) | -P(xg,x,y,w) | EQUAL(w,z). % existence of identity EL(e(xg),xg). P(xg,e(xg),x,x). P(xg,x,e(xg),x). % existence of inverses -EL(x,xg) | EL(g(xg,x),xg). P(xg,g(xg,x),x,e(xg)). P(xg,x,g(xg,x),e(xg)). % associative property -P(xg,x,y,xy) | -P(xg,y,z,yz) | -P(xg,xy,z,xyz) | P(xg,x,xy,xyz). -P(xg,x,y,xy) | -P(xg,y,z,yz) | -P(xg,x,yz,xyz) | P(xg,xy,z,xyz). % equality axioms EQUAL(x,x). -EQUAL(x,y) | EQUAL(y,x). -EQUAL(x,y) | -EQUAL(y,z) | EQUAL(x,z). % equality substitution axioms -EQUAL(xg,yg)| -P(xg,x,y,z) | P(yg,x,y,z). -EQUAL(x,y) | -P(xg,x,z,w) | P(xg,y,z,w). -EQUAL(x,y) | -P(xg,w,x,z) | P(xg,w,y,z). -EQUAL(x,y) | -P(xg,w,z,x) | P(xg,w,z,y). -EQUAL(xg,yg)| EQUAL(f(xg,x,y),f(yg,x,y)). -EQUAL(x,y) | EQUAL(f(xg,x,z),f(xg,y,z)). -EQUAL(x,y) | EQUAL(f(xg,z,x),f(xg,z,y)). -EQUAL(xg,yg)| EQUAL(g(xg,x),g(yg,x)). -EQUAL(x,y) | EQUAL(g(xg,x),g(xg,y)). -EQUAL(xg,yg)| -EL(x,xg) | EL(x,yg). -EQUAL(x,y) | -EL(x,xg) | EL(y,xg). -EQUAL(xg,yg)| EQUAL(e(xg),e(yg)). % definition of the two groups EL(a,g1). EL(b,g1). EL(c,g1). EL(c1,g2). EL(c2,g2). EL(c3,g2). -EL(x,g1) | EQUAL(x,a) | EQUAL(x,b) | EQUAL(x,c). -EL(x,g2) | EQUAL(x,c1) | EQUAL(x,c2) | EQUAL(x,c3). P(g1,a,a,a). P(g1,a,b,b). P(g1,b,a,b). P(g1,a,c,c). P(g1,c,a,c). P(g1,b,b,c). P(g1,b,c,a). P(g1,c,b,a). P(g1,c,c,b). P(g2,c1,c1,c1). P(g2,c1,c2,c2). P(g2,c2,c1,c2). P(g2,c1,c3,c3). P(g2,c3,c1,c3). P(g2,c2,c2,c3). P(g2,c2,c3,c1). P(g2,c3,c2,c1). P(g2,c3,c3,c2). % definition of a function k EQUAL(k(a),c1). EQUAL(k(b),c2). EQUAL(k(c),c3). end_of_list. list(sos). % denial that k is an isomorphism EL(d1,g1). EL(d2,g1). EL(d3,g1). P(g1,d1,d2,d3). -P(g1,k(d1),k(d2),k(d3)). end_of_list. list(demodulators). EQUAL(g(xg,e(xg)),e(xg)). EQUAL(g(xg,g(xg,x)),x). EQUAL(f(xg,e(xg),x),x). EQUAL(f(xg,x,e(xg)),x). EQUAL(f(xg,x,g(xg,x)),e(xg)). EQUAL(f(xg,g(xg,x),x),e(xg)). end_of_list. SHAR_EOF if test -f 'order3.ver3.out' then echo shar: over-writing existing file "'order3.ver3.out'" fi cat << \SHAR_EOF > 'order3.ver3.out' % problem-set/algebra/groups/order3.ver3.out % created : 08/12/88 % revised : 08/12/88 OTTER version 0.91, 14 June 1988. set(UR_res). set(back_demod). set(factor). set(Unit_deletion). assign(max_kept,5000). list(axioms). 1 -EL(x,xg) | -EL(y,xg) | P(xg,x,y,f(xg,x,y)). 2 -EL(x,xg) | -EL(y,xg) | EL(f(xg,x,y),xg). 3 -P(xg,x,y,z) | -P(xg,x,y,w) | EQUAL(w,z). 4 EL(e(xg),xg). 5 P(xg,e(xg),x,x). 6 P(xg,x,e(xg),x). 7 -EL(x,xg) | EL(g(xg,x),xg). 8 P(xg,g(xg,x),x,e(xg)). 9 P(xg,x,g(xg,x),e(xg)). 10 -P(xg,x,y,xy) | -P(xg,y,z,yz) | -P(xg,xy,z,xyz) | P(xg,x,xy,xyz). 11 -P(xg,x,y,xy) | -P(xg,y,z,yz) | -P(xg,x,yz,xyz) | P(xg,xy,z,xyz). 12 EQUAL(x,x). 13 -EQUAL(x,y) | EQUAL(y,x). 14 -EQUAL(x,y) | -EQUAL(y,z) | EQUAL(x,z). 15 -EQUAL(xg,yg) | -P(xg,x,y,z) | P(yg,x,y,z). 16 -EQUAL(x,y) | -P(xg,x,z,w) | P(xg,y,z,w). 17 -EQUAL(x,y) | -P(xg,w,x,z) | P(xg,w,y,z). 18 -EQUAL(x,y) | -P(xg,w,z,x) | P(xg,w,z,y). 19 -EQUAL(xg,yg) | EQUAL(f(xg,x,y),f(yg,x,y)). 20 -EQUAL(x,y) | EQUAL(f(xg,x,z),f(xg,y,z)). 21 -EQUAL(x,y) | EQUAL(f(xg,z,x),f(xg,z,y)). 22 -EQUAL(xg,yg) | EQUAL(g(xg,x),g(yg,x)). 23 -EQUAL(x,y) | EQUAL(g(xg,x),g(xg,y)). 24 -EQUAL(xg,yg) | -EL(x,xg) | EL(x,yg). 25 -EQUAL(x,y) | -EL(x,xg) | EL(y,xg). 26 -EQUAL(xg,yg) | EQUAL(e(xg),e(yg)). 27 EL(a,g1). 28 EL(b,g1). 29 EL(c,g1). 30 EL(c1,g2). 31 EL(c2,g2). 32 EL(c3,g2). 33 -EL(x,g1) | EQUAL(x,a) | EQUAL(x,b) | EQUAL(x,c). 34 -EL(x,g2) | EQUAL(x,c1) | EQUAL(x,c2) | EQUAL(x,c3). 35 P(g1,a,a,a). 36 P(g1,a,b,b). 37 P(g1,b,a,b). 38 P(g1,a,c,c). 39 P(g1,c,a,c). 40 P(g1,b,b,c). 41 P(g1,b,c,a). 42 P(g1,c,b,a). 43 P(g1,c,c,b). 44 P(g2,c1,c1,c1). 45 P(g2,c1,c2,c2). 46 P(g2,c2,c1,c2). 47 P(g2,c1,c3,c3). 48 P(g2,c3,c1,c3). 49 P(g2,c2,c2,c3). 50 P(g2,c2,c3,c1). 51 P(g2,c3,c2,c1). 52 P(g2,c3,c3,c2). 53 EQUAL(k(a),c1). 54 EQUAL(k(b),c2). 55 EQUAL(k(c),c3). end_of_list. list(sos). 56 EL(d1,g1). 57 EL(d2,g1). 58 EL(d3,g1). 59 P(g1,d1,d2,d3). 60 -P(g1,k(d1),k(d2),k(d3)). end_of_list. list(demodulators). 61 EQUAL(g(xg,e(xg)),e(xg)). 62 EQUAL(g(xg,g(xg,x)),x). 63 EQUAL(f(xg,e(xg),x),x). 64 EQUAL(f(xg,x,e(xg)),x). 65 EQUAL(f(xg,x,g(xg,x)),e(xg)). 66 EQUAL(f(xg,g(xg,x),x),e(xg)). end_of_list. ------------> EMPTY CLAUSE -----------> 2741 (2692,2738,2730) . ------------ END OF SEARCH ------------ ---------------- PROOF ---------------- 3 -P(xg,x,y,z) | -P(xg,x,y,w) | EQUAL(w,z). 5 P(xg,e(xg),x,x). 6 P(xg,x,e(xg),x). 9 P(xg,x,g(xg,x),e(xg)). 10 -P(xg,x,y,xy) | -P(xg,y,z,yz) | -P(xg,xy,z,xyz) | P(xg,x,xy,xyz). 17 -EQUAL(x,y) | -P(xg,w,x,z) | P(xg,w,y,z). 59 P(g1,d1,d2,d3). 60 -P(g1,k(d1),k(d2),k(d3)). 125 (59,10,6,5) P(g1,d1,d1,d3). 126 (59,10,5,59) P(g1,e(g1),d1,d3). 128 (59,10,6,6) P(g1,d1,d3,d3). 214 (128,10,9,9) P(g1,d1,d3,e(g1)). 2689 (126,3,5) EQUAL(d3,d1). 2690 (2689) EQUAL(d3,d1). 2691 (59,2690) P(g1,d1,d2,d1). 2692 (60,2690) -P(g1,k(d1),k(d2),k(d1)). 2694 (125,2690) P(g1,d1,d1,d1). 2696 (214,2690) P(g1,d1,d1,e(g1)). 2702 (2696,10,2691,5) P(g1,d1,e(g1),d2). 2704 (2696,3,2694) EQUAL(e(g1),d1). 2705 (2704) EQUAL(e(g1),d1). 2710 (2702,2705) P(g1,d1,d1,d2). 2713 (2704,17,6) P(g1,x,d1,x). 2730 (2713,10,2713,2713) P(g1,x,x,x). 2737 (2713,3,2710) EQUAL(d2,d1). 2738 (2737) EQUAL(d2,d1). 2741 (2692,2738,2730) . --------------- options --------------- set(UR_res). set(demod_hist). set(for_sub). set(Unit_deletion). set(print_kept). set(factor). set(back_sub). set(print_back_sub). set(print_given). set(check_arity). set(back_demod). set(print_new_demod). set(print_back_demod). clear(binary_res). clear(hyper_res). clear(para_from). clear(para_into). clear(demod_inf). clear(para_from_left). clear(para_from_right). clear(para_into_vars). clear(para_from_vars). clear(para_all). clear(para_ones_rule). clear(no_para_into_left). clear(no_para_into_right). clear(demod_linear). clear(print_gen). clear(sort_literals). clear(print_weight). clear(sos_fifo). clear(bird_print). clear(atom_wt_max_args). clear(print_lists_at_end). clear(free_all_mem). clear(for_sub_fpa). clear(no_fapl). clear(no_fanl). clear(order_eq). clear(dynamic_demod). assign(report, 0). assign(max_seconds, 0). assign(max_given, 0). assign(max_kept, 5000). assign(max_gen, 0). assign(max_mem, 0). assign(max_weight, 0). assign(max_literals, 0). assign(fpa_literals, 3). assign(fpa_terms, 3). assign(demod_limit, 100). assign(max_proofs, 1). assign(neg_weight, 0). -------------- statistics ------------- clauses input 66 clauses given 47 clauses generated 3362 demodulation rewrites 5361 clauses wt or lit delete 0 tautologies deleted 0 clauses forward subsumed 3107 (clauses subsumed by sos) 2525 unit deletions 1 clauses kept 2671 new demodualtors 4 empty clauses 1 factors generated 0 clauses back demodulated 2416 clauses back subsumed 8 clauses not processed 2374 ----------- times (seconds) ----------- run time 216.89 input time 1.07 binary_res time 0.00 hyper_res time 0.00 UR_res time 15.01 para_into time 0.00 para_from time 0.00 pre_process time 78.55 demod time 15.23 weigh time 1.51 for_sub time 16.73 unit_del time 6.56 post_process time 139.74 back_sub time 20.02 conflict time 9.55 factor time 0.45 back demod time 108.46 FPA build time 6.31 IS build time 2.76 print_cl time 29.31 cl integrate time 5.15 window time 0.00 SHAR_EOF if test -f 'order3.ver4.clauses' then echo shar: over-writing existing file "'order3.ver4.clauses'" fi cat << \SHAR_EOF > 'order3.ver4.clauses' % problem-set/algebra/groups/order3.ver4.clauses % created : 07/22/86 % revised : 08/15/88 % description: % % Theorem: all groups of order 3 are isomorphic; i.e., if G1 and G2 each % have exactly three elements, then there exists an isomorphism [a % one-to-one and onto homomorphism] between them. % % Note: in order to prove the theorem, we specify one element of each group % as the identity element and take as a previously-proven lemma (obvious) % that maps from G1 -> G2 which are not one-to-one or which are not onto % need not be considered for isomorphisms between the groups. Thus we % consider only the six one-to-one and onto maps between the groups, and % show that assuming none of them are homomorphisms gives a contradiction. % representation: % % declare_predicates(2,[EL,EQUAL]). % declare_predicate(4,[P]). % declare_functions(1,[e,k,r,s,p1,p2,p3,q1,q2,q3]). % declare_functions(2,[g,m]). % declare_function(3,[f]). % declare_constants([a,b,c,d,i,h,j,d1,d2,d3,G,G1,G2]). % declare_variables([x,y,z,w,xg,yg,xy,yz,xyz]). % % EL(x,y) : x is an element of group y % P(x,y,z,w) : in group x, the product of y and z is w % e(x) : names the identity element of group x % k(x) : names an isomorphism (see order2.ver3, order3.ver3) % r(x) : is a possible isomorphism (see order2.ver4) % s(x) : is a possible isomorphism (see order2.ver4) % p1(x) : is a possible isomorphism (see order3.ver4) % p2(x) : is a possible isomorphism (see order3.ver4) % p3(x) : is a possible isomorphism (see order3.ver4) % q1(x) : is a possible isomorphism (see order3.ver4) % q2(x) : is a possible isomorphism (see order3.ver4) % q3(x) : is a possible isomorphism (see order3.ver4) % g(x,y) : in group x, names inverse of y % m(x,y) : in group x, names an element which does not equal any power of % y; (see cyclic) % f(x,y,z) : in group x, names the product of y and z % i : identity element in group G named % The following are the usual axioms of a group with an additional argument % in the usual predicates and functions to identify the group. % closure property -EL(x,xg) | -EL(y,xg) | P(xg,x,y,f(xg,x,y)). -EL(x,xg) | -EL(y,xg) | EL(f(xg,x,y),xg). % the operation is well defined -P(xg,x,y,z) | -P(xg,x,y,w) | EQUAL(w,z). -P(xg,x,z,y) | -P(xg,x,w,y) | EQUAL(w,z). -P(xg,z,y,x) | -P(xg,w,y,x) | EQUAL(w,z). % existence of identity EL(e(xg),xg). P(xg,e(xg),x,x). P(xg,x,e(xg),x). % existence of inverses -EL(x,xg) | EL(g(xg,x),xg). P(xg,g(xg,x),x,e(xg)). P(xg,x,g(xg,x),e(xg)). % associative property -P(xg,x,y,xy) | -P(xg,y,z,yz) | -P(xg,xy,z,xyz) | P(xg,x,xy,xyz). -P(xg,x,y,xy) | -P(xg,y,z,yz) | -P(xg,x,yz,xyz) | P(xg,xy,z,xyz). % equality axioms EQUAL(x,x). -EQUAL(x,y) | EQUAL(y,x). -EQUAL(x,y) | -EQUAL(y,z) | EQUAL(x,z). % equality substitution axioms -EQUAL(xg,yg)| -P(xg,x,y,z) | P(yg,x,y,z). -EQUAL(x,y) | -P(xg,x,z,w) | P(xg,y,z,w). -EQUAL(x,y) | -P(xg,w,x,z) | P(xg,w,y,z). -EQUAL(x,y) | -P(xg,w,z,x) | P(xg,w,z,y). -EQUAL(xg,yg)| EQUAL(f(xg,x,y),f(yg,x,y)). -EQUAL(x,y) | EQUAL(f(xg,x,z),f(xg,y,z)). -EQUAL(x,y) | EQUAL(f(xg,z,x),f(xg,z,y)). -EQUAL(xg,yg)| EQUAL(g(xg,x),g(yg,x)). -EQUAL(x,y) | EQUAL(g(xg,x),g(xg,y)). -EQUAL(xg,yg)| -EL(x,xg) | EL(x,yg). -EQUAL(x,y) | -EL(x,xg) | EL(y,xg). -EQUAL(xg,yg)| EQUAL(e(xg),e(yg)). % definition of the two different groups of order 3 % at least three: -EQUAL(G1,G2). EL(a,G1). EL(b,G1). EL(c,G1). -EQUAL(a,b). -EQUAL(c,a). -EQUAL(b,c). EL(d,G2). EL(h,G2). EL(j,G2). -EQUAL(d,h). -EQUAL(j,d). -EQUAL(h,j). % only three: -EL(x,G1) | EQUAL(x,a) | EQUAL(x,b) | EQUAL(x,c). -EL(x,G2) | EQUAL(x,d) | EQUAL(x,h) | EQUAL(x,j). % a is the identity element of G1, d is the identity element of G2 EQUAL(e(G1),a). EQUAL(e(G2),d). P(G1,a,x,x). P(G1,x,a,x). P(G2,d,x,x). P(G2,x,d,x). % definition of maps p1, p2, p3, q1, q2, q3, six possible isomorphisms EQUAL(p1(a),d). EQUAL(p1(b),h). EQUAL(p1(c),j). EQUAL(p2(a),d). EQUAL(p2(b),j). EQUAL(p2(c),h). EQUAL(p3(a),h). EQUAL(p3(b),d). EQUAL(p3(c),j). EQUAL(q1(a),h). EQUAL(q1(b),j). EQUAL(q1(c),d). EQUAL(q2(a),j). EQUAL(q2(b),h). EQUAL(q2(c),d). EQUAL(q3(a),j). EQUAL(q3(b),d). EQUAL(q3(c),h). % equality substitution axioms for p1, p2, p3, q1, q2, q3 -EQUAL(x,y) | EQUAL(p1(x),p1(y)). -EQUAL(x,y) | EQUAL(p2(x),p2(y)). -EQUAL(x,y) | EQUAL(p3(x),p3(y)). -EQUAL(x,y) | EQUAL(q1(x),q1(y)). -EQUAL(x,y) | EQUAL(q2(x),q2(y)). -EQUAL(x,y) | EQUAL(q3(x),q3(y)). -EQUAL(x,p1(z)) | -EQUAL(y,p1(z)) | EQUAL(x,y). -EQUAL(x,p2(z)) | -EQUAL(y,p2(z)) | EQUAL(x,y). -EQUAL(x,p3(z)) | -EQUAL(y,p3(z)) | EQUAL(x,y). -EQUAL(x,q1(z)) | -EQUAL(y,q1(z)) | EQUAL(x,y). -EQUAL(x,q2(z)) | -EQUAL(y,q2(z)) | EQUAL(x,y). -EQUAL(x,q3(z)) | -EQUAL(y,q3(z)) | EQUAL(x,y). % denial that one of p1,p2,p3,q1,q2,q3 is a homomorphism EL(d1,G1). EL(d2,G1). EL(d3,G1). P(G1,d1,d2,d3). -P(G1,p1(d1),p1(d2),p1(d3)) | -P(G1,p2(d1),p2(d2),p2(d3)) | -P(G1,p3(d1),p3(d2),p3(d3)) | -P(G1,q1(d1),q1(d2),q1(d3)) | -P(G2,q2(d1),q2(d2),q2(d3)) | -P(G3,q3(d1),q3(d2),q3(d3)). EQUAL(g(xg,e(xg)),e(xg)). EQUAL(f(xg,x,g(xg,x)),e(xg)). EQUAL(f(xg,g(xg,x),x),e(xg)). EQUAL(g(xg,f(xg,x,y)),f(xg,g(xg,x),g(xg,y))). EQUAL(f(xg,x,f(xg,g(xg,x),y)),y). EQUAL(f(xg,g(xg,x),f(xg,x,y)),y). EQUAL(f(xg,f(xg,x,y),z),f(xg,x,f(xg,y,z))). SHAR_EOF if test -f 'order3.ver4.in' then echo shar: over-writing existing file "'order3.ver4.in'" fi cat << \SHAR_EOF > 'order3.ver4.in' % problem-set/algebra/groups/order3.ver4.in % created : 07/22/86 % revised : 08/15/88 % description: % % Theorem: all groups of order 3 are isomorphic; i.e., if G1 and G2 each % have exactly three elements, then there exists an isomorphism [a % one-to-one and onto homomorphism] between them. % % Note: in order to prove the theorem, we specify one element of each group % as the identity element and take as a previously-proven lemma (obvious) % that maps from G1 -> G2 which are not one-to-one or which are not onto % need not be considered for isomorphisms between the groups. Thus we % consider only the six one-to-one and onto maps between the groups, and % show that assuming none of them are homomorphisms gives a contradiction. % representation: % % declare_predicates(2,[EL,EQUAL]). % declare_predicate(4,[P]). % declare_functions(1,[e,k,r,s,p1,p2,p3,q1,q2,q3]). % declare_functions(2,[g,m]). % declare_function(3,[f]). % declare_constants([a,b,c,d,i,h,j,d1,d2,d3,G,G1,G2]). % declare_variables([x,y,z,w,xg,yg,xy,yz,xyz]). % % EL(x,y) : x is an element of group y % P(x,y,z,w) : in group x, the product of y and z is w % e(x) : names the identity element of group x % k(x) : names an isomorphism (see order2.ver3, order3.ver3) % r(x) : is a possible isomorphism (see order2.ver4) % s(x) : is a possible isomorphism (see order2.ver4) % p1(x) : is a possible isomorphism (see order3.ver4) % p2(x) : is a possible isomorphism (see order3.ver4) % p3(x) : is a possible isomorphism (see order3.ver4) % q1(x) : is a possible isomorphism (see order3.ver4) % q2(x) : is a possible isomorphism (see order3.ver4) % q3(x) : is a possible isomorphism (see order3.ver4) % g(x,y) : in group x, names inverse of y % m(x,y) : in group x, names an element which does not equal any power of % y; (see cyclic) % f(x,y,z) : in group x, names the product of y and z % i : identity element in group G named set(UR_res). set(back_demod). set(factor). set(Unit_deletion). assign(max_kept,5000). list(axioms). % The following are the usual axioms of a group with an additional argument % in the usual predicates and functions to identify the group. % closure property -EL(x,xg) | -EL(y,xg) | P(xg,x,y,f(xg,x,y)). -EL(x,xg) | -EL(y,xg) | EL(f(xg,x,y),xg). % the operation is well defined -P(xg,x,y,z) | -P(xg,x,y,w) | EQUAL(w,z). -P(xg,x,z,y) | -P(xg,x,w,y) | EQUAL(w,z). -P(xg,z,y,x) | -P(xg,w,y,x) | EQUAL(w,z). % existence of identity EL(e(xg),xg). P(xg,e(xg),x,x). P(xg,x,e(xg),x). % existence of inverses -EL(x,xg) | EL(g(xg,x),xg). P(xg,g(xg,x),x,e(xg)). P(xg,x,g(xg,x),e(xg)). % associative property -P(xg,x,y,xy) | -P(xg,y,z,yz) | -P(xg,xy,z,xyz) | P(xg,x,xy,xyz). -P(xg,x,y,xy) | -P(xg,y,z,yz) | -P(xg,x,yz,xyz) | P(xg,xy,z,xyz). % equality axioms EQUAL(x,x). -EQUAL(x,y) | EQUAL(y,x). -EQUAL(x,y) | -EQUAL(y,z) | EQUAL(x,z). % equality substitution axioms -EQUAL(xg,yg)| -P(xg,x,y,z) | P(yg,x,y,z). -EQUAL(x,y) | -P(xg,x,z,w) | P(xg,y,z,w). -EQUAL(x,y) | -P(xg,w,x,z) | P(xg,w,y,z). -EQUAL(x,y) | -P(xg,w,z,x) | P(xg,w,z,y). -EQUAL(xg,yg)| EQUAL(f(xg,x,y),f(yg,x,y)). -EQUAL(x,y) | EQUAL(f(xg,x,z),f(xg,y,z)). -EQUAL(x,y) | EQUAL(f(xg,z,x),f(xg,z,y)). -EQUAL(xg,yg)| EQUAL(g(xg,x),g(yg,x)). -EQUAL(x,y) | EQUAL(g(xg,x),g(xg,y)). -EQUAL(xg,yg)| -EL(x,xg) | EL(x,yg). -EQUAL(x,y) | -EL(x,xg) | EL(y,xg). -EQUAL(xg,yg)| EQUAL(e(xg),e(yg)). % definition of the two different groups of order 3 % at least three: -EQUAL(G1,G2). EL(a,G1). EL(b,G1). EL(c,G1). -EQUAL(a,b). -EQUAL(c,a). -EQUAL(b,c). EL(d,G2). EL(h,G2). EL(j,G2). -EQUAL(d,h). -EQUAL(j,d). -EQUAL(h,j). % only three: -EL(x,G1) | EQUAL(x,a) | EQUAL(x,b) | EQUAL(x,c). -EL(x,G2) | EQUAL(x,d) | EQUAL(x,h) | EQUAL(x,j). % a is the identity element of G1, d is the identity element of G2 EQUAL(e(G1),a). EQUAL(e(G2),d). P(G1,a,x,x). P(G1,x,a,x). P(G2,d,x,x). P(G2,x,d,x). % definition of maps p1, p2, p3, q1, q2, q3, six possible isomorphisms EQUAL(p1(a),d). EQUAL(p1(b),h). EQUAL(p1(c),j). EQUAL(p2(a),d). EQUAL(p2(b),j). EQUAL(p2(c),h). EQUAL(p3(a),h). EQUAL(p3(b),d). EQUAL(p3(c),j). EQUAL(q1(a),h). EQUAL(q1(b),j). EQUAL(q1(c),d). EQUAL(q2(a),j). EQUAL(q2(b),h). EQUAL(q2(c),d). EQUAL(q3(a),j). EQUAL(q3(b),d). EQUAL(q3(c),h). % equality substitution axioms for p1, p2, p3, q1, q2, q3 -EQUAL(x,y) | EQUAL(p1(x),p1(y)). -EQUAL(x,y) | EQUAL(p2(x),p2(y)). -EQUAL(x,y) | EQUAL(p3(x),p3(y)). -EQUAL(x,y) | EQUAL(q1(x),q1(y)). -EQUAL(x,y) | EQUAL(q2(x),q2(y)). -EQUAL(x,y) | EQUAL(q3(x),q3(y)). -EQUAL(x,p1(z)) | -EQUAL(y,p1(z)) | EQUAL(x,y). -EQUAL(x,p2(z)) | -EQUAL(y,p2(z)) | EQUAL(x,y). -EQUAL(x,p3(z)) | -EQUAL(y,p3(z)) | EQUAL(x,y). -EQUAL(x,q1(z)) | -EQUAL(y,q1(z)) | EQUAL(x,y). -EQUAL(x,q2(z)) | -EQUAL(y,q2(z)) | EQUAL(x,y). -EQUAL(x,q3(z)) | -EQUAL(y,q3(z)) | EQUAL(x,y). end_of_list. list(sos). % denial that one of p1,p2,p3,q1,q2,q3 is a homomorphism EL(d1,G1). EL(d2,G1). EL(d3,G1). P(G1,d1,d2,d3). -P(G1,p1(d1),p1(d2),p1(d3)) | -P(G1,p2(d1),p2(d2),p2(d3)) | -P(G1,p3(d1),p3(d2),p3(d3)) | -P(G1,q1(d1),q1(d2),q1(d3)) | -P(G2,q2(d1),q2(d2),q2(d3)) | -P(G3,q3(d1),q3(d2),q3(d3)). end_of_list. list(demodulators). EQUAL(g(xg,e(xg)),e(xg)). EQUAL(g(xg,g(xg,x)),x). EQUAL(f(xg,e(xg),x),x). EQUAL(f(xg,x,e(xg)),x). EQUAL(f(xg,x,g(xg,x)),e(xg)). EQUAL(f(xg,g(xg,x),x),e(xg)). EQUAL(g(xg,f(xg,x,y)),f(xg,g(xg,x),g(xg,y))). EQUAL(f(xg,x,f(xg,g(xg,x),y)),y). EQUAL(f(xg,g(xg,x),f(xg,x,y)),y). EQUAL(f(xg,f(xg,x,y),z),f(xg,x,f(xg,y,z))). EQUAL(e(G1),a). EQUAL(e(G2),d). EQUAL(p1(a),d). EQUAL(p1(b),h). EQUAL(p1(c),j). EQUAL(p2(a),d). EQUAL(p2(b),j). EQUAL(p2(c),h). EQUAL(p3(a),h). EQUAL(p3(b),d). EQUAL(p3(c),j). EQUAL(q1(a),h). EQUAL(q1(b),j). EQUAL(q1(c),d). EQUAL(q2(a),j). EQUAL(q2(b),h). EQUAL(q2(c),d). EQUAL(q3(a),j). EQUAL(q3(b),d). EQUAL(q3(c),h). end_of_list. SHAR_EOF if test -f 'order3.ver4.out' then echo shar: over-writing existing file "'order3.ver4.out'" fi cat << \SHAR_EOF > 'order3.ver4.out' % problem-set/algebra/groups/order3.ver4.out % created : 08/15/88 % revised : 08/15/88 OTTER version 0.91, 14 June 1988. set(UR_res). set(back_demod). set(factor). set(Unit_deletion). assign(max_kept,5000). list(axioms). 1 -EL(x,xg) | -EL(y,xg) | P(xg,x,y,f(xg,x,y)). 2 -EL(x,xg) | -EL(y,xg) | EL(f(xg,x,y),xg). 3 -P(xg,x,y,z) | -P(xg,x,y,w) | EQUAL(w,z). 4 -P(xg,x,z,y) | -P(xg,x,w,y) | EQUAL(w,z). 5 -P(xg,z,y,x) | -P(xg,w,y,x) | EQUAL(w,z). 6 EL(e(xg),xg). 7 P(xg,e(xg),x,x). 8 P(xg,x,e(xg),x). 9 -EL(x,xg) | EL(g(xg,x),xg). 10 P(xg,g(xg,x),x,e(xg)). 11 P(xg,x,g(xg,x),e(xg)). 12 -P(xg,x,y,xy) | -P(xg,y,z,yz) | -P(xg,xy,z,xyz) | P(xg,x,xy,xyz). 13 -P(xg,x,y,xy) | -P(xg,y,z,yz) | -P(xg,x,yz,xyz) | P(xg,xy,z,xyz). 14 EQUAL(x,x). 15 -EQUAL(x,y) | EQUAL(y,x). 16 -EQUAL(x,y) | -EQUAL(y,z) | EQUAL(x,z). 17 -EQUAL(xg,yg) | -P(xg,x,y,z) | P(yg,x,y,z). 18 -EQUAL(x,y) | -P(xg,x,z,w) | P(xg,y,z,w). 19 -EQUAL(x,y) | -P(xg,w,x,z) | P(xg,w,y,z). 20 -EQUAL(x,y) | -P(xg,w,z,x) | P(xg,w,z,y). 21 -EQUAL(xg,yg) | EQUAL(f(xg,x,y),f(yg,x,y)). 22 -EQUAL(x,y) | EQUAL(f(xg,x,z),f(xg,y,z)). 23 -EQUAL(x,y) | EQUAL(f(xg,z,x),f(xg,z,y)). 24 -EQUAL(xg,yg) | EQUAL(g(xg,x),g(yg,x)). 25 -EQUAL(x,y) | EQUAL(g(xg,x),g(xg,y)). 26 -EQUAL(xg,yg) | -EL(x,xg) | EL(x,yg). 27 -EQUAL(x,y) | -EL(x,xg) | EL(y,xg). 28 -EQUAL(xg,yg) | EQUAL(e(xg),e(yg)). 29 -EQUAL(G1,G2). 30 EL(a,G1). 31 EL(b,G1). 32 EL(c,G1). 33 -EQUAL(a,b). 34 -EQUAL(c,a). 35 -EQUAL(b,c). 36 EL(d,G2). 37 EL(h,G2). 38 EL(j,G2). 39 -EQUAL(d,h). 40 -EQUAL(j,d). 41 -EQUAL(h,j). 42 -EL(x,G1) | EQUAL(x,a) | EQUAL(x,b) | EQUAL(x,c). 43 -EL(x,G2) | EQUAL(x,d) | EQUAL(x,h) | EQUAL(x,j). 44 EQUAL(e(G1),a). 45 EQUAL(e(G2),d). 46 P(G1,a,x,x). 47 P(G1,x,a,x). 48 P(G2,d,x,x). 49 P(G2,x,d,x). 50 EQUAL(p1(a),d). 51 EQUAL(p1(b),h). 52 EQUAL(p1(c),j). 53 EQUAL(p2(a),d). 54 EQUAL(p2(b),j). 55 EQUAL(p2(c),h). 56 EQUAL(p3(a),h). 57 EQUAL(p3(b),d). 58 EQUAL(p3(c),j). 59 EQUAL(q1(a),h). 60 EQUAL(q1(b),j). 61 EQUAL(q1(c),d). 62 EQUAL(q2(a),j). 63 EQUAL(q2(b),h). 64 EQUAL(q2(c),d). 65 EQUAL(q3(a),j). 66 EQUAL(q3(b),d). 67 EQUAL(q3(c),h). 68 -EQUAL(x,y) | EQUAL(p1(x),p1(y)). 69 -EQUAL(x,y) | EQUAL(p2(x),p2(y)). 70 -EQUAL(x,y) | EQUAL(p3(x),p3(y)). 71 -EQUAL(x,y) | EQUAL(q1(x),q1(y)). 72 -EQUAL(x,y) | EQUAL(q2(x),q2(y)). 73 -EQUAL(x,y) | EQUAL(q3(x),q3(y)). 74 -EQUAL(x,p1(z)) | -EQUAL(y,p1(z)) | EQUAL(x,y). 75 -EQUAL(x,p2(z)) | -EQUAL(y,p2(z)) | EQUAL(x,y). 76 -EQUAL(x,p3(z)) | -EQUAL(y,p3(z)) | EQUAL(x,y). 77 -EQUAL(x,q1(z)) | -EQUAL(y,q1(z)) | EQUAL(x,y). 78 -EQUAL(x,q2(z)) | -EQUAL(y,q2(z)) | EQUAL(x,y). 79 -EQUAL(x,q3(z)) | -EQUAL(y,q3(z)) | EQUAL(x,y). end_of_list. list(sos). 80 EL(d1,G1). 81 EL(d2,G1). 82 EL(d3,G1). 83 P(G1,d1,d2,d3). 84 -P(G1,p1(d1),p1(d2),p1(d3)) | -P(G1,p2(d1),p2(d2),p2(d3)) | -P(G1,p3(d1),p3(d2),p3(d3)) | -P(G1,q1(d1),q1(d2),q1(d3)) | -P(G2,q2(d1),q2(d2),q2(d3)) | -P(G3,q3(d1),q3(d2),q3(d3)). end_of_list. list(demodulators). 85 EQUAL(g(xg,e(xg)),e(xg)). 86 EQUAL(g(xg,g(xg,x)),x). 87 EQUAL(f(xg,e(xg),x),x). 88 EQUAL(f(xg,x,e(xg)),x). 89 EQUAL(f(xg,x,g(xg,x)),e(xg)). 90 EQUAL(f(xg,g(xg,x),x),e(xg)). 91 EQUAL(g(xg,f(xg,x,y)),f(xg,g(xg,x),g(xg,y))). 92 EQUAL(f(xg,x,f(xg,g(xg,x),y)),y). 93 EQUAL(f(xg,g(xg,x),f(xg,x,y)),y). 94 EQUAL(f(xg,f(xg,x,y),z),f(xg,x,f(xg,y,z))). 95 EQUAL(e(G1),a). 96 EQUAL(e(G2),d). 97 EQUAL(p1(a),d). 98 EQUAL(p1(b),h). 99 EQUAL(p1(c),j). 100 EQUAL(p2(a),d). 101 EQUAL(p2(b),j). 102 EQUAL(p2(c),h). 103 EQUAL(p3(a),h). 104 EQUAL(p3(b),d). 105 EQUAL(p3(c),j). 106 EQUAL(q1(a),h). 107 EQUAL(q1(b),j). 108 EQUAL(q1(c),d). 109 EQUAL(q2(a),j). 110 EQUAL(q2(b),h). 111 EQUAL(q2(c),d). 112 EQUAL(q3(a),j). 113 EQUAL(q3(b),d). 114 EQUAL(q3(c),h). end_of_list. new given clause: 80 EL(d1,G1). ------------> EMPTY CLAUSE -----------> 333 (311,12,46,46,47) . ------------ END OF SEARCH ------------ ---------------- PROOF ---------------- 4 -P(xg,x,z,y) | -P(xg,x,w,y) | EQUAL(w,z). 5 -P(xg,z,y,x) | -P(xg,w,y,x) | EQUAL(w,z). 12 -P(xg,x,y,xy) | -P(xg,y,z,yz) | -P(xg,xy,z,xyz) | P(xg,x,xy,xyz). 13 -P(xg,x,y,xy) | -P(xg,y,z,yz) | -P(xg,x,yz,xyz) | P(xg,xy,z,xyz). 33 -EQUAL(a,b). 46 P(G1,a,x,x). 47 P(G1,x,a,x). 83 P(G1,d1,d2,d3). 173 (83,12,47,46) P(G1,d1,d1,d3). 174 (83,12,46,83) P(G1,a,d1,d3). 275 (174,5,33) -P(G1,b,d1,d3). 276 (174,5,173) EQUAL(d1,a). 277 (276) EQUAL(d1,a). 279 (174,4,46,277) EQUAL(d3,a). 280 (279) EQUAL(d3,a). 306 (275,277,280) -P(G1,b,a,a). 311 (306,13,47,47) -P(G1,a,a,b). 333 (311,12,46,46,47) . --------------- options --------------- set(UR_res). set(demod_hist). set(for_sub). set(Unit_deletion). set(print_kept). set(factor). set(back_sub). set(print_back_sub). set(print_given). set(check_arity). set(back_demod). set(print_new_demod). set(print_back_demod). clear(binary_res). clear(hyper_res). clear(para_from). clear(para_into). clear(demod_inf). clear(para_from_left). clear(para_from_right). clear(para_into_vars). clear(para_from_vars). clear(para_all). clear(para_ones_rule). clear(no_para_into_left). clear(no_para_into_right). clear(demod_linear). clear(print_gen). clear(sort_literals). clear(print_weight). clear(sos_fifo). clear(bird_print). clear(atom_wt_max_args). clear(print_lists_at_end). clear(free_all_mem). clear(for_sub_fpa). clear(no_fapl). clear(no_fanl). clear(order_eq). clear(dynamic_demod). assign(report, 0). assign(max_seconds, 0). assign(max_given, 0). assign(max_kept, 5000). assign(max_gen, 0). assign(max_mem, 0). assign(max_weight, 0). assign(max_literals, 0). assign(fpa_literals, 3). assign(fpa_terms, 3). assign(demod_limit, 100). assign(max_proofs, 1). assign(neg_weight, 0). -------------- statistics ------------- clauses input 114 clauses given 18 clauses generated 664 demodulation rewrites 770 clauses wt or lit delete 0 tautologies deleted 0 clauses forward subsumed 612 (clauses subsumed by sos) 270 unit deletions 2 clauses kept 219 new demodualtors 4 empty clauses 1 factors generated 0 clauses back demodulated 167 clauses back subsumed 3 clauses not processed 5 ----------- times (seconds) ----------- run time 13.27 input time 1.45 binary_res time 0.00 hyper_res time 0.00 UR_res time 2.86 para_into time 0.00 para_from time 0.00 pre_process time 5.94 demod time 0.97 weigh time 0.07 for_sub time 2.17 unit_del time 0.55 post_process time 3.99 back_sub time 0.41 conflict time 0.80 factor time 0.03 back demod time 2.65 FPA build time 0.46 IS build time 0.19 print_cl time 1.66 cl integrate time 0.27 window time 0.00 SHAR_EOF if test -f 'xsquared.desc' then echo shar: over-writing existing file "'xsquared.desc'" fi cat << \SHAR_EOF > 'xsquared.desc' problem-set/algebra/groups/xsquared.desc created : 07/09/86 revised : 08/12/88 Natural Language Description: Theorem: if, for all x in G, x*x=e then G is abelian (commutative); i.e., for all x,y in G, x*y=y*x. Versions : xsquared.ver1 : uses UR resolution with a standard p-formulation. created : from McCharen, Overbeek, & Wos [Aug. 1976]. verified for ITP : 7/11/86 translated for OTTER by : caw. verified for OTTER : 08/12/88. xsquared.ver2 : uses paramodulation with an equality formulation. created : E. Lusk. verified for ITP : 7/26/86 translated for OTTER by : caw. verified for OTTER : 08/12/88. SHAR_EOF if test -f 'xsquared.ver1.clauses' then echo shar: over-writing existing file "'xsquared.ver1.clauses'" fi cat << \SHAR_EOF > 'xsquared.ver1.clauses' % problem-set/algebra/groups/xsquared.ver1.clauses % created : 07/09/86 % revised : 08/12/88 % description: % % Theorem: if, for all x in G, x*x=e then G is abelian (commutative); % i.e., for all x,y in G, x*y=y*x. % representation: % % declare_predicate(1,[O]). % declare_predicate(2,[EQUAL]). % declare_predicate(3,[P]). % declare_functions(1,[g,k]). % declare_functions(2,[f,l]). % declare_constants([e,a,b,c,d,h,j,k]). % declare_variables([x,y,z,u,v,w]). % % O(x) : used for membership in a subgroup of index 2 (see index) % P(x,y) : product of x and y is z % g(x) : inverse of x % k(x) : used to name some inverse of x (see ident2) % f(x,y) : names the product of x and y % l(x,y) : names an element of the subgroup of index 2 (see index) % e : identity element % existence of identity P(e,x,x). P(x,e,x). % existence of inverse P(g(x),x,e). P(x,g(x),e). % closure P(x,y,f(x,y)). % associative property -P(x,y,u) | -P(y,z,v) | -P(u,z,w) | P(x,v,w). -P(x,y,u) | -P(y,z,v) | -P(x,v,w) | P(u,z,w). % the operation is well defined -P(x,y,z) | -P(x,y,w) | EQUAL(z,w) . % equality axioms EQUAL(x,x). -EQUAL(x,y) | EQUAL(y,x). -EQUAL(x,y) | -EQUAL(y,z) | EQUAL(x,z). % equality substitution axioms -EQUAL(x,y) | -P(x,w,z) | P(y,w,z). -EQUAL(x,y) | -P(w,x,z) | P(w,y,z). -EQUAL(x,y) | -P(w,z,x) | P(w,z,y). -EQUAL(x,y) | EQUAL(f(x,w),f(y,w)). -EQUAL(x,y) | EQUAL(f(w,x),f(w,y)). -EQUAL(x,y) | EQUAL(g(x),g(y)). % x has order 2 P(x,x,e). % denial of the theorem P(a,b,c). -P(b,a,c). SHAR_EOF if test -f 'xsquared.ver1.in' then echo shar: over-writing existing file "'xsquared.ver1.in'" fi cat << \SHAR_EOF > 'xsquared.ver1.in' % problem-set/algebra/groups/xsquared.ver1.in % created : 07/09/86 % revised : 08/12/88 % description: % % Theorem: if, for all x in G, x*x=e then G is abelian (commutative); % i.e., for all x,y in G, x*y=y*x. % representation: % % declare_predicate(1,[O]). % declare_predicate(2,[EQUAL]). % declare_predicate(3,[P]). % declare_functions(1,[g,k]). % declare_functions(2,[f,l]). % declare_constants([e,a,b,c,d,h,j,k]). % declare_variables([x,y,z,u,v,w]). % % O(x) : used for membership in a subgroup of index 2 (see index) % P(x,y) : product of x and y is z % g(x) : inverse of x % k(x) : used to name some inverse of x (see ident2) % f(x,y) : names the product of x and y % l(x,y) : names an element of the subgroup of index 2 (see index) % e : identity element set(UR_res). set(back_demod). set(factor). set(Unit_deletion). assign(max_kept,5000). list(axioms). % existence of identity P(e,x,x). P(x,e,x). % existence of inverse P(g(x),x,e). P(x,g(x),e). % closure P(x,y,f(x,y)). % associative property -P(x,y,u) | -P(y,z,v) | -P(u,z,w) | P(x,v,w). -P(x,y,u) | -P(y,z,v) | -P(x,v,w) | P(u,z,w). % the operation is well defined -P(x,y,z) | -P(x,y,w) | EQUAL(z,w) . % equality axioms EQUAL(x,x). -EQUAL(x,y) | EQUAL(y,x). -EQUAL(x,y) | -EQUAL(y,z) | EQUAL(x,z). % equality substitution axioms -EQUAL(x,y) | -P(x,w,z) | P(y,w,z). -EQUAL(x,y) | -P(w,x,z) | P(w,y,z). -EQUAL(x,y) | -P(w,z,x) | P(w,z,y). -EQUAL(x,y) | EQUAL(f(x,w),f(y,w)). -EQUAL(x,y) | EQUAL(f(w,x),f(w,y)). -EQUAL(x,y) | EQUAL(g(x),g(y)). end_of_list. list(sos). % x has order 2 P(x,x,e). % denial of the theorem P(a,b,c). -P(b,a,c). end_of_list. list(demodulators). EQUAL(g(e),e). EQUAL(f(x,e),x). EQUAL(f(e,x),x). EQUAL(f(x,g(x)),e). EQUAL(f(g(x),x),e). EQUAL(g(g(x)),x). end_of_list. SHAR_EOF if test -f 'xsquared.ver1.out' then echo shar: over-writing existing file "'xsquared.ver1.out'" fi cat << \SHAR_EOF > 'xsquared.ver1.out' % problem-set/algebra/groups/xsquared.ver1.out % created : 08/12/88 % revised : 08/12/88 OTTER version 0.91, 14 June 1988. set(UR_res). set(back_demod). set(factor). set(Unit_deletion). assign(max_kept,5000). list(axioms). 1 P(e,x,x). 2 P(x,e,x). 3 P(g(x),x,e). 4 P(x,g(x),e). 5 P(x,y,f(x,y)). 6 -P(x,y,u) | -P(y,z,v) | -P(u,z,w) | P(x,v,w). 7 -P(x,y,u) | -P(y,z,v) | -P(x,v,w) | P(u,z,w). 8 -P(x,y,z) | -P(x,y,w) | EQUAL(z,w). 9 EQUAL(x,x). 10 -EQUAL(x,y) | EQUAL(y,x). 11 -EQUAL(x,y) | -EQUAL(y,z) | EQUAL(x,z). 12 -EQUAL(x,y) | -P(x,w,z) | P(y,w,z). 13 -EQUAL(x,y) | -P(w,x,z) | P(w,y,z). 14 -EQUAL(x,y) | -P(w,z,x) | P(w,z,y). 15 -EQUAL(x,y) | EQUAL(f(x,w),f(y,w)). 16 -EQUAL(x,y) | EQUAL(f(w,x),f(w,y)). 17 -EQUAL(x,y) | EQUAL(g(x),g(y)). end_of_list. list(sos). 18 P(x,x,e). 19 P(a,b,c). 20 -P(b,a,c). end_of_list. list(demodulators). 21 EQUAL(g(e),e). 22 EQUAL(f(x,e),x). 23 EQUAL(f(e,x),x). 24 EQUAL(f(x,g(x)),e). 25 EQUAL(f(g(x),x),e). 26 EQUAL(g(g(x)),x). end_of_list. new given clause: 18 P(x,x,e). ** KEPT: 27 (18,8,5) EQUAL(f(x,x),e). ---> New Demodulator: 28 (27) EQUAL(f(x,x),e). ** KEPT: 29 (18,7,5,5) P(f(f(x,y),x),y,e). ** KEPT: 30 (18,7,5,5,22) P(f(x,y),y,x). ** KEPT: 31 (18,7,4,5,22) P(e,g(x),x). ** KEPT: 32 (18,7,3,5,22) P(e,x,g(x)). ** KEPT: 33 (18,7,5,5) P(e,x,f(y,f(y,x))). ** KEPT: 34 (18,6,5,5) P(x,f(y,f(x,y)),e). ** KEPT: 35 (18,6,5,5) P(x,e,f(f(x,y),y)). ** KEPT: 36 (18,6,4,5,23) P(x,e,g(x)). ** KEPT: 37 (18,6,3,5,23) P(g(x),e,x). ** KEPT: 38 (18,6,5,5,23) P(x,f(x,y),y). >>>> Starting back demodulation with: 28 (27) EQUAL(f(x,x),e). new given clause: 19 P(a,b,c). ** KEPT: 39 (19,8,5) EQUAL(f(a,b),c). ---> New Demodulator: 40 (39) EQUAL(f(a,b),c). ** KEPT: 41 (19,7,18,5) P(e,b,f(a,c)). ** KEPT: 42 (19,7,5,18) P(f(c,a),b,e). ** KEPT: 43 (19,7,5,5) P(f(x,a),b,f(x,c)). ** KEPT: 44 (19,7,5,3) P(f(g(c),a),b,e). ** KEPT: 45 (19,7,3,5) P(e,b,f(g(a),c)). ** KEPT: 46 (19,7,18,5,22) P(c,b,a). ** KEPT: 47 (19,7,5,5) P(c,x,f(a,f(b,x))). ** KEPT: 48 (19,7,4,5,22) P(c,g(b),a). ** KEPT: 49 (19,6,18,5,23) P(a,c,b). ** KEPT: 50 (19,6,5,5) P(x,c,f(f(x,a),b)). ** KEPT: 51 (19,6,3,5,23) P(g(a),c,b). ** KEPT: 52 (19,6,18,5) P(a,e,f(c,b)). ** KEPT: 53 (19,6,5,18) P(a,f(b,c),e). ** KEPT: 54 (19,6,5,5) P(a,f(b,x),f(c,x)). ** KEPT: 55 (19,6,5,4) P(a,f(b,g(c)),e). ** KEPT: 56 (19,6,4,5) P(a,e,f(c,g(b))). >>>> Starting back demodulation with: 40 (39) EQUAL(f(a,b),c). new given clause: 20 -P(b,a,c). ** KEPT: 57 (20,14,5) -EQUAL(f(b,a),c). ** KEPT: 58 (20,7,18,2) -P(c,a,b). ** KEPT: 59 (20,7,3,2) -P(c,g(a),b). ** KEPT: 60 (20,7,1,5) -P(e,f(b,a),c). ** KEPT: 61 (20,6,18,1) -P(b,c,a). ** KEPT: 62 (20,6,4,1) -P(g(b),c,a). ** KEPT: 63 (20,6,5,2) -P(f(b,a),e,c). new given clause: 46 (19,7,18,5,22) P(c,b,a). ---------------- PROOF ---------------- ** KEPT: 64 (46,8,5) EQUAL(f(c,b),a). ---> New Demodulator: 65 (64) EQUAL(f(c,b),a). ** KEPT: 66 (46,7,18,5) P(e,b,f(c,a)). ** KEPT: 67 (46,7,5,18) P(f(a,c),b,e). ** KEPT: 68 (46,7,5,5) P(f(x,c),b,f(x,a)). ** KEPT: 69 (46,7,5,3) P(f(g(a),c),b,e). ** KEPT: 70 (46,7,3,5) P(e,b,f(g(c),a)). ** KEPT: 71 (46,7,5,5) P(a,x,f(c,f(b,x))). ** KEPT: 72 (46,7,4,5,22) P(a,g(b),c). ** KEPT: 73 (46,6,5,20) -P(f(b,c),b,c). ** KEPT: 74 (46,6,18,5,23,58) . ** KEPT: 75 (46,6,18,1,58) . ** KEPT: 76 (46,6,5,5) P(x,a,f(f(x,c),b)). ** KEPT: 77 (46,6,3,5,23) P(g(c),a,b). ** KEPT: 78 (46,6,5,18) P(c,f(b,a),e). ** KEPT: 79 (46,6,5,5) P(c,f(b,x),f(a,x)). ** KEPT: 80 (46,6,5,4) P(c,f(b,g(a)),e). ** KEPT: 81 (46,6,4,5) P(c,e,f(a,g(b))). >>>> Starting back demodulation with: 65 (64) EQUAL(f(c,b),a). >> back demodulating: 52 (19,6,18,5) P(a,e,f(c,b)). ------------> EMPTY CLAUSE -----------> 74 (46,6,18,5,23,58) . ------------ END OF SEARCH ------------ ---------------- PROOF ---------------- 2 P(x,e,x). 5 P(x,y,f(x,y)). 6 -P(x,y,u) | -P(y,z,v) | -P(u,z,w) | P(x,v,w). 7 -P(x,y,u) | -P(y,z,v) | -P(x,v,w) | P(u,z,w). 18 P(x,x,e). 19 P(a,b,c). 20 -P(b,a,c). 22 EQUAL(f(x,e),x). 23 EQUAL(f(e,x),x). 46 (19,7,18,5,22) P(c,b,a). 58 (20,7,18,2) -P(c,a,b). 74 (46,6,18,5,23,58) . --------------- options --------------- set(UR_res). set(demod_hist). set(for_sub). set(Unit_deletion). set(print_kept). set(factor). set(back_sub). set(print_back_sub). set(print_given). set(check_arity). set(back_demod). set(print_new_demod). set(print_back_demod). clear(binary_res). clear(hyper_res). clear(para_from). clear(para_into). clear(demod_inf). clear(para_from_left). clear(para_from_right). clear(para_into_vars). clear(para_from_vars). clear(para_all). clear(para_ones_rule). clear(no_para_into_left). clear(no_para_into_right). clear(demod_linear). clear(print_gen). clear(sort_literals). clear(print_weight). clear(sos_fifo). clear(bird_print). clear(atom_wt_max_args). clear(print_lists_at_end). clear(free_all_mem). clear(for_sub_fpa). clear(no_fapl). clear(no_fanl). clear(order_eq). clear(dynamic_demod). assign(report, 0). assign(max_seconds, 0). assign(max_given, 0). assign(max_kept, 5000). assign(max_gen, 0). assign(max_mem, 0). assign(max_weight, 0). assign(max_literals, 0). assign(fpa_literals, 3). assign(fpa_terms, 3). assign(demod_limit, 100). assign(max_proofs, 1). assign(neg_weight, 0). ------------- memory usage ------------ 2 mallocs of 32700 bytes each (63.9+ K) type (bytes each) gets frees in use avail bytes sym_ent ( 64) 27 0 27 0 1.7 K term ( 16) 3240 3056 184 7 3.0 K rel ( 20) 2480 2121 359 5 7.1 K term_ptr ( 8) 812 14 798 10 6.3 K fpa_head ( 12) 164 0 164 0 1.9 K fpa_tree ( 28) 1571 1571 0 15 0.4 K context ( 260) 845 845 0 5 1.3 K trail ( 12) 1774 1774 0 9 0.1 K imd_tree ( 24) 20 0 20 0 0.5 K imd_pos ( 416) 171 171 0 2 0.8 K is_tree ( 12) 273 1 272 1 3.2 K is_pos (1216) 3036 3036 0 4 4.8 K fsub_pos ( 8) 326 326 0 1 0.0 K literal ( 16) 361 262 99 2 1.6 K clause ( 28) 306 225 81 1 2.2 K list ( 60) 3 0 3 0 0.2 K clash_nd ( 32) 58 58 0 2 0.1 K clause_ptr ( 8) 100 19 81 12 0.7 K int_ptr ( 8) 1186 964 222 5 1.8 K -------------- statistics ------------- clauses input 26 clauses given 4 clauses generated 273 demodulation rewrites 117 clauses wt or lit delete 0 tautologies deleted 0 clauses forward subsumed 222 (clauses subsumed by sos) 21 unit deletions 2 clauses kept 52 new demodualtors 3 empty clauses 1 factors generated 0 clauses back demodulated 1 clauses back subsumed 0 clauses not processed 17 ----------- times (seconds) ----------- run time 2.69 input time 0.31 binary_res time 0.00 hyper_res time 0.00 UR_res time 0.96 para_into time 0.00 para_from time 0.00 pre_process time 1.04 demod time 0.16 weigh time 0.01 for_sub time 0.33 unit_del time 0.10 post_process time 0.22 back_sub time 0.04 conflict time 0.10 factor time 0.00 back demod time 0.06 FPA build time 0.08 IS build time 0.03 print_cl time 0.21 cl integrate time 0.05 window time 0.00 SHAR_EOF if test -f 'xsquared.ver2.clauses' then echo shar: over-writing existing file "'xsquared.ver2.clauses'" fi cat << \SHAR_EOF > 'xsquared.ver2.clauses' % problem-set/algebra/groups/xsquared.ver2.clauses % created : 07/21/86 % revised : 08/12/88 % description: % % Theorem: if, for all x in G, x*x=e then G is abelian (commutative); % i.e., for all x,y in G, x*y=y*x. % representation: % % declare_predicate(1,[O]). % declare_predicate(2,[EQUAL]). % declare_function(1,[g]). % declare_functions(2,[f,l]). % declare_constants([e,a,b,c,d,h,j,k]). % declare_variables([x,y,z]). % % O(x) : membership in a subgroup of index 2 (see index) % g(x) : inverse of x % f(x,y) : names the product of x and y % l(x,y) : names an element in O (see index) % e : identity element % For any x and y in the group x*y is also in the group. No clause is needed % here since this is an instance of reflexivity given as EQUAL(x,x). % There exists an identity element 'e' defined below. % left identity EQUAL(f(e,x),x). % right identity EQUAL(f(x,e),x). % For any x in the group, there exists an element y such that x*y = y*x = e. % left inverse EQUAL(f(g(x),x),e). % right inverse EQUAL(f(x,g(x)),e). % The operation '*' is associative EQUAL(f(f(x,y),z),f(x,f(y,z))). % The operation '*' is well-defined. No clause is needed here since this % is an instance of reflexivity given as EQUAL(x,x). % reflexivity EQUAL(x,x). % Denial of theorem : % If x**2 = e for all x, then the group is commutative EQUAL(f(x,x),e). EQUAL(f(a,b),c). EQUAL(f(b,a),c). SHAR_EOF if test -f 'xsquared.ver2.in' then echo shar: over-writing existing file "'xsquared.ver2.in'" fi cat << \SHAR_EOF > 'xsquared.ver2.in' % problem-set/algebra/groups/xsquared.ver2.in % created : 07/21/86 % revised : 08/12/88 % description: % % Theorem: if, for all x in G, x*x=e then G is abelian (commutative); % i.e., for all x,y in G, x*y=y*x. % representation: % % declare_predicate(1,[O]). % declare_predicate(2,[EQUAL]). % declare_function(1,[g]). % declare_functions(2,[f,l]). % declare_constants([e,a,b,c,d,h,j,k]). % declare_variables([x,y,z]). % % O(x) : membership in a subgroup of index 2 (see index) % g(x) : inverse of x % f(x,y) : names the product of x and y % l(x,y) : names an element in O (see index) % e : identity element set(para_into). set(para_from). set(para_from_left). set(para_from_right). set(back_demod). set(UR_res). assign(max_kept,5000). list(axioms). % For any x and y in the group x*y is also in the group. No clause is needed % here since this is an instance of reflexivity given as EQUAL(x,x). % There exists an identity element 'e' defined below. % left identity EQUAL(f(e,x),x). % right identity EQUAL(f(x,e),x). % For any x in the group, there exists an element y such that x*y = y*x = e. % left inverse EQUAL(f(g(x),x),e). % right inverse EQUAL(f(x,g(x)),e). % The operation '*' is associative EQUAL(f(f(x,y),z),f(x,f(y,z))). % The operation '*' is well-defined. No clause is needed here since this % is an instance of reflexivity given as EQUAL(x,x). % reflexivity EQUAL(x,x). end_of_list. list(sos). % Denial of theorem : % If x**2 = e for all x, then the group is commutative EQUAL(f(x,x),e). EQUAL(f(a,b),c). -EQUAL(f(b,a),c). end_of_list. list(demodulators). EQUAL(g(e),e). EQUAL(g(g(x)),x). end_of_list. SHAR_EOF if test -f 'xsquared.ver2.out' then echo shar: over-writing existing file "'xsquared.ver2.out'" fi cat << \SHAR_EOF > 'xsquared.ver2.out' % problem-set/algebra/groups/xsquared.ver2.out % created : 08/12/88 % revised : 08/12/88 OTTER version 0.91, 14 June 1988. set(para_into). set(para_from). set(para_from_left). set(para_from_right). set(back_demod). set(UR_res). assign(max_kept,5000). list(axioms). 1 EQUAL(f(e,x),x). 2 EQUAL(f(x,e),x). 3 EQUAL(f(g(x),x),e). 4 EQUAL(f(x,g(x)),e). 5 EQUAL(f(f(x,y),z),f(x,f(y,z))). 6 EQUAL(x,x). end_of_list. list(sos). 7 EQUAL(f(x,x),e). 8 EQUAL(f(a,b),c). 9 -EQUAL(f(b,a),c). end_of_list. list(demodulators). 10 EQUAL(g(e),e). 11 EQUAL(g(g(x)),x). end_of_list. new given clause: 7 EQUAL(f(x,x),e). ** KEPT: 12 (5,7) EQUAL(f(f(f(x,y),x),y),e). ---> New Demodulator: 13 (12) EQUAL(f(f(f(x,y),x),y),e). ** KEPT: 14 (5,7) EQUAL(f(x,f(y,f(x,y))),e). ---> New Demodulator: 15 (14) EQUAL(f(x,f(y,f(x,y))),e). ** KEPT: 16 (7,7) EQUAL(f(y,y),f(x,x)). ** KEPT: 17 (4,7) EQUAL(f(y,g(y)),f(x,x)). ** KEPT: 18 (3,7) EQUAL(f(g(y),y),f(x,x)). >>>> Starting back demodulation with: 13 (12) EQUAL(f(f(f(x,y),x),y),e). >>>> Starting back demodulation with: 15 (14) EQUAL(f(x,f(y,f(x,y))),e). ** KEPT: 19 (7,5) EQUAL(f(f(x,y),y),f(x,e)). ** KEPT: 20 (7,5) EQUAL(f(y,f(y,x)),f(e,x)). ** KEPT: 21 (7,2) EQUAL(f(x,f(y,y)),x). ---> New Demodulator: 22 (21) EQUAL(f(x,f(y,y)),x). ** KEPT: 23 (7,1) EQUAL(f(f(x,x),y),y). ---> New Demodulator: 24 (23) EQUAL(f(f(x,x),y),y). >>>> Starting back demodulation with: 22 (21) EQUAL(f(x,f(y,y)),x). >>>> Starting back demodulation with: 24 (23) EQUAL(f(f(x,x),y),y). new given clause: 8 EQUAL(f(a,b),c). ** KEPT: 25 (8,5) EQUAL(f(f(x,a),b),f(x,c)). ** KEPT: 26 (8,5) EQUAL(f(a,f(b,x)),f(c,x)). new given clause: 9 -EQUAL(f(b,a),c). ** KEPT: 27 (8,9) -EQUAL(f(b,a),f(a,b)). new given clause: 16 (7,7) EQUAL(f(y,y),f(x,x)). ** KEPT: 28 (16,5,22) EQUAL(f(f(x,y),y),x). ---> New Demodulator: 29 (28) EQUAL(f(f(x,y),y),x). ** KEPT: 30 (16,5,24) EQUAL(f(y,f(y,x)),x). ---> New Demodulator: 31 (30) EQUAL(f(y,f(y,x)),x). >>>> Starting back demodulation with: 29 (28) EQUAL(f(f(x,y),y),x). >> back demodulating: 19 (7,5) EQUAL(f(f(x,y),y),f(x,e)). >>>> Starting back demodulation with: 31 (30) EQUAL(f(y,f(y,x)),x). >> back demodulating: 20 (7,5) EQUAL(f(y,f(y,x)),f(e,x)). new given clause: 21 (7,2) EQUAL(f(x,f(y,y)),x). ** KEPT: 32 (3,21) EQUAL(g(f(x,x)),e). ---> New Demodulator: 33 (32) EQUAL(g(f(x,x)),e). >>>> Starting back demodulation with: 33 (32) EQUAL(g(f(x,x)),e). new given clause: 32 (3,21) EQUAL(g(f(x,x)),e). new given clause: 23 (7,1) EQUAL(f(f(x,x),y),y). new given clause: 27 (8,9) -EQUAL(f(b,a),f(a,b)). new given clause: 28 (16,5,22) EQUAL(f(f(x,y),y),x). ** KEPT: 34 (8,28) EQUAL(f(c,b),a). ---> New Demodulator: 35 (34) EQUAL(f(c,b),a). ** KEPT: 36 (5,28) EQUAL(f(f(f(x,y),z),f(y,z)),x). ---> New Demodulator: 37 (36) EQUAL(f(f(f(x,y),z),f(y,z)),x). ** KEPT: 38 (5,28) EQUAL(f(f(x,f(y,z)),z),f(x,y)). ** KEPT: 39 (4,28) EQUAL(f(e,g(x)),x). ---> New Demodulator: 40 (39) EQUAL(f(e,g(x)),x). ** KEPT: 41 (3,28) EQUAL(g(x),f(e,x)). ---> New Demodulator: 42 (41) EQUAL(g(x),f(e,x)). ** KEPT: 43 (5,28) EQUAL(f(f(f(x,f(y,z)),y),z),x). ---> New Demodulator: 44 (43) EQUAL(f(f(f(x,f(y,z)),y),z),x). >>>> Starting back demodulation with: 35 (34) EQUAL(f(c,b),a). >>>> Starting back demodulation with: 37 (36) EQUAL(f(f(f(x,y),z),f(y,z)),x). >>>> Starting back demodulation with: 40 (39) EQUAL(f(e,g(x)),x). >>>> Starting back demodulation with: 42 (41) EQUAL(g(x),f(e,x)). >> back demodulating: 3 EQUAL(f(g(x),x),e). >> back demodulating: 4 EQUAL(f(x,g(x)),e). ** KEPT: 45 (4,42) EQUAL(f(x,f(e,x)),e). ---> New Demodulator: 46 (45) EQUAL(f(x,f(e,x)),e). >> back demodulating: 39 (4,28) EQUAL(f(e,g(x)),x). >> back demodulating: 40 (39) EQUAL(f(e,g(x)),x). >> back demodulating: 17 (4,7) EQUAL(f(y,g(y)),f(x,x)). >> back demodulating: 18 (3,7) EQUAL(f(g(y),y),f(x,x)). >> back demodulating: 33 (32) EQUAL(g(f(x,x)),e). >> back demodulating: 32 (3,21) EQUAL(g(f(x,x)),e). >> back demodulating: 11 EQUAL(g(g(x)),x). >> back demodulating: 10 EQUAL(g(e),e). >>>> Starting back demodulation with: 44 (43) EQUAL(f(f(f(x,f(y,z)),y),z),x). >>>> Starting back demodulation with: 46 (45) EQUAL(f(x,f(e,x)),e). ** KEPT: 47 (28,5) EQUAL(f(f(x,z),f(z,y)),f(x,y)). new given clause: 34 (8,28) EQUAL(f(c,b),a). ** KEPT: 48 (34,5) EQUAL(f(f(x,c),b),f(x,a)). ** KEPT: 49 (34,5) EQUAL(f(c,f(b,x)),f(a,x)). new given clause: 41 (3,28) EQUAL(g(x),f(e,x)). new given clause: 30 (16,5,24) EQUAL(f(y,f(y,x)),x). ** KEPT: 50 (34,30) EQUAL(f(c,a),b). ---> New Demodulator: 51 (50) EQUAL(f(c,a),b). ** KEPT: 52 (28,30) EQUAL(f(f(x,y),x),y). ---> New Demodulator: 53 (52) EQUAL(f(f(x,y),x),y). ** KEPT: 54 (8,30) EQUAL(f(a,c),b). ---> New Demodulator: 55 (54) EQUAL(f(a,c),b). ** KEPT: 56 (5,30) EQUAL(f(x,f(f(x,y),z)),f(y,z)). ** KEPT: 57 (5,30) EQUAL(f(f(x,y),f(x,f(y,z))),z). ---> New Demodulator: 58 (57) EQUAL(f(f(x,y),f(x,f(y,z))),z). ** KEPT: 59 (5,30) EQUAL(f(x,f(y,f(f(x,y),z))),z). ---> New Demodulator: 60 (59) EQUAL(f(x,f(y,f(f(x,y),z))),z). >>>> Starting back demodulation with: 51 (50) EQUAL(f(c,a),b). >>>> Starting back demodulation with: 53 (52) EQUAL(f(f(x,y),x),y). >> back demodulating: 12 (5,7) EQUAL(f(f(f(x,y),x),y),e). >> back demodulating: 13 (12) EQUAL(f(f(f(x,y),x),y),e). >>>> Starting back demodulation with: 55 (54) EQUAL(f(a,c),b). >>>> Starting back demodulation with: 58 (57) EQUAL(f(f(x,y),f(x,f(y,z))),z). >>>> Starting back demodulation with: 60 (59) EQUAL(f(x,f(y,f(f(x,y),z))),z). ** KEPT: 61 (30,28) EQUAL(f(x,f(y,x)),y). ---> New Demodulator: 62 (61) EQUAL(f(x,f(y,x)),y). >>>> Starting back demodulation with: 62 (61) EQUAL(f(x,f(y,x)),y). >> back demodulating: 14 (5,7) EQUAL(f(x,f(y,f(x,y))),e). >> back demodulating: 15 (14) EQUAL(f(x,f(y,f(x,y))),e). >> back demodulating: 46 (45) EQUAL(f(x,f(e,x)),e). >> back demodulating: 45 (4,42) EQUAL(f(x,f(e,x)),e). new given clause: 50 (34,30) EQUAL(f(c,a),b). ---------------- PROOF ---------------- ** KEPT: 63 (50,28) EQUAL(f(b,a),c). ---> New Demodulator: 64 (63) EQUAL(f(b,a),c). ** KEPT: 65 (50,5) EQUAL(f(f(x,c),a),f(x,b)). ** KEPT: 66 (50,5) EQUAL(f(c,f(a,x)),f(b,x)). ** KEPT: 67 (50,27,64,51) -EQUAL(f(a,b),c). ** KEPT: 68 (50,9,51,64) -EQUAL(c,c). ----> UNIT CONFLICT at 2.09 sec ----> 69 (63,9) . ------------ END OF SEARCH ------------ ---------------- PROOF ---------------- 1 EQUAL(f(e,x),x). 2 EQUAL(f(x,e),x). 5 EQUAL(f(f(x,y),z),f(x,f(y,z))). 7 EQUAL(f(x,x),e). 8 EQUAL(f(a,b),c). 9 -EQUAL(f(b,a),c). 16 (7,7) EQUAL(f(y,y),f(x,x)). 21 (7,2) EQUAL(f(x,f(y,y)),x). 22 (21) EQUAL(f(x,f(y,y)),x). 23 (7,1) EQUAL(f(f(x,x),y),y). 24 (23) EQUAL(f(f(x,x),y),y). 28 (16,5,22) EQUAL(f(f(x,y),y),x). 30 (16,5,24) EQUAL(f(y,f(y,x)),x). 34 (8,28) EQUAL(f(c,b),a). 50 (34,30) EQUAL(f(c,a),b). 63 (50,28) EQUAL(f(b,a),c). 69 (63,9) . --------------- options --------------- set(UR_res). set(para_from). set(para_into). set(para_from_left). set(para_from_right). set(demod_hist). set(for_sub). set(print_kept). set(back_sub). set(print_back_sub). set(print_given). set(check_arity). set(back_demod). set(print_new_demod). set(print_back_demod). clear(binary_res). clear(hyper_res). clear(demod_inf). clear(para_into_vars). clear(para_from_vars). clear(para_all). clear(para_ones_rule). clear(no_para_into_left). clear(no_para_into_right). clear(demod_linear). clear(print_gen). clear(sort_literals). clear(Unit_deletion). clear(factor). clear(print_weight). clear(sos_fifo). clear(bird_print). clear(atom_wt_max_args). clear(print_lists_at_end). clear(free_all_mem). clear(for_sub_fpa). clear(no_fapl). clear(no_fanl). clear(order_eq). clear(dynamic_demod). assign(report, 0). assign(max_seconds, 0). assign(max_given, 0). assign(max_kept, 5000). assign(max_gen, 0). assign(max_mem, 0). assign(max_weight, 0). assign(max_literals, 0). assign(fpa_literals, 3). assign(fpa_terms, 3). assign(demod_limit, 100). assign(max_proofs, 1). assign(neg_weight, 0). ------------- memory usage ------------ 2 mallocs of 32700 bytes each (63.9+ K) type (bytes each) gets frees in use avail bytes sym_ent ( 64) 25 0 25 0 1.6 K term ( 16) 2239 2008 231 9 3.8 K rel ( 20) 1860 1523 337 6 6.7 K term_ptr ( 8) 884 191 693 0 5.4 K fpa_head ( 12) 175 35 140 2 1.7 K fpa_tree ( 28) 255 255 0 11 0.3 K context ( 260) 753 753 0 3 0.8 K trail ( 12) 1106 1106 0 3 0.0 K imd_tree ( 24) 64 15 49 3 1.2 K imd_pos ( 416) 1362 1362 0 5 2.0 K is_tree ( 12) 193 39 154 0 1.8 K is_pos (1216) 925 925 0 6 7.1 K fsub_pos ( 8) 233 233 0 1 0.0 K literal ( 16) 301 233 68 1 1.1 K clause ( 28) 305 236 69 0 1.9 K list ( 60) 3 0 3 0 0.2 K clash_nd ( 32) 0 0 0 0 0.0 K clause_ptr ( 8) 142 73 69 17 0.7 K int_ptr ( 8) 719 617 102 1 0.8 K -------------- statistics ------------- clauses input 11 clauses given 13 clauses generated 253 demodulation rewrites 175 clauses wt or lit delete 0 tautologies deleted 0 clauses forward subsumed 233 (clauses subsumed by sos) 7 unit deletions 0 clauses kept 38 new demodualtors 20 empty clauses 1 factors generated 0 clauses back demodulated 18 clauses back subsumed 0 clauses not processed 6 ----------- times (seconds) ----------- run time 2.21 input time 0.14 binary_res time 0.00 hyper_res time 0.00 UR_res time 0.01 para_into time 0.14 para_from time 0.14 pre_process time 1.00 demod time 0.29 weigh time 0.01 for_sub time 0.19 unit_del time 0.00 post_process time 0.61 back_sub time 0.03 conflict time 0.02 factor time 0.00 back demod time 0.49 FPA build time 0.08 IS build time 0.02 print_cl time 0.27 cl integrate time 0.05 window time 0.00 SHAR_EOF # End of shell archive exit 0