forked from cpeikert/Lol
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAllMain.hs
More file actions
33 lines (28 loc) · 802 Bytes
/
AllMain.hs
File metadata and controls
33 lines (28 loc) · 802 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{-|
Module : AllMain
Description : Pulls in all modules.
Copyright : (c) Eric Crockett, 2011-2017
Chris Peikert, 2011-2017
License : GPL-3
Maintainer : ecrockett0@email.com
Stability : experimental
Portability : POSIX
This module depends on all source code modules, so it is useful for checking
that all code compiles, including all top-level executables.
-}
import LolTestsMain ()
import BenchLolCPPMain ()
import BenchAppsCPPMain ()
import TestLolCPPMain ()
import TestAppsCPPMain ()
import HomomPRFCPPMain ()
import KHPRFCPPMain ()
import SHECPPMain ()
import BenchLolRepaMain ()
import BenchAppsRepaMain ()
import TestLolRepaMain ()
import TestAppsRepaMain ()
import HomomPRFRepaMain ()
import KHPRFRepaMain ()
import SHERepaMain ()
import RLWEChallengesMain ()