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
8ac9515d
Commit
8ac9515d
authored
Nov 26, 2011
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Started experiments with a new solver.
parent
06416a98
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
4 deletions
+6
-4
src/sat/bsat/satSolver.h
+2
-2
src/sat/bsat/satSolver2.h
+2
-2
src/sat/bsat/satVec.h
+2
-0
No files found.
src/sat/bsat/satSolver.h
View file @
8ac9515d
...
...
@@ -113,8 +113,8 @@ extern void * sat_solver_store_release( sat_solver * s );
//=================================================================================================
// Solver representation:
struct
clause_t
;
typedef
struct
clause_t
clause
;
//
struct clause_t;
//
typedef struct clause_t clause;
struct
sat_solver_t
{
...
...
src/sat/bsat/satSolver2.h
View file @
8ac9515d
...
...
@@ -74,8 +74,8 @@ extern void * sat_solver2_store_release( sat_solver2 * s );
//=================================================================================================
// Solver representation:
struct
clause_t
;
typedef
struct
clause_t
clause
;
//
struct clause_t;
//
typedef struct clause_t clause;
struct
sat_solver2_t
{
...
...
src/sat/bsat/satVec.h
View file @
8ac9515d
...
...
@@ -124,6 +124,8 @@ struct stats_t
};
typedef
struct
stats_t
stats_t
;
struct
clause_t
;
typedef
struct
clause_t
clause
;
ABC_NAMESPACE_HEADER_END
...
...
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