summaryrefslogtreecommitdiffstats
path: root/src/sat/bsat
diff options
context:
space:
mode:
Diffstat (limited to 'src/sat/bsat')
-rw-r--r--src/sat/bsat/satClause.h2
-rw-r--r--src/sat/bsat/satSolver2.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/sat/bsat/satClause.h b/src/sat/bsat/satClause.h
index 3a6afa20..d2ed3b75 100644
--- a/src/sat/bsat/satClause.h
+++ b/src/sat/bsat/satClause.h
@@ -146,7 +146,7 @@ static inline void clause_set_id( clause * c, int id ) { c->lits[c-
static inline int clause_size( clause * c ) { return c->size; }
static inline lit * clause_begin( clause * c ) { return c->lits; }
static inline lit * clause_end( clause * c ) { return c->lits + c->size; }
-static inline void clause_print( clause * c )
+static inline void clause_print_( clause * c )
{
int i;
printf( "{ " );
diff --git a/src/sat/bsat/satSolver2.c b/src/sat/bsat/satSolver2.c
index 7a4470f1..0d17766c 100644
--- a/src/sat/bsat/satSolver2.c
+++ b/src/sat/bsat/satSolver2.c
@@ -1783,7 +1783,7 @@ void sat_solver2_verify( sat_solver2* s )
if ( k == (int)c->size )
{
Abc_Print(1, "Clause %d is not satisfied. ", c->Id );
- clause_print( c );
+ clause_print_( c );
sat_solver2_find_clause( s, clause_handle(&s->clauses, c), 1 );
Counter++;
}