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
68baf038
Commit
68baf038
authored
Dec 06, 2011
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Another attempt to make CUDD platform- and runtime-independent.
parent
780321cf
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
6 deletions
+6
-6
src/bdd/cudd/cuddAndAbs.c
+1
-1
src/bdd/cudd/cuddBddIte.c
+1
-1
src/bdd/cudd/cuddBridge.c
+2
-2
src/bdd/cudd/cuddCompose.c
+1
-1
src/bdd/cudd/cuddSymmetry.c
+1
-1
No files found.
src/bdd/cudd/cuddAndAbs.c
View file @
68baf038
...
...
@@ -259,7 +259,7 @@ cuddBddAndAbstractRecur(
}
}
if
(
manager
->
TimeStop
&&
manager
->
TimeStop
<
clock
(
)
)
if
(
manager
->
TimeStop
&&
manager
->
TimeStop
<
time
(
NULL
)
)
return
NULL
;
if
(
topf
==
top
)
{
...
...
src/bdd/cudd/cuddBddIte.c
View file @
68baf038
...
...
@@ -926,7 +926,7 @@ cuddBddAndRecur(
if
(
r
!=
NULL
)
return
(
r
);
}
if
(
manager
->
TimeStop
&&
manager
->
TimeStop
<
clock
(
)
)
if
(
manager
->
TimeStop
&&
manager
->
TimeStop
<
time
(
NULL
)
)
return
NULL
;
/* Here we can skip the use of cuddI, because the operands are known
...
...
src/bdd/cudd/cuddBridge.c
View file @
68baf038
...
...
@@ -976,9 +976,9 @@ cuddBddTransferRecur(
if
(
st_lookup
(
table
,
(
const
char
*
)
f
,
(
char
**
)
&
res
))
return
(
Cudd_NotCond
(
res
,
comple
));
if
(
ddS
->
TimeStop
&&
ddS
->
TimeStop
<
clock
(
)
)
if
(
ddS
->
TimeStop
&&
ddS
->
TimeStop
<
time
(
NULL
)
)
return
NULL
;
if
(
ddD
->
TimeStop
&&
ddD
->
TimeStop
<
clock
(
)
)
if
(
ddD
->
TimeStop
&&
ddD
->
TimeStop
<
time
(
NULL
)
)
return
NULL
;
/* Recursive step. */
...
...
src/bdd/cudd/cuddCompose.c
View file @
68baf038
...
...
@@ -1251,7 +1251,7 @@ cuddBddVarMapRecur(
return
(
Cudd_NotCond
(
res
,
F
!=
f
));
}
if
(
manager
->
TimeStop
&&
manager
->
TimeStop
<
clock
(
)
)
if
(
manager
->
TimeStop
&&
manager
->
TimeStop
<
time
(
NULL
)
)
return
NULL
;
/* Split and recur on children of this node. */
...
...
src/bdd/cudd/cuddSymmetry.c
View file @
68baf038
...
...
@@ -367,7 +367,7 @@ cuddSymmSifting(
if
(
ddTotalNumberSwapping
>=
table
->
siftMaxSwap
)
break
;
// enable timeout during variable reodering - alanmi 2/13/11
if
(
table
->
TimeStop
&&
table
->
TimeStop
<
clock
(
)
)
if
(
table
->
TimeStop
&&
table
->
TimeStop
<
time
(
NULL
)
)
break
;
x
=
table
->
perm
[
var
[
i
]];
#ifdef DD_STATS
...
...
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