Skip to content

A tiny command line interface tool for solving (non) integer & network optimization problems 🎯

License

Notifications You must be signed in to change notification settings

RomanBoegli/OptimizHelper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

68 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

OptimizHelper

A tiny command line interface tool for solving (non)integer & network optimization problems.

cli

Setup

  1. Clone this repo.
  2. Open console, navigate to repo, execute pip install -r requirements.txt.
  3. You're ready to go.

Examples

Introduction:


$ python3 main.py
Usage: main.py [OPTIONS] COMMAND [ARGS]...

  Simple CLI for optimization problems.

Options:
  -h, --help  Show this message and exit.

Part 1a:
  branchbound      IP relaxation on an Ax<=b system. File must have the sheets named 'A', 'b' an...
  hyperplanes      Retruns basic & feasible solutions of an Ax<=b system with 2 or 3 dimensions....
  matanalysis      Basic matrix analysis insights.
  plot             Plots a 2D system of inequalities provided in Ax<=b form. File must have the...
  simplex          Applies Simplex on an Ax<=b system with 2 or 3 dimensions. File must have the...

Part 2a:
  aitken           Returns the Aitken sequence for a value series of at least 3.
  broyden          Iterating optimization using Broyden's method given a function and starting v...
  broydeninter     Iterating optimization using Broyden's method given the interim results start...
  diffbeauty       Returns the derivative in pretty form.
  difftree         Returns all partial derivatives as a tree.
  evaluate         Evaluates a function with a given substitution (assumes alphabetic order).
  gradient         Returns the gradient of the given function.
  hessian          Returns Hessian matrix or its determinant of a given function.
  newton           Applies one step of Newton's method.
  succhalv         Applies Gradient method with successive halving and parabola fitting on 2D or...

Part 2b:
  dijkstra         All shortest paths to all other nodes from given starting node using an (un)d...
  drawgraph        Plots a graph based on provided adjacency matrix.
  floydwarshall    Returns matrix with shortest distances between all nodes.
  maxflow          Finds maximum flow based on provided edge list.
  maxmatch         Maximum matchings of a bipartite graph based on provided adjacency matrix.
  mincostmaxflow   Returns a maximum s-t flow of minimum cost based on provided edge list with weights and costs.
  mincut           Finds minimum s-t-cut based on provided edge list or adjacency matrix.
  mst              Returns the minimum spanning tree of an undirected graph.
  traverse         Traverses graph provided as (un)directed adjacency matrix either breadth-first...

Part 1a

Linear Optimizations Problems

Matrix Analysis

Get linearly independent components and inversion of matrix:

$ python3 main.py matanalysis /path/to/matrix.ods --pretty
╒══════════════════╀═════════╀═════════════╕
β”‚ insight          β”‚ descr   β”‚ matrix      β”‚
β•žβ•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•ͺ═════════β•ͺ═════════════║
β”‚ provided input   β”‚ -       β”‚ ⎑0  -1⎀     β”‚
β”‚                  β”‚         β”‚ ⎒     βŽ₯     β”‚
β”‚                  β”‚         β”‚ ⎣2  -1⎦     β”‚
β”œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€
β”‚ independent cols β”‚ (0, 1)  β”‚ ⎑0  -1⎀     β”‚
β”‚                  β”‚         β”‚ ⎒     βŽ₯     β”‚
β”‚                  β”‚         β”‚ ⎣2  -1⎦     β”‚
β”œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€
β”‚ independent rows β”‚ (0, 1)  β”‚ ⎑0  -1⎀     β”‚
β”‚                  β”‚         β”‚ ⎒     βŽ₯     β”‚
β”‚                  β”‚         β”‚ ⎣2  -1⎦     β”‚
β”œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€
β”‚ inverse          β”‚ -       β”‚ ⎑-1/2  1/2⎀ β”‚
β”‚                  β”‚         β”‚ ⎒         βŽ₯ β”‚
β”‚                  β”‚         β”‚ ⎣ -1    0 ⎦ β”‚
β•˜β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•§β•β•β•β•β•β•β•β•β•β•§β•β•β•β•β•β•β•β•β•β•β•β•β•β•›

Basic Selection of Hyperplanes

Get basic & feasible solutions of an Ax<=b system. Matrices are provided via an ODF-file with two sheets, namely 'A' and 'b':

