Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Radek Hušek
group-connectivity-pub
Commits
c4e6ebd6
Commit
c4e6ebd6
authored
Dec 10, 2015
by
Radek Hušek
Committed by
Radek Hušek
Nov 09, 2017
Browse files
Turn on 2-cut optimization
parent
84714b2b
Changes
2
Hide whitespace changes
Inline
Side-by-side
compileTimeOptions.h
View file @
c4e6ebd6
...
...
@@ -14,9 +14,9 @@ BOOL_OPTION(OPTIMIZE_COMBINE, 0)
BOOL_OPTION
(
USE_NEXT_FORB
,
1
)
BOOL_OPTION
(
EXPLICIT_NORMAL_EDGES
,
0
)
BOOL_OPTION
(
EXPLICIT_NORMAL_EDGES
,
1
)
REQUIRES
(
EXPLICIT_NORMAL_EDGES
,
USE_NEXT_FORB
)
BOOL_OPTION
(
USE_TWO_CUTS
,
0
)
BOOL_OPTION
(
USE_TWO_CUTS
,
1
)
REQUIRES
(
USE_TWO_CUTS
,
USE_NEXT_FORB
&&
EXPLICIT_NORMAL_EDGES
)
groupConnectivity.pyx
View file @
c4e6ebd6
...
...
@@ -38,7 +38,7 @@ def pathToEdges(G, path):
def
testGroupConnectivity
(
G
,
group
=
"Z4"
,
getClasses
=
False
,
useTwoCuts
=
Fals
e
,
debug
=
False
):
useTwoCuts
=
Tru
e
,
debug
=
False
):
cdef
AbstractTester
*
tester
=
NULL
if
group
==
"Z4"
:
tester
=
new
Tester
[
Z4
[
int
]]()
...
...
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