This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Imports --------------------------------------------------------------------- | |
import Aufgabe7 ( | |
Nat(..), Ziffer(..), Zeichen(..), Graph(..) | |
, kIndependent, isConnected, isTree | |
, Airports(..), Airlines(..), Networks, Fare | |
, airlineConnections, allianceConnections, cheapestConnections | |
) | |
import Data.List (sort) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Imports --------------------------------------------------------------------- | |
import Aufgabe6 ( | |
Nat(..), Ziffer(..), Zeichen(..) | |
, Tree(..), smt | |
, STree(..), t2st | |
, tsum, tdepth | |
, Graph(..), ne, independent, cover | |
) | |
import Test.HUnit |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Imports --------------------------------------------------------------------- | |
import Aufgabe5 (Nat(..), Zeichen(..), Ziffer(..), | |
isCanPR, mkCanPR, plusPR, minusPR, timesPR, divPR, | |
eqPR, neqPR, grPR, lePR, grEqPR, leEqPR) | |
import Test.HUnit | |
-- Numbers --------------------------------------------------------------------- | |
nat0 = Nat ((A, A, A), (Null, Null, Null)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Imports --------------------------------------------------------------------- | |
import Aufgabe4 | |
import Test.HUnit | |
import Control.Exception | |
import Control.Monad | |
-- Support --------------------------------------------------------------------- |