From 1e20120174973f814facdc5338188945b925da56 Mon Sep 17 00:00:00 2001 From: adash Date: Tue, 24 Feb 2009 07:25:04 +0000 Subject: [PATCH] remove files not necessary --- .../LookUpService/java/LookUpServer.java | 19 ------ .../LookUpService/java/LookUpService.java | 60 ------------------- 2 files changed, 79 deletions(-) delete mode 100644 Robust/src/Benchmarks/Distributed/LookUpService/java/LookUpServer.java delete mode 100644 Robust/src/Benchmarks/Distributed/LookUpService/java/LookUpService.java diff --git a/Robust/src/Benchmarks/Distributed/LookUpService/java/LookUpServer.java b/Robust/src/Benchmarks/Distributed/LookUpService/java/LookUpServer.java deleted file mode 100644 index 543ffccb..00000000 --- a/Robust/src/Benchmarks/Distributed/LookUpService/java/LookUpServer.java +++ /dev/null @@ -1,19 +0,0 @@ -public class LookUpServer extends Thread { - public LookUpServer(Socket s) { - - } - - public void run() { - //Do lookup - //Do update - } - - public void doHashLookUp() { - - - } - - public void updateHash() { - - } -} diff --git a/Robust/src/Benchmarks/Distributed/LookUpService/java/LookUpService.java b/Robust/src/Benchmarks/Distributed/LookUpService/java/LookUpService.java deleted file mode 100644 index f35c4522..00000000 --- a/Robust/src/Benchmarks/Distributed/LookUpService/java/LookUpService.java +++ /dev/null @@ -1,60 +0,0 @@ -public class LookUpService { - public static int main(String arg[]) { - /** - * The initial capacity of hashmap - **/ - int initCapacity = 100; - - /** - * The second capacity of hashmap - **/ - int secondCapacity = 100; - - /** - * The loadFactor - **/ - float loadFactor = 0.75f; - - /** - * Number of threads - **/ - int nthreads = 1; - - /** - * Number of objects in the hash table - **/ - int nobjs = 110; - - /** - * Create shared hashmap and put values - **/ - DistributedHashMap dhmap; - dhmap = new DistributedHashMap(initCapacity,secondCapacity,loadFactor) - for(int i = 0; i