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
SAT4J
sat4j
Commits
7159972b
Commit
7159972b
authored
Nov 20, 2017
by
Daniel Le Berre
Browse files
Fix NPE on stats
parent
5f8dd230
Changes
1
Hide whitespace changes
Inline
Side-by-side
org.sat4j.pb/src/main/java/org/sat4j/pb/core/PBSolverClause.java
View file @
7159972b
...
...
@@ -49,7 +49,8 @@ public class PBSolverClause extends PBSolverCP {
@Override
protected
IConflict
chooseConflict
(
PBConstr
myconfl
,
int
level
)
{
return
ConflictMapClause
.
createConflict
(
myconfl
,
level
,
isNoRemove
());
return
ConflictMapClause
.
createConflict
(
myconfl
,
level
,
isNoRemove
(),
isSkipAllow
(),
stats
);
}
@Override
...
...
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