$ python3 main.py hyperplanes /path/to/FileWithSheets_A_b.ods --pretty
╒════════════════╀══════════════╀════════════════╀═══════╀═══════════╀══════════════════════════╕
β”‚ possibility*   β”‚ ABi          β”‚ ABi^(-1)       β”‚ bBi   β”‚ xBi.T     β”‚ conclusion               β”‚
β•žβ•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•ͺ══════════════β•ͺ════════════════β•ͺ═══════β•ͺ═══════════β•ͺ══════════════════════════║
β”‚ B1=(2, 4, 5)   β”‚ ⎑-1  -1  -1⎀ β”‚ ⎑0   0   -1⎀   β”‚ ⎑-2⎀  β”‚ [0  1  1] β”‚ if equal to vertex       β”‚
β”‚                β”‚ ⎒          βŽ₯ β”‚ ⎒          βŽ₯   β”‚ ⎒  βŽ₯  β”‚           β”‚   -> feasible            β”‚
β”‚                β”‚ ⎒0   -1  0 βŽ₯ β”‚ ⎒0   -1  0 βŽ₯   β”‚ ⎒-1βŽ₯  β”‚           β”‚ otherwise infeasible     β”‚
β”‚                β”‚ ⎒          βŽ₯ β”‚ ⎒          βŽ₯   β”‚ ⎒  βŽ₯  β”‚           β”‚                          β”‚
β”‚                β”‚ ⎣-1  0   0 ⎦ β”‚ ⎣-1  1   1 ⎦   β”‚ ⎣0 ⎦  β”‚           β”‚                          β”‚
β”œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€
β”‚ B2=(2, 4, 6)   β”‚ ⎑-1  -1  -1⎀ β”‚ not invertible β”‚ -     β”‚ -         β”‚ not a basic selection as β”‚
β”‚                β”‚ ⎒          βŽ₯ β”‚                β”‚       β”‚           β”‚ row(s) {4, 6} are        β”‚
β”‚                β”‚ ⎒0   -1  0 βŽ₯ β”‚                β”‚       β”‚           β”‚ linearly dependent       β”‚
β”‚                β”‚ ⎒          βŽ₯ β”‚                β”‚       β”‚           β”‚                          β”‚
β”‚                β”‚ ⎣0   -1  0 ⎦ β”‚                β”‚       β”‚           β”‚                          β”‚
β”œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€
β”‚ B3=(2, 4, 7)   β”‚ ⎑-1  -1  -1⎀ β”‚ ⎑-1  1   1 ⎀   β”‚ ⎑-2⎀  β”‚ [1  1  0] β”‚ if equal to vertex       β”‚
β”‚                β”‚ ⎒          βŽ₯ β”‚ ⎒          βŽ₯   β”‚ ⎒  βŽ₯  β”‚           β”‚   -> feasible            β”‚
β”‚                β”‚ ⎒0   -1  0 βŽ₯ β”‚ ⎒0   -1  0 βŽ₯   β”‚ ⎒-1βŽ₯  β”‚           β”‚ otherwise infeasible     β”‚
β”‚                β”‚ ⎒          βŽ₯ β”‚ ⎒          βŽ₯   β”‚ ⎒  βŽ₯  β”‚           β”‚                          β”‚
β”‚                β”‚ ⎣0   0   -1⎦ β”‚ ⎣0   0   -1⎦   β”‚ ⎣0 ⎦  β”‚           β”‚                          β”‚
β”œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€
β”‚ B4=(2, 5, 6)   β”‚ ⎑-1  -1  -1⎀ β”‚ ⎑0   -1  0 ⎀   β”‚ ⎑-2⎀  β”‚ [0  0  2] β”‚ if equal to vertex       β”‚
β”‚                β”‚ ⎒          βŽ₯ β”‚ ⎒          βŽ₯   β”‚ ⎒  βŽ₯  β”‚           β”‚   -> feasible            β”‚
β”‚                β”‚ ⎒-1  0   0 βŽ₯ β”‚ ⎒0   0   -1βŽ₯   β”‚ ⎒0 βŽ₯  β”‚           β”‚ otherwise infeasible     β”‚
β”‚                β”‚ ⎒          βŽ₯ β”‚ ⎒          βŽ₯   β”‚ ⎒  βŽ₯  β”‚           β”‚                          β”‚
β”‚                β”‚ ⎣0   -1  0 ⎦ β”‚ ⎣-1  1   1 ⎦   β”‚ ⎣0 ⎦  β”‚           β”‚                          β”‚
β”œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€
β”‚ B5=(2, 5, 7)   β”‚ ⎑-1  -1  -1⎀ β”‚ ⎑0   -1  0 ⎀   β”‚ ⎑-2⎀  β”‚ [0  2  0] β”‚ if equal to vertex       β”‚
β”‚                β”‚ ⎒          βŽ₯ β”‚ ⎒          βŽ₯   β”‚ ⎒  βŽ₯  β”‚           β”‚   -> feasible            β”‚
β”‚                β”‚ ⎒-1  0   0 βŽ₯ β”‚ ⎒-1  1   1 βŽ₯   β”‚ ⎒0 βŽ₯  β”‚           β”‚ otherwise infeasible     β”‚
β”‚                β”‚ ⎒          βŽ₯ β”‚ ⎒          βŽ₯   β”‚ ⎒  βŽ₯  β”‚           β”‚                          β”‚
β”‚                β”‚ ⎣0   0   -1⎦ β”‚ ⎣0   0   -1⎦   β”‚ ⎣0 ⎦  β”‚           β”‚                          β”‚
β”œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€
β”‚ B6=(2, 6, 7)   β”‚ ⎑-1  -1  -1⎀ β”‚ ⎑-1  1   1 ⎀   β”‚ ⎑-2⎀  β”‚ [2  0  0] β”‚ if equal to vertex       β”‚
β”‚                β”‚ ⎒          βŽ₯ β”‚ ⎒          βŽ₯   β”‚ ⎒  βŽ₯  β”‚           β”‚   -> feasible            β”‚
β”‚                β”‚ ⎒0   -1  0 βŽ₯ β”‚ ⎒0   -1  0 βŽ₯   β”‚ ⎒0 βŽ₯  β”‚           β”‚ otherwise infeasible     β”‚
β”‚                β”‚ ⎒          βŽ₯ β”‚ ⎒          βŽ₯   β”‚ ⎒  βŽ₯  β”‚           β”‚                          β”‚
β”‚                β”‚ ⎣0   0   -1⎦ β”‚ ⎣0   0   -1⎦   β”‚ ⎣0 ⎦  β”‚           β”‚                          β”‚
β”œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€
β”‚ B7=(4, 5, 6)   β”‚ ⎑0   -1  0⎀  β”‚ not invertible β”‚ -     β”‚ -         β”‚ not a basic selection as β”‚
β”‚                β”‚ ⎒         βŽ₯  β”‚                β”‚       β”‚           β”‚ row(s) {4, 5, 6} are     β”‚
β”‚                β”‚ ⎒-1  0   0βŽ₯  β”‚                β”‚       β”‚           β”‚ linearly dependent       β”‚
β”‚                β”‚ ⎒         βŽ₯  β”‚                β”‚       β”‚           β”‚                          β”‚
β”‚                β”‚ ⎣0   -1  0⎦  β”‚                β”‚       β”‚           β”‚                          β”‚
β”œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€
β”‚ B8=(4, 5, 7)   β”‚ ⎑0   -1  0 ⎀ β”‚ ⎑0   -1  0 ⎀   β”‚ ⎑-1⎀  β”‚ [0  1  0] β”‚ if equal to vertex       β”‚
β”‚                β”‚ ⎒          βŽ₯ β”‚ ⎒          βŽ₯   β”‚ ⎒  βŽ₯  β”‚           β”‚   -> feasible            β”‚
β”‚                β”‚ ⎒-1  0   0 βŽ₯ β”‚ ⎒-1  0   0 βŽ₯   β”‚ ⎒0 βŽ₯  β”‚           β”‚ otherwise infeasible     β”‚
β”‚                β”‚ ⎒          βŽ₯ β”‚ ⎒          βŽ₯   β”‚ ⎒  βŽ₯  β”‚           β”‚                          β”‚
β”‚                β”‚ ⎣0   0   -1⎦ β”‚ ⎣0   0   -1⎦   β”‚ ⎣0 ⎦  β”‚           β”‚                          β”‚
β”œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€
β”‚ B9=(4, 6, 7)   β”‚ ⎑0  -1  0 ⎀  β”‚ not invertible β”‚ -     β”‚ -         β”‚ not a basic selection as β”‚
β”‚                β”‚ ⎒         βŽ₯  β”‚                β”‚       β”‚           β”‚ row(s) {4, 6, 7} are     β”‚
β”‚                β”‚ ⎒0  -1  0 βŽ₯  β”‚                β”‚       β”‚           β”‚ linearly dependent       β”‚
β”‚                β”‚ ⎒         βŽ₯  β”‚                β”‚       β”‚           β”‚                          β”‚
β”‚                β”‚ ⎣0  0   -1⎦  β”‚                β”‚       β”‚           β”‚                          β”‚
β”œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€
β”‚ B10=(5, 6, 7)  β”‚ ⎑-1  0   0 ⎀ β”‚ ⎑-1  0   0 ⎀   β”‚ ⎑0⎀   β”‚ [0  0  0] β”‚ if equal to vertex       β”‚
β”‚                β”‚ ⎒          βŽ₯ β”‚ ⎒          βŽ₯   β”‚ ⎒ βŽ₯   β”‚           β”‚   -> feasible            β”‚
β”‚                β”‚ ⎒0   -1  0 βŽ₯ β”‚ ⎒0   -1  0 βŽ₯   β”‚ ⎒0βŽ₯   β”‚           β”‚ otherwise infeasible     β”‚
β”‚                β”‚ ⎒          βŽ₯ β”‚ ⎒          βŽ₯   β”‚ ⎒ βŽ₯   β”‚           β”‚                          β”‚
β”‚                β”‚ ⎣0   0   -1⎦ β”‚ ⎣0   0   -1⎦   β”‚ ⎣0⎦   β”‚           β”‚                          β”‚
β•˜β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•§β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•§β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•§β•β•β•β•β•β•β•β•§β•β•β•β•β•β•β•β•β•β•β•β•§β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•›
 *skipped rows due to duplicate: {2, 4}

