-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsimplex.h
More file actions
21 lines (18 loc) · 1.21 KB
/
simplex.h
File metadata and controls
21 lines (18 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
struct P {
float MaxCoef; // Coef max, pour determiner colonne
float Coef_S; // Coef s/r, pour determiner ligne
float MinCoef; //
int numC; // Num de lq colonne selectionnee
int numL; // Num ligne selectionnee
int *pivot; // Pour noter les pivots
}par;
void Normal( float **tab, int C);
void Reduire( float **tab, int L, int C);
int ChoixL( float **tab, int l, int c);
int ChoixC( float **tab, int l, int c);
void AfficheTab( float **tab, int l, int c);
void Conclue( float **tab, int l, int c);
void showHelp( void );