From bab188df696499067542db6777d9b1389813fecc Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Sun, 10 Jul 2011 12:49:02 -0400 Subject: [PATCH] Re-export the modules in Everything.hs. --- src/Everything.hs | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/src/Everything.hs b/src/Everything.hs index 1c8d738..f1f5677 100644 --- a/src/Everything.hs +++ b/src/Everything.hs @@ -1,15 +1,27 @@ -- | This module just imports the others. Useful in GHCi sessions. -module Everything +module Everything ( + module Cardinal, + module Comparisons, + module Cube, + module Examples, + module Face, + module FunctionValues, + module Grid, + module Misc, + module Point, + module RealFunction, + module Tetrahedron +) where import Cardinal import Comparisons -import Cube +import Cube hiding (h) import Examples -import Face +import Face hiding (v0,v1,v2,v3) import FunctionValues import Grid import Misc import Point import RealFunction -import Tetrahedron +import Tetrahedron hiding (fv) -- 2.43.2