File: LabeledTreeGenerator.java

package info (click to toggle)
libgrinvin-core-java 1.2-1
  • links: PTS, VCS
  • area: contrib
  • in suites: squeeze
  • size: 3,904 kB
  • ctags: 5,009
  • sloc: java: 23,494; xml: 423; makefile: 15
file content (296 lines) | stat: -rw-r--r-- 9,806 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
/* LabeledTreeGenerator.java
 * =========================================================================
 * This file is part of the GrInvIn project - http://www.grinvin.org
 * 
 * Copyright (C) 2005-2008 Universiteit Gent
 * 
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or (at
 * your option) any later version.
 * 
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 * 
 * A copy of the GNU General Public License can be found in the file
 * LICENSE.txt provided with the source distribution of this program (see
 * the META-INF directory in the source jar). This license can also be
 * found on the GNU website at http://www.gnu.org/licenses/gpl.html.
 * 
 * If you did not receive a copy of the GNU General Public License along
 * with this program, contact the lead developer, or write to the Free
 * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
 * 02110-1301, USA.
 */

package org.grinvin.conjecture.engine.apengine;

import java.util.Arrays;

import org.grinvin.conjecture.engine.apengine.Operators.BinaryOperator;
import org.grinvin.conjecture.engine.apengine.Operators.Invariant;
import org.grinvin.conjecture.engine.apengine.Operators.UnaryOperator;

/**
 *
 * @author adpeeter
 */
public class LabeledTreeGenerator {
    
    //
    private TreeGenerator<LabeledBinaryTree> treeGenerator;
    
    //
    private LabeledBinaryTree workingTree;
    
    //
    private int mainInvariant;

    //
    private int nrOfInvariants;
    
    //
    private boolean[] takenInvariants;
    
    //
    private Invariant[] invariants;
    
    //
    private LabeledTreeGeneratorStateStack stateStack;
    
    //
    public LabeledTreeGenerator(int nrOfInvariants, int mainInvariant) {
        this(new TreeGenerator<LabeledBinaryTree>(new LabeledBinaryTreeFactory()), nrOfInvariants, mainInvariant);
        
    }
    
    //
    public LabeledTreeGenerator(TreeGenerator<LabeledBinaryTree> treeGenerator, int nrOfInvariants, int mainInvariant) {
        this.treeGenerator = treeGenerator;
        
        workingTree = null;
        takenInvariants = new boolean[nrOfInvariants];
        this.nrOfInvariants = nrOfInvariants;
        this.mainInvariant = mainInvariant;
        invariants = new Invariant[nrOfInvariants];
        for(int i=0;i<nrOfInvariants;i++) {
            invariants[i] = new Invariant(i);
        }
        stateStack = new LabeledTreeGeneratorStateStack();
        startLabelingTree();
    }
    
    
    private static class LabeledTreeGeneratorStateStack extends StateStack<LabeledTreeGeneratorState> {
        
        //
        public LabeledTreeGeneratorState emptyState() {
            return new LabeledTreeGeneratorState(null, 0, 0);
        }
        
        //
        public LabeledTreeGeneratorState[] createArray(int size) {
            return new LabeledTreeGeneratorState[size];
        }
        
        //
        private final void push(StateType type, int pos, int looppos) {
            if(top >= size) {
                super.extend();
            }
            LabeledTreeGeneratorState state = peek();
            top++;
            state.type = type;
            state.pos = pos;
            state.looppos = looppos;
        }
        
        //
        public final void pushRecurseState(int pos, int looppos) {
            push(StateType.RECURSE, pos, looppos);
        }
        
        //
        public final void pushBinaryState(int pos, int looppos) {
            push(StateType.BINARY, pos, looppos);
        }
        
        //
        public final void pushUnaryState(int pos, int looppos) {
            push(StateType.UNARY, pos, looppos);
        }
        
        //
        public final void pushInvariantState(int pos, int looppos) {
            push(StateType.INVARIANT, pos, looppos);
        }
        
        //
        public final void pushRemoveInvariantState(int pos, int looppos) {
            push(StateType.REMOVEINVARIANT, pos, looppos);
        }
        
    }
    
    //
    public boolean hasMore() {
        return !stateStack.empty();
    }
    
    //
    private enum StateType {
        RECURSE,
        BINARY,
        UNARY,
        INVARIANT,
        REMOVEINVARIANT;
    }

