├── .clang-format ├── .dockerignore ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── Dockerfile ├── Jenkinsfile ├── LICENSE ├── README.md ├── doc └── OpenDB-AddFieldsInDbObjects.xlsx ├── include └── opendb │ ├── ISdb.h │ ├── IZdcr.h │ ├── ZComponents.h │ ├── ZException.h │ ├── ZFactory.h │ ├── ZInterface.h │ ├── ZNamespace.h │ ├── ZObject.h │ ├── ZSession.h │ ├── arnoldi1.h │ ├── array1.h │ ├── array2d.h │ ├── atypes.h │ ├── block.h │ ├── box.h │ ├── conn.h │ ├── darr.h │ ├── db.h │ ├── dbBlockCallBackObj.h │ ├── dbBlockSet.h │ ├── dbCCSegSet.h │ ├── dbDiff.h │ ├── dbExtControl.h │ ├── dbId.h │ ├── dbIterator.h │ ├── dbLogger.h │ ├── dbMap.h │ ├── dbMap.hpp │ ├── dbMatrix.h │ ├── dbNetSet.h │ ├── dbObject.h │ ├── dbPrintControl.h │ ├── dbRtEdge.h │ ├── dbRtNode.h │ ├── dbRtTree.h │ ├── dbSearch.h │ ├── dbSet.h │ ├── dbShape.h │ ├── dbStream.h │ ├── dbTransform.h │ ├── dbTypes.h │ ├── dbUtil.h │ ├── dbViaParams.h │ ├── dbWireCodec.h │ ├── dbWireGraph.h │ ├── dbtable1.h │ ├── dbtable2.h │ ├── def.h │ ├── defin.h │ ├── defout.h │ ├── geom.h │ ├── graph.h │ ├── gseq.h │ ├── hash.h │ ├── inst.h │ ├── itype.h │ ├── layer.h │ ├── layout.h │ ├── lefin.h │ ├── lefout.h │ ├── master.h │ ├── misc_global.h │ ├── name.h │ ├── net.h │ ├── odb.h │ ├── odbAllocator.h │ ├── odbDList.h │ ├── parse.h │ ├── poly_decomp.h │ ├── qtype.h │ ├── rcmodel.h │ ├── tech.h │ ├── util.h │ ├── version.hh.in │ ├── via.h │ ├── wOrder.h │ └── wire.h ├── jenkins ├── build.sh ├── install.sh ├── test-cpp.sh ├── test-py.sh ├── test-tcl.sh └── test-unittests.sh ├── src ├── codeGenerator │ ├── README.md │ ├── gen.py │ ├── helper.py │ ├── impl │ │ ├── CMakeLists.txt │ │ ├── db.h │ │ ├── dbObject.cpp │ │ ├── dbObject.h │ │ ├── impl.cpp │ │ ├── impl.h │ │ ├── itr.cpp │ │ └── itr.h │ ├── parser.py │ └── schema.json ├── db │ ├── CMakeLists.txt │ ├── dbArrayTable.h │ ├── dbArrayTable.hpp │ ├── dbAttrTable.h │ ├── dbBPin.cpp │ ├── dbBPin.h │ ├── dbBPinItr.cpp │ ├── dbBPinItr.h │ ├── dbBTerm.cpp │ ├── dbBTerm.h │ ├── dbBTermItr.cpp │ ├── dbBTermItr.h │ ├── dbBlock.cpp │ ├── dbBlock.h │ ├── dbBlockCallBackObj.cpp │ ├── dbBlockItr.cpp │ ├── dbBlockItr.h │ ├── dbBlockage.cpp │ ├── dbBlockage.h │ ├── dbBox.cpp │ ├── dbBox.h │ ├── dbBoxItr.cpp │ ├── dbBoxItr.h │ ├── dbCCSeg.cpp │ ├── dbCCSeg.h │ ├── dbCCSegItr.cpp │ ├── dbCCSegItr.h │ ├── dbCapNode.cpp │ ├── dbCapNode.h │ ├── dbCapNodeItr.cpp │ ├── dbCapNodeItr.h │ ├── dbChip.cpp │ ├── dbChip.h │ ├── dbCommon.h │ ├── dbCore.h │ ├── dbDatabase.cpp │ ├── dbDatabase.h │ ├── dbDiff.cpp │ ├── dbDiff.hpp │ ├── dbExtControl.cpp │ ├── dbFill.cpp │ ├── dbFill.h │ ├── dbFlatten.cpp │ ├── dbFlatten.h │ ├── dbGCellGrid.cpp │ ├── dbGCellGrid.h │ ├── dbGroup.cpp │ ├── dbGroup.h │ ├── dbGroupGroundNetItr.cpp │ ├── dbGroupGroundNetItr.h │ ├── dbGroupInstItr.cpp │ ├── dbGroupInstItr.h │ ├── dbGroupItr.cpp │ ├── dbGroupItr.h │ ├── dbGroupModInstItr.cpp │ ├── dbGroupModInstItr.h │ ├── dbGroupPowerNetItr.cpp │ ├── dbGroupPowerNetItr.h │ ├── dbHashTable.h │ ├── dbHashTable.hpp │ ├── dbHier.cpp │ ├── dbHier.h │ ├── dbHierInstShapeItr.cpp │ ├── dbITerm.cpp │ ├── dbITerm.h │ ├── dbITermItr.cpp │ ├── dbITermItr.h │ ├── dbITermShapeItr.cpp │ ├── dbInst.cpp │ ├── dbInst.h │ ├── dbInstHdr.cpp │ ├── dbInstHdr.h │ ├── dbInstShapeItr.cpp │ ├── dbIntHashTable.h │ ├── dbIntHashTable.hpp │ ├── dbJournal.cpp │ ├── dbJournal.h │ ├── dbJournalLog.cpp │ ├── dbJournalLog.h │ ├── dbLib.cpp │ ├── dbLib.h │ ├── dbLogger.cpp │ ├── dbMPin.cpp │ ├── dbMPin.h │ ├── dbMPinItr.cpp │ ├── dbMPinItr.h │ ├── dbMTerm.cpp │ ├── dbMTerm.h │ ├── dbMaster.cpp │ ├── dbMaster.h │ ├── dbModInst.cpp │ ├── dbModInst.h │ ├── dbModule.cpp │ ├── dbModule.h │ ├── dbModuleInstItr.cpp │ ├── dbModuleInstItr.h │ ├── dbModuleModInstItr.cpp │ ├── dbModuleModInstItr.h │ ├── dbName.h │ ├── dbNameCache.cpp │ ├── dbNameCache.h │ ├── dbNet.cpp │ ├── dbNet.h │ ├── dbNullIterator.cpp │ ├── dbNullIterator.h │ ├── dbObject.cpp │ ├── dbObstruction.cpp │ ├── dbObstruction.h │ ├── dbPagedVector.h │ ├── dbPrintControl.cpp │ ├── dbProperty.cpp │ ├── dbProperty.h │ ├── dbPropertyItr.cpp │ ├── dbPropertyItr.h │ ├── dbRSeg.cpp │ ├── dbRSeg.h │ ├── dbRSegItr.cpp │ ├── dbRSegItr.h │ ├── dbRegion.cpp │ ├── dbRegion.h │ ├── dbRegionInstItr.cpp │ ├── dbRegionInstItr.h │ ├── dbRegionItr.cpp │ ├── dbRegionItr.h │ ├── dbRow.cpp │ ├── dbRow.h │ ├── dbRtTree.cpp │ ├── dbSBox.cpp │ ├── dbSBox.h │ ├── dbSBoxItr.cpp │ ├── dbSBoxItr.h │ ├── dbSWire.cpp │ ├── dbSWire.h │ ├── dbSWireItr.cpp │ ├── dbSWireItr.h │ ├── dbSearch.cpp │ ├── dbShape.cpp │ ├── dbSite.cpp │ ├── dbSite.h │ ├── dbStream.cpp │ ├── dbTable.h │ ├── dbTable.hpp │ ├── dbTarget.cpp │ ├── dbTarget.h │ ├── dbTargetItr.cpp │ ├── dbTargetItr.h │ ├── dbTech.cpp │ ├── dbTech.h │ ├── dbTechLayer.cpp │ ├── dbTechLayer.h │ ├── dbTechLayerAntennaRule.cpp │ ├── dbTechLayerAntennaRule.h │ ├── dbTechLayerItr.cpp │ ├── dbTechLayerItr.h │ ├── dbTechLayerRule.cpp │ ├── dbTechLayerRule.h │ ├── dbTechLayerSpacingEolRule.cpp │ ├── dbTechLayerSpacingEolRule.h │ ├── dbTechLayerSpacingRule.cpp │ ├── dbTechLayerSpacingRule.h │ ├── dbTechMinCutOrAreaRule.cpp │ ├── dbTechMinCutOrAreaRule.h │ ├── dbTechNonDefaultRule.cpp │ ├── dbTechNonDefaultRule.h │ ├── dbTechSameNetRule.cpp │ ├── dbTechSameNetRule.h │ ├── dbTechVia.cpp │ ├── dbTechVia.h │ ├── dbTechViaGenerateRule.cpp │ ├── dbTechViaGenerateRule.h │ ├── dbTechViaLayerRule.cpp │ ├── dbTechViaLayerRule.h │ ├── dbTechViaRule.cpp │ ├── dbTechViaRule.h │ ├── dbTrackGrid.cpp │ ├── dbTrackGrid.h │ ├── dbTransform.cpp │ ├── dbTypes.cpp │ ├── dbUtil.cpp │ ├── dbVector.h │ ├── dbVia.cpp │ ├── dbVia.h │ ├── dbViaParams.cpp │ ├── dbWire.cpp │ ├── dbWire.h │ ├── dbWireCodec.cpp │ ├── dbWireGraph.cpp │ ├── dbWireOpcode.h │ ├── dbWirePathItr.cpp │ ├── dbWireShapeItr.cpp │ ├── examples │ │ ├── create.cpp │ │ ├── dump.cpp │ │ └── print.cpp │ ├── grids.cpp │ ├── gs.cpp │ ├── test │ │ ├── test_transform.cpp │ │ ├── test_wire.cpp │ │ └── wire.gold │ ├── test_wire.cpp │ ├── test_wire2.cpp │ ├── tmg_conn.cpp │ ├── tmg_conn.h │ ├── tmg_conn_g.cpp │ ├── tmg_conn_s.cpp │ ├── tmg_conn_w.cpp │ └── wOrder.cpp ├── def │ ├── CMakeLists.txt │ ├── LICENSE.TXT │ ├── README.md │ ├── TEST │ │ ├── complete.5.8.def │ │ └── complete.5.8.def.au │ ├── cdef │ │ ├── defMsgTable.h │ │ ├── defiAlias.h │ │ ├── defiAssertion.h │ │ ├── defiBlockage.h │ │ ├── defiComponent.h │ │ ├── defiDebug.h │ │ ├── defiDefs.h │ │ ├── defiFPC.h │ │ ├── defiFill.h │ │ ├── defiGroup.h │ │ ├── defiIOTiming.h │ │ ├── defiKRDefs.h │ │ ├── defiMisc.h │ │ ├── defiNet.h │ │ ├── defiNonDefault.h │ │ ├── defiPartition.h │ │ ├── defiPath.h │ │ ├── defiPinCap.h │ │ ├── defiPinProp.h │ │ ├── defiProp.h │ │ ├── defiPropType.h │ │ ├── defiRegion.h │ │ ├── defiRowTrack.h │ │ ├── defiScanchain.h │ │ ├── defiSite.h │ │ ├── defiSlot.h │ │ ├── defiTimingDisable.h │ │ ├── defiTypedefs.h │ │ ├── defiUser.h │ │ ├── defiVia.h │ │ ├── defrReader.h │ │ ├── defwWriter.h │ │ ├── defwWriterCalls.h │ │ ├── xdefiAssertion.cpp │ │ ├── xdefiBlockage.cpp │ │ ├── xdefiComponent.cpp │ │ ├── xdefiDebug.cpp │ │ ├── xdefiFPC.cpp │ │ ├── xdefiFill.cpp │ │ ├── xdefiGroup.cpp │ │ ├── xdefiIOTiming.cpp │ │ ├── xdefiMisc.cpp │ │ ├── xdefiNet.cpp │ │ ├── xdefiNonDefault.cpp │ │ ├── xdefiPartition.cpp │ │ ├── xdefiPath.cpp │ │ ├── xdefiPinCap.cpp │ │ ├── xdefiPinProp.cpp │ │ ├── xdefiProp.cpp │ │ ├── xdefiPropType.cpp │ │ ├── xdefiRegion.cpp │ │ ├── xdefiRowTrack.cpp │ │ ├── xdefiScanchain.cpp │ │ ├── xdefiSite.cpp │ │ ├── xdefiSlot.cpp │ │ ├── xdefiTimingDisable.cpp │ │ ├── xdefiVia.cpp │ │ ├── xdefrReader.cpp │ │ ├── xdefwWriter.cpp │ │ └── xdefwWriterCalls.cpp │ ├── cdefzlib │ │ ├── cdefzlib.c │ │ └── defzlib.h │ ├── def │ │ ├── def.msg │ │ ├── def.y │ │ ├── def_keywords.cpp │ │ ├── def_objs.defs │ │ ├── defiAlias.cpp │ │ ├── defiAlias.hpp │ │ ├── defiAssertion.cpp │ │ ├── defiAssertion.hpp │ │ ├── defiBlockage.cpp │ │ ├── defiBlockage.hpp │ │ ├── defiComponent.cpp │ │ ├── defiComponent.hpp │ │ ├── defiDebug.cpp │ │ ├── defiDebug.hpp │ │ ├── defiDefs.hpp │ │ ├── defiFPC.cpp │ │ ├── defiFPC.hpp │ │ ├── defiFill.cpp │ │ ├── defiFill.hpp │ │ ├── defiGroup.cpp │ │ ├── defiGroup.hpp │ │ ├── defiIOTiming.cpp │ │ ├── defiIOTiming.hpp │ │ ├── defiKRDefs.hpp │ │ ├── defiMisc.cpp │ │ ├── defiMisc.hpp │ │ ├── defiNet.cpp │ │ ├── defiNet.hpp │ │ ├── defiNonDefault.cpp │ │ ├── defiNonDefault.hpp │ │ ├── defiPartition.cpp │ │ ├── defiPartition.hpp │ │ ├── defiPath.cpp │ │ ├── defiPath.hpp │ │ ├── defiPinCap.cpp │ │ ├── defiPinCap.hpp │ │ ├── defiPinProp.cpp │ │ ├── defiPinProp.hpp │ │ ├── defiProp.cpp │ │ ├── defiProp.hpp │ │ ├── defiPropType.cpp │ │ ├── defiPropType.hpp │ │ ├── defiRegion.cpp │ │ ├── defiRegion.hpp │ │ ├── defiRowTrack.cpp │ │ ├── defiRowTrack.hpp │ │ ├── defiScanchain.cpp │ │ ├── defiScanchain.hpp │ │ ├── defiSite.cpp │ │ ├── defiSite.hpp │ │ ├── defiSlot.cpp │ │ ├── defiSlot.hpp │ │ ├── defiTimingDisable.cpp │ │ ├── defiTimingDisable.hpp │ │ ├── defiUser.hpp │ │ ├── defiUtil.cpp │ │ ├── defiUtil.hpp │ │ ├── defiVia.cpp │ │ ├── defiVia.hpp │ │ ├── defrCallBacks.hpp │ │ ├── defrCallbacks.cpp │ │ ├── defrData.cpp │ │ ├── defrData.hpp │ │ ├── defrReader.cpp │ │ ├── defrReader.hpp │ │ ├── defrSettings.cpp │ │ ├── defrSettings.hpp │ │ ├── defwWriter.cpp │ │ ├── defwWriter.hpp │ │ ├── defwWriterCalls.cpp │ │ ├── defwWriterCalls.hpp │ │ └── lex.h │ ├── defdiff │ │ ├── diffDefRW.cpp │ │ ├── diffDefRW.hpp │ │ └── differDef.cpp │ ├── defrw │ │ └── defrw.cpp │ ├── defwrite │ │ ├── defwrite.cpp │ │ └── defwriteCbs.cpp │ ├── defzlib │ │ ├── defzlib.cpp │ │ └── defzlib.hpp │ ├── doc │ │ ├── README.md │ │ ├── defapi.pdf │ │ ├── defapiWN.pdf │ │ └── lefdefref.pdf │ └── lefdefReadme.txt ├── defin │ ├── CMakeLists.txt │ ├── create_box.cpp │ ├── create_box.h │ ├── defin.cpp │ ├── definBase.cpp │ ├── definBase.h │ ├── definBlockage.cpp │ ├── definBlockage.h │ ├── definComponent.cpp │ ├── definComponent.h │ ├── definFill.cpp │ ├── definFill.h │ ├── definGCell.cpp │ ├── definGCell.h │ ├── definNet.cpp │ ├── definNet.h │ ├── definNonDefaultRule.cpp │ ├── definNonDefaultRule.h │ ├── definPin.cpp │ ├── definPin.h │ ├── definPinProps.cpp │ ├── definPinProps.h │ ├── definPolygon.cpp │ ├── definPolygon.h │ ├── definPropDefs.cpp │ ├── definPropDefs.h │ ├── definReader.cpp │ ├── definReader.h │ ├── definRegion.cpp │ ├── definRegion.h │ ├── definRow.cpp │ ├── definRow.h │ ├── definSNet.cpp │ ├── definSNet.h │ ├── definTracks.cpp │ ├── definTracks.h │ ├── definTypes.h │ ├── definVia.cpp │ └── definVia.h ├── defout │ ├── CMakeLists.txt │ ├── defout.cpp │ ├── defout_impl.cpp │ └── defout_impl.h ├── lef │ ├── CMakeLists.txt │ ├── LICENSE.TXT │ ├── README │ ├── README.md │ ├── TEST │ │ ├── complete.5.8.lef │ │ └── complete.5.8.lef.au │ ├── clef │ │ ├── lefMsgTable.h │ │ ├── lefiArray.h │ │ ├── lefiCrossTalk.h │ │ ├── lefiDebug.h │ │ ├── lefiEncryptExt.c │ │ ├── lefiEncryptInt.h │ │ ├── lefiLayer.h │ │ ├── lefiMacro.h │ │ ├── lefiMisc.h │ │ ├── lefiNonDefault.h │ │ ├── lefiProp.h │ │ ├── lefiPropType.h │ │ ├── lefiTBInt.c │ │ ├── lefiTypedefs.h │ │ ├── lefiUnits.h │ │ ├── lefiUser.h │ │ ├── lefiUtil.h │ │ ├── lefiVia.h │ │ ├── lefiViaRule.h │ │ ├── lefrReader.h │ │ ├── lefwWriter.h │ │ ├── lefwWriterCalls.h │ │ ├── xlefiArray.cpp │ │ ├── xlefiCrossTalk.cpp │ │ ├── xlefiDebug.cpp │ │ ├── xlefiEncryptInt.cpp │ │ ├── xlefiLayer.cpp │ │ ├── xlefiMacro.cpp │ │ ├── xlefiMisc.cpp │ │ ├── xlefiNonDefault.cpp │ │ ├── xlefiProp.cpp │ │ ├── xlefiPropType.cpp │ │ ├── xlefiUnits.cpp │ │ ├── xlefiUtil.cpp │ │ ├── xlefiVia.cpp │ │ ├── xlefiViaRule.cpp │ │ ├── xlefrReader.cpp │ │ ├── xlefwWriter.cpp │ │ └── xlefwWriterCalls.cpp │ ├── clefzlib │ │ ├── clefzlib.c │ │ └── lefzlib.h │ ├── doc │ │ ├── lefapi.pdf │ │ └── lefapiWN.pdf │ ├── lef │ │ ├── crypt.cpp │ │ ├── crypt.hpp │ │ ├── lef.msg │ │ ├── lef.y │ │ ├── lef_keywords.cpp │ │ ├── lefiArray.cpp │ │ ├── lefiArray.hpp │ │ ├── lefiCrossTalk.cpp │ │ ├── lefiCrossTalk.hpp │ │ ├── lefiDebug.cpp │ │ ├── lefiDebug.hpp │ │ ├── lefiDefs.hpp │ │ ├── lefiEncryptInt.cpp │ │ ├── lefiEncryptInt.hpp │ │ ├── lefiKRDefs.hpp │ │ ├── lefiLayer.cpp │ │ ├── lefiLayer.hpp │ │ ├── lefiMacro.cpp │ │ ├── lefiMacro.hpp │ │ ├── lefiMisc.cpp │ │ ├── lefiMisc.hpp │ │ ├── lefiNonDefault.cpp │ │ ├── lefiNonDefault.hpp │ │ ├── lefiProp.cpp │ │ ├── lefiProp.hpp │ │ ├── lefiPropType.cpp │ │ ├── lefiPropType.hpp │ │ ├── lefiTBExt.cpp │ │ ├── lefiUnits.cpp │ │ ├── lefiUnits.hpp │ │ ├── lefiUser.hpp │ │ ├── lefiUtil.hpp │ │ ├── lefiVia.cpp │ │ ├── lefiVia.hpp │ │ ├── lefiViaRule.cpp │ │ ├── lefiViaRule.hpp │ │ ├── lefrCallBacks.hpp │ │ ├── lefrCallbacks.cpp │ │ ├── lefrData.cpp │ │ ├── lefrData.hpp │ │ ├── lefrReader.cpp │ │ ├── lefrReader.hpp │ │ ├── lefrSettings.cpp │ │ ├── lefrSettings.hpp │ │ ├── lefwWriter.cpp │ │ ├── lefwWriter.hpp │ │ ├── lefwWriterCalls.cpp │ │ ├── lefwWriterCalls.hpp │ │ └── lex.h │ ├── lefdefReadme.txt │ ├── lefdiff │ │ ├── diffLefRW.cpp │ │ ├── diffLefRW.hpp │ │ └── differLef.cpp │ ├── lefrw │ │ └── lefrw.cpp │ ├── lefwrite │ │ ├── lefwrite.cpp │ │ └── lefwriteCbs.cpp │ └── lefzlib │ │ ├── lefzlib.cpp │ │ └── lefzlib.hpp ├── lefin │ ├── CMakeLists.txt │ ├── lefTechLayerSpacingEolParser.cpp │ ├── lefTechLayerSpacingEolParser.h │ ├── lefin.cpp │ └── reader.cpp ├── lefout │ ├── CMakeLists.txt │ └── lefout.cpp ├── swig │ ├── python │ │ ├── CMakeLists.txt │ │ ├── dbenums.i │ │ ├── dbhelpers.i │ │ ├── dboperators.i │ │ ├── dbtypes.i │ │ ├── opendbpy.i │ │ ├── parserenums.i │ │ └── setup.py.in │ └── tcl │ │ ├── CMakeLists.txt │ │ ├── dbdiff.i │ │ ├── dbenums.i │ │ ├── dbhelpers.i │ │ ├── dbtypes.i │ │ ├── main.cpp │ │ ├── opendbtcl.i │ │ ├── parserenums.i │ │ └── polygon.i ├── tm │ ├── CMakeLists.txt │ ├── ZFactory.cpp │ ├── ZNamespace.cpp │ └── tm.cpp ├── zlib │ ├── CMakeLists.txt │ └── ZException.cpp └── zutil │ ├── CMakeLists.txt │ ├── files.cpp │ ├── graph.cpp │ ├── mem.cpp │ ├── misc_functions.cpp │ ├── name.cpp │ ├── parse.cpp │ └── poly_decomp.cpp └── tests ├── cpp ├── CMakeLists.txt ├── CallBack.h ├── TestCallBacks.cpp ├── TestGeom.cpp ├── TestGroup.cpp ├── TestLef58Properties.cpp ├── TestLogger.cpp ├── TestModule.cpp └── helper.cpp ├── data ├── ICEWall │ ├── dummy_pads.lef │ └── octilinear.def ├── Nangate45 │ ├── NangateOpenCellLibrary.mod.lef │ └── OpenCellLibraryLicenseSi2.txt ├── design.def ├── gcd │ ├── floorplan.def │ └── gcd_pdn.def ├── gscl45nm.lef ├── gscl45nm.lib └── parser_test.def ├── parser_test.defok ├── python ├── 01-import_package_test.py ├── 02-read_lef_test.py ├── 03-dump_via_rules_test.py ├── 04-dump_vias_test.py ├── 05-read_def_test.py ├── 07-dump_nets_test.py ├── 08-write_lef_and_def_test.py ├── 09-lef_data_access_test.py ├── 10-gcd_def_access_test.py ├── 11-gcd_pdn_def_access_test.py ├── 12-edit_def_test.py ├── 13-wire_encoder_test.py ├── 14-edit_via_params_test.py ├── 15-row_settings_test.py ├── 16-db-read-write-octilinear-def_test.py └── 17-db_read-write_test.py ├── regression-cpp.sh ├── regression-py.sh ├── regression-tcl.sh ├── tcl ├── 01-import_package_test.tcl ├── 02-read_lef_test.tcl ├── 03-dump_via_rules_test.tcl ├── 04-dump_vias_test.tcl ├── 05-read_def_test.tcl ├── 07-dump_nets_test.tcl ├── 08-write_lef_and_def_test.tcl ├── 09-lef_data_access_test.tcl ├── 10-gcd_def_access_test.tcl ├── 11-gcd_pdn_def_access_test.tcl ├── 12-edit_def_test.tcl ├── 13-wire_encoder_test.tcl ├── 14-edit_via_params_test.tcl ├── 15-row_settings_test.tcl ├── 17-db_read-write_test.tcl ├── 18-check_routing_tracks.tcl ├── 19-polygon_test.tcl ├── 20-def_parser_test.tcl └── test_helpers.tcl ├── unitTests.sh └── unitTestsPython ├── README.md ├── TestBTerm.py ├── TestBlock.py ├── TestDestroy.py ├── TestGroup.py ├── TestITerm.py ├── TestInst.py ├── TestModule.py ├── TestNet.py ├── TestWireCodec.py ├── helper.py └── odbUnitTest.py /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/.clang-format -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/Dockerfile -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/README.md -------------------------------------------------------------------------------- /doc/OpenDB-AddFieldsInDbObjects.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/doc/OpenDB-AddFieldsInDbObjects.xlsx -------------------------------------------------------------------------------- /include/opendb/ISdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/ISdb.h -------------------------------------------------------------------------------- /include/opendb/IZdcr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/IZdcr.h -------------------------------------------------------------------------------- /include/opendb/ZComponents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/ZComponents.h -------------------------------------------------------------------------------- /include/opendb/ZException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/ZException.h -------------------------------------------------------------------------------- /include/opendb/ZFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/ZFactory.h -------------------------------------------------------------------------------- /include/opendb/ZInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/ZInterface.h -------------------------------------------------------------------------------- /include/opendb/ZNamespace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/ZNamespace.h -------------------------------------------------------------------------------- /include/opendb/ZObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/ZObject.h -------------------------------------------------------------------------------- /include/opendb/ZSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/ZSession.h -------------------------------------------------------------------------------- /include/opendb/arnoldi1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/arnoldi1.h -------------------------------------------------------------------------------- /include/opendb/array1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/array1.h -------------------------------------------------------------------------------- /include/opendb/array2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/array2d.h -------------------------------------------------------------------------------- /include/opendb/atypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/atypes.h -------------------------------------------------------------------------------- /include/opendb/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/block.h -------------------------------------------------------------------------------- /include/opendb/box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/box.h -------------------------------------------------------------------------------- /include/opendb/conn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/conn.h -------------------------------------------------------------------------------- /include/opendb/darr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/darr.h -------------------------------------------------------------------------------- /include/opendb/db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/db.h -------------------------------------------------------------------------------- /include/opendb/dbBlockCallBackObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/dbBlockCallBackObj.h -------------------------------------------------------------------------------- /include/opendb/dbBlockSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/dbBlockSet.h -------------------------------------------------------------------------------- /include/opendb/dbCCSegSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/dbCCSegSet.h -------------------------------------------------------------------------------- /include/opendb/dbDiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/dbDiff.h -------------------------------------------------------------------------------- /include/opendb/dbExtControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/dbExtControl.h -------------------------------------------------------------------------------- /include/opendb/dbId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/dbId.h -------------------------------------------------------------------------------- /include/opendb/dbIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/dbIterator.h -------------------------------------------------------------------------------- /include/opendb/dbLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/dbLogger.h -------------------------------------------------------------------------------- /include/opendb/dbMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/dbMap.h -------------------------------------------------------------------------------- /include/opendb/dbMap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/dbMap.hpp -------------------------------------------------------------------------------- /include/opendb/dbMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/dbMatrix.h -------------------------------------------------------------------------------- /include/opendb/dbNetSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/dbNetSet.h -------------------------------------------------------------------------------- /include/opendb/dbObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/dbObject.h -------------------------------------------------------------------------------- /include/opendb/dbPrintControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/dbPrintControl.h -------------------------------------------------------------------------------- /include/opendb/dbRtEdge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/dbRtEdge.h -------------------------------------------------------------------------------- /include/opendb/dbRtNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/dbRtNode.h -------------------------------------------------------------------------------- /include/opendb/dbRtTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/dbRtTree.h -------------------------------------------------------------------------------- /include/opendb/dbSearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/dbSearch.h -------------------------------------------------------------------------------- /include/opendb/dbSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/dbSet.h -------------------------------------------------------------------------------- /include/opendb/dbShape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/dbShape.h -------------------------------------------------------------------------------- /include/opendb/dbStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/dbStream.h -------------------------------------------------------------------------------- /include/opendb/dbTransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/dbTransform.h -------------------------------------------------------------------------------- /include/opendb/dbTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/dbTypes.h -------------------------------------------------------------------------------- /include/opendb/dbUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/dbUtil.h -------------------------------------------------------------------------------- /include/opendb/dbViaParams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/dbViaParams.h -------------------------------------------------------------------------------- /include/opendb/dbWireCodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/dbWireCodec.h -------------------------------------------------------------------------------- /include/opendb/dbWireGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/dbWireGraph.h -------------------------------------------------------------------------------- /include/opendb/dbtable1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/dbtable1.h -------------------------------------------------------------------------------- /include/opendb/dbtable2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/dbtable2.h -------------------------------------------------------------------------------- /include/opendb/def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/def.h -------------------------------------------------------------------------------- /include/opendb/defin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/defin.h -------------------------------------------------------------------------------- /include/opendb/defout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/defout.h -------------------------------------------------------------------------------- /include/opendb/geom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/geom.h -------------------------------------------------------------------------------- /include/opendb/graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/graph.h -------------------------------------------------------------------------------- /include/opendb/gseq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/gseq.h -------------------------------------------------------------------------------- /include/opendb/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/hash.h -------------------------------------------------------------------------------- /include/opendb/inst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/inst.h -------------------------------------------------------------------------------- /include/opendb/itype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/itype.h -------------------------------------------------------------------------------- /include/opendb/layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/layer.h -------------------------------------------------------------------------------- /include/opendb/layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/layout.h -------------------------------------------------------------------------------- /include/opendb/lefin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/lefin.h -------------------------------------------------------------------------------- /include/opendb/lefout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/lefout.h -------------------------------------------------------------------------------- /include/opendb/master.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/master.h -------------------------------------------------------------------------------- /include/opendb/misc_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/misc_global.h -------------------------------------------------------------------------------- /include/opendb/name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/name.h -------------------------------------------------------------------------------- /include/opendb/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/net.h -------------------------------------------------------------------------------- /include/opendb/odb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/odb.h -------------------------------------------------------------------------------- /include/opendb/odbAllocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/odbAllocator.h -------------------------------------------------------------------------------- /include/opendb/odbDList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/odbDList.h -------------------------------------------------------------------------------- /include/opendb/parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/parse.h -------------------------------------------------------------------------------- /include/opendb/poly_decomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/poly_decomp.h -------------------------------------------------------------------------------- /include/opendb/qtype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/qtype.h -------------------------------------------------------------------------------- /include/opendb/rcmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/rcmodel.h -------------------------------------------------------------------------------- /include/opendb/tech.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/tech.h -------------------------------------------------------------------------------- /include/opendb/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/util.h -------------------------------------------------------------------------------- /include/opendb/version.hh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/version.hh.in -------------------------------------------------------------------------------- /include/opendb/via.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/via.h -------------------------------------------------------------------------------- /include/opendb/wOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/wOrder.h -------------------------------------------------------------------------------- /include/opendb/wire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/include/opendb/wire.h -------------------------------------------------------------------------------- /jenkins/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/jenkins/build.sh -------------------------------------------------------------------------------- /jenkins/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/jenkins/install.sh -------------------------------------------------------------------------------- /jenkins/test-cpp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/jenkins/test-cpp.sh -------------------------------------------------------------------------------- /jenkins/test-py.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/jenkins/test-py.sh -------------------------------------------------------------------------------- /jenkins/test-tcl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/jenkins/test-tcl.sh -------------------------------------------------------------------------------- /jenkins/test-unittests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/jenkins/test-unittests.sh -------------------------------------------------------------------------------- /src/codeGenerator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/codeGenerator/README.md -------------------------------------------------------------------------------- /src/codeGenerator/gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/codeGenerator/gen.py -------------------------------------------------------------------------------- /src/codeGenerator/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/codeGenerator/helper.py -------------------------------------------------------------------------------- /src/codeGenerator/impl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/codeGenerator/impl/CMakeLists.txt -------------------------------------------------------------------------------- /src/codeGenerator/impl/db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/codeGenerator/impl/db.h -------------------------------------------------------------------------------- /src/codeGenerator/impl/dbObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/codeGenerator/impl/dbObject.cpp -------------------------------------------------------------------------------- /src/codeGenerator/impl/dbObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/codeGenerator/impl/dbObject.h -------------------------------------------------------------------------------- /src/codeGenerator/impl/impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/codeGenerator/impl/impl.cpp -------------------------------------------------------------------------------- /src/codeGenerator/impl/impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/codeGenerator/impl/impl.h -------------------------------------------------------------------------------- /src/codeGenerator/impl/itr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/codeGenerator/impl/itr.cpp -------------------------------------------------------------------------------- /src/codeGenerator/impl/itr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/codeGenerator/impl/itr.h -------------------------------------------------------------------------------- /src/codeGenerator/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/codeGenerator/parser.py -------------------------------------------------------------------------------- /src/codeGenerator/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/codeGenerator/schema.json -------------------------------------------------------------------------------- /src/db/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/CMakeLists.txt -------------------------------------------------------------------------------- /src/db/dbArrayTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbArrayTable.h -------------------------------------------------------------------------------- /src/db/dbArrayTable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbArrayTable.hpp -------------------------------------------------------------------------------- /src/db/dbAttrTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbAttrTable.h -------------------------------------------------------------------------------- /src/db/dbBPin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbBPin.cpp -------------------------------------------------------------------------------- /src/db/dbBPin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbBPin.h -------------------------------------------------------------------------------- /src/db/dbBPinItr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbBPinItr.cpp -------------------------------------------------------------------------------- /src/db/dbBPinItr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbBPinItr.h -------------------------------------------------------------------------------- /src/db/dbBTerm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbBTerm.cpp -------------------------------------------------------------------------------- /src/db/dbBTerm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbBTerm.h -------------------------------------------------------------------------------- /src/db/dbBTermItr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbBTermItr.cpp -------------------------------------------------------------------------------- /src/db/dbBTermItr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbBTermItr.h -------------------------------------------------------------------------------- /src/db/dbBlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbBlock.cpp -------------------------------------------------------------------------------- /src/db/dbBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbBlock.h -------------------------------------------------------------------------------- /src/db/dbBlockCallBackObj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbBlockCallBackObj.cpp -------------------------------------------------------------------------------- /src/db/dbBlockItr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbBlockItr.cpp -------------------------------------------------------------------------------- /src/db/dbBlockItr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbBlockItr.h -------------------------------------------------------------------------------- /src/db/dbBlockage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbBlockage.cpp -------------------------------------------------------------------------------- /src/db/dbBlockage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbBlockage.h -------------------------------------------------------------------------------- /src/db/dbBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbBox.cpp -------------------------------------------------------------------------------- /src/db/dbBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbBox.h -------------------------------------------------------------------------------- /src/db/dbBoxItr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbBoxItr.cpp -------------------------------------------------------------------------------- /src/db/dbBoxItr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbBoxItr.h -------------------------------------------------------------------------------- /src/db/dbCCSeg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbCCSeg.cpp -------------------------------------------------------------------------------- /src/db/dbCCSeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbCCSeg.h -------------------------------------------------------------------------------- /src/db/dbCCSegItr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbCCSegItr.cpp -------------------------------------------------------------------------------- /src/db/dbCCSegItr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbCCSegItr.h -------------------------------------------------------------------------------- /src/db/dbCapNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbCapNode.cpp -------------------------------------------------------------------------------- /src/db/dbCapNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbCapNode.h -------------------------------------------------------------------------------- /src/db/dbCapNodeItr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbCapNodeItr.cpp -------------------------------------------------------------------------------- /src/db/dbCapNodeItr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbCapNodeItr.h -------------------------------------------------------------------------------- /src/db/dbChip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbChip.cpp -------------------------------------------------------------------------------- /src/db/dbChip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbChip.h -------------------------------------------------------------------------------- /src/db/dbCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbCommon.h -------------------------------------------------------------------------------- /src/db/dbCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbCore.h -------------------------------------------------------------------------------- /src/db/dbDatabase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbDatabase.cpp -------------------------------------------------------------------------------- /src/db/dbDatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbDatabase.h -------------------------------------------------------------------------------- /src/db/dbDiff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbDiff.cpp -------------------------------------------------------------------------------- /src/db/dbDiff.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbDiff.hpp -------------------------------------------------------------------------------- /src/db/dbExtControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbExtControl.cpp -------------------------------------------------------------------------------- /src/db/dbFill.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbFill.cpp -------------------------------------------------------------------------------- /src/db/dbFill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbFill.h -------------------------------------------------------------------------------- /src/db/dbFlatten.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbFlatten.cpp -------------------------------------------------------------------------------- /src/db/dbFlatten.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbFlatten.h -------------------------------------------------------------------------------- /src/db/dbGCellGrid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbGCellGrid.cpp -------------------------------------------------------------------------------- /src/db/dbGCellGrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbGCellGrid.h -------------------------------------------------------------------------------- /src/db/dbGroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbGroup.cpp -------------------------------------------------------------------------------- /src/db/dbGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbGroup.h -------------------------------------------------------------------------------- /src/db/dbGroupGroundNetItr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbGroupGroundNetItr.cpp -------------------------------------------------------------------------------- /src/db/dbGroupGroundNetItr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbGroupGroundNetItr.h -------------------------------------------------------------------------------- /src/db/dbGroupInstItr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbGroupInstItr.cpp -------------------------------------------------------------------------------- /src/db/dbGroupInstItr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbGroupInstItr.h -------------------------------------------------------------------------------- /src/db/dbGroupItr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbGroupItr.cpp -------------------------------------------------------------------------------- /src/db/dbGroupItr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbGroupItr.h -------------------------------------------------------------------------------- /src/db/dbGroupModInstItr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbGroupModInstItr.cpp -------------------------------------------------------------------------------- /src/db/dbGroupModInstItr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbGroupModInstItr.h -------------------------------------------------------------------------------- /src/db/dbGroupPowerNetItr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbGroupPowerNetItr.cpp -------------------------------------------------------------------------------- /src/db/dbGroupPowerNetItr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbGroupPowerNetItr.h -------------------------------------------------------------------------------- /src/db/dbHashTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbHashTable.h -------------------------------------------------------------------------------- /src/db/dbHashTable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbHashTable.hpp -------------------------------------------------------------------------------- /src/db/dbHier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbHier.cpp -------------------------------------------------------------------------------- /src/db/dbHier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbHier.h -------------------------------------------------------------------------------- /src/db/dbHierInstShapeItr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbHierInstShapeItr.cpp -------------------------------------------------------------------------------- /src/db/dbITerm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbITerm.cpp -------------------------------------------------------------------------------- /src/db/dbITerm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbITerm.h -------------------------------------------------------------------------------- /src/db/dbITermItr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbITermItr.cpp -------------------------------------------------------------------------------- /src/db/dbITermItr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbITermItr.h -------------------------------------------------------------------------------- /src/db/dbITermShapeItr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbITermShapeItr.cpp -------------------------------------------------------------------------------- /src/db/dbInst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbInst.cpp -------------------------------------------------------------------------------- /src/db/dbInst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbInst.h -------------------------------------------------------------------------------- /src/db/dbInstHdr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbInstHdr.cpp -------------------------------------------------------------------------------- /src/db/dbInstHdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbInstHdr.h -------------------------------------------------------------------------------- /src/db/dbInstShapeItr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbInstShapeItr.cpp -------------------------------------------------------------------------------- /src/db/dbIntHashTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbIntHashTable.h -------------------------------------------------------------------------------- /src/db/dbIntHashTable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbIntHashTable.hpp -------------------------------------------------------------------------------- /src/db/dbJournal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbJournal.cpp -------------------------------------------------------------------------------- /src/db/dbJournal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbJournal.h -------------------------------------------------------------------------------- /src/db/dbJournalLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbJournalLog.cpp -------------------------------------------------------------------------------- /src/db/dbJournalLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbJournalLog.h -------------------------------------------------------------------------------- /src/db/dbLib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbLib.cpp -------------------------------------------------------------------------------- /src/db/dbLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbLib.h -------------------------------------------------------------------------------- /src/db/dbLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbLogger.cpp -------------------------------------------------------------------------------- /src/db/dbMPin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbMPin.cpp -------------------------------------------------------------------------------- /src/db/dbMPin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbMPin.h -------------------------------------------------------------------------------- /src/db/dbMPinItr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbMPinItr.cpp -------------------------------------------------------------------------------- /src/db/dbMPinItr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbMPinItr.h -------------------------------------------------------------------------------- /src/db/dbMTerm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbMTerm.cpp -------------------------------------------------------------------------------- /src/db/dbMTerm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbMTerm.h -------------------------------------------------------------------------------- /src/db/dbMaster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbMaster.cpp -------------------------------------------------------------------------------- /src/db/dbMaster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbMaster.h -------------------------------------------------------------------------------- /src/db/dbModInst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbModInst.cpp -------------------------------------------------------------------------------- /src/db/dbModInst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbModInst.h -------------------------------------------------------------------------------- /src/db/dbModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbModule.cpp -------------------------------------------------------------------------------- /src/db/dbModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbModule.h -------------------------------------------------------------------------------- /src/db/dbModuleInstItr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbModuleInstItr.cpp -------------------------------------------------------------------------------- /src/db/dbModuleInstItr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbModuleInstItr.h -------------------------------------------------------------------------------- /src/db/dbModuleModInstItr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbModuleModInstItr.cpp -------------------------------------------------------------------------------- /src/db/dbModuleModInstItr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbModuleModInstItr.h -------------------------------------------------------------------------------- /src/db/dbName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbName.h -------------------------------------------------------------------------------- /src/db/dbNameCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbNameCache.cpp -------------------------------------------------------------------------------- /src/db/dbNameCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbNameCache.h -------------------------------------------------------------------------------- /src/db/dbNet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbNet.cpp -------------------------------------------------------------------------------- /src/db/dbNet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbNet.h -------------------------------------------------------------------------------- /src/db/dbNullIterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbNullIterator.cpp -------------------------------------------------------------------------------- /src/db/dbNullIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbNullIterator.h -------------------------------------------------------------------------------- /src/db/dbObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbObject.cpp -------------------------------------------------------------------------------- /src/db/dbObstruction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbObstruction.cpp -------------------------------------------------------------------------------- /src/db/dbObstruction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbObstruction.h -------------------------------------------------------------------------------- /src/db/dbPagedVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbPagedVector.h -------------------------------------------------------------------------------- /src/db/dbPrintControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbPrintControl.cpp -------------------------------------------------------------------------------- /src/db/dbProperty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbProperty.cpp -------------------------------------------------------------------------------- /src/db/dbProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbProperty.h -------------------------------------------------------------------------------- /src/db/dbPropertyItr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbPropertyItr.cpp -------------------------------------------------------------------------------- /src/db/dbPropertyItr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbPropertyItr.h -------------------------------------------------------------------------------- /src/db/dbRSeg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbRSeg.cpp -------------------------------------------------------------------------------- /src/db/dbRSeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbRSeg.h -------------------------------------------------------------------------------- /src/db/dbRSegItr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbRSegItr.cpp -------------------------------------------------------------------------------- /src/db/dbRSegItr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbRSegItr.h -------------------------------------------------------------------------------- /src/db/dbRegion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbRegion.cpp -------------------------------------------------------------------------------- /src/db/dbRegion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbRegion.h -------------------------------------------------------------------------------- /src/db/dbRegionInstItr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbRegionInstItr.cpp -------------------------------------------------------------------------------- /src/db/dbRegionInstItr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbRegionInstItr.h -------------------------------------------------------------------------------- /src/db/dbRegionItr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbRegionItr.cpp -------------------------------------------------------------------------------- /src/db/dbRegionItr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbRegionItr.h -------------------------------------------------------------------------------- /src/db/dbRow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbRow.cpp -------------------------------------------------------------------------------- /src/db/dbRow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbRow.h -------------------------------------------------------------------------------- /src/db/dbRtTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbRtTree.cpp -------------------------------------------------------------------------------- /src/db/dbSBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbSBox.cpp -------------------------------------------------------------------------------- /src/db/dbSBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbSBox.h -------------------------------------------------------------------------------- /src/db/dbSBoxItr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbSBoxItr.cpp -------------------------------------------------------------------------------- /src/db/dbSBoxItr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbSBoxItr.h -------------------------------------------------------------------------------- /src/db/dbSWire.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbSWire.cpp -------------------------------------------------------------------------------- /src/db/dbSWire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbSWire.h -------------------------------------------------------------------------------- /src/db/dbSWireItr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbSWireItr.cpp -------------------------------------------------------------------------------- /src/db/dbSWireItr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbSWireItr.h -------------------------------------------------------------------------------- /src/db/dbSearch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbSearch.cpp -------------------------------------------------------------------------------- /src/db/dbShape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbShape.cpp -------------------------------------------------------------------------------- /src/db/dbSite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbSite.cpp -------------------------------------------------------------------------------- /src/db/dbSite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbSite.h -------------------------------------------------------------------------------- /src/db/dbStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbStream.cpp -------------------------------------------------------------------------------- /src/db/dbTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbTable.h -------------------------------------------------------------------------------- /src/db/dbTable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbTable.hpp -------------------------------------------------------------------------------- /src/db/dbTarget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbTarget.cpp -------------------------------------------------------------------------------- /src/db/dbTarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbTarget.h -------------------------------------------------------------------------------- /src/db/dbTargetItr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbTargetItr.cpp -------------------------------------------------------------------------------- /src/db/dbTargetItr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbTargetItr.h -------------------------------------------------------------------------------- /src/db/dbTech.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbTech.cpp -------------------------------------------------------------------------------- /src/db/dbTech.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbTech.h -------------------------------------------------------------------------------- /src/db/dbTechLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbTechLayer.cpp -------------------------------------------------------------------------------- /src/db/dbTechLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbTechLayer.h -------------------------------------------------------------------------------- /src/db/dbTechLayerAntennaRule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbTechLayerAntennaRule.cpp -------------------------------------------------------------------------------- /src/db/dbTechLayerAntennaRule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbTechLayerAntennaRule.h -------------------------------------------------------------------------------- /src/db/dbTechLayerItr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbTechLayerItr.cpp -------------------------------------------------------------------------------- /src/db/dbTechLayerItr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbTechLayerItr.h -------------------------------------------------------------------------------- /src/db/dbTechLayerRule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbTechLayerRule.cpp -------------------------------------------------------------------------------- /src/db/dbTechLayerRule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbTechLayerRule.h -------------------------------------------------------------------------------- /src/db/dbTechLayerSpacingEolRule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbTechLayerSpacingEolRule.cpp -------------------------------------------------------------------------------- /src/db/dbTechLayerSpacingEolRule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbTechLayerSpacingEolRule.h -------------------------------------------------------------------------------- /src/db/dbTechLayerSpacingRule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbTechLayerSpacingRule.cpp -------------------------------------------------------------------------------- /src/db/dbTechLayerSpacingRule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbTechLayerSpacingRule.h -------------------------------------------------------------------------------- /src/db/dbTechMinCutOrAreaRule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbTechMinCutOrAreaRule.cpp -------------------------------------------------------------------------------- /src/db/dbTechMinCutOrAreaRule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbTechMinCutOrAreaRule.h -------------------------------------------------------------------------------- /src/db/dbTechNonDefaultRule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbTechNonDefaultRule.cpp -------------------------------------------------------------------------------- /src/db/dbTechNonDefaultRule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbTechNonDefaultRule.h -------------------------------------------------------------------------------- /src/db/dbTechSameNetRule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbTechSameNetRule.cpp -------------------------------------------------------------------------------- /src/db/dbTechSameNetRule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbTechSameNetRule.h -------------------------------------------------------------------------------- /src/db/dbTechVia.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbTechVia.cpp -------------------------------------------------------------------------------- /src/db/dbTechVia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbTechVia.h -------------------------------------------------------------------------------- /src/db/dbTechViaGenerateRule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbTechViaGenerateRule.cpp -------------------------------------------------------------------------------- /src/db/dbTechViaGenerateRule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbTechViaGenerateRule.h -------------------------------------------------------------------------------- /src/db/dbTechViaLayerRule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbTechViaLayerRule.cpp -------------------------------------------------------------------------------- /src/db/dbTechViaLayerRule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbTechViaLayerRule.h -------------------------------------------------------------------------------- /src/db/dbTechViaRule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbTechViaRule.cpp -------------------------------------------------------------------------------- /src/db/dbTechViaRule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbTechViaRule.h -------------------------------------------------------------------------------- /src/db/dbTrackGrid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbTrackGrid.cpp -------------------------------------------------------------------------------- /src/db/dbTrackGrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbTrackGrid.h -------------------------------------------------------------------------------- /src/db/dbTransform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbTransform.cpp -------------------------------------------------------------------------------- /src/db/dbTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbTypes.cpp -------------------------------------------------------------------------------- /src/db/dbUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbUtil.cpp -------------------------------------------------------------------------------- /src/db/dbVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbVector.h -------------------------------------------------------------------------------- /src/db/dbVia.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbVia.cpp -------------------------------------------------------------------------------- /src/db/dbVia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbVia.h -------------------------------------------------------------------------------- /src/db/dbViaParams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbViaParams.cpp -------------------------------------------------------------------------------- /src/db/dbWire.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbWire.cpp -------------------------------------------------------------------------------- /src/db/dbWire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbWire.h -------------------------------------------------------------------------------- /src/db/dbWireCodec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbWireCodec.cpp -------------------------------------------------------------------------------- /src/db/dbWireGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbWireGraph.cpp -------------------------------------------------------------------------------- /src/db/dbWireOpcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbWireOpcode.h -------------------------------------------------------------------------------- /src/db/dbWirePathItr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbWirePathItr.cpp -------------------------------------------------------------------------------- /src/db/dbWireShapeItr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/dbWireShapeItr.cpp -------------------------------------------------------------------------------- /src/db/examples/create.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/examples/create.cpp -------------------------------------------------------------------------------- /src/db/examples/dump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/examples/dump.cpp -------------------------------------------------------------------------------- /src/db/examples/print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/examples/print.cpp -------------------------------------------------------------------------------- /src/db/grids.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/grids.cpp -------------------------------------------------------------------------------- /src/db/gs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/gs.cpp -------------------------------------------------------------------------------- /src/db/test/test_transform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/test/test_transform.cpp -------------------------------------------------------------------------------- /src/db/test/test_wire.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/test/test_wire.cpp -------------------------------------------------------------------------------- /src/db/test/wire.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/test/wire.gold -------------------------------------------------------------------------------- /src/db/test_wire.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/test_wire.cpp -------------------------------------------------------------------------------- /src/db/test_wire2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/test_wire2.cpp -------------------------------------------------------------------------------- /src/db/tmg_conn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/tmg_conn.cpp -------------------------------------------------------------------------------- /src/db/tmg_conn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/tmg_conn.h -------------------------------------------------------------------------------- /src/db/tmg_conn_g.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/tmg_conn_g.cpp -------------------------------------------------------------------------------- /src/db/tmg_conn_s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/tmg_conn_s.cpp -------------------------------------------------------------------------------- /src/db/tmg_conn_w.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/tmg_conn_w.cpp -------------------------------------------------------------------------------- /src/db/wOrder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/db/wOrder.cpp -------------------------------------------------------------------------------- /src/def/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/CMakeLists.txt -------------------------------------------------------------------------------- /src/def/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/LICENSE.TXT -------------------------------------------------------------------------------- /src/def/README.md: -------------------------------------------------------------------------------- 1 | Si2 DEF parser 5.8-p027 with CMake support 2 | 3 | See lefdefReadme.txt 4 | -------------------------------------------------------------------------------- /src/def/TEST/complete.5.8.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/TEST/complete.5.8.def -------------------------------------------------------------------------------- /src/def/TEST/complete.5.8.def.au: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/TEST/complete.5.8.def.au -------------------------------------------------------------------------------- /src/def/cdef/defMsgTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/cdef/defMsgTable.h -------------------------------------------------------------------------------- /src/def/cdef/defiAlias.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/cdef/defiAlias.h -------------------------------------------------------------------------------- /src/def/cdef/defiAssertion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/cdef/defiAssertion.h -------------------------------------------------------------------------------- /src/def/cdef/defiBlockage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/cdef/defiBlockage.h -------------------------------------------------------------------------------- /src/def/cdef/defiComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/cdef/defiComponent.h -------------------------------------------------------------------------------- /src/def/cdef/defiDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/cdef/defiDebug.h -------------------------------------------------------------------------------- /src/def/cdef/defiDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/cdef/defiDefs.h -------------------------------------------------------------------------------- /src/def/cdef/defiFPC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/cdef/defiFPC.h -------------------------------------------------------------------------------- /src/def/cdef/defiFill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/cdef/defiFill.h -------------------------------------------------------------------------------- /src/def/cdef/defiGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/cdef/defiGroup.h -------------------------------------------------------------------------------- /src/def/cdef/defiIOTiming.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/cdef/defiIOTiming.h -------------------------------------------------------------------------------- /src/def/cdef/defiKRDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/cdef/defiKRDefs.h -------------------------------------------------------------------------------- /src/def/cdef/defiMisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/cdef/defiMisc.h -------------------------------------------------------------------------------- /src/def/cdef/defiNet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/cdef/defiNet.h -------------------------------------------------------------------------------- /src/def/cdef/defiNonDefault.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/cdef/defiNonDefault.h -------------------------------------------------------------------------------- /src/def/cdef/defiPartition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/cdef/defiPartition.h -------------------------------------------------------------------------------- /src/def/cdef/defiPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/cdef/defiPath.h -------------------------------------------------------------------------------- /src/def/cdef/defiPinCap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/cdef/defiPinCap.h -------------------------------------------------------------------------------- /src/def/cdef/defiPinProp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/cdef/defiPinProp.h -------------------------------------------------------------------------------- /src/def/cdef/defiProp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/cdef/defiProp.h -------------------------------------------------------------------------------- /src/def/cdef/defiPropType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/cdef/defiPropType.h -------------------------------------------------------------------------------- /src/def/cdef/defiRegion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/cdef/defiRegion.h -------------------------------------------------------------------------------- /src/def/cdef/defiRowTrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/cdef/defiRowTrack.h -------------------------------------------------------------------------------- /src/def/cdef/defiScanchain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/cdef/defiScanchain.h -------------------------------------------------------------------------------- /src/def/cdef/defiSite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/cdef/defiSite.h -------------------------------------------------------------------------------- /src/def/cdef/defiSlot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/cdef/defiSlot.h -------------------------------------------------------------------------------- /src/def/cdef/defiTimingDisable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/cdef/defiTimingDisable.h -------------------------------------------------------------------------------- /src/def/cdef/defiTypedefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/cdef/defiTypedefs.h -------------------------------------------------------------------------------- /src/def/cdef/defiUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/cdef/defiUser.h -------------------------------------------------------------------------------- /src/def/cdef/defiVia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/cdef/defiVia.h -------------------------------------------------------------------------------- /src/def/cdef/defrReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/cdef/defrReader.h -------------------------------------------------------------------------------- /src/def/cdef/defwWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/cdef/defwWriter.h -------------------------------------------------------------------------------- /src/def/cdef/defwWriterCalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/cdef/defwWriterCalls.h -------------------------------------------------------------------------------- /src/def/cdef/xdefiAssertion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/cdef/xdefiAssertion.cpp -------------------------------------------------------------------------------- /src/def/cdef/xdefiBlockage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/cdef/xdefiBlockage.cpp -------------------------------------------------------------------------------- /src/def/cdef/xdefiComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/cdef/xdefiComponent.cpp -------------------------------------------------------------------------------- /src/def/cdef/xdefiDebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/cdef/xdefiDebug.cpp -------------------------------------------------------------------------------- /src/def/cdef/xdefiFPC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/cdef/xdefiFPC.cpp -------------------------------------------------------------------------------- /src/def/cdef/xdefiFill.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/cdef/xdefiFill.cpp -------------------------------------------------------------------------------- /src/def/cdef/xdefiGroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/cdef/xdefiGroup.cpp -------------------------------------------------------------------------------- /src/def/cdef/xdefiIOTiming.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/cdef/xdefiIOTiming.cpp -------------------------------------------------------------------------------- /src/def/cdef/xdefiMisc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/cdef/xdefiMisc.cpp -------------------------------------------------------------------------------- /src/def/cdef/xdefiNet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/cdef/xdefiNet.cpp -------------------------------------------------------------------------------- /src/def/cdef/xdefiNonDefault.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/cdef/xdefiNonDefault.cpp -------------------------------------------------------------------------------- /src/def/cdef/xdefiPartition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/cdef/xdefiPartition.cpp -------------------------------------------------------------------------------- /src/def/cdef/xdefiPath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/cdef/xdefiPath.cpp -------------------------------------------------------------------------------- /src/def/cdef/xdefiPinCap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/cdef/xdefiPinCap.cpp -------------------------------------------------------------------------------- /src/def/cdef/xdefiPinProp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/cdef/xdefiPinProp.cpp -------------------------------------------------------------------------------- /src/def/cdef/xdefiProp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/cdef/xdefiProp.cpp -------------------------------------------------------------------------------- /src/def/cdef/xdefiPropType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/cdef/xdefiPropType.cpp -------------------------------------------------------------------------------- /src/def/cdef/xdefiRegion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/cdef/xdefiRegion.cpp -------------------------------------------------------------------------------- /src/def/cdef/xdefiRowTrack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/cdef/xdefiRowTrack.cpp -------------------------------------------------------------------------------- /src/def/cdef/xdefiScanchain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/cdef/xdefiScanchain.cpp -------------------------------------------------------------------------------- /src/def/cdef/xdefiSite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/cdef/xdefiSite.cpp -------------------------------------------------------------------------------- /src/def/cdef/xdefiSlot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/cdef/xdefiSlot.cpp -------------------------------------------------------------------------------- /src/def/cdef/xdefiTimingDisable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/cdef/xdefiTimingDisable.cpp -------------------------------------------------------------------------------- /src/def/cdef/xdefiVia.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/cdef/xdefiVia.cpp -------------------------------------------------------------------------------- /src/def/cdef/xdefrReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/cdef/xdefrReader.cpp -------------------------------------------------------------------------------- /src/def/cdef/xdefwWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/cdef/xdefwWriter.cpp -------------------------------------------------------------------------------- /src/def/cdef/xdefwWriterCalls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/cdef/xdefwWriterCalls.cpp -------------------------------------------------------------------------------- /src/def/cdefzlib/cdefzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/cdefzlib/cdefzlib.c -------------------------------------------------------------------------------- /src/def/cdefzlib/defzlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/cdefzlib/defzlib.h -------------------------------------------------------------------------------- /src/def/def/def.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/def/def.msg -------------------------------------------------------------------------------- /src/def/def/def.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/def/def.y -------------------------------------------------------------------------------- /src/def/def/def_keywords.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/def/def_keywords.cpp -------------------------------------------------------------------------------- /src/def/def/def_objs.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/def/def_objs.defs -------------------------------------------------------------------------------- /src/def/def/defiAlias.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/def/defiAlias.cpp -------------------------------------------------------------------------------- /src/def/def/defiAlias.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/def/defiAlias.hpp -------------------------------------------------------------------------------- /src/def/def/defiAssertion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/def/defiAssertion.cpp -------------------------------------------------------------------------------- /src/def/def/defiAssertion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/def/defiAssertion.hpp -------------------------------------------------------------------------------- /src/def/def/defiBlockage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/def/defiBlockage.cpp -------------------------------------------------------------------------------- /src/def/def/defiBlockage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/def/defiBlockage.hpp -------------------------------------------------------------------------------- /src/def/def/defiComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/def/defiComponent.cpp -------------------------------------------------------------------------------- /src/def/def/defiComponent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/def/defiComponent.hpp -------------------------------------------------------------------------------- /src/def/def/defiDebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/def/defiDebug.cpp -------------------------------------------------------------------------------- /src/def/def/defiDebug.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/def/defiDebug.hpp -------------------------------------------------------------------------------- /src/def/def/defiDefs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/def/defiDefs.hpp -------------------------------------------------------------------------------- /src/def/def/defiFPC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/def/defiFPC.cpp -------------------------------------------------------------------------------- /src/def/def/defiFPC.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/def/defiFPC.hpp -------------------------------------------------------------------------------- /src/def/def/defiFill.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/def/defiFill.cpp -------------------------------------------------------------------------------- /src/def/def/defiFill.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/def/defiFill.hpp -------------------------------------------------------------------------------- /src/def/def/defiGroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/def/defiGroup.cpp -------------------------------------------------------------------------------- /src/def/def/defiGroup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/def/defiGroup.hpp -------------------------------------------------------------------------------- /src/def/def/defiIOTiming.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/def/defiIOTiming.cpp -------------------------------------------------------------------------------- /src/def/def/defiIOTiming.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/def/defiIOTiming.hpp -------------------------------------------------------------------------------- /src/def/def/defiKRDefs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/def/defiKRDefs.hpp -------------------------------------------------------------------------------- /src/def/def/defiMisc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/def/defiMisc.cpp -------------------------------------------------------------------------------- /src/def/def/defiMisc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/def/defiMisc.hpp -------------------------------------------------------------------------------- /src/def/def/defiNet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/def/defiNet.cpp -------------------------------------------------------------------------------- /src/def/def/defiNet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/def/defiNet.hpp -------------------------------------------------------------------------------- /src/def/def/defiNonDefault.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/def/defiNonDefault.cpp -------------------------------------------------------------------------------- /src/def/def/defiNonDefault.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/def/defiNonDefault.hpp -------------------------------------------------------------------------------- /src/def/def/defiPartition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/def/defiPartition.cpp -------------------------------------------------------------------------------- /src/def/def/defiPartition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/def/defiPartition.hpp -------------------------------------------------------------------------------- /src/def/def/defiPath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/def/defiPath.cpp -------------------------------------------------------------------------------- /src/def/def/defiPath.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/def/defiPath.hpp -------------------------------------------------------------------------------- /src/def/def/defiPinCap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/def/defiPinCap.cpp -------------------------------------------------------------------------------- /src/def/def/defiPinCap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/def/defiPinCap.hpp -------------------------------------------------------------------------------- /src/def/def/defiPinProp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/def/defiPinProp.cpp -------------------------------------------------------------------------------- /src/def/def/defiPinProp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/def/defiPinProp.hpp -------------------------------------------------------------------------------- /src/def/def/defiProp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/def/defiProp.cpp -------------------------------------------------------------------------------- /src/def/def/defiProp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/def/defiProp.hpp -------------------------------------------------------------------------------- /src/def/def/defiPropType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/def/defiPropType.cpp -------------------------------------------------------------------------------- /src/def/def/defiPropType.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/def/defiPropType.hpp -------------------------------------------------------------------------------- /src/def/def/defiRegion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/def/defiRegion.cpp -------------------------------------------------------------------------------- /src/def/def/defiRegion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/def/defiRegion.hpp -------------------------------------------------------------------------------- /src/def/def/defiRowTrack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/def/defiRowTrack.cpp -------------------------------------------------------------------------------- /src/def/def/defiRowTrack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/def/defiRowTrack.hpp -------------------------------------------------------------------------------- /src/def/def/defiScanchain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/def/defiScanchain.cpp -------------------------------------------------------------------------------- /src/def/def/defiScanchain.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/def/defiScanchain.hpp -------------------------------------------------------------------------------- /src/def/def/defiSite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/def/defiSite.cpp -------------------------------------------------------------------------------- /src/def/def/defiSite.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/def/defiSite.hpp -------------------------------------------------------------------------------- /src/def/def/defiSlot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/def/defiSlot.cpp -------------------------------------------------------------------------------- /src/def/def/defiSlot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/def/defiSlot.hpp -------------------------------------------------------------------------------- /src/def/def/defiTimingDisable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/def/defiTimingDisable.cpp -------------------------------------------------------------------------------- /src/def/def/defiTimingDisable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/def/defiTimingDisable.hpp -------------------------------------------------------------------------------- /src/def/def/defiUser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/def/defiUser.hpp -------------------------------------------------------------------------------- /src/def/def/defiUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/def/defiUtil.cpp -------------------------------------------------------------------------------- /src/def/def/defiUtil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/def/defiUtil.hpp -------------------------------------------------------------------------------- /src/def/def/defiVia.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/def/defiVia.cpp -------------------------------------------------------------------------------- /src/def/def/defiVia.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/def/defiVia.hpp -------------------------------------------------------------------------------- /src/def/def/defrCallBacks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/def/defrCallBacks.hpp -------------------------------------------------------------------------------- /src/def/def/defrCallbacks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/def/defrCallbacks.cpp -------------------------------------------------------------------------------- /src/def/def/defrData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/def/defrData.cpp -------------------------------------------------------------------------------- /src/def/def/defrData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/def/defrData.hpp -------------------------------------------------------------------------------- /src/def/def/defrReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/def/defrReader.cpp -------------------------------------------------------------------------------- /src/def/def/defrReader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/def/defrReader.hpp -------------------------------------------------------------------------------- /src/def/def/defrSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/def/defrSettings.cpp -------------------------------------------------------------------------------- /src/def/def/defrSettings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/def/defrSettings.hpp -------------------------------------------------------------------------------- /src/def/def/defwWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/def/defwWriter.cpp -------------------------------------------------------------------------------- /src/def/def/defwWriter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/def/defwWriter.hpp -------------------------------------------------------------------------------- /src/def/def/defwWriterCalls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/def/defwWriterCalls.cpp -------------------------------------------------------------------------------- /src/def/def/defwWriterCalls.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/def/defwWriterCalls.hpp -------------------------------------------------------------------------------- /src/def/def/lex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/def/lex.h -------------------------------------------------------------------------------- /src/def/defdiff/diffDefRW.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/defdiff/diffDefRW.cpp -------------------------------------------------------------------------------- /src/def/defdiff/diffDefRW.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/defdiff/diffDefRW.hpp -------------------------------------------------------------------------------- /src/def/defdiff/differDef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/defdiff/differDef.cpp -------------------------------------------------------------------------------- /src/def/defrw/defrw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/defrw/defrw.cpp -------------------------------------------------------------------------------- /src/def/defwrite/defwrite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/defwrite/defwrite.cpp -------------------------------------------------------------------------------- /src/def/defwrite/defwriteCbs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/defwrite/defwriteCbs.cpp -------------------------------------------------------------------------------- /src/def/defzlib/defzlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/defzlib/defzlib.cpp -------------------------------------------------------------------------------- /src/def/defzlib/defzlib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/defzlib/defzlib.hpp -------------------------------------------------------------------------------- /src/def/doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/doc/README.md -------------------------------------------------------------------------------- /src/def/doc/defapi.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/doc/defapi.pdf -------------------------------------------------------------------------------- /src/def/doc/defapiWN.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/doc/defapiWN.pdf -------------------------------------------------------------------------------- /src/def/doc/lefdefref.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/doc/lefdefref.pdf -------------------------------------------------------------------------------- /src/def/lefdefReadme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/def/lefdefReadme.txt -------------------------------------------------------------------------------- /src/defin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/defin/CMakeLists.txt -------------------------------------------------------------------------------- /src/defin/create_box.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/defin/create_box.cpp -------------------------------------------------------------------------------- /src/defin/create_box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/defin/create_box.h -------------------------------------------------------------------------------- /src/defin/defin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/defin/defin.cpp -------------------------------------------------------------------------------- /src/defin/definBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/defin/definBase.cpp -------------------------------------------------------------------------------- /src/defin/definBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/defin/definBase.h -------------------------------------------------------------------------------- /src/defin/definBlockage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/defin/definBlockage.cpp -------------------------------------------------------------------------------- /src/defin/definBlockage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/defin/definBlockage.h -------------------------------------------------------------------------------- /src/defin/definComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/defin/definComponent.cpp -------------------------------------------------------------------------------- /src/defin/definComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/defin/definComponent.h -------------------------------------------------------------------------------- /src/defin/definFill.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/defin/definFill.cpp -------------------------------------------------------------------------------- /src/defin/definFill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/defin/definFill.h -------------------------------------------------------------------------------- /src/defin/definGCell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/defin/definGCell.cpp -------------------------------------------------------------------------------- /src/defin/definGCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/defin/definGCell.h -------------------------------------------------------------------------------- /src/defin/definNet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/defin/definNet.cpp -------------------------------------------------------------------------------- /src/defin/definNet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/defin/definNet.h -------------------------------------------------------------------------------- /src/defin/definNonDefaultRule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/defin/definNonDefaultRule.cpp -------------------------------------------------------------------------------- /src/defin/definNonDefaultRule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/defin/definNonDefaultRule.h -------------------------------------------------------------------------------- /src/defin/definPin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/defin/definPin.cpp -------------------------------------------------------------------------------- /src/defin/definPin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/defin/definPin.h -------------------------------------------------------------------------------- /src/defin/definPinProps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/defin/definPinProps.cpp -------------------------------------------------------------------------------- /src/defin/definPinProps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/defin/definPinProps.h -------------------------------------------------------------------------------- /src/defin/definPolygon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/defin/definPolygon.cpp -------------------------------------------------------------------------------- /src/defin/definPolygon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/defin/definPolygon.h -------------------------------------------------------------------------------- /src/defin/definPropDefs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/defin/definPropDefs.cpp -------------------------------------------------------------------------------- /src/defin/definPropDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/defin/definPropDefs.h -------------------------------------------------------------------------------- /src/defin/definReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/defin/definReader.cpp -------------------------------------------------------------------------------- /src/defin/definReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/defin/definReader.h -------------------------------------------------------------------------------- /src/defin/definRegion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/defin/definRegion.cpp -------------------------------------------------------------------------------- /src/defin/definRegion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/defin/definRegion.h -------------------------------------------------------------------------------- /src/defin/definRow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/defin/definRow.cpp -------------------------------------------------------------------------------- /src/defin/definRow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/defin/definRow.h -------------------------------------------------------------------------------- /src/defin/definSNet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/defin/definSNet.cpp -------------------------------------------------------------------------------- /src/defin/definSNet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/defin/definSNet.h -------------------------------------------------------------------------------- /src/defin/definTracks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/defin/definTracks.cpp -------------------------------------------------------------------------------- /src/defin/definTracks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/defin/definTracks.h -------------------------------------------------------------------------------- /src/defin/definTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/defin/definTypes.h -------------------------------------------------------------------------------- /src/defin/definVia.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/defin/definVia.cpp -------------------------------------------------------------------------------- /src/defin/definVia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/defin/definVia.h -------------------------------------------------------------------------------- /src/defout/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/defout/CMakeLists.txt -------------------------------------------------------------------------------- /src/defout/defout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/defout/defout.cpp -------------------------------------------------------------------------------- /src/defout/defout_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/defout/defout_impl.cpp -------------------------------------------------------------------------------- /src/defout/defout_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/defout/defout_impl.h -------------------------------------------------------------------------------- /src/lef/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/CMakeLists.txt -------------------------------------------------------------------------------- /src/lef/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/LICENSE.TXT -------------------------------------------------------------------------------- /src/lef/README: -------------------------------------------------------------------------------- 1 | lefdefReadme.txt -------------------------------------------------------------------------------- /src/lef/README.md: -------------------------------------------------------------------------------- 1 | Si2 LEF parser 5.8-p027 with CMake support 2 | 3 | See lefdefReadme.txt 4 | -------------------------------------------------------------------------------- /src/lef/TEST/complete.5.8.lef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/TEST/complete.5.8.lef -------------------------------------------------------------------------------- /src/lef/TEST/complete.5.8.lef.au: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/TEST/complete.5.8.lef.au -------------------------------------------------------------------------------- /src/lef/clef/lefMsgTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/clef/lefMsgTable.h -------------------------------------------------------------------------------- /src/lef/clef/lefiArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/clef/lefiArray.h -------------------------------------------------------------------------------- /src/lef/clef/lefiCrossTalk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/clef/lefiCrossTalk.h -------------------------------------------------------------------------------- /src/lef/clef/lefiDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/clef/lefiDebug.h -------------------------------------------------------------------------------- /src/lef/clef/lefiEncryptExt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/clef/lefiEncryptExt.c -------------------------------------------------------------------------------- /src/lef/clef/lefiEncryptInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/clef/lefiEncryptInt.h -------------------------------------------------------------------------------- /src/lef/clef/lefiLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/clef/lefiLayer.h -------------------------------------------------------------------------------- /src/lef/clef/lefiMacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/clef/lefiMacro.h -------------------------------------------------------------------------------- /src/lef/clef/lefiMisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/clef/lefiMisc.h -------------------------------------------------------------------------------- /src/lef/clef/lefiNonDefault.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/clef/lefiNonDefault.h -------------------------------------------------------------------------------- /src/lef/clef/lefiProp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/clef/lefiProp.h -------------------------------------------------------------------------------- /src/lef/clef/lefiPropType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/clef/lefiPropType.h -------------------------------------------------------------------------------- /src/lef/clef/lefiTBInt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/clef/lefiTBInt.c -------------------------------------------------------------------------------- /src/lef/clef/lefiTypedefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/clef/lefiTypedefs.h -------------------------------------------------------------------------------- /src/lef/clef/lefiUnits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/clef/lefiUnits.h -------------------------------------------------------------------------------- /src/lef/clef/lefiUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/clef/lefiUser.h -------------------------------------------------------------------------------- /src/lef/clef/lefiUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/clef/lefiUtil.h -------------------------------------------------------------------------------- /src/lef/clef/lefiVia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/clef/lefiVia.h -------------------------------------------------------------------------------- /src/lef/clef/lefiViaRule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/clef/lefiViaRule.h -------------------------------------------------------------------------------- /src/lef/clef/lefrReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/clef/lefrReader.h -------------------------------------------------------------------------------- /src/lef/clef/lefwWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/clef/lefwWriter.h -------------------------------------------------------------------------------- /src/lef/clef/lefwWriterCalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/clef/lefwWriterCalls.h -------------------------------------------------------------------------------- /src/lef/clef/xlefiArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/clef/xlefiArray.cpp -------------------------------------------------------------------------------- /src/lef/clef/xlefiCrossTalk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/clef/xlefiCrossTalk.cpp -------------------------------------------------------------------------------- /src/lef/clef/xlefiDebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/clef/xlefiDebug.cpp -------------------------------------------------------------------------------- /src/lef/clef/xlefiEncryptInt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/clef/xlefiEncryptInt.cpp -------------------------------------------------------------------------------- /src/lef/clef/xlefiLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/clef/xlefiLayer.cpp -------------------------------------------------------------------------------- /src/lef/clef/xlefiMacro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/clef/xlefiMacro.cpp -------------------------------------------------------------------------------- /src/lef/clef/xlefiMisc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/clef/xlefiMisc.cpp -------------------------------------------------------------------------------- /src/lef/clef/xlefiNonDefault.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/clef/xlefiNonDefault.cpp -------------------------------------------------------------------------------- /src/lef/clef/xlefiProp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/clef/xlefiProp.cpp -------------------------------------------------------------------------------- /src/lef/clef/xlefiPropType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/clef/xlefiPropType.cpp -------------------------------------------------------------------------------- /src/lef/clef/xlefiUnits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/clef/xlefiUnits.cpp -------------------------------------------------------------------------------- /src/lef/clef/xlefiUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/clef/xlefiUtil.cpp -------------------------------------------------------------------------------- /src/lef/clef/xlefiVia.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/clef/xlefiVia.cpp -------------------------------------------------------------------------------- /src/lef/clef/xlefiViaRule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/clef/xlefiViaRule.cpp -------------------------------------------------------------------------------- /src/lef/clef/xlefrReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/clef/xlefrReader.cpp -------------------------------------------------------------------------------- /src/lef/clef/xlefwWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/clef/xlefwWriter.cpp -------------------------------------------------------------------------------- /src/lef/clef/xlefwWriterCalls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/clef/xlefwWriterCalls.cpp -------------------------------------------------------------------------------- /src/lef/clefzlib/clefzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/clefzlib/clefzlib.c -------------------------------------------------------------------------------- /src/lef/clefzlib/lefzlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/clefzlib/lefzlib.h -------------------------------------------------------------------------------- /src/lef/doc/lefapi.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/doc/lefapi.pdf -------------------------------------------------------------------------------- /src/lef/doc/lefapiWN.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/doc/lefapiWN.pdf -------------------------------------------------------------------------------- /src/lef/lef/crypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/lef/crypt.cpp -------------------------------------------------------------------------------- /src/lef/lef/crypt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/lef/crypt.hpp -------------------------------------------------------------------------------- /src/lef/lef/lef.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/lef/lef.msg -------------------------------------------------------------------------------- /src/lef/lef/lef.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/lef/lef.y -------------------------------------------------------------------------------- /src/lef/lef/lef_keywords.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/lef/lef_keywords.cpp -------------------------------------------------------------------------------- /src/lef/lef/lefiArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/lef/lefiArray.cpp -------------------------------------------------------------------------------- /src/lef/lef/lefiArray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/lef/lefiArray.hpp -------------------------------------------------------------------------------- /src/lef/lef/lefiCrossTalk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/lef/lefiCrossTalk.cpp -------------------------------------------------------------------------------- /src/lef/lef/lefiCrossTalk.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/lef/lefiCrossTalk.hpp -------------------------------------------------------------------------------- /src/lef/lef/lefiDebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/lef/lefiDebug.cpp -------------------------------------------------------------------------------- /src/lef/lef/lefiDebug.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/lef/lefiDebug.hpp -------------------------------------------------------------------------------- /src/lef/lef/lefiDefs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/lef/lefiDefs.hpp -------------------------------------------------------------------------------- /src/lef/lef/lefiEncryptInt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/lef/lefiEncryptInt.cpp -------------------------------------------------------------------------------- /src/lef/lef/lefiEncryptInt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/lef/lefiEncryptInt.hpp -------------------------------------------------------------------------------- /src/lef/lef/lefiKRDefs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/lef/lefiKRDefs.hpp -------------------------------------------------------------------------------- /src/lef/lef/lefiLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/lef/lefiLayer.cpp -------------------------------------------------------------------------------- /src/lef/lef/lefiLayer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/lef/lefiLayer.hpp -------------------------------------------------------------------------------- /src/lef/lef/lefiMacro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/lef/lefiMacro.cpp -------------------------------------------------------------------------------- /src/lef/lef/lefiMacro.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/lef/lefiMacro.hpp -------------------------------------------------------------------------------- /src/lef/lef/lefiMisc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/lef/lefiMisc.cpp -------------------------------------------------------------------------------- /src/lef/lef/lefiMisc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/lef/lefiMisc.hpp -------------------------------------------------------------------------------- /src/lef/lef/lefiNonDefault.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/lef/lefiNonDefault.cpp -------------------------------------------------------------------------------- /src/lef/lef/lefiNonDefault.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/lef/lefiNonDefault.hpp -------------------------------------------------------------------------------- /src/lef/lef/lefiProp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/lef/lefiProp.cpp -------------------------------------------------------------------------------- /src/lef/lef/lefiProp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/lef/lefiProp.hpp -------------------------------------------------------------------------------- /src/lef/lef/lefiPropType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/lef/lefiPropType.cpp -------------------------------------------------------------------------------- /src/lef/lef/lefiPropType.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/lef/lefiPropType.hpp -------------------------------------------------------------------------------- /src/lef/lef/lefiTBExt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/lef/lefiTBExt.cpp -------------------------------------------------------------------------------- /src/lef/lef/lefiUnits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/lef/lefiUnits.cpp -------------------------------------------------------------------------------- /src/lef/lef/lefiUnits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/lef/lefiUnits.hpp -------------------------------------------------------------------------------- /src/lef/lef/lefiUser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/lef/lefiUser.hpp -------------------------------------------------------------------------------- /src/lef/lef/lefiUtil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/lef/lefiUtil.hpp -------------------------------------------------------------------------------- /src/lef/lef/lefiVia.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/lef/lefiVia.cpp -------------------------------------------------------------------------------- /src/lef/lef/lefiVia.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/lef/lefiVia.hpp -------------------------------------------------------------------------------- /src/lef/lef/lefiViaRule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/lef/lefiViaRule.cpp -------------------------------------------------------------------------------- /src/lef/lef/lefiViaRule.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/lef/lefiViaRule.hpp -------------------------------------------------------------------------------- /src/lef/lef/lefrCallBacks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/lef/lefrCallBacks.hpp -------------------------------------------------------------------------------- /src/lef/lef/lefrCallbacks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/lef/lefrCallbacks.cpp -------------------------------------------------------------------------------- /src/lef/lef/lefrData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/lef/lefrData.cpp -------------------------------------------------------------------------------- /src/lef/lef/lefrData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/lef/lefrData.hpp -------------------------------------------------------------------------------- /src/lef/lef/lefrReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/lef/lefrReader.cpp -------------------------------------------------------------------------------- /src/lef/lef/lefrReader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/lef/lefrReader.hpp -------------------------------------------------------------------------------- /src/lef/lef/lefrSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/lef/lefrSettings.cpp -------------------------------------------------------------------------------- /src/lef/lef/lefrSettings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/lef/lefrSettings.hpp -------------------------------------------------------------------------------- /src/lef/lef/lefwWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/lef/lefwWriter.cpp -------------------------------------------------------------------------------- /src/lef/lef/lefwWriter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/lef/lefwWriter.hpp -------------------------------------------------------------------------------- /src/lef/lef/lefwWriterCalls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/lef/lefwWriterCalls.cpp -------------------------------------------------------------------------------- /src/lef/lef/lefwWriterCalls.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/lef/lefwWriterCalls.hpp -------------------------------------------------------------------------------- /src/lef/lef/lex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/lef/lex.h -------------------------------------------------------------------------------- /src/lef/lefdefReadme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/lefdefReadme.txt -------------------------------------------------------------------------------- /src/lef/lefdiff/diffLefRW.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/lefdiff/diffLefRW.cpp -------------------------------------------------------------------------------- /src/lef/lefdiff/diffLefRW.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/lefdiff/diffLefRW.hpp -------------------------------------------------------------------------------- /src/lef/lefdiff/differLef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/lefdiff/differLef.cpp -------------------------------------------------------------------------------- /src/lef/lefrw/lefrw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/lefrw/lefrw.cpp -------------------------------------------------------------------------------- /src/lef/lefwrite/lefwrite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/lefwrite/lefwrite.cpp -------------------------------------------------------------------------------- /src/lef/lefwrite/lefwriteCbs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/lefwrite/lefwriteCbs.cpp -------------------------------------------------------------------------------- /src/lef/lefzlib/lefzlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/lefzlib/lefzlib.cpp -------------------------------------------------------------------------------- /src/lef/lefzlib/lefzlib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lef/lefzlib/lefzlib.hpp -------------------------------------------------------------------------------- /src/lefin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lefin/CMakeLists.txt -------------------------------------------------------------------------------- /src/lefin/lefTechLayerSpacingEolParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lefin/lefTechLayerSpacingEolParser.cpp -------------------------------------------------------------------------------- /src/lefin/lefTechLayerSpacingEolParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lefin/lefTechLayerSpacingEolParser.h -------------------------------------------------------------------------------- /src/lefin/lefin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lefin/lefin.cpp -------------------------------------------------------------------------------- /src/lefin/reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lefin/reader.cpp -------------------------------------------------------------------------------- /src/lefout/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lefout/CMakeLists.txt -------------------------------------------------------------------------------- /src/lefout/lefout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/lefout/lefout.cpp -------------------------------------------------------------------------------- /src/swig/python/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/swig/python/CMakeLists.txt -------------------------------------------------------------------------------- /src/swig/python/dbenums.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/swig/python/dbenums.i -------------------------------------------------------------------------------- /src/swig/python/dbhelpers.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/swig/python/dbhelpers.i -------------------------------------------------------------------------------- /src/swig/python/dboperators.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/swig/python/dboperators.i -------------------------------------------------------------------------------- /src/swig/python/dbtypes.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/swig/python/dbtypes.i -------------------------------------------------------------------------------- /src/swig/python/opendbpy.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/swig/python/opendbpy.i -------------------------------------------------------------------------------- /src/swig/python/parserenums.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/swig/python/parserenums.i -------------------------------------------------------------------------------- /src/swig/python/setup.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/swig/python/setup.py.in -------------------------------------------------------------------------------- /src/swig/tcl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/swig/tcl/CMakeLists.txt -------------------------------------------------------------------------------- /src/swig/tcl/dbdiff.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/swig/tcl/dbdiff.i -------------------------------------------------------------------------------- /src/swig/tcl/dbenums.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/swig/tcl/dbenums.i -------------------------------------------------------------------------------- /src/swig/tcl/dbhelpers.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/swig/tcl/dbhelpers.i -------------------------------------------------------------------------------- /src/swig/tcl/dbtypes.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/swig/tcl/dbtypes.i -------------------------------------------------------------------------------- /src/swig/tcl/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/swig/tcl/main.cpp -------------------------------------------------------------------------------- /src/swig/tcl/opendbtcl.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/swig/tcl/opendbtcl.i -------------------------------------------------------------------------------- /src/swig/tcl/parserenums.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/swig/tcl/parserenums.i -------------------------------------------------------------------------------- /src/swig/tcl/polygon.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/swig/tcl/polygon.i -------------------------------------------------------------------------------- /src/tm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/tm/CMakeLists.txt -------------------------------------------------------------------------------- /src/tm/ZFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/tm/ZFactory.cpp -------------------------------------------------------------------------------- /src/tm/ZNamespace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/tm/ZNamespace.cpp -------------------------------------------------------------------------------- /src/tm/tm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/tm/tm.cpp -------------------------------------------------------------------------------- /src/zlib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/zlib/CMakeLists.txt -------------------------------------------------------------------------------- /src/zlib/ZException.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/zlib/ZException.cpp -------------------------------------------------------------------------------- /src/zutil/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/zutil/CMakeLists.txt -------------------------------------------------------------------------------- /src/zutil/files.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/zutil/files.cpp -------------------------------------------------------------------------------- /src/zutil/graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/zutil/graph.cpp -------------------------------------------------------------------------------- /src/zutil/mem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/zutil/mem.cpp -------------------------------------------------------------------------------- /src/zutil/misc_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/zutil/misc_functions.cpp -------------------------------------------------------------------------------- /src/zutil/name.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/zutil/name.cpp -------------------------------------------------------------------------------- /src/zutil/parse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/zutil/parse.cpp -------------------------------------------------------------------------------- /src/zutil/poly_decomp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/src/zutil/poly_decomp.cpp -------------------------------------------------------------------------------- /tests/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/tests/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /tests/cpp/CallBack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/tests/cpp/CallBack.h -------------------------------------------------------------------------------- /tests/cpp/TestCallBacks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/tests/cpp/TestCallBacks.cpp -------------------------------------------------------------------------------- /tests/cpp/TestGeom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/tests/cpp/TestGeom.cpp -------------------------------------------------------------------------------- /tests/cpp/TestGroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/tests/cpp/TestGroup.cpp -------------------------------------------------------------------------------- /tests/cpp/TestLef58Properties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/tests/cpp/TestLef58Properties.cpp -------------------------------------------------------------------------------- /tests/cpp/TestLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/tests/cpp/TestLogger.cpp -------------------------------------------------------------------------------- /tests/cpp/TestModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/tests/cpp/TestModule.cpp -------------------------------------------------------------------------------- /tests/cpp/helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/tests/cpp/helper.cpp -------------------------------------------------------------------------------- /tests/data/ICEWall/dummy_pads.lef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/tests/data/ICEWall/dummy_pads.lef -------------------------------------------------------------------------------- /tests/data/ICEWall/octilinear.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/tests/data/ICEWall/octilinear.def -------------------------------------------------------------------------------- /tests/data/Nangate45/NangateOpenCellLibrary.mod.lef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/tests/data/Nangate45/NangateOpenCellLibrary.mod.lef -------------------------------------------------------------------------------- /tests/data/Nangate45/OpenCellLibraryLicenseSi2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/tests/data/Nangate45/OpenCellLibraryLicenseSi2.txt -------------------------------------------------------------------------------- /tests/data/design.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/tests/data/design.def -------------------------------------------------------------------------------- /tests/data/gcd/floorplan.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/tests/data/gcd/floorplan.def -------------------------------------------------------------------------------- /tests/data/gcd/gcd_pdn.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/tests/data/gcd/gcd_pdn.def -------------------------------------------------------------------------------- /tests/data/gscl45nm.lef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/tests/data/gscl45nm.lef -------------------------------------------------------------------------------- /tests/data/gscl45nm.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/tests/data/gscl45nm.lib -------------------------------------------------------------------------------- /tests/data/parser_test.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/tests/data/parser_test.def -------------------------------------------------------------------------------- /tests/parser_test.defok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/tests/parser_test.defok -------------------------------------------------------------------------------- /tests/python/01-import_package_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/tests/python/01-import_package_test.py -------------------------------------------------------------------------------- /tests/python/02-read_lef_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/tests/python/02-read_lef_test.py -------------------------------------------------------------------------------- /tests/python/03-dump_via_rules_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/tests/python/03-dump_via_rules_test.py -------------------------------------------------------------------------------- /tests/python/04-dump_vias_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/tests/python/04-dump_vias_test.py -------------------------------------------------------------------------------- /tests/python/05-read_def_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/tests/python/05-read_def_test.py -------------------------------------------------------------------------------- /tests/python/07-dump_nets_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/tests/python/07-dump_nets_test.py -------------------------------------------------------------------------------- /tests/python/08-write_lef_and_def_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/tests/python/08-write_lef_and_def_test.py -------------------------------------------------------------------------------- /tests/python/09-lef_data_access_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/tests/python/09-lef_data_access_test.py -------------------------------------------------------------------------------- /tests/python/10-gcd_def_access_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/tests/python/10-gcd_def_access_test.py -------------------------------------------------------------------------------- /tests/python/11-gcd_pdn_def_access_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/tests/python/11-gcd_pdn_def_access_test.py -------------------------------------------------------------------------------- /tests/python/12-edit_def_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/tests/python/12-edit_def_test.py -------------------------------------------------------------------------------- /tests/python/13-wire_encoder_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/tests/python/13-wire_encoder_test.py -------------------------------------------------------------------------------- /tests/python/14-edit_via_params_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/tests/python/14-edit_via_params_test.py -------------------------------------------------------------------------------- /tests/python/15-row_settings_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/tests/python/15-row_settings_test.py -------------------------------------------------------------------------------- /tests/python/16-db-read-write-octilinear-def_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/tests/python/16-db-read-write-octilinear-def_test.py -------------------------------------------------------------------------------- /tests/python/17-db_read-write_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/tests/python/17-db_read-write_test.py -------------------------------------------------------------------------------- /tests/regression-cpp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/tests/regression-cpp.sh -------------------------------------------------------------------------------- /tests/regression-py.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/tests/regression-py.sh -------------------------------------------------------------------------------- /tests/regression-tcl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/tests/regression-tcl.sh -------------------------------------------------------------------------------- /tests/tcl/01-import_package_test.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/tests/tcl/01-import_package_test.tcl -------------------------------------------------------------------------------- /tests/tcl/02-read_lef_test.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/tests/tcl/02-read_lef_test.tcl -------------------------------------------------------------------------------- /tests/tcl/03-dump_via_rules_test.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/tests/tcl/03-dump_via_rules_test.tcl -------------------------------------------------------------------------------- /tests/tcl/04-dump_vias_test.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/tests/tcl/04-dump_vias_test.tcl -------------------------------------------------------------------------------- /tests/tcl/05-read_def_test.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/tests/tcl/05-read_def_test.tcl -------------------------------------------------------------------------------- /tests/tcl/07-dump_nets_test.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/tests/tcl/07-dump_nets_test.tcl -------------------------------------------------------------------------------- /tests/tcl/08-write_lef_and_def_test.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/tests/tcl/08-write_lef_and_def_test.tcl -------------------------------------------------------------------------------- /tests/tcl/09-lef_data_access_test.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/tests/tcl/09-lef_data_access_test.tcl -------------------------------------------------------------------------------- /tests/tcl/10-gcd_def_access_test.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/tests/tcl/10-gcd_def_access_test.tcl -------------------------------------------------------------------------------- /tests/tcl/11-gcd_pdn_def_access_test.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/tests/tcl/11-gcd_pdn_def_access_test.tcl -------------------------------------------------------------------------------- /tests/tcl/12-edit_def_test.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/tests/tcl/12-edit_def_test.tcl -------------------------------------------------------------------------------- /tests/tcl/13-wire_encoder_test.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/tests/tcl/13-wire_encoder_test.tcl -------------------------------------------------------------------------------- /tests/tcl/14-edit_via_params_test.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/tests/tcl/14-edit_via_params_test.tcl -------------------------------------------------------------------------------- /tests/tcl/15-row_settings_test.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/tests/tcl/15-row_settings_test.tcl -------------------------------------------------------------------------------- /tests/tcl/17-db_read-write_test.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/tests/tcl/17-db_read-write_test.tcl -------------------------------------------------------------------------------- /tests/tcl/18-check_routing_tracks.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/tests/tcl/18-check_routing_tracks.tcl -------------------------------------------------------------------------------- /tests/tcl/19-polygon_test.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/tests/tcl/19-polygon_test.tcl -------------------------------------------------------------------------------- /tests/tcl/20-def_parser_test.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/tests/tcl/20-def_parser_test.tcl -------------------------------------------------------------------------------- /tests/tcl/test_helpers.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/tests/tcl/test_helpers.tcl -------------------------------------------------------------------------------- /tests/unitTests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/tests/unitTests.sh -------------------------------------------------------------------------------- /tests/unitTestsPython/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/tests/unitTestsPython/README.md -------------------------------------------------------------------------------- /tests/unitTestsPython/TestBTerm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/tests/unitTestsPython/TestBTerm.py -------------------------------------------------------------------------------- /tests/unitTestsPython/TestBlock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/tests/unitTestsPython/TestBlock.py -------------------------------------------------------------------------------- /tests/unitTestsPython/TestDestroy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/tests/unitTestsPython/TestDestroy.py -------------------------------------------------------------------------------- /tests/unitTestsPython/TestGroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/tests/unitTestsPython/TestGroup.py -------------------------------------------------------------------------------- /tests/unitTestsPython/TestITerm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/tests/unitTestsPython/TestITerm.py -------------------------------------------------------------------------------- /tests/unitTestsPython/TestInst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/tests/unitTestsPython/TestInst.py -------------------------------------------------------------------------------- /tests/unitTestsPython/TestModule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/tests/unitTestsPython/TestModule.py -------------------------------------------------------------------------------- /tests/unitTestsPython/TestNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/tests/unitTestsPython/TestNet.py -------------------------------------------------------------------------------- /tests/unitTestsPython/TestWireCodec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/tests/unitTestsPython/TestWireCodec.py -------------------------------------------------------------------------------- /tests/unitTestsPython/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/tests/unitTestsPython/helper.py -------------------------------------------------------------------------------- /tests/unitTestsPython/odbUnitTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-OpenROAD-Project/OpenDB/HEAD/tests/unitTestsPython/odbUnitTest.py --------------------------------------------------------------------------------