8 lines
164 B
Haskell
8 lines
164 B
Haskell
|
module GEval.BlackBoxDebugging
|
||
|
(BlackBoxDebuggingOptions(..))
|
||
|
where
|
||
|
|
||
|
data BlackBoxDebuggingOptions = BlackBoxDebuggingOptions {
|
||
|
bbdoMinFrequency :: Integer
|
||
|
}
|