Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
H
haskell-gargantext
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Przemyslaw Kaminski
haskell-gargantext
Commits
aed9a859
Commit
aed9a859
authored
Nov 05, 2020
by
Alexandre Delanoë
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[FIX] Warnings
parent
ae0d8122
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
Group.hs
src/Gargantext/Core/Text/List/Social/Group.hs
+7
-7
No files found.
src/Gargantext/Core/Text/List/Social/Group.hs
View file @
aed9a859
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment