├── bootstrap ├── debian │ ├── docs │ ├── compat │ ├── source │ │ └── format │ ├── coriolis2-dev.install │ ├── coriolis2.install │ ├── changelog.in │ └── rules ├── shadock.png ├── refactor.sed ├── svn2git │ └── svn2git.sh ├── unicorn.desktop └── cmake_modules │ └── CMakeLists.txt ├── cumulus └── src │ └── plugins │ └── clocktree │ └── __init__.py ├── vlsisapd ├── src │ ├── agds │ │ ├── CMakeLists.txt │ │ └── src │ │ │ └── vlsisapd │ │ │ └── agds │ │ │ └── Element.h │ ├── cif │ │ ├── CMakeLists.txt │ │ └── src │ │ │ └── vlsisapd │ │ │ └── cif │ │ │ └── Polygon.h │ ├── dtr │ │ └── CMakeLists.txt │ ├── bookshelf │ │ └── CMakeLists.txt │ ├── liberty │ │ ├── CMakeLists.txt │ │ └── src │ │ │ └── WireLoadArea.cpp │ ├── openChams │ │ ├── CMakeLists.txt │ │ └── src │ │ │ ├── vlsisapd │ │ │ └── openChams │ │ │ │ └── DDP.h │ │ │ └── SimulModel.cpp │ ├── spice │ │ ├── CMakeLists.txt │ │ └── src │ │ │ ├── Subckt.cpp │ │ │ └── vlsisapd │ │ │ └── spice │ │ │ └── SpiceException.h │ ├── utilities │ │ └── CMakeLists.txt │ └── configuration │ │ ├── CMakeLists.txt │ │ └── src │ │ ├── images │ │ ├── choose.png │ │ └── warning.png │ │ └── Configuration.qrc ├── cmake_modules │ └── CMakeLists.txt ├── doc │ ├── img │ │ ├── transistorCif.pdf │ │ ├── transistorCif.png │ │ └── pngToPdf.sh │ ├── agds │ │ └── Element.dox │ ├── dtr │ │ └── Exception.dox │ ├── spice │ │ └── Exception.dox │ ├── openChams │ │ └── Exception.dox │ └── CMakeLists.txt └── examples │ ├── cif │ ├── python │ │ ├── CMakeLists.txt │ │ └── driveCif.py │ ├── CMakeLists.txt │ ├── transistor.cif │ └── cplusplus │ │ └── cmake.ex │ ├── agds │ ├── python │ │ ├── CMakeLists.txt │ │ └── driveAgds.py │ ├── CMakeLists.txt │ └── cplusplus │ │ └── cmake.ex │ ├── dtr │ ├── python │ │ └── CMakeLists.txt │ └── CMakeLists.txt │ ├── spice │ ├── python │ │ └── CMakeLists.txt │ └── CMakeLists.txt │ ├── liberty │ ├── python │ │ └── CMakeLists.txt │ └── CMakeLists.txt │ ├── openChams │ ├── python │ │ └── CMakeLists.txt │ └── CMakeLists.txt │ └── CMakeLists.txt ├── crlcore ├── src │ ├── ccore │ │ ├── CConfig.h.cmake │ │ ├── crlcore │ │ │ ├── CConfig.h │ │ │ ├── Blif.h │ │ │ ├── COptions.h │ │ │ ├── CellPath.h │ │ │ ├── CellPaths.h │ │ │ ├── TimingEvent.h │ │ │ ├── ToolEngines.h │ │ │ ├── CLayerConnexity.h │ │ │ ├── Ioc.h │ │ │ └── OADriver.h │ │ ├── COptions.cpp │ │ ├── lefdef │ │ │ ├── LefDef.h │ │ │ ├── DefDriver.cpp │ │ │ └── LefParser.cpp │ │ ├── alliance │ │ │ └── vst │ │ │ │ └── Vst.h │ │ ├── liberty │ │ │ ├── LuTable.cpp │ │ │ ├── LuTable.h │ │ │ ├── CellPath.cpp │ │ │ ├── TimingEvent.cpp │ │ │ ├── LuTableTemplate.h │ │ │ ├── LibertyTechnology.cpp │ │ │ ├── LibertyTechnology.h │ │ │ └── LuTableTemplate.cpp │ │ ├── toolbox │ │ │ ├── ToolBox.cpp │ │ │ ├── RoutingPads.cpp │ │ │ ├── HyperNetPortOccurrences.h │ │ │ └── HyperNetPortOccurrences.cpp │ │ ├── bookshelf │ │ │ ├── Bookshelf.h │ │ │ ├── BookshelfDriver.cpp │ │ │ └── BookshelfParser.cpp │ │ ├── openaccess │ │ │ ├── OpenAccessDriver.cpp │ │ │ ├── Makefile │ │ │ └── MyAssert.h │ │ ├── cif │ │ │ └── Cif.h │ │ ├── agds │ │ │ └── Agds.h │ │ ├── CifDriver.cpp │ │ └── GdsDriver.cpp │ ├── cyclop │ │ ├── Cyclop.h │ │ ├── OpenCellDialog.cpp │ │ └── OpenCellDialog.h │ ├── fonts │ │ └── UnknownBoldNormal14.h │ └── CMakeLists.txt ├── doc │ ├── crlcore │ │ ├── open.png │ │ ├── closed.png │ │ └── CRL.dox │ └── doxygen │ │ └── CMakeLists.txt ├── etc │ ├── techno.conf │ ├── cmos │ │ ├── mauka.conf │ │ ├── hMetis.conf │ │ ├── nimbus.conf │ │ ├── etesian.conf │ │ ├── patterns.conf │ │ ├── misc.conf │ │ ├── display.conf │ │ └── stratus1.conf │ ├── ispd05 │ │ ├── hMetis.conf │ │ ├── mauka.conf │ │ ├── nimbus.conf │ │ ├── etesian.conf │ │ ├── patterns.conf │ │ ├── misc.conf │ │ ├── display.conf │ │ └── stratus1.conf │ ├── vsc200 │ │ ├── mauka.conf │ │ ├── etesian.conf │ │ ├── hMetis.conf │ │ ├── nimbus.conf │ │ ├── patterns.conf │ │ ├── misc.conf │ │ ├── display.conf │ │ └── stratus1.conf │ ├── scmos_deep_018 │ │ ├── etesian.conf │ │ ├── mauka.conf │ │ ├── hMetis.conf │ │ ├── nimbus.conf │ │ ├── patterns.conf │ │ ├── misc.conf │ │ ├── display.conf │ │ └── stratus1.conf │ └── common │ │ ├── nimbus.conf │ │ └── stratus1.conf └── cmake_modules │ └── CMakeLists.txt ├── unicorn ├── doc │ ├── CMakeLists.txt │ └── unicorn │ │ ├── open.png │ │ ├── closed.png │ │ └── Unicorn.dox ├── cmake_modules │ └── CMakeLists.txt ├── src │ ├── images │ │ └── diet-coke.png │ └── Unicorn.qrc └── python │ └── CMakeLists.txt ├── documentation ├── UsersGuide │ ├── images │ │ ├── clipboard.bb │ │ ├── i-core.bb │ │ ├── Controller-1.bb │ │ ├── Viewer-1.bb │ │ ├── etesian-1.bb │ │ ├── ComputerMouse.bb │ │ ├── Controller-Look-1.bb │ │ ├── Viewer-Netlist-1.bb │ │ ├── chip-structure-1.bb │ │ ├── Controller-Filter-1.bb │ │ ├── Controller-Inspector-1.bb │ │ ├── Controller-Inspector-2.bb │ │ ├── Controller-Inspector-3.bb │ │ ├── Controller-LayersGos-1.bb │ │ ├── Controller-Netlist-1.bb │ │ ├── Controller-Selection-1.bb │ │ ├── Controller-Settings-1.bb │ │ ├── Coriolis-Soft-Schema.bb │ │ ├── PR-DetailedPreRoute.bb │ │ ├── i-core.pdf │ │ ├── i-core.png │ │ ├── key_F.pdf │ │ ├── key_F.png │ │ ├── key_K.png │ │ ├── key_M.png │ │ ├── key_S.png │ │ ├── key_UP.pdf │ │ ├── key_UP.png │ │ ├── key_Z.png │ │ ├── Viewer-1.pdf │ │ ├── Viewer-1.png │ │ ├── key_CTRL.png │ │ ├── key_DOWN.pdf │ │ ├── key_DOWN.png │ │ ├── key_ESC.png │ │ ├── key_Gcap.png │ │ ├── key_Icap.png │ │ ├── key_Kcap.png │ │ ├── key_LEFT.png │ │ ├── key_Lcap.png │ │ ├── key_Ocap.png │ │ ├── key_PLUS.png │ │ ├── key_Pcap.png │ │ ├── key_Qcap.png │ │ ├── key_Scap.png │ │ ├── key_Wcap.png │ │ ├── clipboard.pdf │ │ ├── clipboard.png │ │ ├── etesian-1.pdf │ │ ├── etesian-1.png │ │ ├── key_RIGHT.png │ │ ├── ComputerMouse.jpg │ │ ├── ComputerMouse.pdf │ │ ├── ComputerMouse.png │ │ ├── Controller-1.pdf │ │ ├── Controller-1.png │ │ ├── PR-DetailedRoute.png │ │ ├── PR-FinalizeRoute.png │ │ ├── PR-GlobalRoute.png │ │ ├── Viewer-Netlist-1.pdf │ │ ├── Viewer-Netlist-1.png │ │ ├── chip-structure-1.pdf │ │ ├── chip-structure-1.png │ │ ├── Controller-Look-1.pdf │ │ ├── Controller-Look-1.png │ │ ├── PR-SBS-LoadGlobal.png │ │ ├── PR-SBS-SaveGlobal.png │ │ ├── Controller-Filter-1.pdf │ │ ├── Controller-Filter-1.png │ │ ├── Controller-Netlist-1.pdf │ │ ├── Controller-Netlist-1.png │ │ ├── Controller-Settings-1.pdf │ │ ├── Controller-Settings-1.png │ │ ├── Coriolis-Soft-Schema.pdf │ │ ├── Coriolis-Soft-Schema.png │ │ ├── PR-DetailedPreRoute.pdf │ │ ├── PR-DetailedPreRoute.png │ │ ├── Controller-Inspector-1.pdf │ │ ├── Controller-Inspector-1.png │ │ ├── Controller-Inspector-2.pdf │ │ ├── Controller-Inspector-2.png │ │ ├── Controller-Inspector-3.pdf │ │ ├── Controller-Inspector-3.png │ │ ├── Controller-LayersGos-1.pdf │ │ ├── Controller-LayersGos-1.png │ │ ├── Controller-Selection-1.pdf │ │ ├── Controller-Selection-1.png │ │ ├── key_PLUS.fig │ │ ├── key_ESC.fig │ │ ├── key_F.fig │ │ ├── key_Gcap.fig │ │ ├── key_Icap.fig │ │ ├── key_K.fig │ │ ├── key_Kcap.fig │ │ ├── key_Lcap.fig │ │ ├── key_M.fig │ │ ├── key_Ocap.fig │ │ ├── key_Pcap.fig │ │ ├── key_Qcap.fig │ │ ├── key_S.fig │ │ ├── key_Scap.fig │ │ ├── key_UP.fig │ │ ├── key_Wcap.fig │ │ ├── key_Z.fig │ │ ├── key_CTRL.fig │ │ ├── key_DOWN.fig │ │ ├── key_LEFT.fig │ │ └── key_RIGHT.fig │ ├── UsersGuide.pdf │ ├── UsersGuide_HTML.rst │ └── UsersGuide_LaTeX.rst ├── examples │ ├── CMakeLists.txt │ ├── AM2901 │ │ └── .coriolis2 │ │ │ ├── techno.py │ │ │ └── kite.py │ └── code │ │ └── engine │ │ └── smurf │ │ └── cmake_modules │ │ └── CMakeLists.txt └── RDS │ ├── RDS_LaTeX.rst │ ├── RDS_HTML.rst │ └── images │ ├── RDS_LCW.png │ ├── RDS_VW.png │ ├── bigvia-1.png │ ├── bigvia-2.png │ ├── i-core.png │ ├── clipboard.png │ ├── SegmentOrientation.png │ ├── RDS_VW-eps-converted-to.pdf │ ├── RDS_LCW-eps-converted-to.pdf │ └── clipboard-eps-converted-to.pdf ├── .projectile ├── stratus1 ├── src │ ├── modules │ │ ├── CMakeLists.txt │ │ └── patterns │ │ │ └── Makefile.am │ ├── stratus │ │ └── st_config.py │ └── CMakeLists.txt ├── devdoc │ ├── stratus.tex │ └── see_also.tex ├── doc │ ├── images │ │ ├── xml.png │ │ ├── add1.png │ │ ├── add2.png │ │ ├── test.png │ │ ├── addaccu.png │ │ ├── editor.png │ │ └── Makefile.am │ ├── stratus │ │ ├── fichiers │ │ │ ├── Makefile │ │ │ └── test.py │ │ ├── images │ │ │ ├── add1.png │ │ │ ├── add2.png │ │ │ ├── test.png │ │ │ ├── xml.png │ │ │ ├── editor.png │ │ │ ├── addaccu1.png │ │ │ ├── addaccu2.png │ │ │ ├── resizeAb.png │ │ │ └── Makefile.am │ │ ├── html.entry │ │ └── see_also.tex │ ├── dpgen │ │ └── html.entry │ ├── developer │ │ ├── stratus_developer.tex │ │ ├── see_also.tex │ │ └── html.entry │ ├── patterns │ │ └── html.entry │ └── CMakeLists.txt └── etc │ └── CMakeLists.txt ├── kite ├── doc │ ├── open.png │ ├── closed.png │ ├── html.entry │ └── images │ │ ├── Track-0.png │ │ ├── Track-1.pdf │ │ ├── Track-1.png │ │ ├── Track-2.pdf │ │ ├── Track-2.png │ │ ├── Track-3.pdf │ │ ├── Track-3.png │ │ ├── Track-4.pdf │ │ ├── Track-4.png │ │ ├── Track-5.pdf │ │ ├── Track-5.png │ │ ├── RoutingEvent-1.pdf │ │ ├── RoutingEvent-1.png │ │ ├── RoutingEvent-2.pdf │ │ ├── RoutingEvent-2.png │ │ ├── RoutingEvent-3.pdf │ │ ├── RoutingEvent-3.png │ │ ├── RoutingPlane-1.png │ │ ├── _makeDogleg-10.png │ │ ├── ConflictSolve-1.png │ │ ├── DataNegociate-1.png │ │ ├── DataNegociate-2.png │ │ ├── RoutingEvent-10.pdf │ │ ├── RoutingEvent-10.png │ │ ├── RoutingEvent-11.pdf │ │ ├── RoutingEvent-11.png │ │ ├── RoutingEvent-12.pdf │ │ ├── RoutingEvent-12.png │ │ ├── RoutingEvent-13.pdf │ │ ├── RoutingEvent-13.png │ │ ├── RoutingEvent-14.pdf │ │ ├── RoutingEvent-14.png │ │ ├── RoutingEvent-15.pdf │ │ ├── RoutingEvent-15.png │ │ ├── TrackBeginIndex-1.png │ │ ├── TrackSegment-10.png │ │ ├── TrackSegment-11.png │ │ ├── ManipulatorRelax-1.png │ │ ├── ManipulatorRelax-2.png │ │ ├── ManipulatorRelax-3.png │ │ ├── ManipulatorRelax-4.png │ │ ├── TrackSegmentCost-1.pdf │ │ ├── TrackSegmentCost-1.png │ │ ├── TrackSegmentCost-2.pdf │ │ ├── TrackSegmentCost-2.png │ │ ├── TrackSegmentCost-3.pdf │ │ ├── TrackSegmentCost-3.png │ │ ├── ConflictSolveByHistory-1.png │ │ ├── ConflictSolveByHistory-2.png │ │ ├── ConflictSolveByPlaceds-1.png │ │ └── TrackOccupiedInterval-1.png ├── cmake_modules │ └── CMakeLists.txt └── python │ └── CMakeLists.txt ├── mauka ├── src │ ├── Bin.cpp │ ├── Row.cpp │ ├── Move.cpp │ ├── BBPlacer.cpp │ ├── MaukaBox.cpp │ ├── SubRow.cpp │ ├── mauka │ │ ├── Bin.h │ │ ├── Move.h │ │ ├── Row.h │ │ ├── SubRow.h │ │ ├── BBPlacer.h │ │ ├── Container.h │ │ ├── MaukaBox.h │ │ ├── Surface.h │ │ └── SimAnnealingPlacer.h │ ├── Container.cpp │ ├── MaukaEngine.cpp │ └── SimAnnealingPlacer.cpp └── cmake_modules │ └── CMakeLists.txt ├── nimbus ├── src │ ├── Grid.cpp │ ├── Fence.cpp │ ├── GCell.cpp │ ├── HFence.cpp │ ├── VFence.cpp │ ├── FrontLine.cpp │ ├── RoutTools.cpp │ ├── Splitter.cpp │ ├── nimbus │ │ ├── Grid.h │ │ ├── Fence.h │ │ ├── Fences.h │ │ ├── GCell.h │ │ ├── GCells.h │ │ ├── HFence.h │ │ ├── VFence.h │ │ ├── FrontLine.h │ │ ├── RoutTools.h │ │ ├── Splitter.h │ │ ├── Splitters.h │ │ ├── NimbusEngine.h │ │ ├── StepProperty.h │ │ ├── FenceProperty.h │ │ ├── SplitterContact.h │ │ └── SplitterContacts.h │ ├── NimbusEngine.cpp │ ├── StepProperty.cpp │ ├── FenceProperty.cpp │ └── SplitterContact.cpp └── cmake_modules │ └── CMakeLists.txt ├── hurricane ├── doc │ ├── CMakeLists.txt │ ├── viewer │ │ ├── open.png │ │ └── closed.png │ └── hurricane │ │ ├── View.dox │ │ ├── open.png │ │ ├── closed.png │ │ ├── MIGRATE.txt │ │ ├── images │ │ ├── id.gif │ │ ├── mx.gif │ │ ├── my.gif │ │ ├── r1.gif │ │ ├── r2.gif │ │ ├── r3.gif │ │ ├── xr.gif │ │ ├── yr.gif │ │ ├── transf-ID.png │ │ ├── transf-MX.png │ │ ├── transf-MY.png │ │ ├── transf-R1.png │ │ ├── transf-R2.pdf │ │ ├── transf-R2.png │ │ ├── transf-R3.pdf │ │ ├── transf-R3.png │ │ ├── transf-RX.png │ │ ├── transf-XR.png │ │ ├── transf-YR.png │ │ ├── DummyFig-1.pdf │ │ ├── DummyFig-1.png │ │ ├── DummyFig-2.pdf │ │ └── DummyFig-2.png │ │ ├── Transformation.dox │ │ ├── VectorCollection.dox │ │ ├── html.entry │ │ ├── Editor.dox │ │ ├── Pin.dox │ │ ├── ExpandRules.dox │ │ ├── Primitive.dox │ │ ├── Relation.dox │ │ ├── StandardRelation.dox │ │ ├── StandardSharedProperty.dox │ │ ├── StandardPrivateProperty.dox │ │ └── Hurricane.dox ├── cmake_modules │ └── CMakeLists.txt ├── src │ ├── isobar │ │ ├── PyPlug.cpp │ │ └── hurricane │ │ │ └── isobar │ │ │ └── PyDbU.h │ ├── CMakeLists.txt │ ├── viewer │ │ ├── images │ │ │ ├── i-core.png │ │ │ ├── gnome-core.png │ │ │ ├── gtk-go-up.png │ │ │ ├── stock_open.png │ │ │ ├── stock_save.png │ │ │ ├── gnome-gmush.png │ │ │ ├── gtk-go-down.png │ │ │ ├── swiss-knife.png │ │ │ ├── python-logo-v3.png │ │ │ ├── stratus-cloud.png │ │ │ ├── palette_hide_all.png │ │ │ ├── palette_show_all.png │ │ │ ├── gtk-go-forward-ltr.png │ │ │ └── gtk-go-forward-rtl.png │ │ └── hurricane │ │ │ └── viewer │ │ │ ├── CellWidgets.h │ │ │ ├── RecordModel.h │ │ │ └── ScreenUtilities.h │ └── hurricane │ │ └── TO_BE_DONE └── tests │ └── CMakeLists.txt ├── katabatic ├── doc │ ├── open.png │ ├── closed.png │ ├── images │ │ ├── _do_xG.png │ │ ├── reduce-1.pdf │ │ ├── reduce-1.png │ │ ├── _do_1G_1M1.png │ │ ├── _do_1G_1M3.png │ │ ├── _do_1G_xM1.png │ │ ├── _do_xG_xM2.png │ │ ├── _do_xG_xM3.png │ │ ├── _slacken-1.png │ │ ├── _slacken-2.png │ │ ├── doRp_Access.png │ │ ├── moveULeft-1.png │ │ ├── AutoContact-1.pdf │ │ ├── AutoContact-1.png │ │ ├── AutoContact-10.pdf │ │ ├── AutoContact-10.png │ │ ├── AutoContact-11.pdf │ │ ├── AutoContact-11.png │ │ ├── AutoContact-12.pdf │ │ ├── AutoContact-12.png │ │ ├── AutoContact-13.pdf │ │ ├── AutoContact-13.png │ │ ├── AutoContact-14.pdf │ │ ├── AutoContact-14.png │ │ ├── AutoContact-15.pdf │ │ ├── AutoContact-15.png │ │ ├── AutoContact-2.pdf │ │ ├── AutoContact-2.png │ │ ├── AutoContact-3.pdf │ │ ├── AutoContact-3.png │ │ ├── NetOptimals-1.pdf │ │ ├── NetOptimals-1.png │ │ ├── NetOptimals-2.pdf │ │ ├── NetOptimals-2.png │ │ ├── NetOptimals-3.pdf │ │ ├── NetOptimals-3.png │ │ ├── _do_xG_1M1_1M2.png │ │ ├── _do_xG_xM1_xM3.png │ │ ├── _makeDogleg-1.png │ │ ├── _makeDogleg-2.png │ │ ├── _makeDogleg-4.png │ │ ├── AutoContactG1-1.pdf │ │ ├── AutoContactG1-1.png │ │ ├── AutoContactG2-1.pdf │ │ ├── AutoContactG2-1.png │ │ ├── AutoContactG3-1.pdf │ │ ├── AutoContactG3-1.png │ │ ├── AutoContactG3-2.pdf │ │ ├── AutoContactG3-2.png │ │ ├── AutoContactG3-3.pdf │ │ ├── AutoContactG3-3.png │ │ ├── AutoContactG3-4.pdf │ │ ├── AutoContactG3-4.png │ │ ├── AutoContactG4-1.pdf │ │ ├── AutoContactG4-1.png │ │ ├── AutoContactG4-2.pdf │ │ ├── AutoContactG4-2.png │ │ ├── AutoContactG4-3.pdf │ │ ├── AutoContactG4-3.png │ │ ├── AutoContactG4-4.pdf │ │ ├── AutoContactG4-4.png │ │ ├── AutoContactG4-5.pdf │ │ ├── AutoContactG4-5.png │ │ ├── AutoInvalidate-1.pdf │ │ ├── AutoInvalidate-1.png │ │ ├── LegalConstruct-1.pdf │ │ ├── LegalConstruct-1.png │ │ ├── LegalConstruct-2.pdf │ │ ├── LegalConstruct-2.png │ │ ├── LegalConstruct-3.pdf │ │ ├── LegalConstruct-3.png │ │ ├── LegalConstruct-4.pdf │ │ ├── LegalConstruct-4.png │ │ ├── LegalConstruct-5.pdf │ │ ├── LegalConstruct-5.png │ │ ├── LegalConstruct-6.pdf │ │ ├── LegalConstruct-6.png │ │ ├── NetConstraints-1.pdf │ │ ├── NetConstraints-1.png │ │ ├── NetConstraints-2.pdf │ │ ├── NetConstraints-2.png │ │ ├── NetConstraints-3.pdf │ │ ├── NetConstraints-3.png │ │ ├── NetConstraints-4.pdf │ │ ├── NetConstraints-4.png │ │ ├── doRp_AutoContacts.png │ │ ├── doRp_StairCaseH.png │ │ ├── doRp_StairCaseV.png │ │ ├── SplitAutoContact-1.pdf │ │ ├── SplitAutoContact-1.png │ │ ├── SplitAutoContact-2.pdf │ │ ├── SplitAutoContact-2.png │ │ ├── SplitAutoContact-3.pdf │ │ ├── SplitAutoContact-3.png │ │ ├── SplitAutoContact-4.pdf │ │ ├── SplitAutoContact-4.png │ │ ├── SplitAutoContact-5.pdf │ │ ├── SplitAutoContact-5.png │ │ ├── SplitAutoContact-6.pdf │ │ ├── SplitAutoContact-6.png │ │ ├── checkRoutingPadSize.png │ │ ├── updateTopologyHTee.png │ │ ├── updateTopologyTurn.png │ │ ├── AutoSegmentCollapse-1.pdf │ │ ├── AutoSegmentCollapse-1.png │ │ ├── AutoSegmentCollapse-2.pdf │ │ ├── AutoSegmentCollapse-2.png │ │ ├── AutoSegmentCollapse-3.pdf │ │ ├── AutoSegmentCollapse-3.png │ │ ├── AutoSegmentCollapse-4.pdf │ │ ├── AutoSegmentCollapse-4.png │ │ ├── AutoSegmentCollapse-5.pdf │ │ ├── AutoSegmentCollapse-5.png │ │ ├── AutoSegmentCollapse-6.pdf │ │ ├── AutoSegmentCollapse-6.png │ │ ├── GCellConfiguration-1.pdf │ │ ├── GCellConfiguration-1.png │ │ ├── GCellConfiguration-10.pdf │ │ ├── GCellConfiguration-10.png │ │ ├── GCellConfiguration-11.pdf │ │ ├── GCellConfiguration-11.png │ │ ├── GCellConfiguration-12.pdf │ │ ├── GCellConfiguration-12.png │ │ ├── GCellConfiguration-13.pdf │ │ ├── GCellConfiguration-13.png │ │ ├── GCellConfiguration-14.pdf │ │ ├── GCellConfiguration-14.png │ │ ├── GCellConfiguration-15.pdf │ │ ├── GCellConfiguration-15.png │ │ ├── GCellConfiguration-16.pdf │ │ ├── GCellConfiguration-16.png │ │ ├── GCellConfiguration-17.pdf │ │ ├── GCellConfiguration-17.png │ │ ├── GCellConfiguration-18.pdf │ │ ├── GCellConfiguration-18.png │ │ ├── GCellConfiguration-19.pdf │ │ ├── GCellConfiguration-19.png │ │ ├── GCellConfiguration-2.pdf │ │ ├── GCellConfiguration-2.png │ │ ├── GCellConfiguration-20.pdf │ │ ├── GCellConfiguration-20.png │ │ ├── GCellConfiguration-21.pdf │ │ ├── GCellConfiguration-21.png │ │ ├── GCellConfiguration-22.pdf │ │ ├── GCellConfiguration-22.png │ │ ├── GCellConfiguration-23.pdf │ │ ├── GCellConfiguration-23.png │ │ ├── GCellConfiguration-24.pdf │ │ ├── GCellConfiguration-24.png │ │ ├── GCellConfiguration-3.pdf │ │ ├── GCellConfiguration-3.png │ │ ├── GCellConfiguration-30.pdf │ │ ├── GCellConfiguration-30.png │ │ ├── GCellConfiguration-31.pdf │ │ ├── GCellConfiguration-31.png │ │ ├── GCellConfiguration-32.pdf │ │ ├── GCellConfiguration-32.png │ │ ├── GCellConfiguration-33.pdf │ │ ├── GCellConfiguration-33.png │ │ ├── GCellConfiguration-34.pdf │ │ ├── GCellConfiguration-34.png │ │ ├── GCellConfiguration-35.pdf │ │ ├── GCellConfiguration-35.png │ │ ├── GCellConfiguration-36.pdf │ │ ├── GCellConfiguration-36.png │ │ ├── GCellConfiguration-4.pdf │ │ ├── GCellConfiguration-4.png │ │ ├── GCellConfiguration-40.pdf │ │ ├── GCellConfiguration-40.png │ │ ├── GCellConfiguration-41.pdf │ │ ├── GCellConfiguration-41.png │ │ ├── GCellConfiguration-42.pdf │ │ ├── GCellConfiguration-42.png │ │ ├── GCellConfiguration-43.pdf │ │ ├── GCellConfiguration-43.png │ │ ├── GCellConfiguration-44.pdf │ │ ├── GCellConfiguration-44.png │ │ ├── GCellConfiguration-45.pdf │ │ ├── GCellConfiguration-45.png │ │ ├── GCellConfiguration-5.pdf │ │ ├── GCellConfiguration-5.png │ │ ├── GCellConfiguration-6.pdf │ │ ├── GCellConfiguration-6.png │ │ ├── GCellConfiguration-7.pdf │ │ ├── GCellConfiguration-7.png │ │ ├── PerpandicularState-1.pdf │ │ ├── PerpandicularState-1.png │ │ ├── PerpandicularState-2.pdf │ │ ├── PerpandicularState-2.png │ │ ├── PerpandicularState-3.pdf │ │ ├── PerpandicularState-3.png │ │ ├── PerpandicularState-4.pdf │ │ ├── PerpandicularState-4.png │ │ └── updateTopologyTerminal.png │ ├── html.entry │ ├── GCells.dox │ └── Katabatic.dox └── cmake_modules │ └── CMakeLists.txt ├── metis ├── src │ ├── MetisGraph.cpp │ ├── MetisEngine.cpp │ └── metis │ │ ├── MetisEngine.h │ │ └── MetisGraph.h └── cmake_modules │ └── CMakeLists.txt ├── knik ├── cmake_modules │ └── CMakeLists.txt ├── doc │ ├── html.entry │ └── images │ │ ├── Steiner1.pdf │ │ ├── Steiner1.png │ │ ├── Steiner2.pdf │ │ ├── Steiner2.png │ │ ├── Steiner3.pdf │ │ ├── Steiner3.png │ │ ├── Steiner4.pdf │ │ ├── Steiner4.png │ │ ├── Steiner5.pdf │ │ ├── Steiner5.png │ │ ├── ConnexComp.pdf │ │ ├── ConnexComp.png │ │ ├── FonctionCout.pdf │ │ ├── FonctionCout.png │ │ ├── RepresentNet.pdf │ │ ├── RepresentNet.png │ │ ├── MonotonicRouting1.pdf │ │ ├── MonotonicRouting1.png │ │ ├── MonotonicRouting2.pdf │ │ ├── MonotonicRouting2.png │ │ ├── MonotonicRouting1-1.pdf │ │ ├── MonotonicRouting1-1.png │ │ ├── MonotonicRouting1-2.pdf │ │ ├── MonotonicRouting1-2.png │ │ ├── MonotonicRouting1-3.pdf │ │ ├── MonotonicRouting1-3.png │ │ ├── MonotonicRouting1-4.pdf │ │ ├── MonotonicRouting1-4.png │ │ ├── MonotonicRouting2-1.pdf │ │ ├── MonotonicRouting2-1.png │ │ ├── MonotonicRouting2-2.pdf │ │ ├── MonotonicRouting2-2.png │ │ ├── MonotonicRouting2-3.pdf │ │ ├── MonotonicRouting2-3.png │ │ ├── MonotonicRouting2-4.pdf │ │ ├── MonotonicRouting2-4.png │ │ ├── SteinerCongestion1.pdf │ │ ├── SteinerCongestion1.png │ │ ├── SteinerCongestion2.pdf │ │ ├── SteinerCongestion2.png │ │ ├── SteinerCongestion3.pdf │ │ ├── SteinerCongestion3.png │ │ ├── SteinerCongestion4.pdf │ │ └── SteinerCongestion4.png └── src │ └── flute-3.1 │ ├── etc │ ├── POST9.dat │ └── POWV9.dat │ └── src │ └── knik │ ├── err.h │ ├── dist.h │ ├── mst2.h │ ├── global.h │ └── neighbors.h ├── equinox └── cmake_modules │ └── CMakeLists.txt ├── etesian └── cmake_modules │ └── CMakeLists.txt ├── solstice ├── cmake_modules │ └── CMakeLists.txt └── src │ └── solstice │ └── RoutingErrorInformations.h └── coloquinte ├── cmake_modules └── CMakeLists.txt └── src └── coloquinte └── legalizer.hxx /bootstrap/debian/docs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bootstrap/debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /cumulus/src/plugins/clocktree/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bootstrap/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /vlsisapd/src/agds/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | ADD_SUBDIRECTORY(src) 2 | -------------------------------------------------------------------------------- /vlsisapd/src/cif/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | ADD_SUBDIRECTORY(src) 2 | -------------------------------------------------------------------------------- /vlsisapd/src/dtr/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | ADD_SUBDIRECTORY(src) 2 | -------------------------------------------------------------------------------- /crlcore/src/ccore/CConfig.h.cmake: -------------------------------------------------------------------------------- 1 | #cmakedefine CORIOLIS_TOP 2 | -------------------------------------------------------------------------------- /unicorn/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | add_subdirectory(unicorn) 3 | -------------------------------------------------------------------------------- /vlsisapd/src/bookshelf/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | ADD_SUBDIRECTORY(src) 2 | -------------------------------------------------------------------------------- /vlsisapd/src/liberty/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | ADD_SUBDIRECTORY(src) 2 | -------------------------------------------------------------------------------- /vlsisapd/src/openChams/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | ADD_SUBDIRECTORY(src) 2 | -------------------------------------------------------------------------------- /vlsisapd/src/spice/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | ADD_SUBDIRECTORY(src) 2 | -------------------------------------------------------------------------------- /vlsisapd/src/utilities/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | ADD_SUBDIRECTORY(src) 2 | -------------------------------------------------------------------------------- /crlcore/src/ccore/crlcore/CConfig.h: -------------------------------------------------------------------------------- 1 | /* #undef CORIOLIS_TOP */ 2 | -------------------------------------------------------------------------------- /documentation/UsersGuide/images/clipboard.bb: -------------------------------------------------------------------------------- 1 | %%BoundingBox: 0 0 48 48 2 | -------------------------------------------------------------------------------- /documentation/UsersGuide/images/i-core.bb: -------------------------------------------------------------------------------- 1 | %%BoundingBox: 0 0 48 48 2 | -------------------------------------------------------------------------------- /.projectile: -------------------------------------------------------------------------------- 1 | -*.fig 2 | -*.png 3 | -*.eps 4 | -*.pdf 5 | -*.aux 6 | -*.bb 7 | -------------------------------------------------------------------------------- /documentation/UsersGuide/images/Controller-1.bb: -------------------------------------------------------------------------------- 1 | %%BoundingBox: 0 0 451 434 2 | -------------------------------------------------------------------------------- /documentation/UsersGuide/images/Viewer-1.bb: -------------------------------------------------------------------------------- 1 | %%BoundingBox: 0 0 301 351 2 | -------------------------------------------------------------------------------- /documentation/UsersGuide/images/etesian-1.bb: -------------------------------------------------------------------------------- 1 | %%BoundingBox: 0 0 507 267 2 | -------------------------------------------------------------------------------- /documentation/examples/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | add_subdirectory(AM2901) 3 | 4 | -------------------------------------------------------------------------------- /stratus1/src/modules/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | add_subdirectory ( patterns ) 3 | -------------------------------------------------------------------------------- /stratus1/src/stratus/st_config.py: -------------------------------------------------------------------------------- 1 | format = 'vst' 2 | simulator = 'asimut' 3 | -------------------------------------------------------------------------------- /documentation/UsersGuide/images/ComputerMouse.bb: -------------------------------------------------------------------------------- 1 | %%BoundingBox: 0 0 135 135 2 | -------------------------------------------------------------------------------- /documentation/UsersGuide/images/Controller-Look-1.bb: -------------------------------------------------------------------------------- 1 | %%BoundingBox: 0 0 451 434 2 | -------------------------------------------------------------------------------- /documentation/UsersGuide/images/Viewer-Netlist-1.bb: -------------------------------------------------------------------------------- 1 | %%BoundingBox: 0 0 587 573 2 | -------------------------------------------------------------------------------- /documentation/UsersGuide/images/chip-structure-1.bb: -------------------------------------------------------------------------------- 1 | %%BoundingBox: 0 0 1018 438 2 | -------------------------------------------------------------------------------- /kite/doc/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/kite/doc/open.png -------------------------------------------------------------------------------- /mauka/src/Bin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/mauka/src/Bin.cpp -------------------------------------------------------------------------------- /mauka/src/Row.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/mauka/src/Row.cpp -------------------------------------------------------------------------------- /documentation/UsersGuide/images/Controller-Filter-1.bb: -------------------------------------------------------------------------------- 1 | %%BoundingBox: 0 0 451 434 2 | -------------------------------------------------------------------------------- /documentation/UsersGuide/images/Controller-Inspector-1.bb: -------------------------------------------------------------------------------- 1 | %%BoundingBox: 0 0 451 434 2 | -------------------------------------------------------------------------------- /documentation/UsersGuide/images/Controller-Inspector-2.bb: -------------------------------------------------------------------------------- 1 | %%BoundingBox: 0 0 451 434 2 | -------------------------------------------------------------------------------- /documentation/UsersGuide/images/Controller-Inspector-3.bb: -------------------------------------------------------------------------------- 1 | %%BoundingBox: 0 0 454 436 2 | -------------------------------------------------------------------------------- /documentation/UsersGuide/images/Controller-LayersGos-1.bb: -------------------------------------------------------------------------------- 1 | %%BoundingBox: 0 0 451 434 2 | -------------------------------------------------------------------------------- /documentation/UsersGuide/images/Controller-Netlist-1.bb: -------------------------------------------------------------------------------- 1 | %%BoundingBox: 0 0 451 434 2 | -------------------------------------------------------------------------------- /documentation/UsersGuide/images/Controller-Selection-1.bb: -------------------------------------------------------------------------------- 1 | %%BoundingBox: 0 0 451 434 2 | -------------------------------------------------------------------------------- /documentation/UsersGuide/images/Controller-Settings-1.bb: -------------------------------------------------------------------------------- 1 | %%BoundingBox: 0 0 451 434 2 | -------------------------------------------------------------------------------- /documentation/UsersGuide/images/Coriolis-Soft-Schema.bb: -------------------------------------------------------------------------------- 1 | %%BoundingBox: 0 0 433 420 2 | -------------------------------------------------------------------------------- /documentation/UsersGuide/images/PR-DetailedPreRoute.bb: -------------------------------------------------------------------------------- 1 | %%BoundingBox: 0 0 200 20 2 | -------------------------------------------------------------------------------- /kite/doc/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/kite/doc/closed.png -------------------------------------------------------------------------------- /mauka/src/Move.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/mauka/src/Move.cpp -------------------------------------------------------------------------------- /nimbus/src/Grid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/nimbus/src/Grid.cpp -------------------------------------------------------------------------------- /bootstrap/shadock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/bootstrap/shadock.png -------------------------------------------------------------------------------- /hurricane/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(hurricane) 2 | add_subdirectory(viewer) 3 | -------------------------------------------------------------------------------- /katabatic/doc/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/open.png -------------------------------------------------------------------------------- /mauka/src/BBPlacer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/mauka/src/BBPlacer.cpp -------------------------------------------------------------------------------- /mauka/src/MaukaBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/mauka/src/MaukaBox.cpp -------------------------------------------------------------------------------- /mauka/src/SubRow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/mauka/src/SubRow.cpp -------------------------------------------------------------------------------- /mauka/src/mauka/Bin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/mauka/src/mauka/Bin.h -------------------------------------------------------------------------------- /mauka/src/mauka/Move.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/mauka/src/mauka/Move.h -------------------------------------------------------------------------------- /mauka/src/mauka/Row.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/mauka/src/mauka/Row.h -------------------------------------------------------------------------------- /nimbus/src/Fence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/nimbus/src/Fence.cpp -------------------------------------------------------------------------------- /nimbus/src/GCell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/nimbus/src/GCell.cpp -------------------------------------------------------------------------------- /nimbus/src/HFence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/nimbus/src/HFence.cpp -------------------------------------------------------------------------------- /nimbus/src/VFence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/nimbus/src/VFence.cpp -------------------------------------------------------------------------------- /vlsisapd/src/configuration/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | setup_qt() 3 | 4 | add_subdirectory(src) 5 | -------------------------------------------------------------------------------- /bootstrap/debian/coriolis2-dev.install: -------------------------------------------------------------------------------- 1 | /usr/share/cmake/ 2 | /usr/include/ 3 | /usr/lib/*.so 4 | -------------------------------------------------------------------------------- /katabatic/doc/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/closed.png -------------------------------------------------------------------------------- /mauka/src/Container.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/mauka/src/Container.cpp -------------------------------------------------------------------------------- /mauka/src/mauka/SubRow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/mauka/src/mauka/SubRow.h -------------------------------------------------------------------------------- /metis/src/MetisGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/metis/src/MetisGraph.cpp -------------------------------------------------------------------------------- /nimbus/src/FrontLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/nimbus/src/FrontLine.cpp -------------------------------------------------------------------------------- /nimbus/src/RoutTools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/nimbus/src/RoutTools.cpp -------------------------------------------------------------------------------- /nimbus/src/Splitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/nimbus/src/Splitter.cpp -------------------------------------------------------------------------------- /nimbus/src/nimbus/Grid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/nimbus/src/nimbus/Grid.h -------------------------------------------------------------------------------- /crlcore/src/cyclop/Cyclop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/crlcore/src/cyclop/Cyclop.h -------------------------------------------------------------------------------- /kite/cmake_modules/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | install ( FILES FindKITE.cmake DESTINATION share/cmake/Modules ) 2 | -------------------------------------------------------------------------------- /kite/doc/html.entry: -------------------------------------------------------------------------------- 1 |
  • Kite
    Detailed Router

    2 | -------------------------------------------------------------------------------- /kite/doc/images/Track-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/kite/doc/images/Track-0.png -------------------------------------------------------------------------------- /kite/doc/images/Track-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/kite/doc/images/Track-1.pdf -------------------------------------------------------------------------------- /kite/doc/images/Track-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/kite/doc/images/Track-1.png -------------------------------------------------------------------------------- /kite/doc/images/Track-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/kite/doc/images/Track-2.pdf -------------------------------------------------------------------------------- /kite/doc/images/Track-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/kite/doc/images/Track-2.png -------------------------------------------------------------------------------- /kite/doc/images/Track-3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/kite/doc/images/Track-3.pdf -------------------------------------------------------------------------------- /kite/doc/images/Track-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/kite/doc/images/Track-3.png -------------------------------------------------------------------------------- /kite/doc/images/Track-4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/kite/doc/images/Track-4.pdf -------------------------------------------------------------------------------- /kite/doc/images/Track-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/kite/doc/images/Track-4.png -------------------------------------------------------------------------------- /kite/doc/images/Track-5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/kite/doc/images/Track-5.pdf -------------------------------------------------------------------------------- /kite/doc/images/Track-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/kite/doc/images/Track-5.png -------------------------------------------------------------------------------- /knik/cmake_modules/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | install ( FILES FindKNIK.cmake DESTINATION share/cmake/Modules ) 2 | -------------------------------------------------------------------------------- /knik/doc/html.entry: -------------------------------------------------------------------------------- 1 |
  • Knik
    Global Router

    2 | -------------------------------------------------------------------------------- /mauka/src/MaukaEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/mauka/src/MaukaEngine.cpp -------------------------------------------------------------------------------- /mauka/src/mauka/BBPlacer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/mauka/src/mauka/BBPlacer.h -------------------------------------------------------------------------------- /mauka/src/mauka/Container.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/mauka/src/mauka/Container.h -------------------------------------------------------------------------------- /mauka/src/mauka/MaukaBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/mauka/src/mauka/MaukaBox.h -------------------------------------------------------------------------------- /mauka/src/mauka/Surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/mauka/src/mauka/Surface.h -------------------------------------------------------------------------------- /metis/src/MetisEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/metis/src/MetisEngine.cpp -------------------------------------------------------------------------------- /nimbus/src/NimbusEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/nimbus/src/NimbusEngine.cpp -------------------------------------------------------------------------------- /nimbus/src/StepProperty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/nimbus/src/StepProperty.cpp -------------------------------------------------------------------------------- /nimbus/src/nimbus/Fence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/nimbus/src/nimbus/Fence.h -------------------------------------------------------------------------------- /nimbus/src/nimbus/Fences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/nimbus/src/nimbus/Fences.h -------------------------------------------------------------------------------- /nimbus/src/nimbus/GCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/nimbus/src/nimbus/GCell.h -------------------------------------------------------------------------------- /nimbus/src/nimbus/GCells.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/nimbus/src/nimbus/GCells.h -------------------------------------------------------------------------------- /nimbus/src/nimbus/HFence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/nimbus/src/nimbus/HFence.h -------------------------------------------------------------------------------- /nimbus/src/nimbus/VFence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/nimbus/src/nimbus/VFence.h -------------------------------------------------------------------------------- /stratus1/devdoc/stratus.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/stratus1/devdoc/stratus.tex -------------------------------------------------------------------------------- /stratus1/doc/images/xml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/stratus1/doc/images/xml.png -------------------------------------------------------------------------------- /crlcore/doc/crlcore/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/crlcore/doc/crlcore/open.png -------------------------------------------------------------------------------- /documentation/examples/AM2901/.coriolis2/techno.py: -------------------------------------------------------------------------------- 1 | symbolicTechno = 'cmos' 2 | realTechno = 'hcmos9' 3 | -------------------------------------------------------------------------------- /equinox/cmake_modules/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | install ( FILES FindEQUINOX.cmake DESTINATION share/cmake/Modules ) 2 | -------------------------------------------------------------------------------- /hurricane/doc/viewer/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/hurricane/doc/viewer/open.png -------------------------------------------------------------------------------- /knik/doc/images/Steiner1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/knik/doc/images/Steiner1.pdf -------------------------------------------------------------------------------- /knik/doc/images/Steiner1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/knik/doc/images/Steiner1.png -------------------------------------------------------------------------------- /knik/doc/images/Steiner2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/knik/doc/images/Steiner2.pdf -------------------------------------------------------------------------------- /knik/doc/images/Steiner2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/knik/doc/images/Steiner2.png -------------------------------------------------------------------------------- /knik/doc/images/Steiner3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/knik/doc/images/Steiner3.pdf -------------------------------------------------------------------------------- /knik/doc/images/Steiner3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/knik/doc/images/Steiner3.png -------------------------------------------------------------------------------- /knik/doc/images/Steiner4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/knik/doc/images/Steiner4.pdf -------------------------------------------------------------------------------- /knik/doc/images/Steiner4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/knik/doc/images/Steiner4.png -------------------------------------------------------------------------------- /knik/doc/images/Steiner5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/knik/doc/images/Steiner5.pdf -------------------------------------------------------------------------------- /knik/doc/images/Steiner5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/knik/doc/images/Steiner5.png -------------------------------------------------------------------------------- /mauka/cmake_modules/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | install ( FILES FindMAUKA.cmake DESTINATION share/cmake/Modules ) 2 | -------------------------------------------------------------------------------- /metis/cmake_modules/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | install ( FILES FindMETIS.cmake DESTINATION share/cmake/Modules ) 2 | -------------------------------------------------------------------------------- /metis/src/metis/MetisEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/metis/src/metis/MetisEngine.h -------------------------------------------------------------------------------- /metis/src/metis/MetisGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/metis/src/metis/MetisGraph.h -------------------------------------------------------------------------------- /nimbus/cmake_modules/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | install ( FILES FindNIMBUS.cmake DESTINATION share/cmake/Modules ) 2 | -------------------------------------------------------------------------------- /nimbus/src/FenceProperty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/nimbus/src/FenceProperty.cpp -------------------------------------------------------------------------------- /nimbus/src/nimbus/FrontLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/nimbus/src/nimbus/FrontLine.h -------------------------------------------------------------------------------- /nimbus/src/nimbus/RoutTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/nimbus/src/nimbus/RoutTools.h -------------------------------------------------------------------------------- /nimbus/src/nimbus/Splitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/nimbus/src/nimbus/Splitter.h -------------------------------------------------------------------------------- /nimbus/src/nimbus/Splitters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/nimbus/src/nimbus/Splitters.h -------------------------------------------------------------------------------- /stratus1/doc/images/add1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/stratus1/doc/images/add1.png -------------------------------------------------------------------------------- /stratus1/doc/images/add2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/stratus1/doc/images/add2.png -------------------------------------------------------------------------------- /stratus1/doc/images/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/stratus1/doc/images/test.png -------------------------------------------------------------------------------- /unicorn/doc/unicorn/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/unicorn/doc/unicorn/open.png -------------------------------------------------------------------------------- /vlsisapd/cmake_modules/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | install(FILES FindVLSISAPD.cmake DESTINATION share/cmake/Modules) 2 | -------------------------------------------------------------------------------- /crlcore/doc/crlcore/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/crlcore/doc/crlcore/closed.png -------------------------------------------------------------------------------- /crlcore/src/ccore/COptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/crlcore/src/ccore/COptions.cpp -------------------------------------------------------------------------------- /crlcore/src/ccore/crlcore/Blif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/crlcore/src/ccore/crlcore/Blif.h -------------------------------------------------------------------------------- /etesian/cmake_modules/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | install ( FILES FindETESIAN.cmake DESTINATION share/cmake/Modules ) 2 | -------------------------------------------------------------------------------- /hurricane/cmake_modules/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | install(FILES FindHURRICANE.cmake DESTINATION share/cmake/Modules) 2 | -------------------------------------------------------------------------------- /hurricane/doc/hurricane/View.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/hurricane/doc/hurricane/View.dox -------------------------------------------------------------------------------- /hurricane/doc/hurricane/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/hurricane/doc/hurricane/open.png -------------------------------------------------------------------------------- /hurricane/doc/viewer/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/hurricane/doc/viewer/closed.png -------------------------------------------------------------------------------- /hurricane/src/isobar/PyPlug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/hurricane/src/isobar/PyPlug.cpp -------------------------------------------------------------------------------- /katabatic/cmake_modules/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | install ( FILES FindKATABATIC.cmake DESTINATION share/cmake/Modules ) 2 | -------------------------------------------------------------------------------- /katabatic/doc/images/_do_xG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/_do_xG.png -------------------------------------------------------------------------------- /kite/python/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | install ( FILES kiteInit.py DESTINATION ${PYTHON_SITE_PACKAGES}/kite ) 3 | -------------------------------------------------------------------------------- /knik/doc/images/ConnexComp.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/knik/doc/images/ConnexComp.pdf -------------------------------------------------------------------------------- /knik/doc/images/ConnexComp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/knik/doc/images/ConnexComp.png -------------------------------------------------------------------------------- /knik/doc/images/FonctionCout.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/knik/doc/images/FonctionCout.pdf -------------------------------------------------------------------------------- /knik/doc/images/FonctionCout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/knik/doc/images/FonctionCout.png -------------------------------------------------------------------------------- /knik/doc/images/RepresentNet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/knik/doc/images/RepresentNet.pdf -------------------------------------------------------------------------------- /knik/doc/images/RepresentNet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/knik/doc/images/RepresentNet.png -------------------------------------------------------------------------------- /knik/src/flute-3.1/etc/POST9.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/knik/src/flute-3.1/etc/POST9.dat -------------------------------------------------------------------------------- /knik/src/flute-3.1/etc/POWV9.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/knik/src/flute-3.1/etc/POWV9.dat -------------------------------------------------------------------------------- /mauka/src/SimAnnealingPlacer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/mauka/src/SimAnnealingPlacer.cpp -------------------------------------------------------------------------------- /nimbus/src/SplitterContact.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/nimbus/src/SplitterContact.cpp -------------------------------------------------------------------------------- /nimbus/src/nimbus/NimbusEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/nimbus/src/nimbus/NimbusEngine.h -------------------------------------------------------------------------------- /nimbus/src/nimbus/StepProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/nimbus/src/nimbus/StepProperty.h -------------------------------------------------------------------------------- /solstice/cmake_modules/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | install ( FILES FindSOLSTICE.cmake DESTINATION share/cmake/Modules ) 2 | -------------------------------------------------------------------------------- /stratus1/doc/images/addaccu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/stratus1/doc/images/addaccu.png -------------------------------------------------------------------------------- /stratus1/doc/images/editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/stratus1/doc/images/editor.png -------------------------------------------------------------------------------- /unicorn/cmake_modules/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | install ( FILES FindUNICORN.cmake DESTINATION share/cmake/Modules ) 2 | -------------------------------------------------------------------------------- /unicorn/doc/unicorn/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/unicorn/doc/unicorn/closed.png -------------------------------------------------------------------------------- /unicorn/src/images/diet-coke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/unicorn/src/images/diet-coke.png -------------------------------------------------------------------------------- /crlcore/etc/techno.conf: -------------------------------------------------------------------------------- 1 | # -*- Mode:Python -*- 2 | 3 | symbolicTechno = 'cmos' 4 | realTechno = '130/hcmos9gp' 5 | -------------------------------------------------------------------------------- /crlcore/src/ccore/lefdef/LefDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/crlcore/src/ccore/lefdef/LefDef.h -------------------------------------------------------------------------------- /documentation/RDS/RDS_LaTeX.rst: -------------------------------------------------------------------------------- 1 | .. -*- Mode: rst -*- 2 | 3 | .. include:: LaTeX_defs.rst 4 | .. include:: RDS.rst 5 | -------------------------------------------------------------------------------- /hurricane/doc/hurricane/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/hurricane/doc/hurricane/closed.png -------------------------------------------------------------------------------- /hurricane/src/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(hurricane) 2 | add_subdirectory(viewer) 3 | add_subdirectory(isobar) 4 | -------------------------------------------------------------------------------- /katabatic/doc/images/reduce-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/reduce-1.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/reduce-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/reduce-1.png -------------------------------------------------------------------------------- /kite/doc/images/RoutingEvent-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/kite/doc/images/RoutingEvent-1.pdf -------------------------------------------------------------------------------- /kite/doc/images/RoutingEvent-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/kite/doc/images/RoutingEvent-1.png -------------------------------------------------------------------------------- /kite/doc/images/RoutingEvent-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/kite/doc/images/RoutingEvent-2.pdf -------------------------------------------------------------------------------- /kite/doc/images/RoutingEvent-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/kite/doc/images/RoutingEvent-2.png -------------------------------------------------------------------------------- /kite/doc/images/RoutingEvent-3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/kite/doc/images/RoutingEvent-3.pdf -------------------------------------------------------------------------------- /kite/doc/images/RoutingEvent-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/kite/doc/images/RoutingEvent-3.png -------------------------------------------------------------------------------- /kite/doc/images/RoutingPlane-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/kite/doc/images/RoutingPlane-1.png -------------------------------------------------------------------------------- /kite/doc/images/_makeDogleg-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/kite/doc/images/_makeDogleg-10.png -------------------------------------------------------------------------------- /nimbus/src/nimbus/FenceProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/nimbus/src/nimbus/FenceProperty.h -------------------------------------------------------------------------------- /vlsisapd/doc/img/transistorCif.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/vlsisapd/doc/img/transistorCif.pdf -------------------------------------------------------------------------------- /vlsisapd/doc/img/transistorCif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/vlsisapd/doc/img/transistorCif.png -------------------------------------------------------------------------------- /crlcore/src/ccore/alliance/vst/Vst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/crlcore/src/ccore/alliance/vst/Vst.h -------------------------------------------------------------------------------- /crlcore/src/ccore/crlcore/COptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/crlcore/src/ccore/crlcore/COptions.h -------------------------------------------------------------------------------- /crlcore/src/ccore/crlcore/CellPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/crlcore/src/ccore/crlcore/CellPath.h -------------------------------------------------------------------------------- /crlcore/src/ccore/crlcore/CellPaths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/crlcore/src/ccore/crlcore/CellPaths.h -------------------------------------------------------------------------------- /crlcore/src/ccore/liberty/LuTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/crlcore/src/ccore/liberty/LuTable.cpp -------------------------------------------------------------------------------- /crlcore/src/ccore/liberty/LuTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/crlcore/src/ccore/liberty/LuTable.h -------------------------------------------------------------------------------- /crlcore/src/ccore/toolbox/ToolBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/crlcore/src/ccore/toolbox/ToolBox.cpp -------------------------------------------------------------------------------- /crlcore/src/cyclop/OpenCellDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/crlcore/src/cyclop/OpenCellDialog.cpp -------------------------------------------------------------------------------- /crlcore/src/cyclop/OpenCellDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/crlcore/src/cyclop/OpenCellDialog.h -------------------------------------------------------------------------------- /documentation/RDS/RDS_HTML.rst: -------------------------------------------------------------------------------- 1 | 2 | .. -*- Mode: rst -*- 3 | 4 | .. include:: HTML_defs.rst 5 | .. include:: RDS.rst 6 | -------------------------------------------------------------------------------- /documentation/RDS/images/RDS_LCW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/RDS/images/RDS_LCW.png -------------------------------------------------------------------------------- /documentation/RDS/images/RDS_VW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/RDS/images/RDS_VW.png -------------------------------------------------------------------------------- /documentation/RDS/images/bigvia-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/RDS/images/bigvia-1.png -------------------------------------------------------------------------------- /documentation/RDS/images/bigvia-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/RDS/images/bigvia-2.png -------------------------------------------------------------------------------- /documentation/RDS/images/i-core.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/RDS/images/i-core.png -------------------------------------------------------------------------------- /hurricane/doc/hurricane/MIGRATE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/hurricane/doc/hurricane/MIGRATE.txt -------------------------------------------------------------------------------- /hurricane/doc/hurricane/images/id.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/hurricane/doc/hurricane/images/id.gif -------------------------------------------------------------------------------- /hurricane/doc/hurricane/images/mx.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/hurricane/doc/hurricane/images/mx.gif -------------------------------------------------------------------------------- /hurricane/doc/hurricane/images/my.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/hurricane/doc/hurricane/images/my.gif -------------------------------------------------------------------------------- /hurricane/doc/hurricane/images/r1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/hurricane/doc/hurricane/images/r1.gif -------------------------------------------------------------------------------- /hurricane/doc/hurricane/images/r2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/hurricane/doc/hurricane/images/r2.gif -------------------------------------------------------------------------------- /hurricane/doc/hurricane/images/r3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/hurricane/doc/hurricane/images/r3.gif -------------------------------------------------------------------------------- /hurricane/doc/hurricane/images/xr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/hurricane/doc/hurricane/images/xr.gif -------------------------------------------------------------------------------- /hurricane/doc/hurricane/images/yr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/hurricane/doc/hurricane/images/yr.gif -------------------------------------------------------------------------------- /katabatic/doc/images/_do_1G_1M1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/_do_1G_1M1.png -------------------------------------------------------------------------------- /katabatic/doc/images/_do_1G_1M3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/_do_1G_1M3.png -------------------------------------------------------------------------------- /katabatic/doc/images/_do_1G_xM1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/_do_1G_xM1.png -------------------------------------------------------------------------------- /katabatic/doc/images/_do_xG_xM2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/_do_xG_xM2.png -------------------------------------------------------------------------------- /katabatic/doc/images/_do_xG_xM3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/_do_xG_xM3.png -------------------------------------------------------------------------------- /katabatic/doc/images/_slacken-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/_slacken-1.png -------------------------------------------------------------------------------- /katabatic/doc/images/_slacken-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/_slacken-2.png -------------------------------------------------------------------------------- /katabatic/doc/images/doRp_Access.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/doRp_Access.png -------------------------------------------------------------------------------- /katabatic/doc/images/moveULeft-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/moveULeft-1.png -------------------------------------------------------------------------------- /kite/doc/images/ConflictSolve-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/kite/doc/images/ConflictSolve-1.png -------------------------------------------------------------------------------- /kite/doc/images/DataNegociate-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/kite/doc/images/DataNegociate-1.png -------------------------------------------------------------------------------- /kite/doc/images/DataNegociate-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/kite/doc/images/DataNegociate-2.png -------------------------------------------------------------------------------- /kite/doc/images/RoutingEvent-10.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/kite/doc/images/RoutingEvent-10.pdf -------------------------------------------------------------------------------- /kite/doc/images/RoutingEvent-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/kite/doc/images/RoutingEvent-10.png -------------------------------------------------------------------------------- /kite/doc/images/RoutingEvent-11.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/kite/doc/images/RoutingEvent-11.pdf -------------------------------------------------------------------------------- /kite/doc/images/RoutingEvent-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/kite/doc/images/RoutingEvent-11.png -------------------------------------------------------------------------------- /kite/doc/images/RoutingEvent-12.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/kite/doc/images/RoutingEvent-12.pdf -------------------------------------------------------------------------------- /kite/doc/images/RoutingEvent-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/kite/doc/images/RoutingEvent-12.png -------------------------------------------------------------------------------- /kite/doc/images/RoutingEvent-13.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/kite/doc/images/RoutingEvent-13.pdf -------------------------------------------------------------------------------- /kite/doc/images/RoutingEvent-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/kite/doc/images/RoutingEvent-13.png -------------------------------------------------------------------------------- /kite/doc/images/RoutingEvent-14.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/kite/doc/images/RoutingEvent-14.pdf -------------------------------------------------------------------------------- /kite/doc/images/RoutingEvent-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/kite/doc/images/RoutingEvent-14.png -------------------------------------------------------------------------------- /kite/doc/images/RoutingEvent-15.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/kite/doc/images/RoutingEvent-15.pdf -------------------------------------------------------------------------------- /kite/doc/images/RoutingEvent-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/kite/doc/images/RoutingEvent-15.png -------------------------------------------------------------------------------- /kite/doc/images/TrackBeginIndex-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/kite/doc/images/TrackBeginIndex-1.png -------------------------------------------------------------------------------- /kite/doc/images/TrackSegment-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/kite/doc/images/TrackSegment-10.png -------------------------------------------------------------------------------- /kite/doc/images/TrackSegment-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/kite/doc/images/TrackSegment-11.png -------------------------------------------------------------------------------- /knik/doc/images/MonotonicRouting1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/knik/doc/images/MonotonicRouting1.pdf -------------------------------------------------------------------------------- /knik/doc/images/MonotonicRouting1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/knik/doc/images/MonotonicRouting1.png -------------------------------------------------------------------------------- /knik/doc/images/MonotonicRouting2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/knik/doc/images/MonotonicRouting2.pdf -------------------------------------------------------------------------------- /knik/doc/images/MonotonicRouting2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/knik/doc/images/MonotonicRouting2.png -------------------------------------------------------------------------------- /mauka/src/mauka/SimAnnealingPlacer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/mauka/src/mauka/SimAnnealingPlacer.h -------------------------------------------------------------------------------- /nimbus/src/nimbus/SplitterContact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/nimbus/src/nimbus/SplitterContact.h -------------------------------------------------------------------------------- /nimbus/src/nimbus/SplitterContacts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/nimbus/src/nimbus/SplitterContacts.h -------------------------------------------------------------------------------- /stratus1/doc/stratus/fichiers/Makefile: -------------------------------------------------------------------------------- 1 | test: 2 | time ./test.py -n 4 3 | 4 | clean : 5 | rm -f *.vst *.ap *.pyc 6 | -------------------------------------------------------------------------------- /stratus1/doc/stratus/images/add1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/stratus1/doc/stratus/images/add1.png -------------------------------------------------------------------------------- /stratus1/doc/stratus/images/add2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/stratus1/doc/stratus/images/add2.png -------------------------------------------------------------------------------- /stratus1/doc/stratus/images/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/stratus1/doc/stratus/images/test.png -------------------------------------------------------------------------------- /stratus1/doc/stratus/images/xml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/stratus1/doc/stratus/images/xml.png -------------------------------------------------------------------------------- /coloquinte/cmake_modules/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | install ( FILES FindCOLOQUINTE.cmake DESTINATION share/cmake/Modules ) 3 | -------------------------------------------------------------------------------- /crlcore/src/ccore/bookshelf/Bookshelf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/crlcore/src/ccore/bookshelf/Bookshelf.h -------------------------------------------------------------------------------- /crlcore/src/ccore/crlcore/TimingEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/crlcore/src/ccore/crlcore/TimingEvent.h -------------------------------------------------------------------------------- /crlcore/src/ccore/crlcore/ToolEngines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/crlcore/src/ccore/crlcore/ToolEngines.h -------------------------------------------------------------------------------- /crlcore/src/ccore/lefdef/DefDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/crlcore/src/ccore/lefdef/DefDriver.cpp -------------------------------------------------------------------------------- /crlcore/src/ccore/lefdef/LefParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/crlcore/src/ccore/lefdef/LefParser.cpp -------------------------------------------------------------------------------- /crlcore/src/ccore/liberty/CellPath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/crlcore/src/ccore/liberty/CellPath.cpp -------------------------------------------------------------------------------- /crlcore/src/fonts/UnknownBoldNormal14.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/crlcore/src/fonts/UnknownBoldNormal14.h -------------------------------------------------------------------------------- /documentation/RDS/images/clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/RDS/images/clipboard.png -------------------------------------------------------------------------------- /documentation/UsersGuide/UsersGuide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/UsersGuide/UsersGuide.pdf -------------------------------------------------------------------------------- /hurricane/src/viewer/images/i-core.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/hurricane/src/viewer/images/i-core.png -------------------------------------------------------------------------------- /katabatic/doc/html.entry: -------------------------------------------------------------------------------- 1 |
  • Katabatic
    Routing Database

    2 | -------------------------------------------------------------------------------- /katabatic/doc/images/AutoContact-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/AutoContact-1.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/AutoContact-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/AutoContact-1.png -------------------------------------------------------------------------------- /katabatic/doc/images/AutoContact-10.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/AutoContact-10.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/AutoContact-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/AutoContact-10.png -------------------------------------------------------------------------------- /katabatic/doc/images/AutoContact-11.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/AutoContact-11.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/AutoContact-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/AutoContact-11.png -------------------------------------------------------------------------------- /katabatic/doc/images/AutoContact-12.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/AutoContact-12.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/AutoContact-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/AutoContact-12.png -------------------------------------------------------------------------------- /katabatic/doc/images/AutoContact-13.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/AutoContact-13.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/AutoContact-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/AutoContact-13.png -------------------------------------------------------------------------------- /katabatic/doc/images/AutoContact-14.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/AutoContact-14.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/AutoContact-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/AutoContact-14.png -------------------------------------------------------------------------------- /katabatic/doc/images/AutoContact-15.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/AutoContact-15.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/AutoContact-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/AutoContact-15.png -------------------------------------------------------------------------------- /katabatic/doc/images/AutoContact-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/AutoContact-2.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/AutoContact-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/AutoContact-2.png -------------------------------------------------------------------------------- /katabatic/doc/images/AutoContact-3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/AutoContact-3.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/AutoContact-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/AutoContact-3.png -------------------------------------------------------------------------------- /katabatic/doc/images/NetOptimals-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/NetOptimals-1.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/NetOptimals-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/NetOptimals-1.png -------------------------------------------------------------------------------- /katabatic/doc/images/NetOptimals-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/NetOptimals-2.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/NetOptimals-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/NetOptimals-2.png -------------------------------------------------------------------------------- /katabatic/doc/images/NetOptimals-3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/NetOptimals-3.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/NetOptimals-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/NetOptimals-3.png -------------------------------------------------------------------------------- /katabatic/doc/images/_do_xG_1M1_1M2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/_do_xG_1M1_1M2.png -------------------------------------------------------------------------------- /katabatic/doc/images/_do_xG_xM1_xM3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/_do_xG_xM1_xM3.png -------------------------------------------------------------------------------- /katabatic/doc/images/_makeDogleg-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/_makeDogleg-1.png -------------------------------------------------------------------------------- /katabatic/doc/images/_makeDogleg-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/_makeDogleg-2.png -------------------------------------------------------------------------------- /katabatic/doc/images/_makeDogleg-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/_makeDogleg-4.png -------------------------------------------------------------------------------- /kite/doc/images/ManipulatorRelax-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/kite/doc/images/ManipulatorRelax-1.png -------------------------------------------------------------------------------- /kite/doc/images/ManipulatorRelax-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/kite/doc/images/ManipulatorRelax-2.png -------------------------------------------------------------------------------- /kite/doc/images/ManipulatorRelax-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/kite/doc/images/ManipulatorRelax-3.png -------------------------------------------------------------------------------- /kite/doc/images/ManipulatorRelax-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/kite/doc/images/ManipulatorRelax-4.png -------------------------------------------------------------------------------- /kite/doc/images/TrackSegmentCost-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/kite/doc/images/TrackSegmentCost-1.pdf -------------------------------------------------------------------------------- /kite/doc/images/TrackSegmentCost-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/kite/doc/images/TrackSegmentCost-1.png -------------------------------------------------------------------------------- /kite/doc/images/TrackSegmentCost-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/kite/doc/images/TrackSegmentCost-2.pdf -------------------------------------------------------------------------------- /kite/doc/images/TrackSegmentCost-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/kite/doc/images/TrackSegmentCost-2.png -------------------------------------------------------------------------------- /kite/doc/images/TrackSegmentCost-3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/kite/doc/images/TrackSegmentCost-3.pdf -------------------------------------------------------------------------------- /kite/doc/images/TrackSegmentCost-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/kite/doc/images/TrackSegmentCost-3.png -------------------------------------------------------------------------------- /knik/doc/images/MonotonicRouting1-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/knik/doc/images/MonotonicRouting1-1.pdf -------------------------------------------------------------------------------- /knik/doc/images/MonotonicRouting1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/knik/doc/images/MonotonicRouting1-1.png -------------------------------------------------------------------------------- /knik/doc/images/MonotonicRouting1-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/knik/doc/images/MonotonicRouting1-2.pdf -------------------------------------------------------------------------------- /knik/doc/images/MonotonicRouting1-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/knik/doc/images/MonotonicRouting1-2.png -------------------------------------------------------------------------------- /knik/doc/images/MonotonicRouting1-3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/knik/doc/images/MonotonicRouting1-3.pdf -------------------------------------------------------------------------------- /knik/doc/images/MonotonicRouting1-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/knik/doc/images/MonotonicRouting1-3.png -------------------------------------------------------------------------------- /knik/doc/images/MonotonicRouting1-4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/knik/doc/images/MonotonicRouting1-4.pdf -------------------------------------------------------------------------------- /knik/doc/images/MonotonicRouting1-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/knik/doc/images/MonotonicRouting1-4.png -------------------------------------------------------------------------------- /knik/doc/images/MonotonicRouting2-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/knik/doc/images/MonotonicRouting2-1.pdf -------------------------------------------------------------------------------- /knik/doc/images/MonotonicRouting2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/knik/doc/images/MonotonicRouting2-1.png -------------------------------------------------------------------------------- /knik/doc/images/MonotonicRouting2-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/knik/doc/images/MonotonicRouting2-2.pdf -------------------------------------------------------------------------------- /knik/doc/images/MonotonicRouting2-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/knik/doc/images/MonotonicRouting2-2.png -------------------------------------------------------------------------------- /knik/doc/images/MonotonicRouting2-3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/knik/doc/images/MonotonicRouting2-3.pdf -------------------------------------------------------------------------------- /knik/doc/images/MonotonicRouting2-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/knik/doc/images/MonotonicRouting2-3.png -------------------------------------------------------------------------------- /knik/doc/images/MonotonicRouting2-4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/knik/doc/images/MonotonicRouting2-4.pdf -------------------------------------------------------------------------------- /knik/doc/images/MonotonicRouting2-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/knik/doc/images/MonotonicRouting2-4.png -------------------------------------------------------------------------------- /knik/doc/images/SteinerCongestion1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/knik/doc/images/SteinerCongestion1.pdf -------------------------------------------------------------------------------- /knik/doc/images/SteinerCongestion1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/knik/doc/images/SteinerCongestion1.png -------------------------------------------------------------------------------- /knik/doc/images/SteinerCongestion2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/knik/doc/images/SteinerCongestion2.pdf -------------------------------------------------------------------------------- /knik/doc/images/SteinerCongestion2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/knik/doc/images/SteinerCongestion2.png -------------------------------------------------------------------------------- /knik/doc/images/SteinerCongestion3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/knik/doc/images/SteinerCongestion3.pdf -------------------------------------------------------------------------------- /knik/doc/images/SteinerCongestion3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/knik/doc/images/SteinerCongestion3.png -------------------------------------------------------------------------------- /knik/doc/images/SteinerCongestion4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/knik/doc/images/SteinerCongestion4.pdf -------------------------------------------------------------------------------- /knik/doc/images/SteinerCongestion4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/knik/doc/images/SteinerCongestion4.png -------------------------------------------------------------------------------- /stratus1/doc/stratus/images/editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/stratus1/doc/stratus/images/editor.png -------------------------------------------------------------------------------- /stratus1/src/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory ( stratus ) 2 | add_subdirectory ( dpgen ) 3 | add_subdirectory ( modules ) 4 | -------------------------------------------------------------------------------- /unicorn/src/Unicorn.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | images/diet-coke.png 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /crlcore/src/ccore/liberty/TimingEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/crlcore/src/ccore/liberty/TimingEvent.cpp -------------------------------------------------------------------------------- /crlcore/src/ccore/toolbox/RoutingPads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/crlcore/src/ccore/toolbox/RoutingPads.cpp -------------------------------------------------------------------------------- /documentation/UsersGuide/images/i-core.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/UsersGuide/images/i-core.pdf -------------------------------------------------------------------------------- /documentation/UsersGuide/images/i-core.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/UsersGuide/images/i-core.png -------------------------------------------------------------------------------- /documentation/UsersGuide/images/key_F.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/UsersGuide/images/key_F.pdf -------------------------------------------------------------------------------- /documentation/UsersGuide/images/key_F.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/UsersGuide/images/key_F.png -------------------------------------------------------------------------------- /documentation/UsersGuide/images/key_K.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/UsersGuide/images/key_K.png -------------------------------------------------------------------------------- /documentation/UsersGuide/images/key_M.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/UsersGuide/images/key_M.png -------------------------------------------------------------------------------- /documentation/UsersGuide/images/key_S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/UsersGuide/images/key_S.png -------------------------------------------------------------------------------- /documentation/UsersGuide/images/key_UP.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/UsersGuide/images/key_UP.pdf -------------------------------------------------------------------------------- /documentation/UsersGuide/images/key_UP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/UsersGuide/images/key_UP.png -------------------------------------------------------------------------------- /documentation/UsersGuide/images/key_Z.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/UsersGuide/images/key_Z.png -------------------------------------------------------------------------------- /hurricane/doc/hurricane/Transformation.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/hurricane/doc/hurricane/Transformation.dox -------------------------------------------------------------------------------- /hurricane/src/viewer/images/gnome-core.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/hurricane/src/viewer/images/gnome-core.png -------------------------------------------------------------------------------- /hurricane/src/viewer/images/gtk-go-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/hurricane/src/viewer/images/gtk-go-up.png -------------------------------------------------------------------------------- /hurricane/src/viewer/images/stock_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/hurricane/src/viewer/images/stock_open.png -------------------------------------------------------------------------------- /hurricane/src/viewer/images/stock_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/hurricane/src/viewer/images/stock_save.png -------------------------------------------------------------------------------- /katabatic/doc/images/AutoContactG1-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/AutoContactG1-1.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/AutoContactG1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/AutoContactG1-1.png -------------------------------------------------------------------------------- /katabatic/doc/images/AutoContactG2-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/AutoContactG2-1.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/AutoContactG2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/AutoContactG2-1.png -------------------------------------------------------------------------------- /katabatic/doc/images/AutoContactG3-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/AutoContactG3-1.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/AutoContactG3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/AutoContactG3-1.png -------------------------------------------------------------------------------- /katabatic/doc/images/AutoContactG3-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/AutoContactG3-2.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/AutoContactG3-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/AutoContactG3-2.png -------------------------------------------------------------------------------- /katabatic/doc/images/AutoContactG3-3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/AutoContactG3-3.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/AutoContactG3-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/AutoContactG3-3.png -------------------------------------------------------------------------------- /katabatic/doc/images/AutoContactG3-4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/AutoContactG3-4.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/AutoContactG3-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/AutoContactG3-4.png -------------------------------------------------------------------------------- /katabatic/doc/images/AutoContactG4-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/AutoContactG4-1.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/AutoContactG4-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/AutoContactG4-1.png -------------------------------------------------------------------------------- /katabatic/doc/images/AutoContactG4-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/AutoContactG4-2.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/AutoContactG4-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/AutoContactG4-2.png -------------------------------------------------------------------------------- /katabatic/doc/images/AutoContactG4-3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/AutoContactG4-3.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/AutoContactG4-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/AutoContactG4-3.png -------------------------------------------------------------------------------- /katabatic/doc/images/AutoContactG4-4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/AutoContactG4-4.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/AutoContactG4-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/AutoContactG4-4.png -------------------------------------------------------------------------------- /katabatic/doc/images/AutoContactG4-5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/AutoContactG4-5.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/AutoContactG4-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/AutoContactG4-5.png -------------------------------------------------------------------------------- /katabatic/doc/images/AutoInvalidate-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/AutoInvalidate-1.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/AutoInvalidate-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/AutoInvalidate-1.png -------------------------------------------------------------------------------- /katabatic/doc/images/LegalConstruct-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/LegalConstruct-1.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/LegalConstruct-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/LegalConstruct-1.png -------------------------------------------------------------------------------- /katabatic/doc/images/LegalConstruct-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/LegalConstruct-2.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/LegalConstruct-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/LegalConstruct-2.png -------------------------------------------------------------------------------- /katabatic/doc/images/LegalConstruct-3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/LegalConstruct-3.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/LegalConstruct-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/LegalConstruct-3.png -------------------------------------------------------------------------------- /katabatic/doc/images/LegalConstruct-4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/LegalConstruct-4.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/LegalConstruct-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/LegalConstruct-4.png -------------------------------------------------------------------------------- /katabatic/doc/images/LegalConstruct-5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/LegalConstruct-5.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/LegalConstruct-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/LegalConstruct-5.png -------------------------------------------------------------------------------- /katabatic/doc/images/LegalConstruct-6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/LegalConstruct-6.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/LegalConstruct-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/LegalConstruct-6.png -------------------------------------------------------------------------------- /katabatic/doc/images/NetConstraints-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/NetConstraints-1.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/NetConstraints-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/NetConstraints-1.png -------------------------------------------------------------------------------- /katabatic/doc/images/NetConstraints-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/NetConstraints-2.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/NetConstraints-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/NetConstraints-2.png -------------------------------------------------------------------------------- /katabatic/doc/images/NetConstraints-3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/NetConstraints-3.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/NetConstraints-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/NetConstraints-3.png -------------------------------------------------------------------------------- /katabatic/doc/images/NetConstraints-4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/NetConstraints-4.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/NetConstraints-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/NetConstraints-4.png -------------------------------------------------------------------------------- /katabatic/doc/images/doRp_AutoContacts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/doRp_AutoContacts.png -------------------------------------------------------------------------------- /katabatic/doc/images/doRp_StairCaseH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/doRp_StairCaseH.png -------------------------------------------------------------------------------- /katabatic/doc/images/doRp_StairCaseV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/doRp_StairCaseV.png -------------------------------------------------------------------------------- /stratus1/doc/dpgen/html.entry: -------------------------------------------------------------------------------- 1 |
  • DpGen
    Data-Path Macro-Blocs Generators

    2 | -------------------------------------------------------------------------------- /stratus1/doc/stratus/images/addaccu1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/stratus1/doc/stratus/images/addaccu1.png -------------------------------------------------------------------------------- /stratus1/doc/stratus/images/addaccu2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/stratus1/doc/stratus/images/addaccu2.png -------------------------------------------------------------------------------- /stratus1/doc/stratus/images/resizeAb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/stratus1/doc/stratus/images/resizeAb.png -------------------------------------------------------------------------------- /vlsisapd/examples/cif/python/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | INSTALL ( FILES driveCif.py DESTINATION share/doc/coriolis2/examples/vlsisapd/cif ) 2 | -------------------------------------------------------------------------------- /crlcore/src/ccore/crlcore/CLayerConnexity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/crlcore/src/ccore/crlcore/CLayerConnexity.h -------------------------------------------------------------------------------- /crlcore/src/ccore/liberty/LuTableTemplate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/crlcore/src/ccore/liberty/LuTableTemplate.h -------------------------------------------------------------------------------- /documentation/UsersGuide/images/Viewer-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/UsersGuide/images/Viewer-1.pdf -------------------------------------------------------------------------------- /documentation/UsersGuide/images/Viewer-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/UsersGuide/images/Viewer-1.png -------------------------------------------------------------------------------- /documentation/UsersGuide/images/key_CTRL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/UsersGuide/images/key_CTRL.png -------------------------------------------------------------------------------- /documentation/UsersGuide/images/key_DOWN.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/UsersGuide/images/key_DOWN.pdf -------------------------------------------------------------------------------- /documentation/UsersGuide/images/key_DOWN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/UsersGuide/images/key_DOWN.png -------------------------------------------------------------------------------- /documentation/UsersGuide/images/key_ESC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/UsersGuide/images/key_ESC.png -------------------------------------------------------------------------------- /documentation/UsersGuide/images/key_Gcap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/UsersGuide/images/key_Gcap.png -------------------------------------------------------------------------------- /documentation/UsersGuide/images/key_Icap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/UsersGuide/images/key_Icap.png -------------------------------------------------------------------------------- /documentation/UsersGuide/images/key_Kcap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/UsersGuide/images/key_Kcap.png -------------------------------------------------------------------------------- /documentation/UsersGuide/images/key_LEFT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/UsersGuide/images/key_LEFT.png -------------------------------------------------------------------------------- /documentation/UsersGuide/images/key_Lcap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/UsersGuide/images/key_Lcap.png -------------------------------------------------------------------------------- /documentation/UsersGuide/images/key_Ocap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/UsersGuide/images/key_Ocap.png -------------------------------------------------------------------------------- /documentation/UsersGuide/images/key_PLUS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/UsersGuide/images/key_PLUS.png -------------------------------------------------------------------------------- /documentation/UsersGuide/images/key_Pcap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/UsersGuide/images/key_Pcap.png -------------------------------------------------------------------------------- /documentation/UsersGuide/images/key_Qcap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/UsersGuide/images/key_Qcap.png -------------------------------------------------------------------------------- /documentation/UsersGuide/images/key_Scap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/UsersGuide/images/key_Scap.png -------------------------------------------------------------------------------- /documentation/UsersGuide/images/key_Wcap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/UsersGuide/images/key_Wcap.png -------------------------------------------------------------------------------- /hurricane/doc/hurricane/VectorCollection.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/hurricane/doc/hurricane/VectorCollection.dox -------------------------------------------------------------------------------- /hurricane/doc/hurricane/images/transf-ID.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/hurricane/doc/hurricane/images/transf-ID.png -------------------------------------------------------------------------------- /hurricane/doc/hurricane/images/transf-MX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/hurricane/doc/hurricane/images/transf-MX.png -------------------------------------------------------------------------------- /hurricane/doc/hurricane/images/transf-MY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/hurricane/doc/hurricane/images/transf-MY.png -------------------------------------------------------------------------------- /hurricane/doc/hurricane/images/transf-R1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/hurricane/doc/hurricane/images/transf-R1.png -------------------------------------------------------------------------------- /hurricane/doc/hurricane/images/transf-R2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/hurricane/doc/hurricane/images/transf-R2.pdf -------------------------------------------------------------------------------- /hurricane/doc/hurricane/images/transf-R2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/hurricane/doc/hurricane/images/transf-R2.png -------------------------------------------------------------------------------- /hurricane/doc/hurricane/images/transf-R3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/hurricane/doc/hurricane/images/transf-R3.pdf -------------------------------------------------------------------------------- /hurricane/doc/hurricane/images/transf-R3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/hurricane/doc/hurricane/images/transf-R3.png -------------------------------------------------------------------------------- /hurricane/doc/hurricane/images/transf-RX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/hurricane/doc/hurricane/images/transf-RX.png -------------------------------------------------------------------------------- /hurricane/doc/hurricane/images/transf-XR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/hurricane/doc/hurricane/images/transf-XR.png -------------------------------------------------------------------------------- /hurricane/doc/hurricane/images/transf-YR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/hurricane/doc/hurricane/images/transf-YR.png -------------------------------------------------------------------------------- /hurricane/src/viewer/images/gnome-gmush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/hurricane/src/viewer/images/gnome-gmush.png -------------------------------------------------------------------------------- /hurricane/src/viewer/images/gtk-go-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/hurricane/src/viewer/images/gtk-go-down.png -------------------------------------------------------------------------------- /hurricane/src/viewer/images/swiss-knife.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/hurricane/src/viewer/images/swiss-knife.png -------------------------------------------------------------------------------- /katabatic/doc/images/SplitAutoContact-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/SplitAutoContact-1.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/SplitAutoContact-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/SplitAutoContact-1.png -------------------------------------------------------------------------------- /katabatic/doc/images/SplitAutoContact-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/SplitAutoContact-2.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/SplitAutoContact-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/SplitAutoContact-2.png -------------------------------------------------------------------------------- /katabatic/doc/images/SplitAutoContact-3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/SplitAutoContact-3.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/SplitAutoContact-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/SplitAutoContact-3.png -------------------------------------------------------------------------------- /katabatic/doc/images/SplitAutoContact-4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/SplitAutoContact-4.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/SplitAutoContact-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/SplitAutoContact-4.png -------------------------------------------------------------------------------- /katabatic/doc/images/SplitAutoContact-5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/SplitAutoContact-5.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/SplitAutoContact-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/SplitAutoContact-5.png -------------------------------------------------------------------------------- /katabatic/doc/images/SplitAutoContact-6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/SplitAutoContact-6.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/SplitAutoContact-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/SplitAutoContact-6.png -------------------------------------------------------------------------------- /katabatic/doc/images/checkRoutingPadSize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/checkRoutingPadSize.png -------------------------------------------------------------------------------- /katabatic/doc/images/updateTopologyHTee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/updateTopologyHTee.png -------------------------------------------------------------------------------- /katabatic/doc/images/updateTopologyTurn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/updateTopologyTurn.png -------------------------------------------------------------------------------- /kite/doc/images/ConflictSolveByHistory-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/kite/doc/images/ConflictSolveByHistory-1.png -------------------------------------------------------------------------------- /kite/doc/images/ConflictSolveByHistory-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/kite/doc/images/ConflictSolveByHistory-2.png -------------------------------------------------------------------------------- /kite/doc/images/ConflictSolveByPlaceds-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/kite/doc/images/ConflictSolveByPlaceds-1.png -------------------------------------------------------------------------------- /kite/doc/images/TrackOccupiedInterval-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/kite/doc/images/TrackOccupiedInterval-1.png -------------------------------------------------------------------------------- /stratus1/devdoc/see_also.tex: -------------------------------------------------------------------------------- 1 | \subsubsection{See Also} 2 | 3 | \hyperref[ref]{\emph{Introduction}}{}{Introduction}{secintroduction} 4 | -------------------------------------------------------------------------------- /stratus1/doc/developer/stratus_developer.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/stratus1/doc/developer/stratus_developer.tex -------------------------------------------------------------------------------- /vlsisapd/examples/agds/python/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | INSTALL ( FILES driveAgds.py DESTINATION share/doc/coriolis2/examples/vlsisapd/agds ) 2 | -------------------------------------------------------------------------------- /crlcore/src/ccore/bookshelf/BookshelfDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/crlcore/src/ccore/bookshelf/BookshelfDriver.cpp -------------------------------------------------------------------------------- /crlcore/src/ccore/bookshelf/BookshelfParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/crlcore/src/ccore/bookshelf/BookshelfParser.cpp -------------------------------------------------------------------------------- /crlcore/src/ccore/liberty/LibertyTechnology.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/crlcore/src/ccore/liberty/LibertyTechnology.cpp -------------------------------------------------------------------------------- /crlcore/src/ccore/liberty/LibertyTechnology.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/crlcore/src/ccore/liberty/LibertyTechnology.h -------------------------------------------------------------------------------- /crlcore/src/ccore/liberty/LuTableTemplate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/crlcore/src/ccore/liberty/LuTableTemplate.cpp -------------------------------------------------------------------------------- /documentation/RDS/images/SegmentOrientation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/RDS/images/SegmentOrientation.png -------------------------------------------------------------------------------- /documentation/UsersGuide/UsersGuide_HTML.rst: -------------------------------------------------------------------------------- 1 | 2 | .. -*- Mode: rst -*- 3 | 4 | .. include:: HTML_defs.rst 5 | .. include:: UsersGuide.rst 6 | -------------------------------------------------------------------------------- /documentation/UsersGuide/images/clipboard.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/UsersGuide/images/clipboard.pdf -------------------------------------------------------------------------------- /documentation/UsersGuide/images/clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/UsersGuide/images/clipboard.png -------------------------------------------------------------------------------- /documentation/UsersGuide/images/etesian-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/UsersGuide/images/etesian-1.pdf -------------------------------------------------------------------------------- /documentation/UsersGuide/images/etesian-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/UsersGuide/images/etesian-1.png -------------------------------------------------------------------------------- /documentation/UsersGuide/images/key_RIGHT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/UsersGuide/images/key_RIGHT.png -------------------------------------------------------------------------------- /documentation/examples/code/engine/smurf/cmake_modules/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | install ( FILES FindSMURF.cmake DESTINATION share/cmake/Modules ) 2 | -------------------------------------------------------------------------------- /hurricane/doc/hurricane/html.entry: -------------------------------------------------------------------------------- 1 |
  • Hurricane
    Fundamental C++ Database

    2 | -------------------------------------------------------------------------------- /hurricane/doc/hurricane/images/DummyFig-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/hurricane/doc/hurricane/images/DummyFig-1.pdf -------------------------------------------------------------------------------- /hurricane/doc/hurricane/images/DummyFig-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/hurricane/doc/hurricane/images/DummyFig-1.png -------------------------------------------------------------------------------- /hurricane/doc/hurricane/images/DummyFig-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/hurricane/doc/hurricane/images/DummyFig-2.pdf -------------------------------------------------------------------------------- /hurricane/doc/hurricane/images/DummyFig-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/hurricane/doc/hurricane/images/DummyFig-2.png -------------------------------------------------------------------------------- /hurricane/src/isobar/hurricane/isobar/PyDbU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/hurricane/src/isobar/hurricane/isobar/PyDbU.h -------------------------------------------------------------------------------- /hurricane/src/viewer/images/python-logo-v3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/hurricane/src/viewer/images/python-logo-v3.png -------------------------------------------------------------------------------- /hurricane/src/viewer/images/stratus-cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/hurricane/src/viewer/images/stratus-cloud.png -------------------------------------------------------------------------------- /katabatic/doc/images/AutoSegmentCollapse-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/AutoSegmentCollapse-1.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/AutoSegmentCollapse-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/AutoSegmentCollapse-1.png -------------------------------------------------------------------------------- /katabatic/doc/images/AutoSegmentCollapse-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/AutoSegmentCollapse-2.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/AutoSegmentCollapse-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/AutoSegmentCollapse-2.png -------------------------------------------------------------------------------- /katabatic/doc/images/AutoSegmentCollapse-3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/AutoSegmentCollapse-3.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/AutoSegmentCollapse-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/AutoSegmentCollapse-3.png -------------------------------------------------------------------------------- /katabatic/doc/images/AutoSegmentCollapse-4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/AutoSegmentCollapse-4.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/AutoSegmentCollapse-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/AutoSegmentCollapse-4.png -------------------------------------------------------------------------------- /katabatic/doc/images/AutoSegmentCollapse-5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/AutoSegmentCollapse-5.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/AutoSegmentCollapse-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/AutoSegmentCollapse-5.png -------------------------------------------------------------------------------- /katabatic/doc/images/AutoSegmentCollapse-6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/AutoSegmentCollapse-6.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/AutoSegmentCollapse-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/AutoSegmentCollapse-6.png -------------------------------------------------------------------------------- /katabatic/doc/images/GCellConfiguration-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/GCellConfiguration-1.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/GCellConfiguration-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/GCellConfiguration-1.png -------------------------------------------------------------------------------- /katabatic/doc/images/GCellConfiguration-10.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/GCellConfiguration-10.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/GCellConfiguration-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/GCellConfiguration-10.png -------------------------------------------------------------------------------- /katabatic/doc/images/GCellConfiguration-11.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/GCellConfiguration-11.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/GCellConfiguration-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/GCellConfiguration-11.png -------------------------------------------------------------------------------- /katabatic/doc/images/GCellConfiguration-12.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/GCellConfiguration-12.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/GCellConfiguration-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/GCellConfiguration-12.png -------------------------------------------------------------------------------- /katabatic/doc/images/GCellConfiguration-13.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/GCellConfiguration-13.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/GCellConfiguration-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/GCellConfiguration-13.png -------------------------------------------------------------------------------- /katabatic/doc/images/GCellConfiguration-14.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/GCellConfiguration-14.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/GCellConfiguration-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/GCellConfiguration-14.png -------------------------------------------------------------------------------- /katabatic/doc/images/GCellConfiguration-15.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/GCellConfiguration-15.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/GCellConfiguration-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/GCellConfiguration-15.png -------------------------------------------------------------------------------- /katabatic/doc/images/GCellConfiguration-16.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/GCellConfiguration-16.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/GCellConfiguration-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/GCellConfiguration-16.png -------------------------------------------------------------------------------- /katabatic/doc/images/GCellConfiguration-17.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/GCellConfiguration-17.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/GCellConfiguration-17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/GCellConfiguration-17.png -------------------------------------------------------------------------------- /katabatic/doc/images/GCellConfiguration-18.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/GCellConfiguration-18.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/GCellConfiguration-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/GCellConfiguration-18.png -------------------------------------------------------------------------------- /katabatic/doc/images/GCellConfiguration-19.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/GCellConfiguration-19.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/GCellConfiguration-19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/GCellConfiguration-19.png -------------------------------------------------------------------------------- /katabatic/doc/images/GCellConfiguration-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/GCellConfiguration-2.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/GCellConfiguration-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/GCellConfiguration-2.png -------------------------------------------------------------------------------- /katabatic/doc/images/GCellConfiguration-20.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/GCellConfiguration-20.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/GCellConfiguration-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/GCellConfiguration-20.png -------------------------------------------------------------------------------- /katabatic/doc/images/GCellConfiguration-21.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/GCellConfiguration-21.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/GCellConfiguration-21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/GCellConfiguration-21.png -------------------------------------------------------------------------------- /katabatic/doc/images/GCellConfiguration-22.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/GCellConfiguration-22.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/GCellConfiguration-22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/GCellConfiguration-22.png -------------------------------------------------------------------------------- /katabatic/doc/images/GCellConfiguration-23.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/GCellConfiguration-23.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/GCellConfiguration-23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/GCellConfiguration-23.png -------------------------------------------------------------------------------- /katabatic/doc/images/GCellConfiguration-24.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/GCellConfiguration-24.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/GCellConfiguration-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/GCellConfiguration-24.png -------------------------------------------------------------------------------- /katabatic/doc/images/GCellConfiguration-3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/GCellConfiguration-3.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/GCellConfiguration-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/GCellConfiguration-3.png -------------------------------------------------------------------------------- /katabatic/doc/images/GCellConfiguration-30.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/GCellConfiguration-30.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/GCellConfiguration-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/GCellConfiguration-30.png -------------------------------------------------------------------------------- /katabatic/doc/images/GCellConfiguration-31.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/GCellConfiguration-31.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/GCellConfiguration-31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/GCellConfiguration-31.png -------------------------------------------------------------------------------- /katabatic/doc/images/GCellConfiguration-32.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/GCellConfiguration-32.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/GCellConfiguration-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/GCellConfiguration-32.png -------------------------------------------------------------------------------- /katabatic/doc/images/GCellConfiguration-33.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/GCellConfiguration-33.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/GCellConfiguration-33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/GCellConfiguration-33.png -------------------------------------------------------------------------------- /katabatic/doc/images/GCellConfiguration-34.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/GCellConfiguration-34.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/GCellConfiguration-34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/GCellConfiguration-34.png -------------------------------------------------------------------------------- /katabatic/doc/images/GCellConfiguration-35.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/GCellConfiguration-35.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/GCellConfiguration-35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/GCellConfiguration-35.png -------------------------------------------------------------------------------- /katabatic/doc/images/GCellConfiguration-36.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/GCellConfiguration-36.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/GCellConfiguration-36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/GCellConfiguration-36.png -------------------------------------------------------------------------------- /katabatic/doc/images/GCellConfiguration-4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/GCellConfiguration-4.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/GCellConfiguration-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/GCellConfiguration-4.png -------------------------------------------------------------------------------- /katabatic/doc/images/GCellConfiguration-40.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/GCellConfiguration-40.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/GCellConfiguration-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/GCellConfiguration-40.png -------------------------------------------------------------------------------- /katabatic/doc/images/GCellConfiguration-41.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/GCellConfiguration-41.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/GCellConfiguration-41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/GCellConfiguration-41.png -------------------------------------------------------------------------------- /katabatic/doc/images/GCellConfiguration-42.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/GCellConfiguration-42.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/GCellConfiguration-42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/GCellConfiguration-42.png -------------------------------------------------------------------------------- /katabatic/doc/images/GCellConfiguration-43.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/GCellConfiguration-43.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/GCellConfiguration-43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/GCellConfiguration-43.png -------------------------------------------------------------------------------- /katabatic/doc/images/GCellConfiguration-44.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/GCellConfiguration-44.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/GCellConfiguration-44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/GCellConfiguration-44.png -------------------------------------------------------------------------------- /katabatic/doc/images/GCellConfiguration-45.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/GCellConfiguration-45.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/GCellConfiguration-45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/GCellConfiguration-45.png -------------------------------------------------------------------------------- /katabatic/doc/images/GCellConfiguration-5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/GCellConfiguration-5.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/GCellConfiguration-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/GCellConfiguration-5.png -------------------------------------------------------------------------------- /katabatic/doc/images/GCellConfiguration-6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/GCellConfiguration-6.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/GCellConfiguration-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/GCellConfiguration-6.png -------------------------------------------------------------------------------- /katabatic/doc/images/GCellConfiguration-7.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/GCellConfiguration-7.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/GCellConfiguration-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/GCellConfiguration-7.png -------------------------------------------------------------------------------- /katabatic/doc/images/PerpandicularState-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/PerpandicularState-1.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/PerpandicularState-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/PerpandicularState-1.png -------------------------------------------------------------------------------- /katabatic/doc/images/PerpandicularState-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/PerpandicularState-2.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/PerpandicularState-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/PerpandicularState-2.png -------------------------------------------------------------------------------- /katabatic/doc/images/PerpandicularState-3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/PerpandicularState-3.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/PerpandicularState-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/PerpandicularState-3.png -------------------------------------------------------------------------------- /katabatic/doc/images/PerpandicularState-4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/PerpandicularState-4.pdf -------------------------------------------------------------------------------- /katabatic/doc/images/PerpandicularState-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/PerpandicularState-4.png -------------------------------------------------------------------------------- /katabatic/doc/images/updateTopologyTerminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/katabatic/doc/images/updateTopologyTerminal.png -------------------------------------------------------------------------------- /stratus1/doc/developer/see_also.tex: -------------------------------------------------------------------------------- 1 | \subsubsection{See Also} 2 | 3 | \hyperref[ref]{\emph{Introduction}}{}{Introduction}{secintroduction} 4 | -------------------------------------------------------------------------------- /stratus1/doc/stratus/html.entry: -------------------------------------------------------------------------------- 1 |
  • Stratus
    Netlist / Layout description language

    2 | -------------------------------------------------------------------------------- /stratus1/doc/stratus/see_also.tex: -------------------------------------------------------------------------------- 1 | \subsubsection{See Also} 2 | 3 | \hyperref[ref]{\emph{Introduction}}{}{Introduction}{secintroduction} 4 | -------------------------------------------------------------------------------- /vlsisapd/examples/dtr/python/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | INSTALL ( FILES driveDtr.py parseDtr.py DESTINATION share/doc/coriolis2/examples/vlsisapd/dtr ) 2 | -------------------------------------------------------------------------------- /bootstrap/debian/coriolis2.install: -------------------------------------------------------------------------------- 1 | /etc 2 | /usr/bin 3 | /usr/lib/lib*.so.* 4 | /usr/lib/python* 5 | /usr/share/coriolis2 6 | /usr/share/doc/ 7 | -------------------------------------------------------------------------------- /crlcore/src/ccore/openaccess/OpenAccessDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/crlcore/src/ccore/openaccess/OpenAccessDriver.cpp -------------------------------------------------------------------------------- /documentation/UsersGuide/UsersGuide_LaTeX.rst: -------------------------------------------------------------------------------- 1 | 2 | .. -*- Mode: rst -*- 3 | 4 | .. include:: LaTeX_defs.rst 5 | .. include:: UsersGuide.rst 6 | -------------------------------------------------------------------------------- /documentation/UsersGuide/images/ComputerMouse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/UsersGuide/images/ComputerMouse.jpg -------------------------------------------------------------------------------- /documentation/UsersGuide/images/ComputerMouse.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/UsersGuide/images/ComputerMouse.pdf -------------------------------------------------------------------------------- /documentation/UsersGuide/images/ComputerMouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/UsersGuide/images/ComputerMouse.png -------------------------------------------------------------------------------- /documentation/UsersGuide/images/Controller-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/UsersGuide/images/Controller-1.pdf -------------------------------------------------------------------------------- /documentation/UsersGuide/images/Controller-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/UsersGuide/images/Controller-1.png -------------------------------------------------------------------------------- /hurricane/src/viewer/images/palette_hide_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/hurricane/src/viewer/images/palette_hide_all.png -------------------------------------------------------------------------------- /hurricane/src/viewer/images/palette_show_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/hurricane/src/viewer/images/palette_show_all.png -------------------------------------------------------------------------------- /solstice/src/solstice/RoutingErrorInformations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/solstice/src/solstice/RoutingErrorInformations.h -------------------------------------------------------------------------------- /stratus1/doc/developer/html.entry: -------------------------------------------------------------------------------- 1 |
  • Stratus Dev
    Stratus Developpers Documentation

    2 | -------------------------------------------------------------------------------- /vlsisapd/src/configuration/src/images/choose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/vlsisapd/src/configuration/src/images/choose.png -------------------------------------------------------------------------------- /vlsisapd/src/configuration/src/images/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/vlsisapd/src/configuration/src/images/warning.png -------------------------------------------------------------------------------- /crlcore/src/ccore/toolbox/HyperNetPortOccurrences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/crlcore/src/ccore/toolbox/HyperNetPortOccurrences.h -------------------------------------------------------------------------------- /documentation/RDS/images/RDS_VW-eps-converted-to.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/RDS/images/RDS_VW-eps-converted-to.pdf -------------------------------------------------------------------------------- /documentation/UsersGuide/images/PR-DetailedRoute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/UsersGuide/images/PR-DetailedRoute.png -------------------------------------------------------------------------------- /documentation/UsersGuide/images/PR-FinalizeRoute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/UsersGuide/images/PR-FinalizeRoute.png -------------------------------------------------------------------------------- /documentation/UsersGuide/images/PR-GlobalRoute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/UsersGuide/images/PR-GlobalRoute.png -------------------------------------------------------------------------------- /documentation/UsersGuide/images/Viewer-Netlist-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/UsersGuide/images/Viewer-Netlist-1.pdf -------------------------------------------------------------------------------- /documentation/UsersGuide/images/Viewer-Netlist-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/UsersGuide/images/Viewer-Netlist-1.png -------------------------------------------------------------------------------- /documentation/UsersGuide/images/chip-structure-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/UsersGuide/images/chip-structure-1.pdf -------------------------------------------------------------------------------- /documentation/UsersGuide/images/chip-structure-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/UsersGuide/images/chip-structure-1.png -------------------------------------------------------------------------------- /hurricane/src/viewer/hurricane/viewer/CellWidgets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/hurricane/src/viewer/hurricane/viewer/CellWidgets.h -------------------------------------------------------------------------------- /hurricane/src/viewer/hurricane/viewer/RecordModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/hurricane/src/viewer/hurricane/viewer/RecordModel.h -------------------------------------------------------------------------------- /hurricane/src/viewer/images/gtk-go-forward-ltr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/hurricane/src/viewer/images/gtk-go-forward-ltr.png -------------------------------------------------------------------------------- /hurricane/src/viewer/images/gtk-go-forward-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/hurricane/src/viewer/images/gtk-go-forward-rtl.png -------------------------------------------------------------------------------- /stratus1/doc/patterns/html.entry: -------------------------------------------------------------------------------- 1 |
  • Patterns module
    Patterns description using Stratus

    2 | -------------------------------------------------------------------------------- /vlsisapd/examples/spice/python/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | INSTALL ( FILES driveSpice.py parseSpice.py DESTINATION share/doc/coriolis2/examples/vlsisapd/spice ) 2 | -------------------------------------------------------------------------------- /crlcore/src/ccore/toolbox/HyperNetPortOccurrences.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/crlcore/src/ccore/toolbox/HyperNetPortOccurrences.cpp -------------------------------------------------------------------------------- /documentation/RDS/images/RDS_LCW-eps-converted-to.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/RDS/images/RDS_LCW-eps-converted-to.pdf -------------------------------------------------------------------------------- /documentation/UsersGuide/images/Controller-Look-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/UsersGuide/images/Controller-Look-1.pdf -------------------------------------------------------------------------------- /documentation/UsersGuide/images/Controller-Look-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/UsersGuide/images/Controller-Look-1.png -------------------------------------------------------------------------------- /documentation/UsersGuide/images/PR-SBS-LoadGlobal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/UsersGuide/images/PR-SBS-LoadGlobal.png -------------------------------------------------------------------------------- /documentation/UsersGuide/images/PR-SBS-SaveGlobal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/UsersGuide/images/PR-SBS-SaveGlobal.png -------------------------------------------------------------------------------- /stratus1/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | add_subdirectory(stratus) 3 | add_subdirectory(dpgen) 4 | add_subdirectory(patterns) 5 | add_subdirectory(developer) 6 | -------------------------------------------------------------------------------- /documentation/RDS/images/clipboard-eps-converted-to.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/RDS/images/clipboard-eps-converted-to.pdf -------------------------------------------------------------------------------- /documentation/UsersGuide/images/Controller-Filter-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/UsersGuide/images/Controller-Filter-1.pdf -------------------------------------------------------------------------------- /documentation/UsersGuide/images/Controller-Filter-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/UsersGuide/images/Controller-Filter-1.png -------------------------------------------------------------------------------- /documentation/UsersGuide/images/Controller-Netlist-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/UsersGuide/images/Controller-Netlist-1.pdf -------------------------------------------------------------------------------- /documentation/UsersGuide/images/Controller-Netlist-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/UsersGuide/images/Controller-Netlist-1.png -------------------------------------------------------------------------------- /documentation/UsersGuide/images/Controller-Settings-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/UsersGuide/images/Controller-Settings-1.pdf -------------------------------------------------------------------------------- /documentation/UsersGuide/images/Controller-Settings-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/UsersGuide/images/Controller-Settings-1.png -------------------------------------------------------------------------------- /documentation/UsersGuide/images/Coriolis-Soft-Schema.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/UsersGuide/images/Coriolis-Soft-Schema.pdf -------------------------------------------------------------------------------- /documentation/UsersGuide/images/Coriolis-Soft-Schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/UsersGuide/images/Coriolis-Soft-Schema.png -------------------------------------------------------------------------------- /documentation/UsersGuide/images/PR-DetailedPreRoute.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/UsersGuide/images/PR-DetailedPreRoute.pdf -------------------------------------------------------------------------------- /documentation/UsersGuide/images/PR-DetailedPreRoute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/UsersGuide/images/PR-DetailedPreRoute.png -------------------------------------------------------------------------------- /documentation/examples/AM2901/.coriolis2/kite.py: -------------------------------------------------------------------------------- 1 | 2 | from Hurricane import DebugSession 3 | 4 | #DebugSession.addToTrace( kite.getCell().getNet( 'f_i(3)' ) ) 5 | -------------------------------------------------------------------------------- /hurricane/src/viewer/hurricane/viewer/ScreenUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/hurricane/src/viewer/hurricane/viewer/ScreenUtilities.h -------------------------------------------------------------------------------- /vlsisapd/doc/img/pngToPdf.sh: -------------------------------------------------------------------------------- 1 | for file in `ls *.png`; do 2 | convert $file -pointsize 72 -colorspace RGB -compress JPEG `basename $file .png`.pdf; 3 | done 4 | -------------------------------------------------------------------------------- /vlsisapd/examples/liberty/python/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | INSTALL ( FILES parseLiberty.py driveLiberty.py DESTINATION share/doc/coriolis2/examples/vlsisapd/liberty ) 2 | -------------------------------------------------------------------------------- /documentation/UsersGuide/images/Controller-Inspector-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/UsersGuide/images/Controller-Inspector-1.pdf -------------------------------------------------------------------------------- /documentation/UsersGuide/images/Controller-Inspector-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/UsersGuide/images/Controller-Inspector-1.png -------------------------------------------------------------------------------- /documentation/UsersGuide/images/Controller-Inspector-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/UsersGuide/images/Controller-Inspector-2.pdf -------------------------------------------------------------------------------- /documentation/UsersGuide/images/Controller-Inspector-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/UsersGuide/images/Controller-Inspector-2.png -------------------------------------------------------------------------------- /documentation/UsersGuide/images/Controller-Inspector-3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/UsersGuide/images/Controller-Inspector-3.pdf -------------------------------------------------------------------------------- /documentation/UsersGuide/images/Controller-Inspector-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/UsersGuide/images/Controller-Inspector-3.png -------------------------------------------------------------------------------- /documentation/UsersGuide/images/Controller-LayersGos-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/UsersGuide/images/Controller-LayersGos-1.pdf -------------------------------------------------------------------------------- /documentation/UsersGuide/images/Controller-LayersGos-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/UsersGuide/images/Controller-LayersGos-1.png -------------------------------------------------------------------------------- /documentation/UsersGuide/images/Controller-Selection-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/UsersGuide/images/Controller-Selection-1.pdf -------------------------------------------------------------------------------- /documentation/UsersGuide/images/Controller-Selection-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xobs/coriolis/HEAD/documentation/UsersGuide/images/Controller-Selection-1.png -------------------------------------------------------------------------------- /vlsisapd/examples/openChams/python/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | INSTALL ( FILES driveOpenChams.py parseOpenChams.py DESTINATION share/doc/coriolis2/examples/vlsisapd/openChams ) 2 | -------------------------------------------------------------------------------- /crlcore/src/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(ccore) 2 | add_subdirectory(LibraryManager) 3 | add_subdirectory(pyCRL) 4 | add_subdirectory(cyclop) 5 | add_subdirectory(x2y) 6 | -------------------------------------------------------------------------------- /knik/src/flute-3.1/src/knik/err.h: -------------------------------------------------------------------------------- 1 | #ifndef _ERR_H_ 2 | #define _ERR_H_ 3 | 4 | void err_msg( 5 | char* msg 6 | ); 7 | 8 | void err_exit( 9 | char* msg 10 | ); 11 | 12 | #endif 13 | -------------------------------------------------------------------------------- /stratus1/etc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | install ( FILES stratus2sxlib.xml DESTINATION ${SYS_CONF_DIR}/coriolis2 ) 3 | install ( FILES stratus.vim DESTINATION ${SYS_CONF_DIR}/coriolis2 ) 4 | -------------------------------------------------------------------------------- /unicorn/python/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # -*- explicit-buffer-name: "CMakeLists.txt" -*- 2 | 3 | install( FILES unicornInit.py DESTINATION ${PYTHON_SITE_PACKAGES}/unicorn ) 4 | 5 | -------------------------------------------------------------------------------- /vlsisapd/examples/cif/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | ADD_SUBDIRECTORY(cplusplus) 2 | ADD_SUBDIRECTORY(python) 3 | 4 | INSTALL ( FILES transistor.cif DESTINATION share/doc/coriolis2/examples/vlsisapd/cif ) 5 | -------------------------------------------------------------------------------- /bootstrap/refactor.sed: -------------------------------------------------------------------------------- 1 | s|cdebug\.log(\([0-9]*\),\([0-9]*\))|cdebug_log(\1,\2)| 2 | s|cdebug\.log(\([0-9]*\))|cdebug_log(\1,0)| 3 | s|cdebug\.tabw(\([0-9]*\),\(-*[0-9]*\))|cdebug_tabw(\1,\2)| 4 | -------------------------------------------------------------------------------- /crlcore/doc/crlcore/CRL.dox: -------------------------------------------------------------------------------- 1 | 2 | // -*- C++ -*- 3 | 4 | 5 | namespace CRL { 6 | 7 | /*! \namespace CRL 8 | * \brief Namespace of Coriolis Core 9 | */ 10 | 11 | } 12 | -------------------------------------------------------------------------------- /vlsisapd/examples/agds/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | ADD_SUBDIRECTORY(cplusplus) 2 | ADD_SUBDIRECTORY(python) 3 | 4 | INSTALL ( FILES transistor.agds DESTINATION share/doc/coriolis2/examples/vlsisapd/agds ) 5 | -------------------------------------------------------------------------------- /vlsisapd/examples/dtr/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | ADD_SUBDIRECTORY(cplusplus) 2 | ADD_SUBDIRECTORY(python) 3 | 4 | INSTALL ( FILES example.dtr.xml DESTINATION share/doc/coriolis2/examples/vlsisapd/dtr ) 5 | -------------------------------------------------------------------------------- /vlsisapd/examples/liberty/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | ADD_SUBDIRECTORY(cplusplus) 2 | ADD_SUBDIRECTORY(python) 3 | 4 | INSTALL ( FILES testParse.lib DESTINATION share/doc/coriolis2/examples/vlsisapd/liberty ) 5 | -------------------------------------------------------------------------------- /hurricane/doc/hurricane/Editor.dox: -------------------------------------------------------------------------------- 1 | 2 | // -*- C++ -*- 3 | 4 | 5 | namespace Hurricane { 6 | 7 | /*! \class Editor 8 | * \brief Editor description (\b API) 9 | * 10 | } 11 | -------------------------------------------------------------------------------- /unicorn/doc/unicorn/Unicorn.dox: -------------------------------------------------------------------------------- 1 | 2 | // -*- C++ -*- 3 | 4 | 5 | namespace Unicorn { 6 | 7 | /*! \namespace Unicorn 8 | * \brief Namespace of Unicorn 9 | */ 10 | 11 | } 12 | -------------------------------------------------------------------------------- /vlsisapd/src/configuration/src/Configuration.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | images/choose.png 4 | images/warning.png 5 | 6 | 7 | -------------------------------------------------------------------------------- /bootstrap/debian/changelog.in: -------------------------------------------------------------------------------- 1 | coriolis2 (1.0.@svntag@-1) unstable; urgency=low 2 | 3 | * Initial release. Closes: #00001 4 | 5 | -- Jean-Paul Chaput Mon, 31 Jan 2011 18:03:55 +0100 6 | -------------------------------------------------------------------------------- /crlcore/cmake_modules/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | install ( FILES FindCORIOLIS.cmake 2 | FindOPENACCESS.cmake 3 | UseLATEX.cmake 4 | DESTINATION share/cmake/Modules ) 5 | -------------------------------------------------------------------------------- /hurricane/doc/hurricane/Pin.dox: -------------------------------------------------------------------------------- 1 | 2 | // -*- C++ -*- 3 | 4 | 5 | namespace Hurricane { 6 | 7 | /*! \class Pin 8 | * \brief Pin description (\b API) 9 | * 10 | */ 11 | 12 | } 13 | -------------------------------------------------------------------------------- /vlsisapd/doc/agds/Element.dox: -------------------------------------------------------------------------------- 1 | // -*- C++ -*- 2 | 3 | namespace AGDS { 4 | /*! \class Element 5 | * 6 | * This is an abstract class which is a base for any GDS II shape. It only defines a layer. 7 | */ 8 | } 9 | -------------------------------------------------------------------------------- /crlcore/doc/doxygen/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | ADD_CUSTOM_TARGET(doc ALL cd ${CRLCORE_SOURCE_DIR}/doc/doxygen && ${DOXYGEN_EXECUTABLE} doxyfile) 2 | 3 | INSTALL ( DIRECTORY html/ DESTINATION share/doc/coriolis2/crlcore/doxygen ) 4 | -------------------------------------------------------------------------------- /hurricane/doc/hurricane/ExpandRules.dox: -------------------------------------------------------------------------------- 1 | 2 | // -*- C++ -*- 3 | 4 | 5 | namespace Hurricane { 6 | 7 | /*! \class ExpandRules 8 | * \brief ExpandRules description (\b API) 9 | * 10 | } 11 | -------------------------------------------------------------------------------- /vlsisapd/doc/dtr/Exception.dox: -------------------------------------------------------------------------------- 1 | // -*- C++ -*- 2 | 3 | namespace DTR { 4 | /*! \class DTRException 5 | * 6 | * This class describes the exceptions throwed by the DTR library in case of errors. 7 | */ 8 | 9 | } 10 | -------------------------------------------------------------------------------- /hurricane/doc/hurricane/Primitive.dox: -------------------------------------------------------------------------------- 1 | 2 | // -*- C++ -*- 3 | 4 | 5 | namespace Hurricane { 6 | 7 | /*! \class Primitive 8 | * \brief Primitive description (\b API) 9 | * 10 | */ 11 | 12 | } 13 | -------------------------------------------------------------------------------- /hurricane/doc/hurricane/Relation.dox: -------------------------------------------------------------------------------- 1 | 2 | // -*- C++ -*- 3 | 4 | 5 | namespace Hurricane { 6 | 7 | /*! \class Relation 8 | * \brief Relation description (\b API) 9 | * 10 | */ 11 | 12 | } 13 | -------------------------------------------------------------------------------- /crlcore/src/ccore/openaccess/Makefile: -------------------------------------------------------------------------------- 1 | 2 | all: 3 | cd ../../../../.. && make 4 | 5 | mrproper: 6 | cd testDriver && make mrproper 7 | cd testParser && make mrproper 8 | rm -rf .cadence 9 | 10 | .PHONY: all mrproper 11 | -------------------------------------------------------------------------------- /vlsisapd/doc/spice/Exception.dox: -------------------------------------------------------------------------------- 1 | // -*- C++ -*- 2 | 3 | namespace SPICE { 4 | /*! \class SpiceException 5 | * 6 | * This class describes the exceptions throwed by the Spice library in case of errors. 7 | */ 8 | 9 | } 10 | -------------------------------------------------------------------------------- /hurricane/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | include_directories ( ${HURRICANE_SOURCE_DIR}/src/hurricane ) 3 | add_executable ( htest HTest.cpp ) 4 | target_link_libraries ( htest hurricane ${Boost_LIBRARIES} ${LIBEXECINFO_LIBRARIES} ) 5 | -------------------------------------------------------------------------------- /vlsisapd/examples/spice/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | ADD_SUBDIRECTORY(cplusplus) 2 | ADD_SUBDIRECTORY(python) 3 | 4 | SET ( SP_FILES OTA_miller.spi 5 | ) 6 | 7 | INSTALL ( FILES ${SP_FILES} DESTINATION share/doc/coriolis2/examples/vlsisapd/spice ) 8 | -------------------------------------------------------------------------------- /crlcore/etc/cmos/mauka.conf: -------------------------------------------------------------------------------- 1 | # -*- Mode:Python; explicit-buffer-name: "mauka.conf" -*- 2 | 3 | import helpers 4 | 5 | exec(compile(open( helpers.sysConfDir+'/common/mauka.conf' ).read(), helpers.sysConfDir+'/common/mauka.conf', 'exec')) 6 | -------------------------------------------------------------------------------- /crlcore/etc/cmos/hMetis.conf: -------------------------------------------------------------------------------- 1 | # -*- Mode:Python; explicit-buffer-name: "hMetis.conf" -*- 2 | 3 | import helpers 4 | 5 | exec(compile(open( helpers.sysConfDir+'/common/hMetis.conf' ).read(), helpers.sysConfDir+'/common/hMetis.conf', 'exec')) 6 | -------------------------------------------------------------------------------- /crlcore/etc/cmos/nimbus.conf: -------------------------------------------------------------------------------- 1 | # -*- Mode:Python; explicit-buffer-name: "nimbus.conf" -*- 2 | 3 | import helpers 4 | 5 | exec(compile(open( helpers.sysConfDir+'/common/nimbus.conf' ).read(), helpers.sysConfDir+'/common/nimbus.conf', 'exec')) 6 | -------------------------------------------------------------------------------- /crlcore/etc/ispd05/hMetis.conf: -------------------------------------------------------------------------------- 1 | # -*- Mode:Python; explicit-buffer-name: "hMetis.conf" -*- 2 | 3 | import helpers 4 | 5 | exec(compile(open( helpers.sysConfDir+'/common/hMetis.conf' ).read(), helpers.sysConfDir+'/common/hMetis.conf', 'exec')) 6 | -------------------------------------------------------------------------------- /crlcore/etc/ispd05/mauka.conf: -------------------------------------------------------------------------------- 1 | # -*- Mode:Python; explicit-buffer-name: "mauka.conf" -*- 2 | 3 | import helpers 4 | 5 | exec(compile(open( helpers.sysConfDir+'/common/mauka.conf' ).read(), helpers.sysConfDir+'/common/mauka.conf', 'exec')) 6 | -------------------------------------------------------------------------------- /crlcore/etc/ispd05/nimbus.conf: -------------------------------------------------------------------------------- 1 | # -*- Mode:Python; explicit-buffer-name: "nimbus.conf" -*- 2 | 3 | import helpers 4 | 5 | exec(compile(open( helpers.sysConfDir+'/common/nimbus.conf' ).read(), helpers.sysConfDir+'/common/nimbus.conf', 'exec')) 6 | -------------------------------------------------------------------------------- /crlcore/etc/vsc200/mauka.conf: -------------------------------------------------------------------------------- 1 | # -*- Mode:Python; explicit-buffer-name: "mauka.conf" -*- 2 | 3 | import helpers 4 | 5 | exec(compile(open( helpers.sysConfDir+'/common/mauka.conf' ).read(), helpers.sysConfDir+'/common/mauka.conf', 'exec')) 6 | -------------------------------------------------------------------------------- /crlcore/src/ccore/crlcore/Ioc.h: -------------------------------------------------------------------------------- 1 | #ifndef __CRL_IOC_H 2 | #define __CRL_IOC_H 3 | 4 | #include "hurricane/Cell.h" 5 | 6 | using Hurricane::Cell; 7 | 8 | extern void IocParser(Cell* cell, const char* file); 9 | 10 | #endif /* __CIOC_H */ 11 | -------------------------------------------------------------------------------- /vlsisapd/doc/openChams/Exception.dox: -------------------------------------------------------------------------------- 1 | // -*- C++ -*- 2 | 3 | namespace OpenChams { 4 | /*! \class OpenChamsException 5 | * 6 | * This class describes the exceptions throwed by the OpenChams library in case of errors. 7 | */ 8 | 9 | } 10 | -------------------------------------------------------------------------------- /crlcore/etc/cmos/etesian.conf: -------------------------------------------------------------------------------- 1 | # -*- Mode:Python; explicit-buffer-name: "etesian.conf" -*- 2 | 3 | import helpers 4 | 5 | exec(compile(open( helpers.sysConfDir+'/common/etesian.conf' ).read(), helpers.sysConfDir+'/common/etesian.conf', 'exec')) 6 | -------------------------------------------------------------------------------- /crlcore/etc/ispd05/etesian.conf: -------------------------------------------------------------------------------- 1 | # -*- Mode:Python; explicit-buffer-name: "etesian.conf" -*- 2 | 3 | import helpers 4 | 5 | exec(compile(open( helpers.sysConfDir+'/common/etesian.conf' ).read(), helpers.sysConfDir+'/common/etesian.conf', 'exec')) 6 | -------------------------------------------------------------------------------- /crlcore/etc/vsc200/etesian.conf: -------------------------------------------------------------------------------- 1 | # -*- Mode:Python; explicit-buffer-name: "etesian.conf" -*- 2 | 3 | import helpers 4 | 5 | exec(compile(open( helpers.sysConfDir+'/common/etesian.conf' ).read(), helpers.sysConfDir+'/common/etesian.conf', 'exec')) 6 | -------------------------------------------------------------------------------- /crlcore/etc/vsc200/hMetis.conf: -------------------------------------------------------------------------------- 1 | # -*- Mode:Python; explicit-buffer-name: "hMetis.conf" -*- 2 | 3 | import helpers 4 | 5 | exec(compile(open( helpers.sysConfDir+'/common/hMetis.conf' ).read(), helpers.sysConfDir+'/common/hMetis.conf', 'exec')) 6 | -------------------------------------------------------------------------------- /crlcore/etc/vsc200/nimbus.conf: -------------------------------------------------------------------------------- 1 | # -*- Mode:Python; explicit-buffer-name: "nimbus.conf" -*- 2 | 3 | import helpers 4 | 5 | exec(compile(open( helpers.sysConfDir+'/common/nimbus.conf' ).read(), helpers.sysConfDir+'/common/nimbus.conf', 'exec')) 6 | -------------------------------------------------------------------------------- /hurricane/doc/hurricane/StandardRelation.dox: -------------------------------------------------------------------------------- 1 | 2 | // -*- C++ -*- 3 | 4 | 5 | namespace Hurricane { 6 | 7 | /*! \class StandardRelation 8 | * \brief StandardRelation description (\b API) 9 | * 10 | */ 11 | 12 | } 13 | -------------------------------------------------------------------------------- /crlcore/etc/cmos/patterns.conf: -------------------------------------------------------------------------------- 1 | # -*- Mode:Python; explicit-buffer-name: "patterns.conf" -*- 2 | 3 | import helpers 4 | 5 | exec(compile(open( helpers.sysConfDir+'/common/patterns.conf' ).read(), helpers.sysConfDir+'/common/patterns.conf', 'exec')) 6 | -------------------------------------------------------------------------------- /crlcore/etc/ispd05/patterns.conf: -------------------------------------------------------------------------------- 1 | # -*- Mode:Python; explicit-buffer-name: "patterns.conf" -*- 2 | 3 | import helpers 4 | 5 | exec(compile(open( helpers.sysConfDir+'/common/patterns.conf' ).read(), helpers.sysConfDir+'/common/patterns.conf', 'exec')) 6 | -------------------------------------------------------------------------------- /crlcore/etc/vsc200/patterns.conf: -------------------------------------------------------------------------------- 1 | # -*- Mode:Python; explicit-buffer-name: "patterns.conf" -*- 2 | 3 | import helpers 4 | 5 | exec(compile(open( helpers.sysConfDir+'/common/patterns.conf' ).read(), helpers.sysConfDir+'/common/patterns.conf', 'exec')) 6 | -------------------------------------------------------------------------------- /knik/src/flute-3.1/src/knik/dist.h: -------------------------------------------------------------------------------- 1 | #ifndef _DIST_H_ 2 | #define _DIST_H_ 3 | 4 | #include "global.h" 5 | 6 | long dist( 7 | Point p, 8 | Point q 9 | ); 10 | 11 | long dist2( 12 | Point* p, 13 | Point* q 14 | ); 15 | 16 | #endif 17 | -------------------------------------------------------------------------------- /crlcore/etc/scmos_deep_018/etesian.conf: -------------------------------------------------------------------------------- 1 | # -*- Mode:Python; explicit-buffer-name: "etesian.conf" -*- 2 | 3 | import helpers 4 | 5 | exec(compile(open( helpers.sysConfDir+'/common/etesian.conf' ).read(), helpers.sysConfDir+'/common/etesian.conf', 'exec')) 6 | -------------------------------------------------------------------------------- /crlcore/etc/scmos_deep_018/mauka.conf: -------------------------------------------------------------------------------- 1 | # -*- Mode:Python; explicit-buffer-name: "mauka.conf" -*- 2 | 3 | import helpers 4 | 5 | exec(compile(open( helpers.sysConfDir+'/common/mauka.conf' ).read(), helpers.sysConfDir+'/common/mauka.conf', 'exec')) 6 | -------------------------------------------------------------------------------- /knik/src/flute-3.1/src/knik/mst2.h: -------------------------------------------------------------------------------- 1 | #ifndef _MST2_H_ 2 | #define _MST2_H_ 3 | 4 | #include "global.h" 5 | 6 | void mst2_package_init( long n ); 7 | void mst2_package_done(); 8 | void mst2( long n, Point* pt, long* parent ); 9 | 10 | #endif 11 | 12 | -------------------------------------------------------------------------------- /crlcore/etc/scmos_deep_018/hMetis.conf: -------------------------------------------------------------------------------- 1 | # -*- Mode:Python; explicit-buffer-name: "hMetis.conf" -*- 2 | 3 | import helpers 4 | 5 | exec(compile(open( helpers.sysConfDir+'/common/hMetis.conf' ).read(), helpers.sysConfDir+'/common/hMetis.conf', 'exec')) 6 | -------------------------------------------------------------------------------- /crlcore/etc/scmos_deep_018/nimbus.conf: -------------------------------------------------------------------------------- 1 | # -*- Mode:Python; explicit-buffer-name: "nimbus.conf" -*- 2 | 3 | import helpers 4 | 5 | exec(compile(open( helpers.sysConfDir+'/common/nimbus.conf' ).read(), helpers.sysConfDir+'/common/nimbus.conf', 'exec')) 6 | -------------------------------------------------------------------------------- /stratus1/src/modules/patterns/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | patternsdir = $(pkgpyexecdir) 3 | 4 | patterns_PYTHON = patterns.py \ 5 | patread.py \ 6 | patwrite.py \ 7 | synopsys.py \ 8 | utils.py 9 | -------------------------------------------------------------------------------- /crlcore/etc/scmos_deep_018/patterns.conf: -------------------------------------------------------------------------------- 1 | # -*- Mode:Python; explicit-buffer-name: "patterns.conf" -*- 2 | 3 | import helpers 4 | 5 | exec(compile(open( helpers.sysConfDir+'/common/patterns.conf' ).read(), helpers.sysConfDir+'/common/patterns.conf', 'exec')) 6 | -------------------------------------------------------------------------------- /vlsisapd/examples/openChams/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | ADD_SUBDIRECTORY(cplusplus) 2 | ADD_SUBDIRECTORY(python) 3 | 4 | SET ( XML_FILES inverter.xml 5 | buffer.xml 6 | ) 7 | 8 | INSTALL ( FILES ${XML_FILES} DESTINATION share/doc/coriolis2/examples/vlsisapd/openChams ) 9 | -------------------------------------------------------------------------------- /vlsisapd/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | ADD_CUSTOM_TARGET ( doc ALL cd ${VLSISAPD_SOURCE_DIR}/doc && ${DOXYGEN_EXECUTABLE} doxyfile ) 2 | 3 | INSTALL ( DIRECTORY html/ DESTINATION share/doc/coriolis2/en/html/vlsisapd ) 4 | INSTALL ( DIRECTORY latex/ DESTINATION share/doc/coriolis2/en/html/vlsisapd ) 5 | -------------------------------------------------------------------------------- /bootstrap/svn2git/svn2git.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | svn-all-fast-export --resume-from 0 \ 4 | --rules ./coriolis.rules \ 5 | --identity-map ./authors.txt \ 6 | /dsk/l1/jpc/svn2git/svn > svn-all-fast-export.log 7 | -------------------------------------------------------------------------------- /vlsisapd/examples/cif/transistor.cif: -------------------------------------------------------------------------------- 1 | (CIF file written on 11-Jun-2010 13:49:44 by VLSISAPD_CIF_DRIVER); 2 | (Units: micro - UU/DB Scale: 0.001); 3 | DS 1 1 1; 4 | 9 Transistor; 5 | L 6; P 130,290 540,290 540,690 130,690; 6 | L 17; P 305,150 365,150 365,830 305,830; 7 | DF; 8 | C 1; 9 | E 10 | -------------------------------------------------------------------------------- /documentation/UsersGuide/images/key_PLUS.fig: -------------------------------------------------------------------------------- 1 | #FIG 3.2 Produced by xfig version 3.2.5b 2 | Landscape 3 | Center 4 | Inches 5 | Letter 6 | 100.00 7 | Single 8 | -2 9 | 1200 2 10 | 2 1 0 2 0 7 50 -1 -1 0.000 0 0 -1 0 0 2 11 | 3375 1950 3525 1950 12 | 2 1 0 2 0 7 50 -1 -1 0.000 0 0 -1 0 0 2 13 | 3450 1875 3450 2025 14 | -------------------------------------------------------------------------------- /crlcore/src/ccore/openaccess/MyAssert.h: -------------------------------------------------------------------------------- 1 | // -*-compile-command:"cd ../../../../.. && make"-*- 2 | 3 | #ifndef __MYASSERT_H__ 4 | #define __MYASSERT_H__ 5 | 6 | #include "hurricane/Error.h" 7 | 8 | #undef assert 9 | #define assert(cond) if (! (cond) ) throw Error("assertion failed : " + string( #cond ) ) 10 | 11 | #endif 12 | -------------------------------------------------------------------------------- /vlsisapd/examples/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | ADD_SUBDIRECTORY(cif) 2 | ADD_SUBDIRECTORY(agds) 3 | if( IS_DIRECTORY dtr ) 4 | ADD_SUBDIRECTORY(dtr) 5 | endif( IS_DIRECTORY dtr ) 6 | if( IS_DIRECTORY openChams ) 7 | ADD_SUBDIRECTORY(openChams) 8 | endif( IS_DIRECTORY openChams ) 9 | ADD_SUBDIRECTORY(liberty) 10 | ADD_SUBDIRECTORY(spice) 11 | -------------------------------------------------------------------------------- /crlcore/etc/cmos/misc.conf: -------------------------------------------------------------------------------- 1 | # -*- Mode:Python; explicit-buffer-name: "misc.conf" -*- 2 | 3 | import helpers 4 | 5 | # Provides standard settings for: 6 | # # - 7 | # # - 8 | # 9 | exec(compile(open( helpers.sysConfDir+'/common/misc.conf' ).read(), helpers.sysConfDir+'/common/misc.conf', 'exec')) 10 | -------------------------------------------------------------------------------- /crlcore/etc/ispd05/misc.conf: -------------------------------------------------------------------------------- 1 | # -*- Mode:Python; explicit-buffer-name: "misc.conf" -*- 2 | 3 | import helpers 4 | 5 | # Provides standard settings for: 6 | # # - 7 | # # - 8 | # 9 | exec(compile(open( helpers.sysConfDir+'/common/misc.conf' ).read(), helpers.sysConfDir+'/common/misc.conf', 'exec')) 10 | -------------------------------------------------------------------------------- /documentation/UsersGuide/images/key_ESC.fig: -------------------------------------------------------------------------------- 1 | #FIG 3.2 Produced by xfig version 3.2.5b 2 | Landscape 3 | Center 4 | Inches 5 | Letter 6 | 100.00 7 | Single 8 | -2 9 | 1200 2 10 | 2 2 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 5 11 | 2775 1800 3225 1800 3225 2100 2775 2100 2775 1800 12 | 4 1 0 50 -1 18 11 0.0000 4 135 375 3000 2025 ESC\001 13 | -------------------------------------------------------------------------------- /documentation/UsersGuide/images/key_F.fig: -------------------------------------------------------------------------------- 1 | #FIG 3.2 Produced by xfig version 3.2.5b 2 | Landscape 3 | Center 4 | Inches 5 | Letter 6 | 100.00 7 | Single 8 | -2 9 | 1200 2 10 | 2 2 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 5 11 | 2850 1800 3150 1800 3150 2100 2850 2100 2850 1800 12 | 4 1 0 50 -1 14 18 0.0000 4 150 105 3000 2025 f\001 13 | -------------------------------------------------------------------------------- /documentation/UsersGuide/images/key_Gcap.fig: -------------------------------------------------------------------------------- 1 | #FIG 3.2 Produced by xfig version 3.2.5b 2 | Landscape 3 | Center 4 | Inches 5 | Letter 6 | 100.00 7 | Single 8 | -2 9 | 1200 2 10 | 2 2 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 5 11 | 2850 1800 3150 1800 3150 2100 2850 2100 2850 1800 12 | 4 1 0 50 -1 14 18 0.0000 4 150 105 3000 2025 G\001 13 | -------------------------------------------------------------------------------- /documentation/UsersGuide/images/key_Icap.fig: -------------------------------------------------------------------------------- 1 | #FIG 3.2 Produced by xfig version 3.2.5b 2 | Landscape 3 | Center 4 | Inches 5 | Letter 6 | 100.00 7 | Single 8 | -2 9 | 1200 2 10 | 2 2 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 5 11 | 2850 1800 3150 1800 3150 2100 2850 2100 2850 1800 12 | 4 1 0 50 -1 14 18 0.0000 4 150 105 3000 2025 I\001 13 | -------------------------------------------------------------------------------- /documentation/UsersGuide/images/key_K.fig: -------------------------------------------------------------------------------- 1 | #FIG 3.2 Produced by xfig version 3.2.5b 2 | Landscape 3 | Center 4 | Inches 5 | Letter 6 | 100.00 7 | Single 8 | -2 9 | 1200 2 10 | 2 2 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 5 11 | 2850 1800 3150 1800 3150 2100 2850 2100 2850 1800 12 | 4 1 0 50 -1 14 18 0.0000 4 150 105 3000 2025 k\001 13 | -------------------------------------------------------------------------------- /documentation/UsersGuide/images/key_Kcap.fig: -------------------------------------------------------------------------------- 1 | #FIG 3.2 Produced by xfig version 3.2.5b 2 | Landscape 3 | Center 4 | Inches 5 | Letter 6 | 100.00 7 | Single 8 | -2 9 | 1200 2 10 | 2 2 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 5 11 | 2850 1800 3150 1800 3150 2100 2850 2100 2850 1800 12 | 4 1 0 50 -1 14 18 0.0000 4 150 105 3000 2025 K\001 13 | -------------------------------------------------------------------------------- /documentation/UsersGuide/images/key_Lcap.fig: -------------------------------------------------------------------------------- 1 | #FIG 3.2 Produced by xfig version 3.2.5b 2 | Landscape 3 | Center 4 | Inches 5 | Letter 6 | 100.00 7 | Single 8 | -2 9 | 1200 2 10 | 2 2 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 5 11 | 2850 1800 3150 1800 3150 2100 2850 2100 2850 1800 12 | 4 1 0 50 -1 14 18 0.0000 4 150 105 3000 2025 L\001 13 | -------------------------------------------------------------------------------- /documentation/UsersGuide/images/key_M.fig: -------------------------------------------------------------------------------- 1 | #FIG 3.2 Produced by xfig version 3.2.5b 2 | Landscape 3 | Center 4 | Inches 5 | Letter 6 | 100.00 7 | Single 8 | -2 9 | 1200 2 10 | 2 2 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 5 11 | 2850 1800 3150 1800 3150 2100 2850 2100 2850 1800 12 | 4 1 0 50 -1 14 18 0.0000 4 150 105 3000 2025 m\001 13 | -------------------------------------------------------------------------------- /documentation/UsersGuide/images/key_Ocap.fig: -------------------------------------------------------------------------------- 1 | #FIG 3.2 Produced by xfig version 3.2.5b 2 | Landscape 3 | Center 4 | Inches 5 | Letter 6 | 100.00 7 | Single 8 | -2 9 | 1200 2 10 | 2 2 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 5 11 | 2850 1800 3150 1800 3150 2100 2850 2100 2850 1800 12 | 4 1 0 50 -1 14 18 0.0000 4 150 105 3000 2025 O\001 13 | -------------------------------------------------------------------------------- /documentation/UsersGuide/images/key_Pcap.fig: -------------------------------------------------------------------------------- 1 | #FIG 3.2 Produced by xfig version 3.2.5b 2 | Landscape 3 | Center 4 | Inches 5 | Letter 6 | 100.00 7 | Single 8 | -2 9 | 1200 2 10 | 2 2 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 5 11 | 2850 1800 3150 1800 3150 2100 2850 2100 2850 1800 12 | 4 1 0 50 -1 14 18 0.0000 4 150 105 3000 2025 P\001 13 | -------------------------------------------------------------------------------- /documentation/UsersGuide/images/key_Qcap.fig: -------------------------------------------------------------------------------- 1 | #FIG 3.2 Produced by xfig version 3.2.5b 2 | Landscape 3 | Center 4 | Inches 5 | Letter 6 | 100.00 7 | Single 8 | -2 9 | 1200 2 10 | 2 2 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 5 11 | 2850 1800 3150 1800 3150 2100 2850 2100 2850 1800 12 | 4 1 0 50 -1 14 18 0.0000 4 150 105 3000 2025 Q\001 13 | -------------------------------------------------------------------------------- /documentation/UsersGuide/images/key_S.fig: -------------------------------------------------------------------------------- 1 | #FIG 3.2 Produced by xfig version 3.2.5b 2 | Landscape 3 | Center 4 | Inches 5 | Letter 6 | 100.00 7 | Single 8 | -2 9 | 1200 2 10 | 2 2 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 5 11 | 2850 1800 3150 1800 3150 2100 2850 2100 2850 1800 12 | 4 1 0 50 -1 14 18 0.0000 4 150 105 3000 2025 s\001 13 | -------------------------------------------------------------------------------- /documentation/UsersGuide/images/key_Scap.fig: -------------------------------------------------------------------------------- 1 | #FIG 3.2 Produced by xfig version 3.2.5b 2 | Landscape 3 | Center 4 | Inches 5 | Letter 6 | 100.00 7 | Single 8 | -2 9 | 1200 2 10 | 2 2 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 5 11 | 2850 1800 3150 1800 3150 2100 2850 2100 2850 1800 12 | 4 1 0 50 -1 14 18 0.0000 4 150 105 3000 2025 S\001 13 | -------------------------------------------------------------------------------- /documentation/UsersGuide/images/key_UP.fig: -------------------------------------------------------------------------------- 1 | #FIG 3.2 Produced by xfig version 3.2.5b 2 | Landscape 3 | Center 4 | Inches 5 | Letter 6 | 100.00 7 | Single 8 | -2 9 | 1200 2 10 | 2 2 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 5 11 | 2775 1800 3225 1800 3225 2100 2775 2100 2775 1800 12 | 4 1 0 50 -1 18 11 0.0000 4 135 255 3000 2025 UP\001 13 | -------------------------------------------------------------------------------- /documentation/UsersGuide/images/key_Wcap.fig: -------------------------------------------------------------------------------- 1 | #FIG 3.2 Produced by xfig version 3.2.5b 2 | Landscape 3 | Center 4 | Inches 5 | Letter 6 | 100.00 7 | Single 8 | -2 9 | 1200 2 10 | 2 2 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 5 11 | 2850 1800 3150 1800 3150 2100 2850 2100 2850 1800 12 | 4 1 0 50 -1 14 18 0.0000 4 150 105 3000 2025 W\001 13 | -------------------------------------------------------------------------------- /documentation/UsersGuide/images/key_Z.fig: -------------------------------------------------------------------------------- 1 | #FIG 3.2 Produced by xfig version 3.2.5b 2 | Landscape 3 | Center 4 | Inches 5 | Letter 6 | 100.00 7 | Single 8 | -2 9 | 1200 2 10 | 2 2 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 5 11 | 2850 1800 3150 1800 3150 2100 2850 2100 2850 1800 12 | 4 1 0 50 -1 14 18 0.0000 4 150 105 3000 2025 z\001 13 | -------------------------------------------------------------------------------- /crlcore/etc/vsc200/misc.conf: -------------------------------------------------------------------------------- 1 | # -*- Mode:Python; explicit-buffer-name: "misc.conf" -*- 2 | 3 | import helpers 4 | 5 | # Provides standard settings for: 6 | # # - 7 | # # - 8 | # 9 | exec(compile(open( helpers.sysConfDir+'/common/misc.conf' ).read(), helpers.sysConfDir+'/common/misc.conf', 'exec')) 10 | -------------------------------------------------------------------------------- /documentation/UsersGuide/images/key_CTRL.fig: -------------------------------------------------------------------------------- 1 | #FIG 3.2 Produced by xfig version 3.2.5b 2 | Landscape 3 | Center 4 | Inches 5 | Letter 6 | 100.00 7 | Single 8 | -2 9 | 1200 2 10 | 2 2 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 5 11 | 2700 1800 3300 1800 3300 2100 2700 2100 2700 1800 12 | 4 1 0 50 -1 18 11 0.0000 4 135 480 3000 2025 CTRL\001 13 | -------------------------------------------------------------------------------- /documentation/UsersGuide/images/key_DOWN.fig: -------------------------------------------------------------------------------- 1 | #FIG 3.2 Produced by xfig version 3.2.5b 2 | Landscape 3 | Center 4 | Inches 5 | Letter 6 | 100.00 7 | Single 8 | -2 9 | 1200 2 10 | 2 2 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 5 11 | 2625 1800 3375 1800 3375 2100 2625 2100 2625 1800 12 | 4 1 0 50 -1 18 11 0.0000 4 135 570 3000 2025 DOWN\001 13 | -------------------------------------------------------------------------------- /documentation/UsersGuide/images/key_LEFT.fig: -------------------------------------------------------------------------------- 1 | #FIG 3.2 Produced by xfig version 3.2.5b 2 | Landscape 3 | Center 4 | Inches 5 | Letter 6 | 100.00 7 | Single 8 | -2 9 | 1200 2 10 | 2 2 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 5 11 | 2700 1800 3300 1800 3300 2100 2700 2100 2700 1800 12 | 4 1 0 50 -1 18 11 0.0000 4 135 450 3000 2025 LEFT\001 13 | -------------------------------------------------------------------------------- /documentation/UsersGuide/images/key_RIGHT.fig: -------------------------------------------------------------------------------- 1 | #FIG 3.2 Produced by xfig version 3.2.5b 2 | Landscape 3 | Center 4 | Inches 5 | Letter 6 | 100.00 7 | Single 8 | -2 9 | 1200 2 10 | 2 2 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 5 11 | 2625 1800 3375 1800 3375 2100 2625 2100 2625 1800 12 | 4 1 0 50 -1 18 11 0.0000 4 135 600 3000 2025 RIGHT\001 13 | -------------------------------------------------------------------------------- /crlcore/etc/scmos_deep_018/misc.conf: -------------------------------------------------------------------------------- 1 | # -*- Mode:Python; explicit-buffer-name: "misc.conf" -*- 2 | 3 | import helpers 4 | 5 | # Provides standard settings for: 6 | # # - 7 | # # - 8 | # 9 | exec(compile(open( helpers.sysConfDir+'/common/misc.conf' ).read(), helpers.sysConfDir+'/common/misc.conf', 'exec')) 10 | -------------------------------------------------------------------------------- /bootstrap/unicorn.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Encoding=UTF-8 3 | Name=Coriolis Main GUI 4 | Exec=unicorn 5 | Icon=/usr/share/pixmaps/shadock.png 6 | Type=Application 7 | Terminal=false 8 | GenericName=unicorn 9 | #Categories=Electronics;Engineering; 10 | Categories=Application;Graphics;X-Red-Hat-Base; 11 | Comment=Physical Place Route 12 | Vendor=LIP6SoC 13 | -------------------------------------------------------------------------------- /crlcore/etc/cmos/display.conf: -------------------------------------------------------------------------------- 1 | # -*- Mode:Python; explicit-buffer-name: "display.conf" -*- 2 | 3 | import helpers 4 | 5 | # Provides standard settings for: 6 | # - 7 | # - 8 | 9 | scale = 1.0 10 | exec(compile(open( helpers.sysConfDir+'/common/display.conf' ).read(), helpers.sysConfDir+'/common/display.conf', 'exec')) 11 | -------------------------------------------------------------------------------- /crlcore/etc/ispd05/display.conf: -------------------------------------------------------------------------------- 1 | # -*- Mode:Python; explicit-buffer-name: "display.conf" -*- 2 | 3 | import helpers 4 | 5 | # Provides standard settings for: 6 | # - 7 | # - 8 | 9 | scale = 1.0 10 | exec(compile(open( helpers.sysConfDir+'/common/display.conf' ).read(), helpers.sysConfDir+'/common/display.conf', 'exec')) 11 | -------------------------------------------------------------------------------- /knik/src/flute-3.1/src/knik/global.h: -------------------------------------------------------------------------------- 1 | #ifndef _GLOBAL_H_ 2 | #define _GLOBAL_H_ 3 | 4 | #include 5 | 6 | #define TRUE 1 7 | #define FALSE 0 8 | #define MAXLONG 0x7fffffffL 9 | 10 | struct point 11 | { 12 | long x, y; 13 | }; 14 | 15 | typedef struct point Point; 16 | 17 | typedef long nn_array[8]; 18 | 19 | #endif /* _GLOBAL_H_ */ 20 | -------------------------------------------------------------------------------- /crlcore/etc/vsc200/display.conf: -------------------------------------------------------------------------------- 1 | # -*- Mode:Python; explicit-buffer-name: "display.conf" -*- 2 | 3 | import helpers 4 | 5 | # Provides standard settings for: 6 | # - 7 | # - 8 | 9 | scale = 0.5 10 | 11 | exec(compile(open( helpers.sysConfDir+'/common/display.conf' ).read(), helpers.sysConfDir+'/common/display.conf', 'exec')) 12 | -------------------------------------------------------------------------------- /crlcore/etc/scmos_deep_018/display.conf: -------------------------------------------------------------------------------- 1 | # -*- Mode:Python; explicit-buffer-name: "display.conf" -*- 2 | 3 | import helpers 4 | 5 | # Provides standard settings for: 6 | # - 7 | # - 8 | 9 | scale = 0.5 10 | 11 | exec(compile(open( helpers.sysConfDir+'/common/display.conf' ).read(), helpers.sysConfDir+'/common/display.conf', 'exec')) 12 | -------------------------------------------------------------------------------- /knik/src/flute-3.1/src/knik/neighbors.h: -------------------------------------------------------------------------------- 1 | #include "global.h" 2 | 3 | void allocate_nn_arrays( long n ); 4 | void deallocate_nn_arrays(); 5 | 6 | void brute_force_nearest_neighbors 7 | ( 8 | long n, 9 | Point* pt, 10 | nn_array* nn 11 | ); 12 | 13 | void dq_nearest_neighbors 14 | ( 15 | long n, 16 | Point* pt, 17 | nn_array* nn 18 | ); 19 | 20 | -------------------------------------------------------------------------------- /hurricane/src/hurricane/TO_BE_DONE: -------------------------------------------------------------------------------- 1 | Materialisation 2 | Un fois une cellule dematerialisee, les objets de la cellule ne sont plus materialisables. 3 | idem pour les nets. 4 | 5 | Quelque soit le nombe d'UpdateSession assurer que tous les objets d'une cellule ou d'un net se 6 | rematerialisent avand la fermeture de la session (pour etre sur de prendre tout le monde lors 7 | des parcours under. 8 | -------------------------------------------------------------------------------- /crlcore/src/ccore/cif/Cif.h: -------------------------------------------------------------------------------- 1 | // author : Damien Dupuis 2 | // date : 24.02.2010 3 | // -*- C++ -*- 4 | 5 | #ifndef __CIF_H__ 6 | #define __CIF_H__ 7 | 8 | #include 9 | 10 | namespace Hurricane { 11 | class Cell; 12 | } 13 | 14 | namespace CRL { 15 | void cifDriver(const std::string file, Hurricane::Cell*, std::string& name, std::string& units, double& scale ); 16 | } 17 | # endif 18 | -------------------------------------------------------------------------------- /stratus1/doc/stratus/fichiers/test.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | 3 | from stratus import * 4 | from addaccu import addaccu 5 | 6 | nbit = Param ( "n" ) 7 | 8 | dict = { 'nbit' : nbit } 9 | 10 | inst_addaccu = addaccu ( "inst_addaccu", dict ) 11 | 12 | inst_addaccu.Interface() 13 | inst_addaccu.Netlist() 14 | inst_addaccu.Layout() 15 | inst_addaccu.View() 16 | 17 | inst_addaccu.Save ( PHYSICAL ) 18 | 19 | 20 | -------------------------------------------------------------------------------- /coloquinte/src/coloquinte/legalizer.hxx: -------------------------------------------------------------------------------- 1 | 2 | #include "circuit.hxx" 3 | #include "detailed.hxx" 4 | 5 | namespace coloquinte{ 6 | namespace dp{ 7 | 8 | detailed_placement legalize(netlist const & circuit, placement_t const & pl, box surface, int_t row_height); 9 | void get_result(netlist const & circuit, detailed_placement const & dpl, placement_t & pl); 10 | 11 | } // namespace dp 12 | } // namespace coloquinte 13 | -------------------------------------------------------------------------------- /crlcore/src/ccore/agds/Agds.h: -------------------------------------------------------------------------------- 1 | // author : Damien Dupuis 2 | // date : 08.12.2009 3 | // -*- C++ -*- 4 | 5 | #ifndef __AGDS_H__ 6 | #define __AGDS_H__ 7 | 8 | #include 9 | 10 | namespace Hurricane { 11 | class Cell; 12 | } 13 | 14 | namespace CRL { 15 | void agdsDriver(const std::string filePath, Hurricane::Cell* cell, std::string& name, std::string& lib, double& uUnits, double& pUnits); 16 | } 17 | # endif 18 | -------------------------------------------------------------------------------- /stratus1/doc/images/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | doc_en_latex_imagesdir = $(datadir)/doc/en/latex/stratus/images 3 | 4 | doc_en_latex_images_DATA = add1.png \ 5 | add2.png \ 6 | addaccu.png \ 7 | editor.png \ 8 | test.png \ 9 | xml.png 10 | 11 | EXTRA_DIST = $(doc_en_latex_images_DATA) 12 | -------------------------------------------------------------------------------- /crlcore/etc/cmos/stratus1.conf: -------------------------------------------------------------------------------- 1 | # -*- Mode:Python; explicit-buffer-name: "stratus1.conf" -*- 2 | 3 | import helpers 4 | 5 | 6 | # Status1 parameters. 7 | parametersTable = \ 8 | ( ("stratus1.format" , TypeString, "vst") 9 | , ("stratus1.simulator" , TypeString, "asimut") 10 | ,) 11 | 12 | 13 | exec(compile(open( helpers.sysConfDir+'/common/stratus1.conf' ).read(), helpers.sysConfDir+'/common/stratus1.conf', 'exec')) 14 | -------------------------------------------------------------------------------- /crlcore/etc/common/nimbus.conf: -------------------------------------------------------------------------------- 1 | # -*- Mode:Python; explicit-buffer-name: "nimbus.conf" -*- 2 | 3 | # Nimbus parameters. 4 | parametersTable = \ 5 | ( ('nimbus.aspectRatio' , TypePercentage, 100 , { 'min':10, 'max':1000 } ) 6 | , ("nimbus.pinsPlacement", TypeBool , False ) 7 | , ("nimbus.spaceMargin" , TypePercentage, 5 ) 8 | ) 9 | 10 | 11 | # layoutTable is defined inside Mauka. 12 | layoutTable = () 13 | -------------------------------------------------------------------------------- /crlcore/etc/ispd05/stratus1.conf: -------------------------------------------------------------------------------- 1 | # -*- Mode:Python; explicit-buffer-name: "stratus1.conf" -*- 2 | 3 | import helpers 4 | 5 | 6 | # Status1 parameters. 7 | parametersTable = \ 8 | ( ("stratus1.format" , TypeString, "vst") 9 | , ("stratus1.simulator" , TypeString, "asimut") 10 | ,) 11 | 12 | 13 | exec(compile(open( helpers.sysConfDir+'/common/stratus1.conf' ).read(), helpers.sysConfDir+'/common/stratus1.conf', 'exec')) 14 | -------------------------------------------------------------------------------- /crlcore/etc/vsc200/stratus1.conf: -------------------------------------------------------------------------------- 1 | # -*- Mode:Python; explicit-buffer-name: "stratus1.conf" -*- 2 | 3 | import helpers 4 | 5 | 6 | # Status1 parameters. 7 | parametersTable = \ 8 | ( ("stratus1.format" , TypeString, "vst") 9 | , ("stratus1.simulator" , TypeString, "asimut") 10 | ,) 11 | 12 | 13 | exec(compile(open( helpers.sysConfDir+'/common/stratus1.conf' ).read(), helpers.sysConfDir+'/common/stratus1.conf', 'exec')) 14 | -------------------------------------------------------------------------------- /crlcore/etc/scmos_deep_018/stratus1.conf: -------------------------------------------------------------------------------- 1 | # -*- Mode:Python; explicit-buffer-name: "stratus1.conf" -*- 2 | 3 | import helpers 4 | 5 | 6 | # Status1 parameters. 7 | parametersTable = \ 8 | ( ("stratus1.format" , TypeString, "vst") 9 | , ("stratus1.simulator" , TypeString, "asimut") 10 | ,) 11 | 12 | 13 | exec(compile(open( helpers.sysConfDir+'/common/stratus1.conf' ).read(), helpers.sysConfDir+'/common/stratus1.conf', 'exec')) 14 | -------------------------------------------------------------------------------- /vlsisapd/src/agds/src/vlsisapd/agds/Element.h: -------------------------------------------------------------------------------- 1 | #ifndef __GDS_ELEMENT_H 2 | #define __GDS_ELEMENT_H 3 | 4 | namespace AGDS { 5 | class Element { 6 | protected: 7 | inline Element (int layer); 8 | 9 | public: 10 | virtual ~Element (); 11 | virtual bool write (std::ofstream &file) = 0; 12 | 13 | protected: 14 | int _layer; 15 | }; 16 | 17 | inline Element::Element(int layer) : _layer(layer) {} 18 | } 19 | #endif 20 | 21 | -------------------------------------------------------------------------------- /vlsisapd/src/liberty/src/WireLoadArea.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | #include "vlsisapd/liberty/WireLoadArea.h" 4 | 5 | namespace LIB { 6 | WireLoadArea::WireLoadArea(double min, double max, Name name): _min(min), _max(max), _name(name) {}; 7 | 8 | bool WireLoadArea::write(std::ofstream &file) { 9 | file << "wire_load_from_area(" << _min << "," << _max << ",\"" << _name.getString() << "\");" << std::endl; 10 | return true; 11 | } 12 | 13 | } // namespace 14 | -------------------------------------------------------------------------------- /vlsisapd/src/cif/src/vlsisapd/cif/Polygon.h: -------------------------------------------------------------------------------- 1 | #ifndef __CIF_POLYGON_H 2 | #define __CIF_POLYGON_H 3 | 4 | #include 5 | #include 6 | 7 | namespace CIF { 8 | class Polygon { 9 | public: 10 | Polygon(long); 11 | 12 | void addPoint (long, long); 13 | void write ( std::ofstream& ); 14 | 15 | private: 16 | long _layer; 17 | std::vector > _points; 18 | }; 19 | } // namespace 20 | #endif 21 | -------------------------------------------------------------------------------- /vlsisapd/examples/agds/python/driveAgds.py: -------------------------------------------------------------------------------- 1 | import AGDS 2 | lib = AGDS.Library("myTestLib") 3 | lib.setUserUnits(0.001) 4 | lib.setPhysUnits(1.0e-9) 5 | 6 | active = AGDS.Rectangle( 6, 120, 290, 540, 690) # layer 6 corresponds to active 7 | poly = AGDS.Rectangle(17, 305, 150, 365, 830) # layer 17 corresponds to polysilicium 8 | 9 | str = AGDS.Structure("Transistor") 10 | str.addElement(active) 11 | str.addElement(poly) 12 | 13 | lib.addStructure(str) 14 | lib.writeToFile("./transistor.agds") 15 | -------------------------------------------------------------------------------- /hurricane/doc/hurricane/StandardSharedProperty.dox: -------------------------------------------------------------------------------- 1 | 2 | // -*- C++ -*- 3 | 4 | 5 | namespace Hurricane { 6 | 7 | /*! \class StandardSharedProperty 8 | * \brief StandardSharedProperty description (\b API) 9 | * 10 | * \section secStandardSharedPropertyIntro Introduction 11 | * 12 | * Those properties allow to assign to a set of objects a 13 | * relation between a name and a value. 14 | */ 15 | 16 | } // End of Hurricane namespace. 17 | -------------------------------------------------------------------------------- /vlsisapd/examples/cif/cplusplus/cmake.ex: -------------------------------------------------------------------------------- 1 | PROJECT(DRIVECIF) 2 | 3 | CMAKE_MINIMUM_REQUIRED(VERSION 2.4.0) 4 | 5 | SET(CMAKE_MODULE_PATH "$ENV{VLSISAPD_USER_TOP}/share/cmake/Modules" 6 | "$ENV{VLSISAPD_TOP}/share/cmake/Modules" 7 | ) 8 | 9 | FIND_PACKAGE(VLSISAPD REQUIRED) 10 | 11 | IF(CIF_FOUND) 12 | INCLUDE_DIRECTORIES ( ${CIF_INCLUDE_DIR} ) 13 | ADD_EXECUTABLE ( driveCif driveCif.cpp ) 14 | TARGET_LINK_LIBRARIES ( driveCif ${CIF_LIBRARY} ) 15 | ENDIF(CIF_FOUND) 16 | -------------------------------------------------------------------------------- /hurricane/doc/hurricane/StandardPrivateProperty.dox: -------------------------------------------------------------------------------- 1 | 2 | // -*- C++ -*- 3 | 4 | 5 | namespace Hurricane { 6 | 7 | /*! \class StandardPrivateProperty 8 | * \brief StandardPrivateProperty description (\b API) 9 | * 10 | * \section secStandardPrivatePropertyIntro Introduction 11 | * 12 | * Those properties allow to assign to an object a relation 13 | * between a name and a value. 14 | */ 15 | 16 | 17 | } // End of Hurricane namespace. 18 | -------------------------------------------------------------------------------- /katabatic/doc/GCells.dox: -------------------------------------------------------------------------------- 1 | 2 | // -*- C++ -*- 3 | 4 | namespace Katabatic { 5 | 6 | //! \typedef typedef GenericCollection GCells; 7 | //! GCell Collection with auto-pointer like support. 8 | 9 | //! \typedef typedef GenericLocator GCellLocator; 10 | //! GCell Locator with auto-pointer like support. 11 | 12 | //! \typedef typedef GenericFilter GCellFilter; 13 | //! GCell Filter with auto-pointer like support. 14 | 15 | } 16 | -------------------------------------------------------------------------------- /vlsisapd/examples/agds/cplusplus/cmake.ex: -------------------------------------------------------------------------------- 1 | PROJECT(DRIVEAGDS) 2 | 3 | CMAKE_MINIMUM_REQUIRED(VERSION 2.4.0) 4 | 5 | SET(CMAKE_MODULE_PATH "$ENV{VLSISAPD_USER_TOP}/share/cmake/Modules" 6 | "$ENV{VLSISAPD_TOP}/share/cmake/Modules" 7 | ) 8 | 9 | FIND_PACKAGE(VLSISAPD REQUIRED) 10 | 11 | IF(AGDS_FOUND) 12 | INCLUDE_DIRECTORIES ( ${AGDS_INCLUDE_DIR} ) 13 | ADD_EXECUTABLE ( driveAgds driveAgds.cpp ) 14 | TARGET_LINK_LIBRARIES ( driveAgds ${AGDS_LIBRARY} ) 15 | ENDIF(AGDS_FOUND) 16 | -------------------------------------------------------------------------------- /vlsisapd/examples/cif/python/driveCif.py: -------------------------------------------------------------------------------- 1 | import CIF 2 | circuit = CIF.Circuit("Transistor", "micro", 0.001) 3 | poly1 = CIF.Polygon(6) 4 | poly1.addPoint(130, 290) 5 | poly1.addPoint(540, 290) 6 | poly1.addPoint(540, 690) 7 | poly1.addPoint(130, 690) 8 | circuit.addPolygon(poly1) 9 | 10 | poly2 = CIF.Polygon(17) 11 | poly2.addPoint(305, 150); 12 | poly2.addPoint(365, 150); 13 | poly2.addPoint(365, 830); 14 | poly2.addPoint(305, 830); 15 | circuit.addPolygon(poly2) 16 | 17 | circuit.writeToFile("./transistor.cif") 18 | -------------------------------------------------------------------------------- /crlcore/etc/common/stratus1.conf: -------------------------------------------------------------------------------- 1 | # -*- Mode:Python; explicit-buffer-name: "stratus1.conf" -*- 2 | 3 | # Stratus1 tab layout. 4 | layoutTable = \ 5 | ( (TypeTab ,"Stratus1", "stratus1" ) 6 | , (TypeTitle , "Stratus1 - Netlist & Layout Capture" ) 7 | , (TypeOption, "stratus1.mappingName", "Virtual Library Translation", 0, 2 ) 8 | , (TypeOption, "stratus1.format" , "Netlist Format (vst, vhd)" , 0, 2 ) 9 | , (TypeOption, "stratus1.simulator" , "Simulator" , 0, 2 ) 10 | ) 11 | -------------------------------------------------------------------------------- /stratus1/doc/stratus/images/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | doc_en_latex_imagesdir = $(datadir)/doc/en/latex/stratus/images 3 | 4 | doc_en_latex_images_DATA = addaccu1.png \ 5 | addaccu2.png \ 6 | add1.png \ 7 | add2.png \ 8 | editor.png \ 9 | test.png \ 10 | resizeAb.png \ 11 | xml.png 12 | 13 | EXTRA_DIST = $(doc_en_latex_images_DATA) 14 | -------------------------------------------------------------------------------- /bootstrap/debian/rules: -------------------------------------------------------------------------------- 1 | #!/usr/bin/make -f 2 | # -*- makefile -*- 3 | # Sample debian/rules that uses debhelper. 4 | # This file was originally written by Joey Hess and Craig Small. 5 | # As a special exception, when this file is copied by dh-make into a 6 | # dh-make output file, you may use that output file without restriction. 7 | # This special exception was added by Craig Small in version 0.37 of dh-make. 8 | 9 | # Uncomment this to turn on verbose mode. 10 | export DH_VERBOSE=1 11 | 12 | %: 13 | dh $@ --with python-central 14 | -------------------------------------------------------------------------------- /vlsisapd/src/openChams/src/vlsisapd/openChams/DDP.h: -------------------------------------------------------------------------------- 1 | /* 2 | * DDP.h 3 | * openChams 4 | * 5 | * Created by Farakh JAVID on 25/10/2011. 6 | * Copyright 2008-2010 UPMC / LIP6. All rights reserved. 7 | * 8 | */ 9 | 10 | #ifndef __OPENCHAMS_DDP_H__ 11 | #define __OPENCHAMS_DDP_H__ 12 | 13 | #include "vlsisapd/openChams/Equation.h" 14 | 15 | namespace OpenChams { 16 | class DDP : public Equation { 17 | public: 18 | DDP(); 19 | 20 | virtual void printEquations(); 21 | }; 22 | 23 | } // namespace 24 | #endif 25 | -------------------------------------------------------------------------------- /crlcore/src/ccore/crlcore/OADriver.h: -------------------------------------------------------------------------------- 1 | // -*- C++ -*- 2 | 3 | #ifndef __OA_DRIVER_H__ 4 | #define __OA_DRIVER_H__ 5 | 6 | #include 7 | 8 | namespace Hurricane { 9 | class Cell; 10 | } 11 | 12 | namespace CRL { 13 | class OADriver { 14 | private: 15 | Hurricane::Cell* _cell; 16 | public: 17 | OADriver(Hurricane::Cell*); 18 | void save(const std::string& technoFilePath,const std::string& designFilePath); 19 | }; 20 | } // End of CRL namespace. 21 | 22 | #endif//__OA_DRIVER_H__ 23 | 24 | -------------------------------------------------------------------------------- /crlcore/src/ccore/CifDriver.cpp: -------------------------------------------------------------------------------- 1 | // author : Damien Dupuis 2 | // date : 24.02.2010 3 | // -*- C++ -*- 4 | 5 | #include "hurricane/Cell.h" 6 | using namespace Hurricane; 7 | 8 | #include "crlcore/CifDriver.h" 9 | #include "cif/Cif.h" 10 | 11 | namespace CRL { 12 | CifDriver::CifDriver(Cell* cell) : _cell(cell), _name(""), _units(""), _scale(0) {} 13 | 14 | bool CifDriver::save(const string& filePath) { 15 | CRL::cifDriver(filePath, _cell, _name, _units, _scale); 16 | return true; 17 | } 18 | }// namespace CRL 19 | -------------------------------------------------------------------------------- /bootstrap/cmake_modules/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | set ( finders FindFLEX.cmake 3 | FindBISON.cmake 4 | FindPythonSitePackages.cmake 5 | FindLEFDEF.cmake 6 | FindBootstrap.cmake 7 | FindLibexecinfo.cmake 8 | FindQwt.cmake 9 | GetGitRevisionDescription.cmake 10 | GetGitRevisionDescription.cmake.in 11 | ) 12 | 13 | install ( FILES ${finders} DESTINATION share/cmake/Modules ) 14 | -------------------------------------------------------------------------------- /vlsisapd/src/openChams/src/SimulModel.cpp: -------------------------------------------------------------------------------- 1 | /* 2 | * SimulModel.cpp 3 | * openChams 4 | * 5 | * Created by damien dupuis on 06/07/10. 6 | * Copyright 2010 UPMC / LIP6. All rights reserved. 7 | * 8 | */ 9 | 10 | 11 | #include "vlsisapd/openChams/SimulModel.h" 12 | 13 | namespace OpenChams { 14 | SimulModel::SimulModel(unsigned id, SimulModel::Base base, SimulModel::Version version, std::string filePath) 15 | : _id(id) 16 | , _base(base) 17 | , _version(version) 18 | , _filePath(filePath) {} 19 | 20 | } // namespace 21 | -------------------------------------------------------------------------------- /vlsisapd/src/spice/src/Subckt.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | using namespace std; 3 | 4 | #include "vlsisapd/spice/Subckt.h" 5 | 6 | namespace SPICE { 7 | void Subckt::addParameter(string name, string value) { 8 | map::iterator pit = _parameters.find(name); 9 | if (pit != _parameters.end()) { 10 | cerr << "[WARNING] SPICE:: Cannot add parameter " << name 11 | << " to subckt " << _name << " since it already exists." << endl; 12 | return; 13 | } 14 | _parameters[name] = value; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /katabatic/doc/Katabatic.dox: -------------------------------------------------------------------------------- 1 | // -*- C++ -*- 2 | 3 | //! \mainpage Katabatic Documentation 4 | //! 5 | //! Additionnal documents: 6 | //! - \ref grpSynthHierarchy 7 | //! 8 | //! \defgroup grpSynthHierarchy Synthetic Class Hierarchy 9 | //! \brief Simplificated class hierarchy 10 | //! 11 | //! \htmlinclude customHierarchy.html 12 | 13 | namespace Katabatic { 14 | 15 | /*! \namespace Katabatic 16 | * \brief The namespace dedicated to Katabatic. 17 | */ 18 | 19 | } 20 | -------------------------------------------------------------------------------- /vlsisapd/src/spice/src/vlsisapd/spice/SpiceException.h: -------------------------------------------------------------------------------- 1 | #ifndef __SPICE_EXCEPTION_H 2 | #define __SPICE_EXCEPTION_H 3 | 4 | #include 5 | #include 6 | 7 | namespace SPICE { 8 | class SpiceException { 9 | public: 10 | SpiceException(const std::string& what) throw() : _what(what) {} 11 | virtual const char* what() const throw() { return _what.c_str(); } 12 | virtual ~SpiceException() throw() {} 13 | 14 | private: 15 | std::string _what; 16 | }; 17 | } // namespace 18 | #endif 19 | 20 | 21 | -------------------------------------------------------------------------------- /crlcore/src/ccore/GdsDriver.cpp: -------------------------------------------------------------------------------- 1 | // author : Damien Dupuis 2 | // date : 08.12.2009 3 | // -*- C++ -*- 4 | 5 | #include "hurricane/Cell.h" 6 | using namespace Hurricane; 7 | 8 | #include "crlcore/GdsDriver.h" 9 | #include "agds/Agds.h" 10 | 11 | namespace CRL { 12 | GdsDriver::GdsDriver(Cell* cell) : _cell(cell), _name(""), _lib(""), _uUnits(0), _pUnits(0) {} 13 | 14 | bool GdsDriver::save(const string& filePath) { 15 | CRL::agdsDriver(filePath, _cell, _name, _lib, _uUnits, _pUnits); 16 | return true; 17 | } 18 | }// namespace CRL 19 | -------------------------------------------------------------------------------- /hurricane/doc/hurricane/Hurricane.dox: -------------------------------------------------------------------------------- 1 | // -*- C++ -*- 2 | 3 | //! \mainpage Hurricane Documentation 4 | //! 5 | //! Additionnal documents: 6 | //! - \ref grpSynthHierarchy 7 | //! 8 | //! 9 | //! \defgroup grpSynthHierarchy Synthetic Class Hierarchy 10 | //! \brief Simplificated class hierarchy. 11 | //! 12 | //! \htmlinclude customHierarchy.html 13 | 14 | namespace Hurricane { 15 | 16 | //! \namespace Hurricane 17 | //! \brief The namespace dedicated to Hurricane. 18 | 19 | } 20 | --------------------------------------------------------------------------------