Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Tiago Peixoto
graph-tool
Commits
c2825ffb
Commit
c2825ffb
authored
Apr 03, 2016
by
Tiago Peixoto
Browse files
Fix Python 2 issues
parent
f5916cc3
Changes
2
Hide whitespace changes
Inline
Side-by-side
doc/test_inference.py
View file @
c2825ffb
...
...
@@ -4,6 +4,9 @@ from __future__ import print_function
verbose
=
False
if
__name__
==
"__main__"
:
verbose
=
True
import
os
import
sys
if
not
verbose
:
...
...
src/graph_tool/inference/layered_blockmodel.py
View file @
c2825ffb
...
...
@@ -47,7 +47,7 @@ from . blockmodel import *
from
.
blockmodel
import
_bm_test
from
.
overlap_blockmodel
import
*
class
LayeredBlockState
(
BlockState
):
class
LayeredBlockState
(
OverlapBlockState
,
BlockState
):
r
"""The (possibly overlapping) block state of a given graph, where the edges are
divided into discrete layers.
...
...
Write
Preview
Supports
Markdown
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