--------------------------------------------------------------------------------
-- Iterative Forward Search                                                   --
--------------------------------------------------------------------------------
-- This source code is licensed under the terms found in the LICENSE file in  --
-- the root directory of this source tree.                                    --
--------------------------------------------------------------------------------

module Data.IFS (
    module R
) where

--------------------------------------------------------------------------------

import Data.IFS.Algorithm as R
import Data.IFS.Types     as R

--------------------------------------------------------------------------------