Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
*.pyc
.rope*
.idea/
notebooks/.ipynb_checkpoints/
docs/notebooks/.ipynb_checkpoints/
.DS_Store
.ipynb_checkpoints/
*.bak
Expand All @@ -14,6 +14,7 @@ notebooks/.ipynb_checkpoints/
*.egg-info
dist
build
generated
eggs
parts
bin
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"\n",
"*Authors:* [Erin Olson](https://github.com/erinrolson), [Germano Barcelos](https://github.com/gegen07), [James Gaboardi](https://github.com/jGaboardi), [Levi J. Wolf](https://github.com/ljwolf), [Qunshan Zhao](https://github.com/qszhao)\n",
"\n",
"This tutorial extends the [Empirical examples](./facloc-real-world.ipynb) notebook, specifically for the $p$-dispersion problem. A deeper dive into the $p$-dispersion problem can be found [here](./p-dispersion.ipynb).\n",
"This tutorial extends the [Empirical examples](facloc-real-world.ipynb) notebook, specifically for the $p$-dispersion problem. A deeper dive into the $p$-dispersion problem can be found [here](p-dispersion.ipynb).\n",
"Also, this tutorial demonstrates the use of different solvers that [PULP](https://github.com/coin-or/pulp) supports."
]
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"\n",
"*Authors:* [Erin Olson](https://github.com/erinrolson), [Germano Barcelos](https://github.com/gegen07), [James Gaboardi](https://github.com/jGaboardi), [Levi J. Wolf](https://github.com/ljwolf), [Qunshan Zhao](https://github.com/qszhao)\n",
"\n",
"This tutorial extends the [Empirical examples](./facloc-real-world.ipynb) notebook, specifically for the Backup Coverage Location Set Covering Problem (LSCP-B). A deeper dive into the LSCP-B can be found [here](./lscpb.ipynb).\n",
"This tutorial extends the [Empirical examples](facloc-real-world.ipynb) notebook, specifically for the Backup Coverage Location Set Covering Problem (LSCP-B). A deeper dive into the LSCP-B can be found [here](lscpb.ipynb).\n",
"Also, this tutorial demonstrates the use of different solvers that [PULP](https://github.com/coin-or/pulp) supports."
]
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"\n",
"*Authors:* [Germano Barcelos](https://github.com/gegen07), [James Gaboardi](https://github.com/jGaboardi), [Levi J. Wolf](https://github.com/ljwolf), [Qunshan Zhao](https://github.com/qszhao)\n",
"\n",
"This tutorial aims to show a facility location application. To achieve this goal the tuorial will solve mulitple real world facility location problems using a dataset describing an area of census tract 205, San Francisco. The general scenarios can be stated as: store sites should supply the demand in this census tract considering the distance between the two sets of sites: demand points and candidate supply sites. Four fundamental facility location models are utilized to highlight varying outcomes dependent on objectives: LSCP (Location Set Covering Problem), MCLP (Maximal Coverage Location Problem), P-Median and P-Center. For further information on these models, it's recommended to see the notebooks that explain more deeply about each one: [LSCP](./lscp.ipynb), [MCLP](./mclp.ipynb), [P-Median](./p-median.ipynb), [P-Center](./p-center.ipynb).\n",
"This tutorial aims to show a facility location application. To achieve this goal the tuorial will solve mulitple real world facility location problems using a dataset describing an area of census tract 205, San Francisco. The general scenarios can be stated as: store sites should supply the demand in this census tract considering the distance between the two sets of sites: demand points and candidate supply sites. Four fundamental facility location models are utilized to highlight varying outcomes dependent on objectives: LSCP (Location Set Covering Problem), MCLP (Maximal Coverage Location Problem), P-Median and P-Center. For further information on these models, it's recommended to see the notebooks that explain more deeply about each one: [LSCP](lscp.ipynb), [MCLP](mclp.ipynb), [P-Median](p-median.ipynb), [P-Center](p-center.ipynb).\n",
"\n",
"Also, this tutorial demonstrates the use of different solvers that [PULP](https://github.com/coin-or/pulp) supports."
]
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion notebooks/lscpb.ipynb → docs/notebooks/lscpb.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"\n",
"*Authors:* [Erin Olson](https://github.com/erinrolson), [Germano Barcelos](https://github.com/gegen07), [James Gaboardi](https://github.com/jGaboardi), [Levi J. Wolf](https://github.com/ljwolf), [Qunshan Zhao](https://github.com/qszhao)\n",
"\n",
"The Backup Coverage Problem is refered to as an extension of the LSCP (Location Set Covering Problem) as it seeks a solution to LSCP while selecting a set of facilities that optimizes for backup coverage (Church and Murray, 2018). If you are unfamiliar with LSCP the following [notebook](./lscp.ipynb) explains the problem formulation in detail.\n",
"The Backup Coverage Problem is refered to as an extension of the LSCP (Location Set Covering Problem) as it seeks a solution to LSCP while selecting a set of facilities that optimizes for backup coverage (Church and Murray, 2018). If you are unfamiliar with LSCP the following [notebook](lscp.ipynb) explains the problem formulation in detail.\n",
"\n",
"Daskin and Stern (1981) posed the following problem, which Church and Murray (2018) refers to as LSCP-B (Location Set Covering Problem with Backup): _Find the minimum number of facilities and their locations such that each demand is covered, while maximizing the number of backup coverage instances among demand areas._\n",
"\n",
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.