Compounds | |
class | AnalytSolve |
class | Annealer |
class | BBox |
class | BitBoard |
class | ClusterDB |
class | Command_Line |
class | DB |
struct | eqstr |
struct | IntPoint |
struct | less_mag |
struct | ltstr |
class | Net |
class | Nets |
class | Node |
struct | NodePin |
class | Nodes |
class | pin |
class | Pl2SP |
struct | Point |
struct | RowElem |
class | SeqPair |
class | SolveMulti |
struct | sort_slacks |
struct | sortNumConnections |
class | SPeval |
class | SPXRelation |
class | SPYRelation |
Typedefs | |
typedef std::vector< pin >::iterator | itPin |
typedef std::vector< Net >::iterator | itNet |
typedef std::vector< NodePin >::iterator | itNodePin |
typedef std::vector< Node >::iterator | itNode |
Enumerations | |
enum | ORIENT { N, E, S, W, FN, FE, FS, FW } |
enum | PL2SP_ALGO { NAIVE_ALGO, TCG_ALGO } |
Functions | |
ostream & | operator<< (ostream &, const ORIENT &) |
void | eatblank (ifstream &i) |
void | skiptoeol (ifstream &i) |
void | eathash (ifstream &i) |
bool | needCaseChar (ifstream &i, char character) |
ORIENT | toOrient (char *orient) |
char * | toChar (ORIENT orient) |
|
|
|
|
|
|
Definition at line 50 of file PlToSP.h. Referenced by parquetfp::Annealer::takeSPfromDB().
00050 {NAIVE_ALGO, TCG_ALGO}; |
|
|
|
|
|
Referenced by MixedBlockInfoType::ParseBlocks(), HardBlockInfoType::ParseBlocks(), parquetfp::Nodes::parseNodes(), and parquetfp::Nodes::parsePl(). |
|
Definition at line 43 of file FPcommon.cxx. References E, FE, FN, FS, FW, N, S, and W.
00044 { 00045 if(orient == N) 00046 out<<"N"; 00047 else if(orient == E) 00048 out<<"E"; 00049 else if(orient == S) 00050 out<<"S"; 00051 else if(orient == W) 00052 out<<"W"; 00053 else if(orient == FN) 00054 out<<"FN"; 00055 else if(orient == FE) 00056 out<<"FE"; 00057 else if(orient == FS) 00058 out<<"FS"; 00059 else if(orient == FW) 00060 out<<"FW"; 00061 else 00062 cout<<"ERROR in outputting orientations"<<endl; 00063 return out; 00064 } |
|
|
|
Referenced by parquetfp::Nodes::saveCapoPl(), and parquetfp::Nodes::savePl(). |
|
Referenced by parquetfp::Nodes::parsePl(), and parquetfp::DB::setOrient(). |