Created
January 17, 2017 18:16
-
-
Save dzolnai/e8c082d3477c765ee14e1db614e39a67 to your computer and use it in GitHub Desktop.
Simplex solver article - gist 1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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