    //
    private static class LabeledTreeGeneratorState {
        private StateType type;
        private int pos;
        private int looppos;
        public LabeledTreeGeneratorState(StateType type, int pos, int looppos) {
            this.type = type;
            this.pos = pos;
            this.looppos = looppos;
        }
    }

    /**
     * Return the next {@link LabeledBinaryTree} or {@code null} when no more tree is available.
     */
    public LabeledBinaryTree nextLabeledTree() {

        while(hasMore() && (!label())) {
            if (!hasMore()) {
                startLabelingTree();
            }
        }
        
        return workingTree;
    }
    
    
    /**
     * Start labeling a blank generated tree.
     */
    private void startLabelingTree() {
        workingTree = treeGenerator.nextTree();
        
        prepareOrder(workingTree);
        
        Arrays.fill(takenInvariants, false);
        takenInvariants[mainInvariant] = true;
        
        assert stateStack.empty() : "The stack should be empty!";
        stateStack.pushRecurseState(0, 0);
    }

    //
    private boolean label() {
        
        LabeledTreeGeneratorState item = stateStack.pop();
        
        int position = item.pos;
        int looppos = item.looppos;
        
        switch(item.type) {
            case RECURSE:
                //label the next node in the list
                if (position >= order.length) {
                    // all nodes are labeled: we have a finished working tree
                    return true;
                } else {
                    switch (workingTree.childCount(order[position])) {
                        case 2:
                            stateStack.pushBinaryState(position, 0);
                            break;
                        case 1:
                            stateStack.pushUnaryState(position, 0);
                            break;
                        case 0:
                            stateStack.pushInvariantState(position, 0);
                            break;
                        default:
                            assert false : "Unexpected childcount: " + workingTree.childCount(order[position]);
                    }
                }
                break;
            case BINARY:
                BinaryOperator[] binops = BinaryOperator.values();
                if (looppos < binops.length) {
                    // make sure the left hand side of commutative operators is always smaller than the right hand side
                    if (binops[looppos].isCommutative() &&
                            (workingTree.toString(workingTree.leftChild(order[position])).compareTo(workingTree.toString(workingTree.rightChild(order[position]))) > 0)) {
                        stateStack.pushBinaryState(position, looppos + 1);
                    } else {
                        workingTree.labelNode(order[position], binops[looppos]);
                        stateStack.pushBinaryState(position, looppos + 1);
                        stateStack.pushRecurseState(position + 1, 0);
                    }
                }
                break;
            case UNARY:
                UnaryOperator[] unops = UnaryOperator.values();
                if (looppos < unops.length) {
                    workingTree.labelNode(order[position], unops[looppos]);
                    stateStack.pushUnaryState(position, looppos + 1);
                    stateStack.pushRecurseState(position + 1, 0);
                }
                break;
            case INVARIANT:
                if (looppos < nrOfInvariants) {
                    stateStack.pushInvariantState(position, looppos + 1);
                    if (!takenInvariants[looppos]) {
                        takenInvariants[looppos] = true;
                        workingTree.labelNode(order[position], invariants[looppos]);
                        stateStack.pushRemoveInvariantState(0, looppos);
                        stateStack.pushRecurseState(position + 1, 0);
                    }
                }
                break;
            case REMOVEINVARIANT:
                takenInvariants[looppos] = false;
                break;
            default:
                assert false : "Unexpected case: " + item.type;
        }
        return false;
    }

    //
    private int counter = 0;
    
    //
    private int[] order;

    /**
     * Prepare the order in which the nodes of the given {@link LabeledBinaryTree} will be labeled.
     * @param tree the {@link LabeledBinaryTree}
     */
    private void prepareOrder(LabeledBinaryTree tree) {
        counter = 0;
        order = new int[tree.getNodeCount()];
        prepareOrder(tree, 0);
    }
    
    /**
     * Prepare the order in which the nodes of the given {@link LabeledBinaryTree} will be labeled.
     * All nodes are traversed recursively.
     * @param tree the {@link LabeledBinaryTree}
     * @param parent the parent from which to start ordering
     */
    private void prepareOrder(LabeledBinaryTree tree, int parent) {
        for (int child : tree.children(parent)) {
            prepareOrder(tree, child);
        }
        order[counter] = parent;
        counter++;
    }
    
    
}