cudd  3.0.0
The University of Colorado Decision Diagram Package
Macros | Functions
cuddZddSymm.c File Reference

Functions for symmetry-based ZDD variable reordering. More...

#include "util.h"
#include "cuddInt.h"
Include dependency graph for cuddZddSymm.c:

Macros

#define ZDD_MV_OOM   (Move *)1
 

Functions

void Cudd_zddSymmProfile (DdManager *table, int lower, int upper)
 Prints statistics on symmetric ZDD variables. More...
 
int cuddZddSymmCheck (DdManager *table, int x, int y)
 Checks for symmetry of x and y. More...
 
int cuddZddSymmSifting (DdManager *table, int lower, int upper)
 Symmetric sifting algorithm for ZDDs. More...
 
int cuddZddSymmSiftingConv (DdManager *table, int lower, int upper)
 Symmetric sifting to convergence algorithm for ZDDs. More...
 
static int cuddZddSymmSiftingAux (DdManager *table, int x, int x_low, int x_high)
 Given x_low <= x <= x_high moves x up and down between the boundaries. More...
 
static int cuddZddSymmSiftingConvAux (DdManager *table, int x, int x_low, int x_high)
 Given x_low <= x <= x_high moves x up and down between the boundaries. More...
 
static MovecuddZddSymmSifting_up (DdManager *table, int x, int x_low, int initial_size)
 Moves x up until either it reaches the bound (x_low) or the size of the ZDD heap increases too much. More...
 
static MovecuddZddSymmSifting_down (DdManager *table, int x, int x_high, int initial_size)
 Moves x down until either it reaches the bound (x_high) or the size of the ZDD heap increases too much. More...
 
static int cuddZddSymmSiftingBackward (DdManager *table, Move *moves, int size)
 Given a set of moves, returns the ZDD heap to the position giving the minimum size. More...
 
static int zdd_group_move (DdManager *table, int x, int y, Move **moves)
 Swaps two groups. More...
 
static int zdd_group_move_backward (DdManager *table, int x, int y)
 Undoes the swap of two groups. More...
 
static void cuddZddSymmSummary (DdManager *table, int lower, int upper, int *symvars, int *symgroups)
 Counts numbers of symmetric variables and symmetry groups. More...
 

Detailed Description

Functions for symmetry-based ZDD variable reordering.

See also
cuddSymmetry.c
Author
Hyong-Kyoon Shin, In-Ho Moon

Function Documentation

◆ Cudd_zddSymmProfile()

void Cudd_zddSymmProfile ( DdManager table,
int  lower,
int  upper 
)

Prints statistics on symmetric ZDD variables.

Side effects None

◆ cuddZddSymmCheck()

int cuddZddSymmCheck ( DdManager table,
int  x,
int  y 
)

Checks for symmetry of x and y.

Ignores projection functions, unless they are isolated.

Returns
1 in case of symmetry; 0 otherwise.
Side effects None

◆ cuddZddSymmSifting()

int cuddZddSymmSifting ( DdManager table,
int  lower,
int  upper 
)

Symmetric sifting algorithm for ZDDs.

Assumes that no dead nodes are present.

  1. Order all the variables according to the number of entries in each unique subtable.
  2. Sift the variable up and down, remembering each time the total size of the ZDD heap and grouping variables that are symmetric.
  3. Select the best permutation.
  4. Repeat 3 and 4 for all variables.
Returns
1 plus the number of symmetric variables if successful; 0 otherwise.
Side effects None
See also
cuddZddSymmSiftingConv

◆ cuddZddSymmSifting_down()

static Move* cuddZddSymmSifting_down ( DdManager table,
int  x,
int  x_high,
int  initial_size 
)
static

Moves x down until either it reaches the bound (x_high) or the size of the ZDD heap increases too much.

Assumes that x is the bottom of a symmetry group. Checks x for symmetry to the adjacent variables. If symmetry is found, the symmetry group of x is merged with the symmetry group of the other variable.

Returns
the set of moves in case of success; ZDD_MV_OOM if memory is full.
Side effects None

◆ cuddZddSymmSifting_up()

static Move* cuddZddSymmSifting_up ( DdManager table,
int  x,
int  x_low,
int  initial_size 
)
static

Moves x up until either it reaches the bound (x_low) or the size of the ZDD heap increases too much.

Assumes that x is the top of a symmetry group. Checks x for symmetry to the adjacent variables. If symmetry is found, the symmetry group of x is merged with the symmetry group of the other variable.

Returns
the set of moves in case of success; ZDD_MV_OOM if memory is full.
Side effects None

◆ cuddZddSymmSiftingAux()

static int cuddZddSymmSiftingAux ( DdManager table,
int  x,
int  x_low,
int  x_high 
)
static

Given x_low <= x <= x_high moves x up and down between the boundaries.

Finds the best position and does the required changes. Assumes that x is not part of a symmetry group.

Returns
1 if successful; 0 otherwise.
Side effects None

◆ cuddZddSymmSiftingBackward()

static int cuddZddSymmSiftingBackward ( DdManager table,
Move moves,
int  size 
)
static

Given a set of moves, returns the ZDD heap to the position giving the minimum size.

In case of ties, returns to the closest position giving the minimum size.

Returns
1 in case of success; 0 otherwise.
Side effects None

◆ cuddZddSymmSiftingConv()

int cuddZddSymmSiftingConv ( DdManager table,
int  lower,
int  upper 
)

Symmetric sifting to convergence algorithm for ZDDs.

Assumes that no dead nodes are present.

  1. Order all the variables according to the number of entries in each unique subtable.
  2. Sift the variable up and down, remembering each time the total size of the ZDD heap and grouping variables that are symmetric.
  3. Select the best permutation.
  4. Repeat 3 and 4 for all variables.
  5. Repeat 1-4 until no further improvement.
Returns
1 plus the number of symmetric variables if successful; 0 otherwise.
Side effects None
See also
cuddZddSymmSifting

◆ cuddZddSymmSiftingConvAux()

static int cuddZddSymmSiftingConvAux ( DdManager table,
int  x,
int  x_low,
int  x_high 
)
static

Given x_low <= x <= x_high moves x up and down between the boundaries.

Finds the best position and does the required changes. Assumes that x is either an isolated variable, or it is the bottom of a symmetry group. All symmetries may not have been found, because of exceeded growth limit.

Returns
1 if successful; 0 otherwise.
Side effects None

◆ cuddZddSymmSummary()

static void cuddZddSymmSummary ( DdManager table,
int  lower,
int  upper,
int *  symvars,
int *  symgroups 
)
static

Counts numbers of symmetric variables and symmetry groups.

Side effects None

◆ zdd_group_move()

static int zdd_group_move ( DdManager table,
int  x,
int  y,
Move **  moves 
)
static

Swaps two groups.

x is assumed to be the bottom variable of the first group. y is assumed to be the top variable of the second group. Updates the list of moves.

Returns
the number of keys in the table if successful; 0 otherwise.
Side effects None

◆ zdd_group_move_backward()

static int zdd_group_move_backward ( DdManager table,
int  x,
int  y 
)
static

Undoes the swap of two groups.

x is assumed to be the bottom variable of the first group. y is assumed to be the top variable of the second group.

Returns
1 if successful; 0 otherwise.
Side effects None