rename DHT implementation as it deviates from the EpiChord paper

This commit is contained in:
Trolli Schmittlauch 2020-02-24 22:26:04 +01:00
parent e83710f10b
commit 6c5faa4fc6

View file

@ -1,15 +1,15 @@
{-# LANGUAGE GeneralizedNewtypeDeriving #-} {-# LANGUAGE GeneralizedNewtypeDeriving #-}
{- | {- |
Module : EpiChord Module : FediChord
Description : An opinionated implementation of the EpiChord DHT by Leong et al. Description : An opinionated implementation of the EpiChord DHT by Leong et al.
Copyright : (c) schmittlauch, 2019 Copyright : (c) schmittlauch, 2019
License : AGPL-3 License : AGPL-3
Stability : experimental 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) newtype NodeID = NodeID { getNodeID :: Integer } deriving (Eq, Show, Enum)