#include <stdio.h>#include <stdlib.h>#include <string.h>#include <assert.h>#include "misc/vec/vec.h"#include "misc/util/utilTruth.h"
Go to the source code of this file.
Macros | |
| #define | ABC_ISOP_MAX_VAR 16 |
| DECLARATIONS ///. | |
| #define | ABC_ISOP_MAX_WORD (ABC_ISOP_MAX_VAR > 6 ? (1 << (ABC_ISOP_MAX_VAR-6)) : 1) |
| #define | ABC_ISOP_MAX_CUBE 0xFFFF |
Typedefs | |
| typedef word | FUNC_ISOP(word *, word *, word *, word, int *) |
Functions | |
| word | Abc_IsopCheck (word *pOn, word *pOnDc, word *pRes, int nVars, word CostLim, int *pCover) |
| word | Abc_EsopCheck (word *pOn, int nVars, word CostLim, int *pCover) |
| word | Abc_Isop6Cover (word uOn, word uOnDc, word *pRes, int nVars, word CostLim, int *pCover) |
| word | Abc_Isop7Cover (word *pOn, word *pOnDc, word *pRes, word CostLim, int *pCover) |
| word | Abc_Isop8Cover (word *pOn, word *pOnDc, word *pRes, word CostLim, int *pCover) |
| word | Abc_Isop9Cover (word *pOn, word *pOnDc, word *pRes, word CostLim, int *pCover) |
| word | Abc_Isop10Cover (word *pOn, word *pOnDc, word *pRes, word CostLim, int *pCover) |
| word | Abc_Isop11Cover (word *pOn, word *pOnDc, word *pRes, word CostLim, int *pCover) |
| word | Abc_Isop12Cover (word *pOn, word *pOnDc, word *pRes, word CostLim, int *pCover) |
| word | Abc_Isop13Cover (word *pOn, word *pOnDc, word *pRes, word CostLim, int *pCover) |
| word | Abc_Isop14Cover (word *pOn, word *pOnDc, word *pRes, word CostLim, int *pCover) |
| word | Abc_Isop15Cover (word *pOn, word *pOnDc, word *pRes, word CostLim, int *pCover) |
| word | Abc_Isop16Cover (word *pOn, word *pOnDc, word *pRes, word CostLim, int *pCover) |
| void | Abc_IsopBuildTruth (Vec_Int_t *vCover, int nVars, word *pRes, int fXor, int fCompl) |
| int | Abc_Isop (word *pFunc, int nVars, int nCubeLim, Vec_Int_t *vCover, int fTryBoth) |
| int | Abc_IsopCnf (word *pFunc, int nVars, int nCubeLim, int *pCover) |
| int | Abc_IsopCountLits (Vec_Int_t *vCover, int nVars) |
| void | Abc_IsopPrintCover (Vec_Int_t *vCover, int nVars, int fCompl) |
| void | Abc_IsopPrint (word *t, int nVars, Vec_Int_t *vCover, int fTryBoth) |
| word | Abc_Esop6Cover (word t, int nVars, word CostLim, int *pCover) |
| word | Abc_EsopCover (word *pOn, int nVars, word CostLim, int *pCover) |
| word | Abc_IsopNew (word *pOn, word *pOnDc, word *pRes, int nVars, word CostLim, int *pCover) |
| void | Abc_IsopTestNew () |
| int | Abc_IsopTest (word *pFunc, int nVars, Vec_Int_t *vCover) |
| #define ABC_ISOP_MAX_CUBE 0xFFFF |
Definition at line 37 of file utilIsop.c.
| #define ABC_ISOP_MAX_VAR 16 |
DECLARATIONS ///.
CFile****************************************************************
FileName [utilIsop.c]
SystemName [ABC: Logic synthesis and verification system.]
PackageName [ISOP computation.]
Synopsis [ISOP computation.]
Author [Alan Mishchenko]
Affiliation [UC Berkeley]
Date [Ver. 1.0. Started - October 4, 2014.]
Revision [
]
Definition at line 35 of file utilIsop.c.
| #define ABC_ISOP_MAX_WORD (ABC_ISOP_MAX_VAR > 6 ? (1 << (ABC_ISOP_MAX_VAR-6)) : 1) |
Definition at line 36 of file utilIsop.c.
Definition at line 39 of file utilIsop.c.
Definition at line 713 of file utilIsop.c.


Definition at line 766 of file utilIsop.c.


Definition at line 746 of file utilIsop.c.


Function*************************************************************
Synopsis [This procedure assumes that function has exact support.]
Description []
SideEffects []
SeeAlso []
Definition at line 511 of file utilIsop.c.


Definition at line 232 of file utilIsop.c.

Definition at line 260 of file utilIsop.c.

Definition at line 288 of file utilIsop.c.

Definition at line 316 of file utilIsop.c.

Definition at line 344 of file utilIsop.c.

Definition at line 372 of file utilIsop.c.

Definition at line 400 of file utilIsop.c.

Definition at line 108 of file utilIsop.c.


Definition at line 149 of file utilIsop.c.

Definition at line 175 of file utilIsop.c.

Definition at line 204 of file utilIsop.c.

Definition at line 467 of file utilIsop.c.
|
extern |
Definition at line 428 of file utilIsop.c.


| int Abc_IsopCnf | ( | word * | pFunc, |
| int | nVars, | ||
| int | nCubeLim, | ||
| int * | pCover ) |
Function*************************************************************
Synopsis [Compute CNF assuming it does not exceed the limit.]
Description [Please note that pCover should have at least 32 extra entries!]
SideEffects []
SeeAlso []
Definition at line 562 of file utilIsop.c.

| int Abc_IsopCountLits | ( | Vec_Int_t * | vCover, |
| int | nVars ) |
Function*************************************************************
Synopsis []
Description []
SideEffects []
SeeAlso []
Definition at line 607 of file utilIsop.c.

Definition at line 877 of file utilIsop.c.
Definition at line 651 of file utilIsop.c.

| void Abc_IsopPrintCover | ( | Vec_Int_t * | vCover, |
| int | nVars, | ||
| int | fCompl ) |
Definition at line 627 of file utilIsop.c.

Function*************************************************************
Synopsis [Compute CNF assuming it does not exceed the limit.]
Description [Please note that pCover should have at least 32 extra entries!]
SideEffects []
SeeAlso []
Definition at line 1022 of file utilIsop.c.

| void Abc_IsopTestNew | ( | ) |
Definition at line 993 of file utilIsop.c.
