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
f2945e12
Commit
f2945e12
authored
Mar 02, 2011
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Upgrading epd and mtr packages to be compatible with the latest release of CUDD 2.4.2
parent
e3f2dde1
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
7 additions
and
7 deletions
+7
-7
src/bdd/epd/epd.c
+3
-3
src/bdd/epd/epd.h
+0
-0
src/bdd/mtr/mtr.h
+0
-0
src/bdd/mtr/mtrBasic.c
+3
-3
src/bdd/mtr/mtrGroup.c
+1
-1
No files found.
src/bdd/epd/epd.c
View file @
f2945e12
...
@@ -52,7 +52,7 @@
...
@@ -52,7 +52,7 @@
#include <stdlib.h>
#include <stdlib.h>
#include <string.h>
#include <string.h>
#include <math.h>
#include <math.h>
#include "util.h"
#include "util
_hack
.h"
#include "epd.h"
#include "epd.h"
ABC_NAMESPACE_IMPL_START
ABC_NAMESPACE_IMPL_START
...
@@ -73,7 +73,7 @@ EpdAlloc(void)
...
@@ -73,7 +73,7 @@ EpdAlloc(void)
{
{
EpDouble
*
epd
;
EpDouble
*
epd
;
epd
=
ALLOC
(
EpDouble
,
1
);
epd
=
A
BC_A
LLOC
(
EpDouble
,
1
);
return
(
epd
);
return
(
epd
);
}
}
...
@@ -116,7 +116,7 @@ EpdCmp(const char *key1, const char *key2)
...
@@ -116,7 +116,7 @@ EpdCmp(const char *key1, const char *key2)
void
void
EpdFree
(
EpDouble
*
epd
)
EpdFree
(
EpDouble
*
epd
)
{
{
FREE
(
epd
);
ABC_
FREE
(
epd
);
}
}
...
...
src/bdd/epd/epd.h
View file @
f2945e12
src/bdd/mtr/mtr.h
View file @
f2945e12
src/bdd/mtr/mtrBasic.c
View file @
f2945e12
...
@@ -60,7 +60,7 @@
...
@@ -60,7 +60,7 @@
******************************************************************************/
******************************************************************************/
#include "util.h"
#include "util
_hack
.h"
#include "mtrInt.h"
#include "mtrInt.h"
ABC_NAMESPACE_IMPL_START
ABC_NAMESPACE_IMPL_START
...
@@ -119,7 +119,7 @@ Mtr_AllocNode(void)
...
@@ -119,7 +119,7 @@ Mtr_AllocNode(void)
{
{
MtrNode
*
node
;
MtrNode
*
node
;
node
=
ALLOC
(
MtrNode
,
1
);
node
=
A
BC_A
LLOC
(
MtrNode
,
1
);
return
node
;
return
node
;
}
/* Mtr_AllocNode */
}
/* Mtr_AllocNode */
...
@@ -140,7 +140,7 @@ void
...
@@ -140,7 +140,7 @@ void
Mtr_DeallocNode
(
Mtr_DeallocNode
(
MtrNode
*
node
/* node to be deallocated */
)
MtrNode
*
node
/* node to be deallocated */
)
{
{
FREE
(
node
);
ABC_
FREE
(
node
);
return
;
return
;
}
/* end of Mtr_DeallocNode */
}
/* end of Mtr_DeallocNode */
...
...
src/bdd/mtr/mtrGroup.c
View file @
f2945e12
...
@@ -60,7 +60,7 @@
...
@@ -60,7 +60,7 @@
******************************************************************************/
******************************************************************************/
#include "util.h"
#include "util
_hack
.h"
#include "mtrInt.h"
#include "mtrInt.h"
ABC_NAMESPACE_IMPL_START
ABC_NAMESPACE_IMPL_START
...
...
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