Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
abc
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
abc
Commits
72404d1f
Commit
72404d1f
authored
Dec 05, 2011
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Proof-logging in the updated solver.
parent
bb96fa36
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
3 additions
and
3 deletions
+3
-3
src/sat/bsat/satProof.c
+0
-0
src/sat/bsat/satSolver2.c
+0
-0
src/sat/bsat/satSolver2.h
+0
-0
src/sat/bsat/satVec.h
+3
-3
No files found.
src/sat/bsat/satProof.c
View file @
72404d1f
This diff is collapsed.
Click to expand it.
src/sat/bsat/satSolver2.c
View file @
72404d1f
This diff is collapsed.
Click to expand it.
src/sat/bsat/satSolver2.h
View file @
72404d1f
This diff is collapsed.
Click to expand it.
src/sat/bsat/satVec.h
View file @
72404d1f
...
...
@@ -29,15 +29,15 @@ ABC_NAMESPACE_HEADER_START
// vector of 32-bit intergers (added for 64-bit portability)
struct
veci_t
{
int
size
;
int
cap
;
int
size
;
int
*
ptr
;
};
typedef
struct
veci_t
veci
;
static
inline
void
veci_new
(
veci
*
v
)
{
v
->
size
=
0
;
v
->
cap
=
4
;
v
->
size
=
0
;
v
->
ptr
=
(
int
*
)
ABC_ALLOC
(
char
,
sizeof
(
int
)
*
v
->
cap
);
}
...
...
@@ -68,8 +68,8 @@ static inline void veci_remove(veci* v, int e)
// vector of 32- or 64-bit pointers
struct
vecp_t
{
int
size
;
int
cap
;
int
size
;
void
**
ptr
;
};
typedef
struct
vecp_t
vecp
;
...
...
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