aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/VeriFuzz/Config.hs18
1 files changed, 12 insertions, 6 deletions
diff --git a/src/VeriFuzz/Config.hs b/src/VeriFuzz/Config.hs
index a51743e..b5a66eb 100644
--- a/src/VeriFuzz/Config.hs
+++ b/src/VeriFuzz/Config.hs
@@ -41,17 +41,23 @@ newtype Config = Config { _configProbability :: Probability }
makeLenses ''Config
defaultValue
- :: (Alternative r, Applicative w) =>
- b -> Toml.Codec r w a b -> Toml.Codec r w a b
+ :: (Alternative r, Applicative w)
+ => b
+ -> Toml.Codec r w a b
+ -> Toml.Codec r w a b
defaultValue x = Toml.dimap Just (fromMaybe x) . Toml.dioptional
probCodec :: TomlCodec Probability
-probCodec = Probability
- <$> Toml.int "assign" .= _probAssign
- <*> defaultValue 1 (Toml.int "always") .= _probAlways
+probCodec =
+ Probability
+ <$> Toml.int "assign"
+ .= _probAssign
+ <*> defaultValue 1 (Toml.int "always")
+ .= _probAlways
configCodec :: TomlCodec Config
-configCodec = Toml.dimap _configProbability Config $ Toml.table probCodec "probability"
+configCodec =
+ Toml.dimap _configProbability Config $ Toml.table probCodec "probability"
parseConfigFile :: FilePath -> IO Config
parseConfigFile = Toml.decodeFile configCodec