geval/src/GEval/BlackBoxDebugging.hs
Filip Graliński 23aad86e72 Add cartesian features to black-box debugging
But it's very slow now, needs to be sped up
2019-01-10 14:01:29 +01:00

11 lines
238 B
Haskell

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