Skip to content

Commit

Permalink
First Version
Browse files Browse the repository at this point in the history
MIP Prototype
  • Loading branch information
gabriel301 committed Oct 16, 2019
1 parent 9ce3b5b commit 455abeb
Show file tree
Hide file tree
Showing 49 changed files with 54,690 additions and 0 deletions.
114 changes: 114 additions & 0 deletions Week 6 - Facility Location/facility/.vscode/.ropeproject/config.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,114 @@
# The default ``config.py``
# flake8: noqa


def set_prefs(prefs):
"""This function is called before opening the project"""

# Specify which files and folders to ignore in the project.
# Changes to ignored resources are not added to the history and
# VCSs. Also they are not returned in `Project.get_files()`.
# Note that ``?`` and ``*`` match all characters but slashes.
# '*.pyc': matches 'test.pyc' and 'pkg/test.pyc'
# 'mod*.pyc': matches 'test/mod1.pyc' but not 'mod/1.pyc'
# '.svn': matches 'pkg/.svn' and all of its children
# 'build/*.o': matches 'build/lib.o' but not 'build/sub/lib.o'
# 'build//*.o': matches 'build/lib.o' and 'build/sub/lib.o'
prefs['ignored_resources'] = ['*.pyc', '*~', '.ropeproject',
'.hg', '.svn', '_svn', '.git', '.tox']

# Specifies which files should be considered python files. It is
# useful when you have scripts inside your project. Only files
# ending with ``.py`` are considered to be python files by
# default.
# prefs['python_files'] = ['*.py']

# Custom source folders: By default rope searches the project
# for finding source folders (folders that should be searched
# for finding modules). You can add paths to that list. Note
# that rope guesses project source folders correctly most of the
# time; use this if you have any problems.
# The folders should be relative to project root and use '/' for
# separating folders regardless of the platform rope is running on.
# 'src/my_source_folder' for instance.
# prefs.add('source_folders', 'src')

# You can extend python path for looking up modules
# prefs.add('python_path', '~/python/')

# Should rope save object information or not.
prefs['save_objectdb'] = True
prefs['compress_objectdb'] = False

# If `True`, rope analyzes each module when it is being saved.
prefs['automatic_soa'] = True
# The depth of calls to follow in static object analysis
prefs['soa_followed_calls'] = 0

# If `False` when running modules or unit tests "dynamic object
# analysis" is turned off. This makes them much faster.
prefs['perform_doa'] = True

# Rope can check the validity of its object DB when running.
prefs['validate_objectdb'] = True

# How many undos to hold?
prefs['max_history_items'] = 32

# Shows whether to save history across sessions.
prefs['save_history'] = True
prefs['compress_history'] = False

# Set the number spaces used for indenting. According to
# :PEP:`8`, it is best to use 4 spaces. Since most of rope's
# unit-tests use 4 spaces it is more reliable, too.
prefs['indent_size'] = 4

# Builtin and c-extension modules that are allowed to be imported
# and inspected by rope.
prefs['extension_modules'] = []

# Add all standard c-extensions to extension_modules list.
prefs['import_dynload_stdmods'] = True

# If `True` modules with syntax errors are considered to be empty.
# The default value is `False`; When `False` syntax errors raise
# `rope.base.exceptions.ModuleSyntaxError` exception.
prefs['ignore_syntax_errors'] = False

# If `True`, rope ignores unresolvable imports. Otherwise, they
# appear in the importing namespace.
prefs['ignore_bad_imports'] = False

# If `True`, rope will insert new module imports as
# `from <package> import <module>` by default.
prefs['prefer_module_from_imports'] = False

# If `True`, rope will transform a comma list of imports into
# multiple separate import statements when organizing
# imports.
prefs['split_imports'] = False

# If `True`, rope will remove all top-level import statements and
# reinsert them at the top of the module when making changes.
prefs['pull_imports_to_top'] = True

# If `True`, rope will sort imports alphabetically by module name instead
# of alphabetically by import statement, with from imports after normal
# imports.
prefs['sort_imports_alphabetically'] = False

