geval/src/GEval/BlackBoxDebugging.hs

12 lines
284 B
Haskell
Raw Normal View History

module GEval.BlackBoxDebugging
(BlackBoxDebuggingOptions(..))
where
data BlackBoxDebuggingOptions = BlackBoxDebuggingOptions {
bbdoMinFrequency :: Integer,
bbdoWordShapes :: Bool,
bbdoBigrams :: Bool,
bbdoCartesian :: Bool,
bbdoMinCartesianFrequency :: Maybe Integer
}