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
9bff0309
Commit
9bff0309
authored
Nov 29, 2010
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added ternary simulation value storage
parent
719d399a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
0 deletions
+2
-0
src/aig/aig/aig.h
+1
-0
src/aig/aig/aigMan.c
+1
-0
No files found.
src/aig/aig/aig.h
View file @
9bff0309
...
...
@@ -148,6 +148,7 @@ struct Aig_Man_t_
void
*
pManTime
;
// the timing manager
void
*
pManCuts
;
int
*
pFastSim
;
unsigned
*
pTerSimData
;
// ternary simulation data
Vec_Ptr_t
*
vMapped
;
Vec_Int_t
*
vFlopNums
;
Vec_Int_t
*
vFlopReprs
;
...
...
src/aig/aig/aigMan.c
View file @
9bff0309
...
...
@@ -213,6 +213,7 @@ void Aig_ManStop( Aig_Man_t * p )
Vec_PtrFreeP
(
&
p
->
vMapped
);
if
(
p
->
pSeqModelVec
)
Vec_PtrFreeFree
(
p
->
pSeqModelVec
);
ABC_FREE
(
p
->
pTerSimData
);
ABC_FREE
(
p
->
pFastSim
);
ABC_FREE
(
p
->
pData
);
ABC_FREE
(
p
->
pSeqModel
);
...
...
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