Skip to content
This repository was archived by the owner on Aug 31, 2021. It is now read-only.

Latest commit

 

History

History
35 lines (22 loc) · 995 Bytes

File metadata and controls

35 lines (22 loc) · 995 Bytes

Very large scale integration

The aim of this project is to model and solve a combinatorial decision problem with Constraint Programming (CP), propositional SATisfiability (SAT), and its extension to Satisfiability Modulo Theories (SMT). The problem is Very Large Scale Integration (VLSI),which refers to the trend of integrating circuits into silicon chips. Given a fixed-width plate and a list of rectangular circuits, one must decide how to place them on the plate so that the length of the final device is minimized. In order for the device to work properly, each circuit must be placed in a fixed orientation with respect to the others, therefore it cannot be rotated.

network

Setup

To run

$ make setup

To develop

$ make dev

Run

$ python very-large-scale-integration.py

Remove

$ make rm

Documentation

To browse documentation, open docs/index.html with a web browser.