#!/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