Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
graph-tool
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
40
Issues
40
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Tiago Peixoto
graph-tool
Commits
4eca7b1e
Commit
4eca7b1e
authored
Jul 02, 2015
by
Tiago Peixoto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix problem with initial bracketing in minimize_blockmodel_dl()
parent
5dfd641b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
6 deletions
+7
-6
src/graph_tool/community/blockmodel.py
src/graph_tool/community/blockmodel.py
+7
-6
No files found.
src/graph_tool/community/blockmodel.py
View file @
4eca7b1e
...
...
@@ -2371,12 +2371,13 @@ def minimize_blockmodel_dl(g, deg_corr=True, overlap=False, ec=None,
cleanup_cache
(
b_cache
,
min_B
,
max_B
)
if
f_max
>
f_mid
>
f_min
:
max_B
=
mid_B
mid_B
=
get_mid
(
min_B
,
mid_B
)
elif
f_max
<
f_mid
<
f_min
:
min_B
=
mid_B
mid_B
=
get_mid
(
mid_B
,
max_B
)
if
f_mid
>
f_min
or
f_mid
>
f_max
:
if
f_min
<
f_max
:
max_B
=
mid_B
mid_B
=
get_mid
(
min_B
,
mid_B
)
else
:
min_B
=
mid_B
mid_B
=
get_mid
(
mid_B
,
max_B
)
else
:
break
...
...
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