Simplex Algorithm

Find optimum using Simplex with all itermediate results. Matrices are provided via an ODF-file with sheets named 'A', 'b' and 'c'. Together they must represent the LP in inequality form as maximization problem. A basic selection of hyperplanes of the starting point must be provided. In the example below it is $B={4, 5}$ (see image).

simplex

$ python3 main.py simplex /path/to/matrix_A_b_c.ods 1 5 --pretty
╒════════╀═════════════╀══════════╀══════╀══════════════╀═════╀════════════╀═══════════════╀════════╀══════╀════════╀══════╀════════════════════════════╀═════════════════╀══════╕
β”‚   iter β”‚ selection   β”‚ AB       β”‚ bB   β”‚ Γ‚=AB^(-1)    β”‚ c   β”‚ v = Γ‚*bB   β”‚ u = c*Γ‚^(T)   β”‚ d      β”‚ Av   β”‚ Ad     β”‚ b    β”‚ Ξ» = min(stepsizes)         β”‚ selection_new   β”‚ v'   β”‚
β•žβ•β•β•β•β•β•β•β•β•ͺ═════════════β•ͺ══════════β•ͺ══════β•ͺ══════════════β•ͺ═════β•ͺ════════════β•ͺ═══════════════β•ͺ════════β•ͺ══════β•ͺ════════β•ͺ══════β•ͺ════════════════════════════β•ͺ═════════════════β•ͺ══════║
β”‚      0 β”‚ B0 = (4, 5) β”‚ ⎑-1  0 ⎀ β”‚ ⎑0⎀  β”‚ ⎑-1  0 ⎀     β”‚ ⎑6⎀ β”‚ ⎑0⎀        β”‚ ⎑-6⎀          β”‚ -Γ‚4 =  β”‚ ⎑0⎀  β”‚ ⎑1 ⎀   β”‚ ⎑12⎀ β”‚ 5 = Ξ» = min([12, 5, 5])    β”‚ B1 = {2, 5}     β”‚ ⎑5⎀  β”‚
β”‚        β”‚             β”‚ ⎒      βŽ₯ β”‚ ⎒ βŽ₯  β”‚ ⎒      βŽ₯     β”‚ ⎒ βŽ₯ β”‚ ⎒ βŽ₯        β”‚ ⎒  βŽ₯          β”‚        β”‚ ⎒ βŽ₯  β”‚ ⎒  βŽ₯   β”‚ ⎒  βŽ₯ β”‚ i.e. selection             β”‚ out = j = 4     β”‚ ⎒ βŽ₯  β”‚
β”‚        β”‚             β”‚ ⎣0   -1⎦ β”‚ ⎣0⎦  β”‚ ⎣0   -1⎦     β”‚ ⎣5⎦ β”‚ ⎣0⎦        β”‚ ⎣-5⎦          β”‚ ⎑1⎀    β”‚ ⎒0βŽ₯  β”‚ ⎒6 βŽ₯   β”‚ ⎒30βŽ₯ β”‚ k = (1, 2, 3)              β”‚ in = k = 2      β”‚ ⎣0⎦  β”‚
β”‚        β”‚             β”‚          β”‚      β”‚              β”‚     β”‚            β”‚               β”‚ ⎒ βŽ₯    β”‚ ⎒ βŽ₯  β”‚ ⎒  βŽ₯   β”‚ ⎒  βŽ₯ β”‚ cand. sel. = (2, 3)        β”‚                 β”‚      β”‚
β”‚        β”‚             β”‚          β”‚      β”‚              β”‚     β”‚            β”‚               β”‚ ⎣0⎦    β”‚ ⎒0βŽ₯  β”‚ ⎒3 βŽ₯   β”‚ ⎒15βŽ₯ β”‚ took k = 2                 β”‚ write as:       β”‚      β”‚
β”‚        β”‚             β”‚          β”‚      β”‚              β”‚     β”‚            β”‚               β”‚        β”‚ ⎒ βŽ₯  β”‚ ⎒  βŽ₯   β”‚ ⎒  βŽ₯ β”‚                            β”‚ {4, 5} - {4}    β”‚      β”‚
β”‚        β”‚             β”‚          β”‚      β”‚              β”‚     β”‚            β”‚               β”‚        β”‚ ⎒0βŽ₯  β”‚ ⎒-1βŽ₯   β”‚ ⎒0 βŽ₯ β”‚                            β”‚ βˆͺ               β”‚      β”‚
β”‚        β”‚             β”‚          β”‚      β”‚              β”‚     β”‚            β”‚               β”‚        β”‚ ⎒ βŽ₯  β”‚ ⎒  βŽ₯   β”‚ ⎒  βŽ₯ β”‚                            β”‚ {2}             β”‚      β”‚
β”‚        β”‚             β”‚          β”‚      β”‚              β”‚     β”‚            β”‚               β”‚        β”‚ ⎣0⎦  β”‚ ⎣0 ⎦   β”‚ ⎣0 ⎦ β”‚                            β”‚ = {2, 5}        β”‚      β”‚
β”œβ”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€
β”‚      1 β”‚ B1 = (2, 5) β”‚ ⎑6  2 ⎀  β”‚ ⎑30⎀ β”‚ ⎑1/6  1/3⎀   β”‚ ⎑6⎀ β”‚ ⎑5⎀        β”‚ ⎑1 ⎀          β”‚ -Γ‚5 =  β”‚ ⎑5 ⎀ β”‚ ⎑8/3⎀  β”‚ ⎑12⎀ β”‚ 0 = Ξ» = min([21/8, 0, 15]) β”‚ B2 = {2, 3}     β”‚ ⎑5⎀  β”‚
β”‚        β”‚             β”‚ ⎒     βŽ₯  β”‚ ⎒  βŽ₯ β”‚ ⎒        βŽ₯   β”‚ ⎒ βŽ₯ β”‚ ⎒ βŽ₯        β”‚ ⎒  βŽ₯          β”‚        β”‚ ⎒  βŽ₯ β”‚ ⎒   βŽ₯  β”‚ ⎒  βŽ₯ β”‚ i.e. selection             β”‚ out = j = 5     β”‚ ⎒ βŽ₯  β”‚
β”‚        β”‚             β”‚ ⎣0  -1⎦  β”‚ ⎣0 ⎦ β”‚ ⎣ 0   -1 ⎦   β”‚ ⎣5⎦ β”‚ ⎣0⎦        β”‚ ⎣-3⎦          β”‚ ⎑-1/3⎀ β”‚ ⎒30βŽ₯ β”‚ ⎒ 0 βŽ₯  β”‚ ⎒30βŽ₯ β”‚ k = (1, 3, 4)              β”‚ in = k = 3      β”‚ ⎣0⎦  β”‚
β”‚        β”‚             β”‚          β”‚      β”‚              β”‚     β”‚            β”‚               β”‚ ⎒    βŽ₯ β”‚ ⎒  βŽ₯ β”‚ ⎒   βŽ₯  β”‚ ⎒  βŽ₯ β”‚ cand. sel. = (3,)          β”‚                 β”‚      β”‚
β”‚        β”‚             β”‚          β”‚      β”‚              β”‚     β”‚            β”‚               β”‚ ⎣ 1  ⎦ β”‚ ⎒15βŽ₯ β”‚ ⎒ 1 βŽ₯  β”‚ ⎒15βŽ₯ β”‚ took k = 3                 β”‚ write as:       β”‚      β”‚
β”‚        β”‚             β”‚          β”‚      β”‚              β”‚     β”‚            β”‚               β”‚        β”‚ ⎒  βŽ₯ β”‚ ⎒   βŽ₯  β”‚ ⎒  βŽ₯ β”‚                            β”‚ {2, 5} - {5}    β”‚      β”‚
β”‚        β”‚             β”‚          β”‚      β”‚              β”‚     β”‚            β”‚               β”‚        β”‚ ⎒-5βŽ₯ β”‚ ⎒1/3βŽ₯  β”‚ ⎒0 βŽ₯ β”‚                            β”‚ βˆͺ               β”‚      β”‚
β”‚        β”‚             β”‚          β”‚      β”‚              β”‚     β”‚            β”‚               β”‚        β”‚ ⎒  βŽ₯ β”‚ ⎒   βŽ₯  β”‚ ⎒  βŽ₯ β”‚                            β”‚ {3}             β”‚      β”‚
β”‚        β”‚             β”‚          β”‚      β”‚              β”‚     β”‚            β”‚               β”‚        β”‚ ⎣0 ⎦ β”‚ ⎣-1 ⎦  β”‚ ⎣0 ⎦ β”‚                            β”‚ = {2, 3}        β”‚      β”‚
β”œβ”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€
β”‚      2 β”‚ B2 = (2, 3) β”‚ ⎑6  2⎀   β”‚ ⎑30⎀ β”‚ ⎑1/3   -1/3⎀ β”‚ ⎑6⎀ β”‚ ⎑5⎀        β”‚ ⎑-1/2⎀        β”‚ -Γ‚2 =  β”‚ ⎑5 ⎀ β”‚ ⎑7/6 ⎀ β”‚ ⎑12⎀ β”‚ 6 = Ξ» = min([6, 15])       β”‚ B3 = {1, 3}     β”‚ ⎑3⎀  β”‚
β”‚        β”‚             β”‚ ⎒    βŽ₯   β”‚ ⎒  βŽ₯ β”‚ ⎒          βŽ₯ β”‚ ⎒ βŽ₯ β”‚ ⎒ βŽ₯        β”‚ ⎒    βŽ₯        β”‚        β”‚ ⎒  βŽ₯ β”‚ ⎒    βŽ₯ β”‚ ⎒  βŽ₯ β”‚ i.e. selection             β”‚ out = j = 2     β”‚ ⎒ βŽ₯  β”‚
β”‚        β”‚             β”‚ ⎣3  2⎦   β”‚ ⎣15⎦ β”‚ ⎣-1/2   1  ⎦ β”‚ ⎣5⎦ β”‚ ⎣0⎦        β”‚ ⎣ 3  ⎦        β”‚ ⎑-1/3⎀ β”‚ ⎒30βŽ₯ β”‚ ⎒ -1 βŽ₯ β”‚ ⎒30βŽ₯ β”‚ k = (1, 4)                 β”‚ in = k = 1      β”‚ ⎣3⎦  β”‚
β”‚        β”‚             β”‚          β”‚      β”‚              β”‚     β”‚            β”‚               β”‚ ⎒    βŽ₯ β”‚ ⎒  βŽ₯ β”‚ ⎒    βŽ₯ β”‚ ⎒  βŽ₯ β”‚ cand. sel. = (1,)          β”‚                 β”‚      β”‚
β”‚        β”‚             β”‚          β”‚      β”‚              β”‚     β”‚            β”‚               β”‚ ⎣1/2 ⎦ β”‚ ⎒15βŽ₯ β”‚ ⎒ 0  βŽ₯ β”‚ ⎒15βŽ₯ β”‚ took k = 1                 β”‚ write as:       β”‚      β”‚
β”‚        β”‚             β”‚          β”‚      β”‚              β”‚     β”‚            β”‚               β”‚        β”‚ ⎒  βŽ₯ β”‚ ⎒    βŽ₯ β”‚ ⎒  βŽ₯ β”‚                            β”‚ {2, 3} - {2}    β”‚      β”‚
β”‚        β”‚             β”‚          β”‚      β”‚              β”‚     β”‚            β”‚               β”‚        β”‚ ⎒-5βŽ₯ β”‚ ⎒1/3 βŽ₯ β”‚ ⎒0 βŽ₯ β”‚                            β”‚ βˆͺ               β”‚      β”‚
β”‚        β”‚             β”‚          β”‚      β”‚              β”‚     β”‚            β”‚               β”‚        β”‚ ⎒  βŽ₯ β”‚ ⎒    βŽ₯ β”‚ ⎒  βŽ₯ β”‚                            β”‚ {1}             β”‚      β”‚
β”‚        β”‚             β”‚          β”‚      β”‚              β”‚     β”‚            β”‚               β”‚        β”‚ ⎣0 ⎦ β”‚ ⎣-1/2⎦ β”‚ ⎣0 ⎦ β”‚                            β”‚ = {1, 3}        β”‚      β”‚
β”œβ”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€
β”‚      3 β”‚ B3 = (1, 3) β”‚ ⎑1  3⎀   β”‚ ⎑12⎀ β”‚ ⎑-2/7  3/7 ⎀ β”‚ ⎑6⎀ β”‚ ⎑3⎀        β”‚ ⎑3/7 ⎀        β”‚ DONE   β”‚ DONE β”‚ DONE   β”‚ DONE β”‚ DONE                       β”‚ DONE            β”‚ ⎑3⎀  β”‚
β”‚        β”‚             β”‚ ⎒    βŽ₯   β”‚ ⎒  βŽ₯ β”‚ ⎒          βŽ₯ β”‚ ⎒ βŽ₯ β”‚ ⎒ βŽ₯        β”‚ ⎒    βŽ₯        β”‚        β”‚      β”‚        β”‚      β”‚                            β”‚                 β”‚ ⎒ βŽ₯  β”‚
β”‚        β”‚             β”‚ ⎣3  2⎦   β”‚ ⎣15⎦ β”‚ ⎣3/7   -1/7⎦ β”‚ ⎣5⎦ β”‚ ⎣3⎦        β”‚ ⎣13/7⎦        β”‚        β”‚      β”‚        β”‚      β”‚                            β”‚                 β”‚ ⎣3⎦  β”‚
β•˜β•β•β•β•β•β•β•β•β•§β•β•β•β•β•β•β•β•β•β•β•β•β•β•§β•β•β•β•β•β•β•β•β•β•β•§β•β•β•β•β•β•β•§β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•§β•β•β•β•β•β•§β•β•β•β•β•β•β•β•β•β•β•β•β•§β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•§β•β•β•β•β•β•β•β•β•§β•β•β•β•β•β•β•§β•β•β•β•β•β•β•β•β•§β•β•β•β•β•β•β•§β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•§β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•§β•β•β•β•β•β•β•›

