jdk/test/java/util/concurrent/ConcurrentHashMap/MapLoops.java
author ohair
Tue, 25 May 2010 15:58:33 -0700
changeset 5506 202f599c92aa
parent 4347 ab0a9f495844
child 7518 0282db800fe1
permissions -rw-r--r--
6943119: Rebrand source copyright notices Reviewed-by: darcy, weijun
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
     2
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * under the terms of the GNU General Public License version 2 only, as
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * published by the Free Software Foundation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4347
diff changeset
    18
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4347
diff changeset
    19
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4347
diff changeset
    20
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    21
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 * This file is available under and governed by the GNU General Public
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
 * License version 2 only, as published by the Free Software Foundation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
 * However, the following notice accompanied the original version of this
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
 * file:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
 * Written by Doug Lea with assistance from members of JCP JSR-166
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
 * Expert Group and released to the public domain, as explained at
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
 * http://creativecommons.org/licenses/publicdomain
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
 * @test
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 * @bug 4486658
4347
ab0a9f495844 6907177: Update jdk tests to remove unncessary -source and -target options
darcy
parents: 2
diff changeset
    37
 * @compile MapLoops.java
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 * @run main/timeout=1600 MapLoops
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * @summary Exercise multithreaded maps, by default ConcurrentHashMap.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 * Multithreaded hash table test.  Each thread does a random walk
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 * though elements of "key" array. On each iteration, it checks if
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 * table includes key.  If absent, with probability pinsert it
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * inserts it, and if present, with probability premove it removes
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 * it.  (pinsert and premove are expressed as percentages to simplify
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 * parsing from command line.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
import java.util.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
import java.util.concurrent.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
public class MapLoops {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
    static int nkeys       = 10000;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
    static int pinsert     = 60;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
    static int premove     = 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
    static int maxThreads  = 100;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
    static int nops        = 100000;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
    static int removesPerMaxRandom;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
    static int insertsPerMaxRandom;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
    static final ExecutorService pool = Executors.newCachedThreadPool();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
    static final List<Throwable> throwables
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
        = new CopyOnWriteArrayList<Throwable>();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
    public static void main(String[] args) throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
        Class mapClass = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
        if (args.length > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
                mapClass = Class.forName(args[0]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
            } catch (ClassNotFoundException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
                throw new RuntimeException("Class " + args[0] + " not found.");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
        else
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
            mapClass = java.util.concurrent.ConcurrentHashMap.class;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
        if (args.length > 1)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
            maxThreads = Integer.parseInt(args[1]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
        if (args.length > 2)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
            nkeys = Integer.parseInt(args[2]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
        if (args.length > 3)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
            pinsert = Integer.parseInt(args[3]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
        if (args.length > 4)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
            premove = Integer.parseInt(args[4]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
        if (args.length > 5)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
            nops = Integer.parseInt(args[5]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
        // normalize probabilities wrt random number generator
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
        removesPerMaxRandom = (int)(((double)premove/100.0 * 0x7FFFFFFFL));
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
        insertsPerMaxRandom = (int)(((double)pinsert/100.0 * 0x7FFFFFFFL));
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
        System.out.print("Class: " + mapClass.getName());
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
        System.out.print(" threads: " + maxThreads);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
        System.out.print(" size: " + nkeys);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
        System.out.print(" ins: " + pinsert);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
        System.out.print(" rem: " + premove);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
        System.out.print(" ops: " + nops);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
        System.out.println();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
        int k = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
        int warmups = 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
        for (int i = 1; i <= maxThreads;) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
            Thread.sleep(100);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
            test(i, nkeys, mapClass);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
            if (warmups > 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
                --warmups;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
            else if (i == k) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
                k = i << 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
                i = i + (i >>> 1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
            else if (i == 1 && k == 2) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
                i = k;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
                warmups = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
            else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
                i = k;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
        pool.shutdown();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
        if (! pool.awaitTermination(Long.MAX_VALUE, TimeUnit.NANOSECONDS))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
            throw new Error();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
        if (! throwables.isEmpty())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
            throw new Error
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
                (throwables.size() + " thread(s) terminated abruptly.");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
    static Integer[] makeKeys(int n) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
        LoopHelpers.SimpleRandom rng = new LoopHelpers.SimpleRandom();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
        Integer[] key = new Integer[n];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
        for (int i = 0; i < key.length; ++i)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
            key[i] = new Integer(rng.next());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
        return key;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
    static void shuffleKeys(Integer[] key) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
        Random rng = new Random();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
        for (int i = key.length; i > 1; --i) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
            int j = rng.nextInt(i);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
            Integer tmp = key[j];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
            key[j] = key[i-1];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
            key[i-1] = tmp;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
    static void test(int i, int nkeys, Class mapClass) throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
        System.out.print("Threads: " + i + "\t:");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
        Map<Integer, Integer> map = (Map<Integer,Integer>)mapClass.newInstance();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
        Integer[] key = makeKeys(nkeys);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
        // Uncomment to start with a non-empty table
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
        //        for (int j = 0; j < nkeys; j += 4) // start 1/4 occupied
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
        //            map.put(key[j], key[j]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
        LoopHelpers.BarrierTimer timer = new LoopHelpers.BarrierTimer();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
        CyclicBarrier barrier = new CyclicBarrier(i+1, timer);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
        for (int t = 0; t < i; ++t)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
            pool.execute(new Runner(map, key, barrier));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
        barrier.await();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
        barrier.await();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
        long time = timer.getTime();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
        long tpo = time / (i * (long)nops);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
        System.out.print(LoopHelpers.rightJustify(tpo) + " ns per op");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
        double secs = (double)(time) / 1000000000.0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
        System.out.println("\t " + secs + "s run time");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
        map.clear();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
    static class Runner implements Runnable {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
        final Map<Integer,Integer> map;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
        final Integer[] key;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
        final LoopHelpers.SimpleRandom rng = new LoopHelpers.SimpleRandom();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
        final CyclicBarrier barrier;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
        int position;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
        int total;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
        Runner(Map<Integer,Integer> map, Integer[] key,  CyclicBarrier barrier) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
            this.map = map;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
            this.key = key;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
            this.barrier = barrier;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
            position = key.length / 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
        int step() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
            // random-walk around key positions,  bunching accesses
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
            int r = rng.next();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
            position += (r & 7) - 3;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
            while (position >= key.length) position -= key.length;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
            while (position < 0) position += key.length;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
            Integer k = key[position];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
            Integer x = map.get(k);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
            if (x != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
                if (x.intValue() != k.intValue())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
                    throw new Error("bad mapping: " + x + " to " + k);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
                if (r < removesPerMaxRandom) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
                    if (map.remove(k) != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
                        position = total % key.length; // move from position
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
                        return 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
            else if (r < insertsPerMaxRandom) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
                ++position;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
                map.put(k, k);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
                return 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
            // Uncomment to add a little computation between accesses
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
            //            total += LoopHelpers.compute1(k.intValue());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
            total += r;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
            return 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
        public void run() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
                barrier.await();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
                int ops = nops;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
                while (ops > 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
                    ops -= step();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
                barrier.await();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
            catch (Throwable throwable) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
                synchronized(System.err) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
                    System.err.println("--------------------------------");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
                    throwable.printStackTrace();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
                throwables.add(throwable);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
}