Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Spot
Spot
Commits
42782f3a
Commit
42782f3a
authored
May 20, 2003
by
Alexandre Duret-Lutz
Browse files
* src/pairs.c (bdd_setbddpair): Fix prototype in documentation.
parent
ed8ae1ed
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
buddy/ChangeLog
View file @
42782f3a
2003-05-20 Alexandre Duret-Lutz <aduret@src.lip6.fr>
* src/pairs.c (bdd_setbddpair): Fix prototype in documentation.
2003-05-19 Alexandre Duret-Lutz <aduret@src.lip6.fr>
* src/bdd.h: Declare bdd_copypair().
...
...
buddy/src/bddop.c
View file @
42782f3a
This diff is collapsed.
Click to expand it.
buddy/src/kernel.c
View file @
42782f3a
This diff is collapsed.
Click to expand it.
buddy/src/kernel.h
View file @
42782f3a
/*========================================================================
Copyright (C) 1996-2002 by Jorn Lind-Nielsen
All rights reserved
Copyright (C) 1996-2002 by Jorn Lind-Nielsen
All rights reserved
Permission is hereby granted, without written agreement and without
license or royalty fees, to use, reproduce, prepare derivative
...
...
@@ -28,7 +28,7 @@
========================================================================*/
/*************************************************************************
$Header: /Volumes/CVS/repository/spot/spot/buddy/src/kernel.h,v 1.
3
2003/05/
05 14:07:28
aduret Exp $
$Header: /Volumes/CVS/repository/spot/spot/buddy/src/kernel.h,v 1.
4
2003/05/
20 08:22:36
aduret Exp $
FILE: kernel.h
DESCR: Kernel specific definitions for BDD package
AUTH: Jorn Lind
...
...
@@ -95,7 +95,7 @@ typedef struct s_BddNode /* Node table entry */
#ifdef CPLUSPLUS
extern
"C"
{
#endif
extern
int
bddrunning
;
/* Flag - package initialized */
extern
int
bdderrorcond
;
/* Some error condition was met */
extern
int
bddnodesize
;
/* Number of allocated nodes */
...
...
@@ -111,11 +111,11 @@ extern jmp_buf bddexception;
extern
int
bddreorderdisabled
;
extern
int
bddresized
;
extern
bddCacheStat
bddcachestats
;
#ifdef CPLUSPLUS
}
#endif
/*=== KERNEL DEFINITIONS ===============================================*/
...
...
@@ -190,7 +190,7 @@ extern bddCacheStat bddcachestats;
#ifdef CPLUSPLUS
extern
"C"
{
#endif
extern
int
bdd_error
(
int
);
extern
int
bdd_makenode
(
unsigned
int
,
int
,
int
);
extern
int
bdd_noderesize
(
int
);
...
...
buddy/src/pairs.c
View file @
42782f3a
...
...
@@ -28,7 +28,7 @@
========================================================================*/
/*************************************************************************
$Header: /Volumes/CVS/repository/spot/spot/buddy/src/pairs.c,v 1.
3
2003/05/
19 15:58:44
aduret Exp $
$Header: /Volumes/CVS/repository/spot/spot/buddy/src/pairs.c,v 1.
4
2003/05/
20 08:22:36
aduret Exp $
FILE: pairs.c
DESCR: Pair management for BDD package.
AUTH: Jorn Lind
...
...
@@ -170,7 +170,7 @@ bddPair *bdd_newpair(void)
p
=
bdd_pairalloc
();
if
(
p
==
NULL
)
return
NULL
;
for
(
n
=
0
;
n
<
bddvarnum
;
n
++
)
p
->
result
[
n
]
=
bdd_ithvar
(
bddlevel2var
[
n
]);
...
...
@@ -201,7 +201,7 @@ bddPair *bdd_copypair(bddPair *from)
p
=
bdd_pairalloc
();
if
(
p
==
NULL
)
return
NULL
;
for
(
n
=
0
;
n
<
bddvarnum
;
n
++
)
p
->
result
[
n
]
=
from
->
result
[
n
];
...
...
@@ -219,7 +219,7 @@ EXTRA {* bdd\_setbddpair *}
SECTION {* kernel *}
SHORT {* set one variable pair *}
PROTO {* int bdd_setpair(bddPair *pair, int oldvar, int newvar)
int bdd_setbddpair(bddPair *pair,
BDD
oldvar, BDD newvar) *}
int bdd_setbddpair(bddPair *pair,
int
oldvar, BDD newvar) *}
DESCR {* Adds the pair {\tt (oldvar,newvar)} to the table of pairs
{\tt pair}. This results in {\tt oldvar} being substituted
with {\tt newvar} in a call to {\tt bdd\_replace}. In the first
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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