result = SimplexResult.OPTIMAL
v* = [[3], [3]]
optimal_value =  c^T * v = 33 (maximization problem)
optimal_value = -c^T * v = -33 (minimization problem)
unique = True

Plot System of Inequalities

Plots a 2D system of inequalities provided in Ax<=b form. File must have the sheets named 'A' and 'b'. See image below (left plot).

$ python3 main.py plot /path/to/FileWithSheets_A_b.ods -x -1 6 -y 0 5
result saved as: ./plot.png

Also possible to show an instructed Gomory Chvatal Cut provided as $(c1, h1, c2, h2)$ which will result in a new hyperplane $h3 = c1 * h1 + c2 * h2$. See image below (right plot).

$ python3 main.py plot /path/to/FileWithSheets_A_b.ods -x -1 6 -y 0 5 -gc 0.2 1 0.1 2
result saved as: ./plot.png
gc-cut with 0.2*(1) +  0.1*(2)
= (0.2*[-x + 4β‹…y]) + (0.1*[2β‹…x + 2β‹…y]) ≀ ⌊(0.2*[8]) + (0.1*[9])βŒ‹
= 1.0β‹…y ≀ 2

plot

Branch and Bound

IP relaxation on an Ax<=b system. File must have the sheets named 'A', 'b' and 'c' which together represent the LP in inequality form as maximization problem. See sample file below (Knapsack problem).

