Skip to content

Instantly share code, notes, and snippets.

@dzolnai
Created January 17, 2017 18:16
Show Gist options
  • Save dzolnai/e8c082d3477c765ee14e1db614e39a67 to your computer and use it in GitHub Desktop.
Save dzolnai/e8c082d3477c765ee14e1db614e39a67 to your computer and use it in GitHub Desktop.
Simplex solver article - gist 1
typedef struct __attribute__((packed)) Tableau {
int rows, columns;
float matrix[MAX_ROWS * MAX_COLS];
bool dual_program;
} Tableau_t;
Tableau_t *tableau;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment