2005-07-29 08:01:00 -07:00
|
|
|
/**CFile****************************************************************
|
|
|
|
|
|
|
|
|
|
FileName [vec.h]
|
|
|
|
|
|
|
|
|
|
SystemName [ABC: Logic synthesis and verification system.]
|
|
|
|
|
|
|
|
|
|
PackageName [Resizable arrays.]
|
|
|
|
|
|
|
|
|
|
Synopsis [External declarations.]
|
|
|
|
|
|
|
|
|
|
Author [Alan Mishchenko]
|
|
|
|
|
|
|
|
|
|
Affiliation [UC Berkeley]
|
|
|
|
|
|
|
|
|
|
Date [Ver. 1.0. Started - June 20, 2005.]
|
|
|
|
|
|
|
|
|
|
Revision [$Id: vec.h,v 1.00 2005/06/20 00:00:00 alanmi Exp $]
|
|
|
|
|
|
|
|
|
|
***********************************************************************/
|
|
|
|
|
|
2012-01-21 04:30:10 -08:00
|
|
|
#ifndef ABC__misc__vec__vec_h
|
|
|
|
|
#define ABC__misc__vec__vec_h
|
2005-07-29 08:01:00 -07:00
|
|
|
|
2010-11-01 01:35:04 -07:00
|
|
|
|
2005-07-29 08:01:00 -07:00
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
|
/// INCLUDES ///
|
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
2012-07-07 20:14:12 -07:00
|
|
|
#include "misc/util/abc_global.h"
|
2010-11-01 01:35:04 -07:00
|
|
|
|
2005-07-29 08:01:00 -07:00
|
|
|
#include "vecInt.h"
|
2008-01-30 20:01:00 -08:00
|
|
|
#include "vecFlt.h"
|
2005-07-29 08:01:00 -07:00
|
|
|
#include "vecStr.h"
|
2005-08-17 08:01:00 -07:00
|
|
|
#include "vecPtr.h"
|
|
|
|
|
#include "vecVec.h"
|
2008-01-30 20:01:00 -08:00
|
|
|
#include "vecAtt.h"
|
2010-11-01 01:35:04 -07:00
|
|
|
#include "vecWrd.h"
|
2012-01-13 19:31:58 -08:00
|
|
|
#include "vecBit.h"
|
2009-02-15 08:01:00 -08:00
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
|
/// MACRO DEFINITIONS ///
|
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
2005-07-29 08:01:00 -07:00
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
|
/// PARAMETERS ///
|
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
2010-11-01 01:35:04 -07:00
|
|
|
|
|
|
|
|
|
|
|
|
|
ABC_NAMESPACE_HEADER_START
|
|
|
|
|
|
2009-02-15 08:01:00 -08:00
|
|
|
|
2005-07-29 08:01:00 -07:00
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
|
/// BASIC TYPES ///
|
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
2008-01-30 08:01:00 -08:00
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
|
/// FUNCTION DECLARATIONS ///
|
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
2006-03-03 08:01:00 -08:00
|
|
|
|
2010-11-01 01:35:04 -07:00
|
|
|
|
|
|
|
|
|
|
|
|
|
ABC_NAMESPACE_HEADER_END
|
|
|
|
|
|
|
|
|
|
|
2008-01-30 20:01:00 -08:00
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
2005-07-29 08:01:00 -07:00
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
|
/// END OF FILE ///
|
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|