plot

Knapsack encoding:

A: holds volumes in first row

b: holds capacity in first row

c: holds values in first row

$ python3 main.py branchbound '/path/to//knapsack.ods' -k
╒═════════╀══════════════════╀═════════════════╀════════╀══════════════╀════════╀═════════════════╀═════════════════╕
β”‚ step    β”‚ c                β”‚ x_ub            β”‚ z_ub   β”‚ x_lb         β”‚ z_lb   β”‚ global update   β”‚ stop criteria   β”‚
β•žβ•β•β•β•β•β•β•β•β•β•ͺ══════════════════β•ͺ═════════════════β•ͺ════════β•ͺ══════════════β•ͺ════════β•ͺ═════════════════β•ͺ═════════════════║
β”‚ [1] r=0 β”‚ [64  57  48  11] β”‚ [1  1  5/8  0]  β”‚ 151    β”‚ [1  1  0  0] β”‚ 121    β”‚ [1]: z_lb = 121 β”‚                 β”‚
β”œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€
β”‚ [2] r=2 β”‚ [64  57  48  11] β”‚ ⎑   10      ⎀   β”‚ 142    β”‚ [1  0  1  0] β”‚ 112    β”‚                 β”‚                 β”‚
β”‚         β”‚                  β”‚ ⎒1  ──  1  0βŽ₯   β”‚        β”‚              β”‚        β”‚                 β”‚                 β”‚
β”‚         β”‚                  β”‚ ⎣   19      ⎦   β”‚        β”‚              β”‚        β”‚                 β”‚                 β”‚
β”œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€
β”‚ [3] r=4 β”‚ [64  57  48  11] β”‚ [7/16  1  1  0] β”‚ 133    β”‚ [0  1  1  0] β”‚ 105    β”‚                 β”‚                 β”‚
β”œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€
β”‚ [4] r=6 β”‚                  β”‚                 β”‚        β”‚              β”‚        β”‚                 β”‚ infeasible      β”‚
β”œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€
β”‚ [5] r=5 β”‚ [64  57  48  11] β”‚ [0  1  1  7/8]  β”‚ 917/8  β”‚ [0  1  1  0] β”‚ 105    β”‚                 β”‚ dominance       β”‚
β”œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€
β”‚ [6] r=3 β”‚ [64  57  48  11] β”‚ [1  0  1  1]    β”‚ 123    β”‚ [1  0  1  1] β”‚ 123    β”‚ [6]: z_lb = 123 β”‚ optimal         β”‚
β”œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€
β”‚ [7] r=1 β”‚ [64  57  48  11] β”‚ [1  1  0  1]    β”‚ 132    β”‚ [1  1  0  1] β”‚ 132    β”‚ [7]: z_lb = 132 β”‚ optimal         β”‚
β•˜β•β•β•β•β•β•β•β•β•β•§β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•§β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•§β•β•β•β•β•β•β•β•β•§β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•§β•β•β•β•β•β•β•β•β•§β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•§β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•›
result saved as: ./tree.png

plot


Part 2

Unconstrained Continuous Optimizations Problems

Derivatives

Differenciate a function once w.r.t. x and print beatifuly.

$ python3 main.py diffbeauty '(x^2-2xy+x)^2' --wrt=x
fx:
                βŽ› 2            ⎞
(4β‹…x - 4β‹…y + 2)β‹…βŽx  - 2β‹…xβ‹…y + x⎠

Get complete partial differenciation tree w.r.t. all variables.

$ python3 main.py difftree '(x^2-2xy+x)^2'
f: (x^2 - 2xy + x)^2
β”œβ”€β”€ f1x_: (4x - 4y + 2)(x^2 - 2xy + x)
β”‚   β”œβ”€β”€ f2x_x: 4x^2 - 8xy + 4x + (2x - 2y + 1)(4x - 4y + 2)
β”‚   β”‚   β”œβ”€β”€ f3x_xx: 24x - 24y + 12
β”‚   β”‚   β”‚   β”œβ”€β”€ f4x_xxx: 24
β”‚   β”‚   β”‚   └── f4y_xxx: -24
β”‚   β”‚   └── f3y_xx: -24x + 16y - 8
β”‚   β”‚       β”œβ”€β”€ f4x_yxx: -24
β”‚   β”‚       └── f4y_yxx: 16
β”‚   └── f2y_x: -4x^2 + 8xy - 2x(4x - 4y + 2) - 4x
β”‚       β”œβ”€β”€ f3x_yx: -24x + 16y - 8
β”‚       β”‚   β”œβ”€β”€ f4x_xyx: -24
β”‚       β”‚   └── f4y_xyx: 16
β”‚       └── f3y_yx: 16x
β”‚           └── f4x_yyx: 16
└── f1y_: -4x(x^2 - 2xy + x)
    β”œβ”€β”€ f2x_y: -4x^2 + 8xy - 4x(2x - 2y + 1) - 4x
    β”‚   β”œβ”€β”€ f3x_xy: -24x + 16y - 8
    β”‚   β”‚   β”œβ”€β”€ f4x_xxy: -24
    β”‚   β”‚   └── f4y_xxy: 16
    β”‚   └── f3y_xy: 16x
    β”‚       └── f4x_yxy: 16
    └── f2y_y: 8x^2
        └── f3x_yy: 16x
            └── f4x_xyy: 16

