Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
sat4j
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
51
Issues
51
List
Boards
Labels
Service Desk
Milestones
Merge Requests
2
Merge Requests
2
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
SAT4J
sat4j
Commits
efcfea8c
Commit
efcfea8c
authored
Jul 08, 2018
by
Daniel Le Berre
2
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix heuristics bumping (according to Armin's comments).
parent
e49f712a
Pipeline
#2321
failed with stages
in 4 minutes and 49 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
org.sat4j.core/src/main/java/org/sat4j/minisat/core/Solver.java
...t4j.core/src/main/java/org/sat4j/minisat/core/Solver.java
+1
-1
No files found.
org.sat4j.core/src/main/java/org/sat4j/minisat/core/Solver.java
View file @
efcfea8c
...
...
@@ -611,9 +611,9 @@ public class Solver<D extends DataStructureFactory>
// Trace reason for p
for
(
int
j
=
0
;
j
<
preason
.
size
();
j
++)
{
int
q
=
preason
.
get
(
j
);
this
.
order
.
updateVar
(
q
);
if
(!
seen
[
q
>>
1
])
{
seen
[
q
>>
1
]
=
true
;
this
.
order
.
updateVar
(
q
);
if
(
this
.
voc
.
getLevel
(
q
)
==
decisionLevel
())
{
counter
++;
this
.
order
.
updateVarAtDecisionLevel
(
q
);
...
...
Daniel Le Berre
@leberre
mentioned in commit
91c54ae4
·
Dec 15, 2018
mentioned in commit
91c54ae4
mentioned in commit 91c54ae476cfb25f9e368dfbbbb35cafb0d71395
Toggle commit list
Daniel Le Berre
@leberre
mentioned in issue
#152 (closed)
·
Dec 15, 2018
mentioned in issue
#152 (closed)
mentioned in issue #152
Toggle commit list
Write
Preview
Markdown
is supported
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