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
8ea4a28b
Commit
8ea4a28b
authored
Mar 05, 2022
by
Daniel Le Berre
Browse files
fixed compilation problem
parent
da22bf84
Pipeline
#20064
passed with stages
in 45 minutes and 19 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
org.sat4j.core/src/main/java/org/sat4j/minisat/constraints/card/MinWatchCard.java
View file @
8ea4a28b
...
...
@@ -423,7 +423,7 @@ public class MinWatchCard
*/
public
boolean
simplify
()
{
// Calcul de la valeur actuelle
for
(
var
i
=
0
,
count
=
0
;
i
<
this
.
lits
.
length
;
i
++)
{
for
(
int
i
=
0
,
count
=
0
;
i
<
this
.
lits
.
length
;
i
++)
{
if
(
this
.
voc
.
isSatisfied
(
this
.
lits
[
i
])
&&
++
count
==
this
.
degree
)
{
return
true
;
}
...
...
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