Skip to content

Commit

Permalink
Clean code
Browse files Browse the repository at this point in the history
  • Loading branch information
fontanf committed Nov 1, 2023
1 parent 1755305 commit 62fe2c6
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .bazelrc
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ build --compilation_mode=opt
############################ Optional dependencies #############################
################################################################################

#build --define coinor=true
#build --define cbc=true
#build --define cplex=true

6 changes: 3 additions & 3 deletions .ycm_extra_conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ def Settings(**kwargs):
# '-I', './../',
'localsearchsolver/',

# COINOR
'-DCOINOR_FOUND',
'-I', '/home/florian/Programmes/coinbrew/dist/include/',
# CBC
'-DCBC_FOUND',
'-I', './bazel-stablesolver/external/cbc_linux/include/coin/',

# CPLEX
'-DCPLEX_FOUND',
Expand Down
2 changes: 1 addition & 1 deletion stablesolver/clique/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ cc_binary(
],
linkopts = select({
"@bazel_tools//src/conditions:windows": [],
"//conditions:default": ["-lpthread"],
"//conditions:default": ["-lpthread"],
}),
)

2 changes: 1 addition & 1 deletion stablesolver/stable/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ cc_binary(
],
linkopts = select({
"@bazel_tools//src/conditions:windows": [],
"//conditions:default": ["-lpthread"],
"//conditions:default": ["-lpthread"],
}),
)

0 comments on commit 62fe2c6

Please sign in to comment.