Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/batyleo/tp_twostagespanningtree
https://github.com/batyleo/tp_twostagespanningtree
Last synced: 6 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/batyleo/tp_twostagespanningtree
- Owner: BatyLeo
- Created: 2023-11-30T15:02:23.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-29T11:03:14.000Z (about 1 month ago)
- Last Synced: 2024-11-29T12:19:44.635Z (about 1 month ago)
- Language: Julia
- Size: 120 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# TP_TwoStageSpanningTree
This [Pluto](https://plutojl.org/) notebook is a programming exercise on mathematical programming methods.
It showcases and compares several well known mathematical programming methods on the same toy problem: the minimum weight stochastic two-stage spanning tree problem.
## Installation
First, you need a Julia installation, version 1.9 or higher.
For this, you can either download it from the [official website](https://julialang.org/downloads/), or install it using the [juliaup](https://github.com/JuliaLang/juliaup) tool.To run the notebook, first install Pluto
```julia
using Pkg; Pkg.add("Pluto")
```Then run:
```julia
using Pluto
Pluto.run()
```