SimpleCUDD versioning

This commit is contained in:
Theofrastos Mantadelis 2010-10-06 13:24:25 +02:00
parent d1839b730c
commit 1342d2dab2
7 changed files with 24 additions and 3 deletions

View File

@ -7,6 +7,8 @@
* * * *
* Author: Theofrastos Mantadelis * * Author: Theofrastos Mantadelis *
* File: general.c * * File: general.c *
* $Date:: 2010-10-06 13:20:59 +0200 (Wed, 06 Oct 2010) $ *
* $Revision:: 4880 $ *
* * * *
******************************************************************************** ********************************************************************************
* * * *

View File

@ -7,6 +7,8 @@
* * * *
* Author: Theofrastos Mantadelis * * Author: Theofrastos Mantadelis *
* File: general.h * * File: general.h *
* $Date:: 2010-10-06 13:20:59 +0200 (Wed, 06 Oct 2010) $ *
* $Revision:: 4880 $ *
* * * *
******************************************************************************** ********************************************************************************
* * * *

View File

@ -7,6 +7,8 @@
* * * *
* Author: Theofrastos Mantadelis, Angelika Kimmig, Bernd Gutmann * * Author: Theofrastos Mantadelis, Angelika Kimmig, Bernd Gutmann *
* File: problogbdd.c * * File: problogbdd.c *
* $Date:: 2010-10-06 13:22:55 +0200 (Wed, 06 Oct 2010) $ *
* $Revision:: 4881 $ *
* * * *
******************************************************************************** ********************************************************************************
* * * *

View File

@ -7,6 +7,8 @@
* * * *
* Author: Bernd Gutmann * * Author: Bernd Gutmann *
* File: problogmath.c * * File: problogmath.c *
* $Date:: 2010-10-06 13:20:59 +0200 (Wed, 06 Oct 2010) $ *
* $Revision:: 4880 $ *
* * * *
******************************************************************************** ********************************************************************************
* * * *

View File

@ -7,8 +7,8 @@
* * * *
* Author: Bernd Gutmann * * Author: Bernd Gutmann *
* File: problogmath.h * * File: problogmath.h *
* $Date:: 2010-02-18 18:04:54 +0100 (Thu, 18 Feb 2010) $ * * $Date:: 2010-10-06 13:20:59 +0200 (Wed, 06 Oct 2010) $ *
* $Revision:: 3623 $ * * $Revision:: 4880 $ *
* * * *
******************************************************************************** ********************************************************************************
* * * *

View File

@ -7,6 +7,8 @@
* * * *
* Author: Theofrastos Mantadelis * * Author: Theofrastos Mantadelis *
* File: simplecudd.c * * File: simplecudd.c *
* $Date:: 2010-10-06 13:20:59 +0200 (Wed, 06 Oct 2010) $ *
* $Revision:: 4880 $ *
* * * *
******************************************************************************** ********************************************************************************
* * * *
@ -1710,7 +1712,16 @@ void onlinetraverse(DdManager *manager, namedvars varmap, hisqueue *HisQueue, Dd
switch(inputline[1]) { switch(inputline[1]) {
case '?': case '?':
printf("Available instructions:\n\t@c : current node\n\t@n,[BFS, DFS] : expand and go to next node\n\t@t,[BFS, DFS] : throw and go to next node\n"); printf("Available instructions:\n\t@c : current node\n\t@n,[BFS, DFS] : expand and go to next node\n\t@t,[BFS, DFS] : throw and go to next node\n");
printf("\t@h : high node of current\n\t@l : low node of current\n\t@v,[variable] : variable values\n\t@e terminates\n"); printf("\t@h : high node of current\n\t@l : low node of current\n\t@v,[variable] : variable values\n\t@r restart traverse from parent node\n\t@e terminates\n");
break;
case 'r':
curnode = bdd;
iQsize = 0;
iRoot = 1;
free(Q);
Q = (DdNode **) malloc(sizeof(DdNode *) * iQsize);
Q2 = NULL;
ReInitHistory(his, varmap.varcnt);
break; break;
case 'c': case 'c':
if (iRoot) { if (iRoot) {

View File

@ -7,6 +7,8 @@
* * * *
* Author: Theofrastos Mantadelis * * Author: Theofrastos Mantadelis *
* File: simplecudd.h * * File: simplecudd.h *
* $Date:: 2010-10-06 13:20:59 +0200 (Wed, 06 Oct 2010) $ *
* $Revision:: 4880 $ *
* * * *
******************************************************************************** ********************************************************************************
* * * *