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
e609dd8b
Commit
e609dd8b
authored
Mar 22, 2022
by
Alexandre Delanoë
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[FIX] Spinglass not connected components
parent
407af151
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
8 deletions
+7
-8
IGraph.hs
src/Gargantext/Core/Viz/Graph/Tools/IGraph.hs
+7
-8
No files found.
src/Gargantext/Core/Viz/Graph/Tools/IGraph.hs
View file @
e609dd8b
...
@@ -63,18 +63,17 @@ spinglass :: Seed -> Map (Int, Int) Double -> IO [ClusterNode]
...
@@ -63,18 +63,17 @@ spinglass :: Seed -> Map (Int, Int) Double -> IO [ClusterNode]
spinglass
s
g
=
toClusterNode
spinglass
s
g
=
toClusterNode
<$>
map
catMaybes
<$>
map
catMaybes
<$>
map
(
map
(
\
n
->
Map
.
lookup
n
fromI
))
<$>
map
(
map
(
\
n
->
Map
.
lookup
n
fromI
))
<$>
partitions_spinglass'
s
g'''
<$>
List
.
concat
<$>
mapM
(
partitions_spinglass'
s
)
g'
where
where
g'
=
toIndex
toI
g
-- Not connected components of the graph make crash spinglass
g''
=
mkGraphUfromEdges
(
Map
.
keys
g'
)
g'
=
IG
.
decompose
$
mkGraphUfromEdges
g'''
=
case
IG
.
isConnected
g''
of
$
Map
.
keys
True
->
g''
$
toIndex
toI
g
False
->
case
head
(
IG
.
decompose
g''
)
of
Nothing
->
panic
"[G.C.V.G.T.Igraph: not connected graph]"
Just
g''''
->
g''''
(
toI
,
fromI
)
=
createIndices
g
(
toI
,
fromI
)
=
createIndices
g
-- | Tools to analyze graphs
-- | Tools to analyze graphs
partitions_spinglass'
::
(
Serialize
v
,
Serialize
e
)
partitions_spinglass'
::
(
Serialize
v
,
Serialize
e
)
=>
Seed
->
IG
.
Graph
'U
v
e
->
IO
[[
Int
]]
=>
Seed
->
IG
.
Graph
'U
v
e
->
IO
[[
Int
]]
...
...
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