From 6c5faa4fc62c66a2bfb8ab148e338e46ed30e7a3 Mon Sep 17 00:00:00 2001 From: Trolli Schmittlauch Date: Mon, 24 Feb 2020 22:26:04 +0100 Subject: [PATCH] rename DHT implementation as it deviates from the EpiChord paper --- .../Distributed/Process/DHT/FediChord.hs} | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename src/{EpiChord.hs => Control/Distributed/Process/DHT/FediChord.hs} (89%) diff --git a/src/EpiChord.hs b/src/Control/Distributed/Process/DHT/FediChord.hs similarity index 89% rename from src/EpiChord.hs rename to src/Control/Distributed/Process/DHT/FediChord.hs index d5669ec..8fbcb0b 100644 --- a/src/EpiChord.hs +++ b/src/Control/Distributed/Process/DHT/FediChord.hs @@ -1,15 +1,15 @@ {-# LANGUAGE GeneralizedNewtypeDeriving #-} {- | -Module : EpiChord +Module : FediChord Description : An opinionated implementation of the EpiChord DHT by Leong et al. Copyright : (c) schmittlauch, 2019 License : AGPL-3 Stability : experimental -Here be dragons +Modernised EpiChord + k-choices load balancing -} -module EpiChord where +module Control.Distributed.Process.DHT.FediChord where newtype NodeID = NodeID { getNodeID :: Integer } deriving (Eq, Show, Enum)