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
55aba173
Commit
55aba173
authored
Sep 08, 2023
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixing a typo.
parent
f844fb10
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
9 additions
and
9 deletions
+9
-9
src/aig/saig/saigTrans.c
+1
-1
src/proof/fraig/fraigInt.h
+1
-1
src/proof/fraig/fraigSat.c
+1
-1
src/proof/fraig/fraigUtil.c
+2
-2
src/sat/glucose/AbcGlucose.cpp
+2
-2
src/sat/glucose2/AbcGlucose2.cpp
+2
-2
No files found.
src/aig/saig/saigTrans.c
View file @
55aba173
...
...
@@ -6,7 +6,7 @@
PackageName [Sequential AIG package.]
Synopsis [Dynamic simplication of the transition relation.]
Synopsis [Dynamic simpli
fi
cation of the transition relation.]
Author [Alan Mishchenko]
...
...
src/proof/fraig/fraigInt.h
View file @
55aba173
...
...
@@ -383,7 +383,7 @@ extern void Fraig_NodeSimulate( Fraig_Node_t * pNode, int iWordSt
/*=== fraigPrime.c =============================================================*/
extern
int
s_FraigPrimes
[
FRAIG_MAX_PRIMES
];
/*=== fraigSat.c ===============================================================*/
extern
int
Fraig_NodeIsImplication
(
Fraig_Man_t
*
p
,
Fraig_Node_t
*
pOld
,
Fraig_Node_t
*
pNew
,
int
nBTLimit
);
extern
int
Fraig_NodeIsImpli
fi
cation
(
Fraig_Man_t
*
p
,
Fraig_Node_t
*
pOld
,
Fraig_Node_t
*
pNew
,
int
nBTLimit
);
/*=== fraigTable.c =============================================================*/
extern
Fraig_HashTable_t
*
Fraig_HashTableCreate
(
int
nSize
);
extern
void
Fraig_HashTableFree
(
Fraig_HashTable_t
*
p
);
...
...
src/proof/fraig/fraigSat.c
View file @
55aba173
...
...
@@ -548,7 +548,7 @@ p->time3 += Abc_Clock() - clk;
SeeAlso []
***********************************************************************/
int
Fraig_NodeIsImplication
(
Fraig_Man_t
*
p
,
Fraig_Node_t
*
pOld
,
Fraig_Node_t
*
pNew
,
int
nBTLimit
)
int
Fraig_NodeIsImpli
fi
cation
(
Fraig_Man_t
*
p
,
Fraig_Node_t
*
pOld
,
Fraig_Node_t
*
pNew
,
int
nBTLimit
)
{
int
RetValue
,
RetValue1
,
i
,
fComp
;
abctime
clk
;
...
...
src/proof/fraig/fraigUtil.c
View file @
55aba173
...
...
@@ -872,13 +872,13 @@ clk = Abc_Clock();
pNode2
=
vPivots
->
pArray
[
k
];
if
(
Fraig_NodeSimsContained
(
pMan
,
pNode
,
pNode2
)
)
{
if
(
Fraig_NodeIsImplication
(
pMan
,
pNode
,
pNode2
,
-
1
)
)
if
(
Fraig_NodeIsImpli
fi
cation
(
pMan
,
pNode
,
pNode2
,
-
1
)
)
nProved
++
;
Counter
++
;
}
else
if
(
Fraig_NodeSimsContained
(
pMan
,
pNode2
,
pNode
)
)
{
if
(
Fraig_NodeIsImplication
(
pMan
,
pNode2
,
pNode
,
-
1
)
)
if
(
Fraig_NodeIsImpli
fi
cation
(
pMan
,
pNode2
,
pNode
,
-
1
)
)
nProved
++
;
Counter
++
;
}
...
...
src/sat/glucose/AbcGlucose.cpp
View file @
55aba173
...
...
@@ -842,7 +842,7 @@ void Glucose_SolveCnf( char * pFileName, Glucose_Pars * pPars, int fDumpCnf )
if
(
pPars
->
pre
)
{
S
.
eliminate
(
true
);
printf
(
"c Simplication removed %d variables and %d clauses. "
,
S
.
eliminated_vars
,
S
.
eliminated_clauses
);
printf
(
"c Simpli
fi
cation removed %d variables and %d clauses. "
,
S
.
eliminated_vars
,
S
.
eliminated_clauses
);
Abc_PrintTime
(
1
,
"Time"
,
Abc_Clock
()
-
clk
);
if
(
fDumpCnf
)
...
...
@@ -1510,7 +1510,7 @@ int Glucose_SolveAig(Gia_Man_t * p, Glucose_Pars * pPars)
if
(
pPars
->
pre
)
{
S
.
eliminate
(
true
);
printf
(
"c Simplication removed %d variables and %d clauses. "
,
S
.
eliminated_vars
,
S
.
eliminated_clauses
);
printf
(
"c Simpli
fi
cation removed %d variables and %d clauses. "
,
S
.
eliminated_vars
,
S
.
eliminated_clauses
);
Abc_PrintTime
(
1
,
"Time"
,
Abc_Clock
()
-
clk
);
}
...
...
src/sat/glucose2/AbcGlucose2.cpp
View file @
55aba173
...
...
@@ -869,7 +869,7 @@ void Glucose2_SolveCnf( char * pFileName, Glucose2_Pars * pPars )
if
(
pPars
->
pre
)
{
S
.
eliminate
(
true
);
printf
(
"c Simplication removed %d variables and %d clauses. "
,
S
.
eliminated_vars
,
S
.
eliminated_clauses
);
printf
(
"c Simpli
fi
cation removed %d variables and %d clauses. "
,
S
.
eliminated_vars
,
S
.
eliminated_clauses
);
Abc_PrintTime
(
1
,
"Time"
,
Abc_Clock
()
-
clk
);
}
...
...
@@ -1528,7 +1528,7 @@ int Glucose2_SolveAig(Gia_Man_t * p, Glucose2_Pars * pPars)
if
(
pPars
->
pre
)
{
S
.
eliminate
(
true
);
printf
(
"c Simplication removed %d variables and %d clauses. "
,
S
.
eliminated_vars
,
S
.
eliminated_clauses
);
printf
(
"c Simpli
fi
cation removed %d variables and %d clauses. "
,
S
.
eliminated_vars
,
S
.
eliminated_clauses
);
Abc_PrintTime
(
1
,
"Time"
,
Abc_Clock
()
-
clk
);
}
...
...
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