Evaluations

Evaluate an expression with given input values.

$ python3 main.py evaluate '2^(1/2)'
13276383826/9387821033

$ python3 main.py evaluate '2x + y' 4 3
11

Gradient Method with Successive Halving

Receive the gradient vector/matrix.

$ python3 main.py gradient '(x^2-2xy+x)^2'
[['2x(x - 2y + 1)(2x - 2y + 1)', '4x^2(-x + 2y - 1)']]

$ python3 main.py gradient '(x^2-2xy+x)^2' --pretty
⎑                                      2               ⎀
⎣2β‹…xβ‹…(x - 2β‹…y + 1)β‹…(2β‹…x - 2β‹…y + 1)  4β‹…x β‹…(-x + 2β‹…y - 1)⎦

Evaluate the gradient of a function at a given point.

$ python3 main.py gradient '(x^2-2xy+x)^2' -s x 2 -s y 2 --pretty
[-4  16]

Next better point using Gradient method with successive halving (incl. parabola fitted point $B*$):

$ python3 main.py succhalv '(x-2)^4 + (x-2y)^2' 2 0
#            B  (x1, y1)               f(x1, y1)  < 4 ?
---  ---------  -------------------  -----------  -------
0    1          (-2, 8)               580         False
1    0.5        (0, 4)                 80         False
2    0.25       (1, 2)                 10         False
3    0.125      (1.5, 1)                0.3125    True
B*   0.0969626  (1.61215, 0.775701)     0.026319  -

(x1, y1) = (1.5, 1)
(x1, y1) = (1.61215, 0.775701)  <-- parabola fitted using B*

Also works for 3 dimensional functions. Use the double dash (--) when working with negative values as after it all further parameters are accepted as arguments.

python3 main.py succhalv 'x^2 + y^2 +z^2' -- 3 1 -2
#      B  (x1, y1)       f(x1, y1)  < 14 ?
---  ---  -----------  -----------  --------
0    1    (-3, -1, 2)           14  False
1    0.5  (0, 0, 0)              0  True
B*   0.5  (0, 0, 0)              0  -

(x1, y1) = (0, 0, 0)
(x1, y1) = (0, 0, 0)  <-- parabola fitted using B*

Hessian

Receive the Hessian matrix of a given function.

$ python3 main.py hessian '(x-2)^4 + (x-2y)^2'
[['12(x - 2)^2 + 2', '-4'], ['-4', '8']]

$ python3 main.py hessian '(x-2)^4 + (x-2y)^2' --pretty
⎑          2        ⎀
⎒12β‹…(x - 2)  + 2  -4βŽ₯
⎒                   βŽ₯
⎣      -4         8 ⎦

Solve for given substitution.

$ python3 main.py hessian '(x-2)^4 + (x-2y)^2' -s x 0 -s y 0
[['50', '-4'], ['-4', '8']]

$ python3 main.py hessian '(x-2)^4 + (x-2y)^2' -s x 0 -s y 0 --pretty
⎑50  -4⎀
⎒      βŽ₯
⎣-4  8 ⎦

Determinant of Hessian matrix:

$ python3 main.py hessian '(x-2)^4 + (x-2y)^2' --det
96x^2 - 384x + 384

$ python3 main.py hessian '(x-2)^4 + (x-2y)^2' --det --pretty
    2
96β‹…x  - 384β‹…x + 384

$ python3 main.py hessian '(x-2)^4 + (x-2y)^2' -s x 0 -s y 0 --det
384

Newton's Method

One iteration from a given point to a next better point using Newton's method:

$ python3 main.py newton '(x^2-2xy+x)^2' -s x 2 -s y 2
a=(x0, y0)    H                   b=H^(-1)                c=βˆ‡f(x0, y0)    a-bc=(x1, y1)
------------  ------------------  ----------------------  --------------  ---------------
[[2], [2]]    [[-6, 0], [0, 32]]  [[-1/6, 0], [0, 1/32]]  [[-4, 16]]      [[4/3], [3/2]]

$ python3 main.py newton '(x^2-2xy+x)^2' -s x 2 -s y 2 --pretty
a=(x0, y0)    H         b=H^(-1)      c=βˆ‡f(x0, y0)    a-bc=(x1, y1)
------------  --------  ------------  --------------  ---------------
⎑2⎀           ⎑-6  0 ⎀  ⎑-1/6   0  ⎀  [-4  16]        ⎑4/3⎀
⎒ βŽ₯           ⎒      βŽ₯  ⎒          βŽ₯                  ⎒   βŽ₯
⎣2⎦           ⎣0   32⎦  ⎣ 0    1/32⎦                  ⎣3/2⎦

Broyden's Method

Custom amount of interations using Broyden's method:

$ python3 main.py broyden '(x^2-2xy+x)^2' 2 2 --pretty -s 4
╒═════╀═════════════════════╀═════════════════════════════════════════╀═══════════════════════════════════════╀════════════════════════════════════════════════╀══════════════════════╀═════════════════════╕
β”‚   i β”‚ [Xi, Yi]            β”‚ di                                      β”‚ gi                                    β”‚ Ai                                             β”‚ βˆ‡f(Xi, Yi)           β”‚ [X(i+1), Y(i+1)]    β”‚
β•žβ•β•β•β•β•β•ͺ═════════════════════β•ͺ═════════════════════════════════════════β•ͺ═══════════════════════════════════════β•ͺ════════════════════════════════════════════════β•ͺ══════════════════════β•ͺ═════════════════════║
β”‚   0 β”‚ ⎑2.0⎀               β”‚ []                                      β”‚ []                                    β”‚ ⎑ -0.166666666666667    3.93940421025525e-126⎀ β”‚ ⎑-4.0⎀               β”‚ ⎑1.33333333333333⎀  β”‚
β”‚     β”‚ ⎒   βŽ₯               β”‚                                         β”‚                                       β”‚ ⎒                                            βŽ₯ β”‚ ⎒    βŽ₯               β”‚ ⎒                βŽ₯  β”‚
β”‚     β”‚ ⎣2.0⎦               β”‚                                         β”‚                                       β”‚ ⎣3.93940421025525e-126         0.03125       ⎦ β”‚ ⎣16.0⎦               β”‚ ⎣      1.5       ⎦  β”‚
β”œβ”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€
β”‚   1 β”‚ ⎑1.33333333333333⎀  β”‚ [-0.666666666666667 -0.500000000000000] β”‚ [2.81481481481481 -11.2592592592593]  β”‚ ⎑-0.211578947368421   0.00631578947368421⎀     β”‚ ⎑-1.18518518518519⎀  β”‚ ⎑1.05263157894737⎀  β”‚
β”‚     β”‚ ⎒                βŽ₯  β”‚                                         β”‚                                       β”‚ ⎒                                        βŽ₯     β”‚ ⎒                 βŽ₯  β”‚ ⎒                βŽ₯  β”‚
β”‚     β”‚ ⎣      1.5       ⎦  β”‚                                         β”‚                                       β”‚ ⎣-0.0336842105263158  0.0359868421052632 ⎦     β”‚ ⎣4.74074074074074 ⎦  β”‚ ⎣1.28947368421053⎦  β”‚
β”œβ”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€
β”‚   2 β”‚ ⎑1.05263157894737⎀  β”‚ [-0.280701754385965 -0.210526315789474] β”‚ [0.602009795186643 -2.40803918074657] β”‚ ⎑-0.35841561423651   0.0269646957520092⎀       β”‚ ⎑-0.583175389998542⎀ β”‚ ⎑0.780711825487945⎀ β”‚
β”‚     β”‚ ⎒                βŽ₯  β”‚                                         β”‚                                       β”‚ ⎒                                      βŽ₯       β”‚ ⎒                  βŽ₯ β”‚ ⎒                 βŽ₯ β”‚
β”‚     β”‚ ⎣1.28947368421053⎦  β”‚                                         β”‚                                       β”‚ ⎣-0.143811710677382  0.0514735218140069⎦       β”‚ ⎣ 2.33270155999417 ⎦ β”‚ ⎣1.08553386911596 ⎦ β”‚
β”œβ”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€
β”‚   3 β”‚ ⎑0.780711825487945⎀ β”‚ [-0.271919753459424 -0.203939815094568] β”‚ [0.345249185044140 -1.38099674017656] β”‚ ⎑-0.564066771922377  0.0558843898015843⎀       β”‚ ⎑-0.237926204954403⎀ β”‚ ⎑0.593320115976839⎀ β”‚
β”‚     β”‚ ⎒                 βŽ₯ β”‚                                         β”‚                                       β”‚ ⎒                                      βŽ₯       β”‚ ⎒                  βŽ₯ β”‚ ⎒                 βŽ₯ β”‚
β”‚     β”‚ ⎣1.08553386911596 ⎦ β”‚                                         β”‚                                       β”‚ ⎣-0.298050078941783  0.0731632923511883⎦       β”‚ ⎣ 0.95170481981761 ⎦ β”‚ ⎣0.944990086982629⎦ β”‚
β•˜β•β•β•β•β•β•§β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•§β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•§β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•§β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•§β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•§β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•›

