summaryrefslogtreecommitdiff
path: root/elki/src/test/java/de/lmu/ifi/dbs/elki/utilities/datastructures/heap/TiedTopBoundedUpdatableHeapTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'elki/src/test/java/de/lmu/ifi/dbs/elki/utilities/datastructures/heap/TiedTopBoundedUpdatableHeapTest.java')
-rw-r--r--elki/src/test/java/de/lmu/ifi/dbs/elki/utilities/datastructures/heap/TiedTopBoundedUpdatableHeapTest.java120
1 files changed, 120 insertions, 0 deletions
diff --git a/elki/src/test/java/de/lmu/ifi/dbs/elki/utilities/datastructures/heap/TiedTopBoundedUpdatableHeapTest.java b/elki/src/test/java/de/lmu/ifi/dbs/elki/utilities/datastructures/heap/TiedTopBoundedUpdatableHeapTest.java
new file mode 100644
index 00000000..d1de52d6
--- /dev/null
+++ b/elki/src/test/java/de/lmu/ifi/dbs/elki/utilities/datastructures/heap/TiedTopBoundedUpdatableHeapTest.java
@@ -0,0 +1,120 @@
+package de.lmu.ifi.dbs.elki.utilities.datastructures.heap;
+
+/*
+ This file is part of ELKI:
+ Environment for Developing KDD-Applications Supported by Index-Structures
+
+ Copyright (C) 2015
+ Ludwig-Maximilians-Universität München
+ Lehr- und Forschungseinheit für Datenbanksysteme
+ ELKI Development Team
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Affero General Public License as published by
+ the Free Software Foundation, either version 3 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 Affero General Public License for more details.
+
+ You should have received a copy of the GNU Affero General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertTrue;
+
+import java.util.ArrayList;
+import java.util.Collections;
+import java.util.Random;
+
+import org.junit.Test;
+
+import de.lmu.ifi.dbs.elki.JUnit4Test;
+
+/**
+ * Test the specialized heap structures.
+ *
+ * @author Erich Schubert
+ * @since 0.5.0
+ */
+public class TiedTopBoundedUpdatableHeapTest implements JUnit4Test {
+ @Test
+ public void testTiedTopBoundedUpdatableHeap() {
+ final int iters = 100;
+ final int maxid = 5000;
+ final int bsize = 1000;
+ final int limit = 200;
+ final Random r = new Random(1);
+ ArrayList<IntegerPriorityObject<Integer>> simulate = new ArrayList<>(1000);
+ TiedTopBoundedUpdatableHeap<IntegerPriorityObject<Integer>> heap = new TiedTopBoundedUpdatableHeap<>(limit);
+ for(int i = 0; i < iters; i++) {
+ int batchsize = r.nextInt(bsize);
+ for(int j = 0; j < batchsize; j++) {
+ int id = r.nextInt(maxid);
+ int score = r.nextInt(10000);
+ IntegerPriorityObject<Integer> nobj = new IntegerPriorityObject<>(score, id);
+ // Update heap
+ heap.add(nobj);
+ // Enabling the followig assertion *hides* certain problems!
+ // assertTrue("Heap not valid at i="+i, heap.checkHeap());
+ // Update simulation
+ boolean found = false;
+ for(IntegerPriorityObject<Integer> ent : simulate) {
+ if(ent.getObject().equals(id)) {
+ if(score > ent.priority) {
+ ent.priority = score;
+ }
+ found = true;
+ break;
+ }
+ }
+ if(!found) {
+ simulate.add(nobj);
+ }
+ Collections.sort(simulate, Collections.reverseOrder());
+ while(simulate.size() > limit) {
+ int max = simulate.get(limit - 1).priority;
+ if(simulate.get(simulate.size() - 1).priority == max) {
+ break;
+ }
+ else {
+ assertTrue(simulate.get(simulate.size() - 1).priority > max);
+ simulate.remove(simulate.size() - 1);
+ }
+ }
+ if(simulate.size() != heap.size()) {
+ System.err.println("Lost synchronization " + i + "/" + j + ": " + id + " to " + score + "(" + found + ") sizes: " + simulate.size() + " " + heap.size());
+ System.err.println("Sim: " + simulate.get(simulate.size() - 1) + " <=> Heap: " + heap.peek());
+ }
+ assertEquals("Sizes don't match!", simulate.size(), heap.size());
+ }
+ assertEquals("Heap not valid at i=" + i, null, heap.checkHeap());
+
+ // System.err.println("Sim: " + simulate.get(simulate.size() - 1) +
+ // " <=> Heap: " + heap.peek());
+ // System.err.println(simulate.size() + " <=> " + heap.size());
+ int remove = r.nextInt(simulate.size());
+ for(int j = 0; j < remove; j++) {
+ // System.out.println(heap.toString());
+ IntegerPriorityObject<Integer> fromheap = heap.poll();
+ IntegerPriorityObject<Integer> fromsim = simulate.remove(simulate.size() - 1);
+ assertEquals("Priority doesn't agree.", fromheap.priority, fromsim.priority);
+ if(j + 1 == remove) {
+ while(heap.size() > 0) {
+ assertEquals("Priority doesn't agree.", heap.peek().priority, simulate.get(simulate.size() - 1).priority);
+ if(heap.peek().priority == fromheap.priority) {
+ fromheap = heap.poll();
+ fromsim = simulate.remove(simulate.size() - 1);
+ }
+ else {
+ break;
+ }
+ }
+ }
+ }
+ }
+ }
+}