# Location of implementation of
# rope.base.oi.type_hinting.interfaces.ITypeHintingFactory In general
# case, you don't have to change this value, unless you're an rope expert.
# Change this value to inject you own implementations of interfaces
# listed in module rope.base.oi.type_hinting.providers.interfaces
# For example, you can add you own providers for Django Models, or disable
# the search type-hinting in a class hierarchy, etc.
prefs['type_hinting_factory'] = (
'rope.base.oi.type_hinting.factory.default_type_hinting_factory')


def project_opened(project):
"""This function is called after opening the project"""
# Do whatever you like here!
59 changes: 59 additions & 0 deletions Week 6 - Facility Location/facility/MIP.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
from pyscipopt import Model, quicksum
import math

class MIP:
facilities = []
customers = []
model = None
name = None
varFacilityAssignment,varCustomerAssignment= {},{}

def __init__(self, f, c, instanceName):
self.facilities = f
self.customers = c
self.instanceName = instanceName

def createModel(self):
self.model = Model(self.instanceName)
print("Creating Variables...")
#Variables
for f in self.facilities:
self.varFacilityAssignment[f.index] = self.model.addVar(vtype="B",name="facility-%s" % f.index)
for c in self.customers:
#Demand is binary because each customer must be served by exaclty one facility
self.varCustomerAssignment[f.index,c.index] = self.model.addVar(vtype="B",name="demand-(%s,%s)" % (f.index,c.index))

print("Creating Constraints...")
#Constraints
#Ensure all customers are assigned to one facility
for customer in self.customers:
self.model.addCons(quicksum(self.varCustomerAssignment[facility.index,customer.index] for facility in self.facilities) == 1,"Demand(%s)"% customer.index)

#Ensure the demand carried by the facility is at most its capacity
for facility in self.facilities:
self.model.addCons(quicksum(self.varCustomerAssignment[facility.index,customer.index]*customer.demand for customer in self.customers) <= facility.capacity*self.varFacilityAssignment[facility.index],"Capacity(%s)" % facility.index)

#Strong Formulation
for facility in self.facilities:
for customer in self.customers:
self.model.addCons(self.varCustomerAssignment[facility.index,customer.index] <= facility.capacity*self.varFacilityAssignment[facility.index],"Strong(%s,%s)"%(facility.index,customer.index))

print("Creating Objective Function...")
#Objective Function
self.model.setObjective(quicksum(self.varFacilityAssignment[facility.index]*facility.setup_cost for facility in self.facilities) + quicksum(self.length(facility.location,customer.location)*self.varCustomerAssignment[facility.index,customer.index] for facility in self.facilities for customer in self.customers),"minimize")
self.model.data = self.varFacilityAssignment, self.varCustomerAssignment

def optimize(self):
print("Instace: %s" % self.instanceName)
self.model.optimize()
print("Instace: %s solved." % self.instanceName)
EPS = 1.e-6
_,cAssigned = self.model.data
assignments = [(facility,customer) for (facility,customer) in cAssigned if self.model.getVal(cAssigned[facility,customer]) > EPS]
obj = self.model.getObjVal()
return obj,assignments

def length(self,point1, point2):
return math.sqrt((point1.x - point2.x)**2 + (point1.y - point2.y)**2)


10 changes: 10 additions & 0 deletions Week 6 - Facility Location/facility/_coursera
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
GjM7sFxGEeaHWg5O7GpyXw
Facility Location
BsWZ1, ./data/fl_25_2, solver.py, Facility Location Problem 1
rOIP7, ./data/fl_50_6, solver.py, Facility Location Problem 2
Umtuf, ./data/fl_100_7, solver.py, Facility Location Problem 3
gkoSJ, ./data/fl_100_1, solver.py, Facility Location Problem 4
1T4Zv, ./data/fl_200_7, solver.py, Facility Location Problem 5
YjE7f, ./data/fl_500_7, solver.py, Facility Location Problem 6
3hnIJ, ./data/fl_1000_2, solver.py, Facility Location Problem 7
bFCUi, ./data/fl_2000_2, solver.py, Facility Location Problem 8
Loading

0 comments on commit 455abeb

Please sign in to comment.