$ python3 main.py broyden '(x^2-2xy+x)^2' 2 2 --rational
╒═════╀═══════════════╀════════════════╀═════════════════════════════════════════╀════════════════════════════════╀═════════════════════════╀═════════════════════╕
β”‚   i β”‚ [Xi, Yi]      β”‚ di             β”‚ gi                                      β”‚ Ai                             β”‚ βˆ‡f(Xi, Yi)              β”‚ [X(i+1), Y(i+1)]    β”‚
β•žβ•β•β•β•β•β•ͺ═══════════════β•ͺ════════════════β•ͺ═════════════════════════════════════════β•ͺ════════════════════════════════β•ͺ═════════════════════════β•ͺ═════════════════════║
β”‚   0 β”‚ [2 2]         β”‚ []             β”‚ []                                      β”‚ [[-1/6 0]                      β”‚ [-4 16]                 β”‚ [4/3 3/2]           β”‚
β”‚     β”‚               β”‚                β”‚                                         β”‚  [0 1/32]]                     β”‚                         β”‚                     β”‚
β”œβ”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€
β”‚   1 β”‚ [4/3 3/2]     β”‚ [-2/3 -1/2]    β”‚ [76/27 -304/27]                         β”‚ [[-201/950 3/475]              β”‚ [-32/27 128/27]         β”‚ [20/19 49/38]       β”‚
β”‚     β”‚               β”‚                β”‚                                         β”‚  [-16/475 547/15200]]          β”‚                         β”‚                     β”‚
β”œβ”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€
β”‚   2 β”‚ [20/19 49/38] β”‚ [-16/57 -4/19] β”‚ [111488/185193 -24080285991/9999956057] β”‚ [[-15609/43550 18789/696800]   β”‚ [-4000/6859 16000/6859] β”‚ [680/871 1891/1742] β”‚
β”‚     β”‚               β”‚                β”‚                                         β”‚  [-6263/43550 143467/2787200]] β”‚                         β”‚                     β”‚
β•˜β•β•β•β•β•β•§β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•§β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•§β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•§β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•§β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•§β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•›

There is also the possibility to pass the interim results in case the original function is not known. In order to have two iteration, two gradients must be passed in the right order. The hessian inverse matrix is interpreted as a $2*2$ matrix going row-wise from left to right.

$ python3 main.py broydeninter --startingpoint 3.3 0.4 --gradient 1 0 --gradient 0 1 --hessian_inv 5 0 0 2 -p -r
╒═════╀════════════╀════════╀════════╀════════╀══════════════╀════════════════════╕
β”‚   i β”‚ [Xi, Yi]   β”‚ di     β”‚ gi     β”‚ Ai     β”‚ βˆ‡f(Xi, Yi)   β”‚ [X(i+1), Y(i+1)]   β”‚
β•žβ•β•β•β•β•β•ͺ════════════β•ͺ════════β•ͺ════════β•ͺ════════β•ͺ══════════════β•ͺ════════════════════║
β”‚   0 β”‚ ⎑33 ⎀      β”‚ []     β”‚ []     β”‚ ⎑5  0⎀ β”‚ ⎑1⎀          β”‚ ⎑-17 ⎀             β”‚
β”‚     β”‚ βŽ’β”€β”€ βŽ₯      β”‚        β”‚        β”‚ ⎒    βŽ₯ β”‚ ⎒ βŽ₯          β”‚ βŽ’β”€β”€β”€β”€βŽ₯             β”‚
β”‚     β”‚ ⎒10 βŽ₯      β”‚        β”‚        β”‚ ⎣0  2⎦ β”‚ ⎣0⎦          β”‚ ⎒ 10 βŽ₯             β”‚
β”‚     β”‚ ⎒   βŽ₯      β”‚        β”‚        β”‚        β”‚              β”‚ ⎒    βŽ₯             β”‚
β”‚     β”‚ ⎣2/5⎦      β”‚        β”‚        β”‚        β”‚              β”‚ ⎣2/5 ⎦             β”‚
β”œβ”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€
β”‚   1 β”‚ ⎑-17 ⎀     β”‚ [-5 0] β”‚ [-1 1] β”‚ ⎑5  0⎀ β”‚ ⎑0⎀          β”‚ ⎑-17 ⎀             β”‚
β”‚     β”‚ βŽ’β”€β”€β”€β”€βŽ₯     β”‚        β”‚        β”‚ ⎒    βŽ₯ β”‚ ⎒ βŽ₯          β”‚ βŽ’β”€β”€β”€β”€βŽ₯             β”‚
β”‚     β”‚ ⎒ 10 βŽ₯     β”‚        β”‚        β”‚ ⎣2  2⎦ β”‚ ⎣1⎦          β”‚ ⎒ 10 βŽ₯             β”‚
β”‚     β”‚ ⎒    βŽ₯     β”‚        β”‚        β”‚        β”‚              β”‚ ⎒    βŽ₯             β”‚
β”‚     β”‚ ⎣2/5 ⎦     β”‚        β”‚        β”‚        β”‚              β”‚ ⎣-8/5⎦             β”‚
β•˜β•β•β•β•β•β•§β•β•β•β•β•β•β•β•β•β•β•β•β•§β•β•β•β•β•β•β•β•β•§β•β•β•β•β•β•β•β•β•§β•β•β•β•β•β•β•β•β•§β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•§β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•›

