Commit aed9a859 authored by Alexandre Delanoë's avatar Alexandre Delanoë

[FIX] Warnings

parent ae0d8122
...@@ -93,8 +93,8 @@ toFlowListScores k ts = foldl' (toFlowListScores' k ts) ...@@ -93,8 +93,8 @@ toFlowListScores k ts = foldl' (toFlowListScores' k ts)
-> Map Text FlowListScores -> Map Text FlowListScores
-> Map Text NgramsRepoElement -> Map Text NgramsRepoElement
-> Map Text FlowListScores -> Map Text FlowListScores
toFlowListScores' k ts' to' ngramsRepo = toFlowListScores' k' ts' to' ngramsRepo =
Set.foldl' (toFlowListScores'' k ts' ngramsRepo) to' ts' Set.foldl' (toFlowListScores'' k' ts' ngramsRepo) to' ts'
toFlowListScores'' :: KeepAllParents toFlowListScores'' :: KeepAllParents
-> Set Text -> Set Text
...@@ -102,10 +102,10 @@ toFlowListScores k ts = foldl' (toFlowListScores' k ts) ...@@ -102,10 +102,10 @@ toFlowListScores k ts = foldl' (toFlowListScores' k ts)
-> Map Text FlowListScores -> Map Text FlowListScores
-> Text -> Text
-> Map Text FlowListScores -> Map Text FlowListScores
toFlowListScores'' k ss ngramsRepo to'' t = toFlowListScores'' k'' ss ngramsRepo to'' t =
case Map.lookup t ngramsRepo of case Map.lookup t ngramsRepo of
Nothing -> to'' Nothing -> to''
Just nre -> Map.alter (addParent k nre ss) t Just nre -> Map.alter (addParent k'' nre ss) t
$ Map.alter (addList $ _nre_list nre) t to'' $ Map.alter (addList $ _nre_list nre) t to''
------------------------------------------------------------------------ ------------------------------------------------------------------------
...@@ -175,9 +175,9 @@ addParent' _ Nothing _ss mapParent = mapParent ...@@ -175,9 +175,9 @@ addParent' _ Nothing _ss mapParent = mapParent
addParent' (KeepAllParents k) (Just (NgramsTerm p')) ss mapParent = addParent' (KeepAllParents k) (Just (NgramsTerm p')) ss mapParent =
case k of case k of
True -> Map.alter addCount p' mapParent True -> Map.alter addCount p' mapParent
False -> if not (Set.member p' ss) False -> case Set.member p' ss of
then mapParent False -> mapParent
else Map.alter addCount p' mapParent True -> Map.alter addCount p' mapParent
where where
addCount Nothing = Just 1 addCount Nothing = Just 1
addCount (Just n) = Just $ n + 1 addCount (Just n) = Just $ n + 1
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment