2019-01-10 08:15:34 +01:00
|
|
|
module GEval.BlackBoxDebugging
|
|
|
|
(BlackBoxDebuggingOptions(..))
|
|
|
|
where
|
|
|
|
|
|
|
|
data BlackBoxDebuggingOptions = BlackBoxDebuggingOptions {
|
2019-01-10 09:58:04 +01:00
|
|
|
bbdoMinFrequency :: Integer,
|
2019-01-10 10:41:55 +01:00
|
|
|
bbdoWordShapes :: Bool,
|
2019-01-10 14:01:29 +01:00
|
|
|
bbdoBigrams :: Bool,
|
|
|
|
bbdoCartesian :: Bool
|
2019-01-10 08:15:34 +01:00
|
|
|
}
|