https://github.com/brayvid/skyrim-alchemy-optimizer
Make the most of your ingredients in Skyrim with linear programming.
https://github.com/brayvid/skyrim-alchemy-optimizer
elder-scrolls-v integer-linear-programming optimization recreational-mathematics scipy skyrim
Last synced: 8 months ago
JSON representation
Make the most of your ingredients in Skyrim with linear programming.
- Host: GitHub
- URL: https://github.com/brayvid/skyrim-alchemy-optimizer
- Owner: brayvid
- Created: 2024-06-09T17:49:16.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-21T20:36:26.000Z (10 months ago)
- Last Synced: 2025-02-01T17:44:27.155Z (10 months ago)
- Topics: elder-scrolls-v, integer-linear-programming, optimization, recreational-mathematics, scipy, skyrim
- Language: Jupyter Notebook
- Homepage: https://colab.research.google.com/github/brayvid/skyrim-alchemy-optimizer/blob/main/skyrim_optimize_potions.ipynb
- Size: 111 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Skyrim Alchemy Optimizer
Blake Rayvid - https://github.com/brayvid
Make the most of the ingredients you have. Maximize total magnitude (essentially in-game value) with integer linear programming in scipy.
```python
import numpy as np
import pandas as pd
from scipy.optimize import milp, Bounds, LinearConstraint
```
## Read in ingredients and recipes
Uses local files "ingredients_have.csv" and "recipes_can_make.csv"
I made my CSVs using this helpful spreadsheet: https://docs.google.com/spreadsheets/d/1010C6ltqv7apuBoNYuFIFSBZER4YI03Y54kIsoKs5RI/edit?usp=sharing
```python
# Ingredients we have with quantity on hand
ingredients = pd.read_csv('ingredients_have.csv');ingredients
```
Ingredient
Quantity
0
Blisterwort
4
1
Blue Butterfly Wing
4
2
Blue Dartwing
1
3
Blue Mountain Flower
24
4
Bone Meal
5
5
Butterfly Wing
6
6
Canis Root
2
7
Creep Cluster
1
8
Deathbell
6
9
Dragons Tongue
5
10
Ectoplasm
5
11
Elves Ear
10
12
Fire Salts
1
13
Fly Amanita
1
14
Frost Mirriam
3
15
Garlic
7
16
Giant Lichen
2
17
Glow Dust
2
18
Hagraven Feathers
2
19
Histcarp
2
20
Honeycomb
4
21
Ice Wraith Teeth
2
22
Imp Stool
2
23
Lavender
17
24
Luna Moth Wing
4
25
Mora Tapinella
2
26
Mudcrab Chitin
2
27
Nightshade
7
28
Nirnroot
3
29
Nordic Barnacle
2
30
Orange Dartwing
2
31
Purple Mountain Flower
15
32
Red Mountain Flower
1
33
River Betty
2
34
Rock Warbler Egg
3
35
Salt Pile
14
36
Scaly Pholiota
1
37
Skeever Tail
2
38
Slaughterfish Scales
3
39
Snowberries
6
40
Spider Egg
8
41
Spriggan Sap
3
42
Swamp Fungal Pod
2
43
Taproot
2
44
Thistle Branch
2
45
Torchbug Thorax
3
46
Troll Fat
3
47
Tundra Cotton
7
48
Vampire Dust
1
49
Void Salts
1
50
White Cap
6