Aitken

Optimize a series of at least 3 values using Aitken sequence:

$ python3 main.py aitken 100 10 2 0.5
  i     Xi  Aitken Yi
---  -----  -------------------
  0  100    -
  1   10    -
  2    2    1.2195121951219512
  3    0.5  0.15384615384615385

Graph and Network Optimization

Graph Visualization

Plotting a graph based on an adjacency matrix. When no edge is shared, enter 0 weight. See example below.

$ cat adjmat.csv
Attribute,Brugg,Basel,Bern,Chur,Geneva
Brugg,0,58,101,149,250
Basel,58,0,93,198,243
Bern,101,93,0,237,156
Chur,149,198,237,0,386
Geneva,250,243,156,386,0

$ python3 main.py drawgraph "./adjmat.csv"
result saved as: ./graph.html

graph

Or as directed graph.

$ cat adjmat2.csv
Attribute,a,b,c,d,e,f,g
a,0,1,0,1,0,0,0
b,0,0,1,0,0,1,0
c,0,0,0,0,1,0,0
d,0,1,0,0,0,0,0
e,0,0,0,0,0,0,1
f,1,0,0,1,0,0,0
g,0,0,1,0,0,0,0

$ python3 main.py drawgraph "./adjmat2.csv" --directed
result saved as: ./graph.html

directed

Minimum Spanning Tree (MST)

Return minimum spanning tree.

$ cat adjmat.csv
Attribute,A,B,C,D,E,F
A,0,200,580,0,250,1200
B,200,0,500,820,0,0
C,580,500,0,230,150,1100
D,0,820,230,0,380,0
E,250,0,150,380,0,0
F,1200,0,1100,0,0,0

$ python3 main.py mst adjmat.csv
From    To      Weight
------  ----  --------
A       B          200
A       E          250
C       D          230
C       E          150
C       F         1100
----    SUM:      1930

Shortest Path using Dijkstra

Get the shortest paths from a given node to all other nodes.

$ python3 main.py dijkstra adjmat.csv A
Shortest Path      Total Weight
---------------  --------------
['A']                         0
['A', 'B']                  200
['A', 'E', 'C']             400
['A', 'E']                  250
['A', 'F']                 1200
['A', 'E', 'D']             630

Traverse

Traverse a graph either breadth-first or dept-first starting from node A.

$ python3 main.py traverse adjmat.csv A bf
  Step  From    To
------  ------  ----
     0  A       B
     1  A       C
     2  A       E
     3  A       F
     4  B       D
Encounter Order: A β†’ B β†’ C β†’ E β†’ F β†’ D

$ python3 main.py traverse adjmat.csv A df
...
Encounter Order: E β†’ D β†’ F β†’ C β†’ B β†’ A

Floyd-Warshall

Shortest distances between all nodes using Floyd-Warshall. Right-hand side shows changes.

$ python3 main.py floydwarshall adjmat.csv
      A    B    C    D    E    F    |       A     B     C     D     E     F
--  ---  ---  ---  ---  ---  ---  -----  ----  ----  ----  ----  ----  ----
A     0   60  160  180  520  480    |       0     0     0   180  -180  -120
B    60    0  160  140  480  440    |       0     0   -60     0   480  -360
C   160  160    0   20  360  320    |       0   -60     0     0  -540  -180
D   180  140   20    0  340  300    |     180     0     0     0  -460     0
E   520  480  360  340    0   40    |    -180   480  -540  -460     0     0
F   480  440  320  300   40    0    |    -120  -360  -180     0     0     0

# constrain intermediate nodes to A and D only:
$ python3 main.py floydwarshall adjmat.csv --onlyuse "A, D"
      A    B    C    D    E    F    |      A     B     C    D    E     F
--  ---  ---  ---  ---  ---  ---  -----  ---  ----  ----  ---  ---  ----
A     0   60  160  inf  700  600    |      0     0     0  inf    0     0
B    60    0  160  140  760  440    |      0     0   -60    0  760  -360
C   160  160    0   20  820  320    |      0   -60     0    0  -80  -180
D   inf  140   20    0  800  300    |    inf     0     0    0    0     0
E   700  760  820  800    0   40    |      0   760   -80    0    0     0
F   600  440  320  300   40    0    |      0  -360  -180    0    0     0

Maximum Flow

Maximum flow of a directed graph provided an edge list (cost is irrelevant here).

$ cat edges.csv
from,to,weight,cost
s,2,10,0
s,3,5,0
s,4,15,0
2,5,9,0
2,6,15,0
2,3,4,0
3,4,4,0
3,6,8,0
4,7,30,0
5,6,15,0
5,t,10,0
6,7,15,0
6,t,10,0
7,3,6,0
7,t,10,0

$ python3 main.py maxflow edges.csv s t
max flow: 28
node    routed values
------  --------------------------
s       {'2': 10, '3': 5, '4': 13}
2       {'5': 9, '6': 1, '3': 0}
3       {'4': 0, '6': 8}
4       {'7': 13}
5       {'6': 0, 't': 9}
6       {'7': 0, 't': 9}
7       {'3': 3, 't': 10}
t       {}

Minimum S-T-Cut

Find a minimum s-t-cut based on edge list or adjacency.

$ python3 main.py mincut edges.csv s t
cut value: 28
  #  partitions
---  -----------------------------------------------
  0  ['a1', 'a2', 'a4', 'a5', 'b1', 'b3', 'b4', 's']
  1  ['a3', 'b2', 'b5', 't']

cut edges: [('b3', 't'), ('b4', 't'), ('s', 'a3'), ('b1', 't')]
cut value: 4.0

$ python3 main.py mincut adjmat.csv s t -adj
  #  partitions
---  -----------------------------------------------
  0  ['a1', 'a2', 'a4', 'a5', 'b1', 'b3', 'b4', 's']
  1  ['a3', 'b2', 'b5', 't']

cut edges: [('b3', 't'), ('b4', 't'), ('s', 'a3'), ('b1', 't')]
cut value: 4.0

Maximum Matching

Find a maximum matching.

$ python3 main.py maxmatch adjmat.csv
matches
---------
3 - 4
7 - t
s - 2
5 - 6
maximum matches = 4

Min Cost Max Flow

Returns a maximum s-t flow of minimum cost based on provided edge list with weights and costs.

$ python3 main.py mincostmaxflow edges.csv s t
min cost: 13
max flow: 3
node    routed values
------  ----------------
s       {'b': 0, 'c': 3}
b       {'d': 1}
c       {'b': 1, 'e': 2}
d       {'t': 1}
e       {'t': 2}
t       {}

About

A tiny command line interface tool for solving (non) integer & network optimization problems 🎯

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages