Accueil > > > SIMPLEX PRIMAL
SIMPLEX PRIMAL
Information sur la source
Description
ce programme pemet de résoudre le probleme du simplex primal en utilisant la méthode itérative. La méthode simplex est utilise a resoudre un systeme lineaire qui comporte un nombre de variable plus important que le nombre des equations. Mais avec une information de plus, c'est ce qu'on appel la fonction economique. Les systemes qui posede un nombre de variable plus grand que le nombre des equation admet plusieur solution. La fonction economique nous aide a choisir la bonne solution (Celle qui verifie le critere de maximisation ou de minimisation). Cette methode est tres utilise en economie. Mais aussi en Electrotheque et en mecanique.
Source
- /*******************************/
- /*El Antri Abdellah */
- /* UDL */
- /* Departement de mathématique */
- /* sous licence GNU */
- /*******************************/
-
-
-
-
- /* Comiler et executer sous unix system V */
-
- #include<values.h>
-
- typedef struct { int l,c; float tab[10][10];char nom[15];} matrice;
- char car;
- matrice A,b, CB, CN, XBB, XNB, N, B, I, NB, J;
-
- int probleme_max = 1;
-
- float val_abs(float value)
- {
- return ( value>0 ? value : -value);
- }
-
- void produit (matrice m12, matrice m2, matrice *m3);
- void transpose(matrice m1, matrice *m2);
- void inverse(matrice m1, matrice *m2);
- void comatrice(matrice m1, matrice *m2);
- void lire(matrice *m);
- void afficher(matrice m);
- float determinant(matrice m);
- void extraire (matrice m1, int l, int c, matrice *m2);
- void entrer_donnee();
- void initialisation();
- void extraire_col(matrice m1, int c, matrice *m2);
- void simplex();
-
- /******************* Programmes principales ********************/
-
- int main()
- {
- int i,j;
- clrscr();
-
- printf("\n Specifie le type du problème:");
- scanf("%d",&probleme_max );
- printf("Remplissage des matrices :\n");
- initialisation();
- simplex();
- scanf("%c",car);
- return 1;
- }
-
- /******************** fonctions et procedures *********************/
- void initialisation()
- {
- int i, j;
-
- printf("\n Remplir la matrice A:");
- strcpy(A.nom,"A");
- lire(&A);afficher(A);
- printf("\n Remplir la matrice b:");
- strcpy(b.nom,"b");
- lire(&b);
- printf("\n Remplir la matrice CN:");
- strcpy(CN.nom,"CN");
- lire(&CN);
- printf("\n Remplir la matrice I:");
- strcpy(I.nom,"I");
- lire(&I);
- printf("\n Remplir la matrice NB:");
- strcpy(NB.nom,"NB");
- lire(&NB);
-
- /* Calcule de CB */
- strcpy(CB.nom,"CB");
- for(i=0; i < I.c; i++)
- CB.tab[1][i] = 0;
- CB.l = 1; CB.c = I.c;
- afficher(CB);
- scanf("%c",car);
-
- /* Caclcul de la matrice N */
- strcpy(N.nom,"N");
- for(i=0; i < A.l; i++)
- for(j=0; j < NB.c; j++)
- N.tab[i][j] = A.tab[i][j];
- N.l = A.l; N.c = NB.c;
- afficher(N);
- scanf("%c",car);
- /* Caclcul de la matrice B */
- strcpy(B.nom,"B");
- for(i= 0; i < A.l ; i++)
- for(j=NB.c; j < A.c; j++)
- B.tab[i][j-NB.c] = A.tab[i][j];
- B.l = A.l; B.c = I.c;
- afficher(B);
- scanf("%c",car);
-
- /* Caclcul de la matrice XBB */
- strcpy(XBB.nom,"XBB");
- for(i=0; i < I.c; i++)
- XBB.tab[0][i] = b.tab[i][0];
- XBB.l = 1; XBB.c = b.l;
- afficher(XBB);
- scanf("%c",car);
-
- /* Caclcul de la matrice XNB */
- strcpy(XNB.nom,"XNB");
- for(i=0; i < NB.c; i++)
- XNB.tab[0][i] = 0;
- XNB.l = 1; XNB.c = NB.c;
- afficher(XNB);
- scanf("%c",car);
-
- /* Calcule de la matrice J*/
- J.l = 1; J.c = NB.c;
- for(i=0; i < NB.c; i++)
- J.tab[0][i] = NB.tab[0][i];
- strcpy(J.nom,"J");
- afficher(J);
- scanf("%c",car);
- }
-
-
- void lire (matrice *m)
- {
- int i,j;
- /* Lecture ligne par ligne */
- printf("\nEntrez le nbr de ligne:");
- scanf("%d",&m->l);
- printf("\nEntrez le nbr de colonne:");
- scanf("%d",&m->c);
- for(i=0; i<m->l; i++)
- for(j=0; j<m->c; j++)
- {
- printf("\nEntrez l'element [%d][%d]:", i,j);
- scanf("%f",&m->tab[i][j]);
- }
- }
-
- void simplex()
- {
- int i,j, k;
- float z[10], max;
- float theta[10],t;
- int entrant[10], i_e;
- int sortant[10];
- int fin;
- matrice T1, T2, T3, IB;
- matrice P;
- int sol[10], i_s;
-
- i_s = 0;
- for(i=0; i < 10; i++) sol[i] = -1;
- do
- {
- fin = 0; i_e = 0; max = 0; k=0;
- for(j = 0; j < I.c; j++)
- {
- theta[j] = MAXINT;
- }
- for(i = 0; i < NB.c; i++)
- {
- extraire_col(A,NB.tab[0][i]-1,&T1);
- inverse(B, &IB) ;
- produit(CB,IB,&T2);
- produit(T2,T1,&T3);
- z[i] = T3.tab[0][0] - CN.tab[0][i];
- printf("\n z%d - c%d = %.2f",i+1,i+1,z[i]);
- scanf("%c",car);
- /* ProblŠme de max*/
- if(probleme_max)
- {
- if(z[i] < 0)
- {
- J.tab[0][i] = i;
- fin =1;
- }
- else J.tab[0][i] = -1;
- }
- else /* Probleme de min */
- {
- if(z[i] > 0)
- {
- J.tab[0][i] = i;
- fin =1;
- }
- else J.tab[0][i] = -1;
- }
- }
- if(fin == 1)
- {
- for(j = 0; j < NB.c; j++)
- if(J.tab[0][j] >= 0)
- {
- extraire_col(A, J.tab[0][j], &T1);
- produit(IB,T1,&T2);
- sprintf(T2.nom,"inv(B)*a%d",j+1);
- afficher(T2);
- scanf("%c",car);
- i=0;
- while(i < B.l)
- {
- if(T2.tab[0][i] >= 0)break;
- i = i+1;
- }
- if(i == B.l)
- {
- printf("\n Pas de solution (Sol imborn‚e).");
- scanf("%c",car);
- exit(1);
- }
- }
-
- for(i = 0; i < NB.c; i++)
- if(J.tab[0][i] >= 0 )
- {
- if(val_abs(z[i]) > max)
- {
- max = val_abs(z[i]);
- }
- }
- produit(IB,b, &T1);
- for(i = 0; i < NB.c; i++)
- {
- if(J.tab[0][i] >= 0 )
- {
- if(val_abs(z[i]) == max)
- {
- entrant[i_e] = i;
- extraire_col(A, i, &T2);
- produit(IB,T2,&P);
- for(j = 0; j < I.c; j++)
- if(P.tab[j][0] > 0)
- {
- t = T1.tab[j][0]/P.tab[j][0];
- printf("\n Theta%d = %.2f ",j+1,t);
- if(t < theta[i_e] )
- {
- theta[i_e] = t ;
- sortant[i_e] = j ;
- }
- }
- i_e = i_e + 1;
- }
- }
- }
- t=theta[0];
- for(i = 0; i<i_e; i++)
- if(theta[i] >= t)
- {
- k = i;
- t = theta[i];
- }
- printf("\n Sortant = X%.0f Entrant = X%.0f ",I.tab[0][sortant[k]], NB.tab[0][entrant[k]]);
- sol[entrant[k]] = sortant[k]; i_s = i_s + 1;
- scanf("%c",car);
- for(i = 0; i < B.l ; i++)
- {
- B.tab[i][sortant[k]] = N.tab[i][entrant[k]];
- }
- afficher(B) ;scanf("%c",car);
- inverse(B, &IB) ;afficher(IB);
- produit(IB,b,&XBB);afficher(XBB);
- i = I.tab[0][sortant[k]];
- I.tab[0][sortant[k]] = NB.tab[0][entrant[k]];
- NB.tab[0][entrant[k]] = i;
- i = CB.tab[0][sortant[k]];
- CB.tab[0][sortant[k]] = CN.tab[0][entrant[k]];
- CN.tab[0][entrant[k]] = i;
- afficher(I);afficher(NB); afficher(CB); afficher(CN);
- }else {
- printf("\nL'Optimum est atteint.\n");
- for(i = 0; i< NB.c; i++)
- if(sol[i] == -1)printf("\n X%d = 0",i+1);
- else printf("\n X%d = %.2f",i+1,XBB.tab[sol[i]][0]);
- produit(CB,XBB,&T1);
- printf(" \n ZB = %f", T1.tab[0][0]);
- }
-
- } while(fin == 1);
-
- }
-
-
- void extraire_col(matrice m1, int c, matrice *m2)
- {
- int i;
-
- m2->l = m1.l; m2->c = 1;
- for(i = 0; i < m1.l; i++)
- {
- m2->tab[i][0] = m1.tab[i][c];
- }
- }
-
- void afficher(matrice m)
- {
- int i,j;
-
- printf("\n La matrice %s:",m.nom);
- for(i=0; i<m.l; i++)
- {
- printf("\n|");
- for(j=0; j<m.c; j++)
- printf(" %.2f ",m.tab[i][j]);
- printf("|");
- }
- }
-
- void produit(matrice m1, matrice m2, matrice *m3)
- {
- int i,j,k;
-
- if(m1.c != m2.l)
- {
- printf("\nErreur fatal: Produit de deux matrice incompatible");
- scanf("%c",car);
- exit(1);
- }
-
- for(i=0; i<m2.l; i++)
- for(j=0; j<m2.c; j++)
- m3->tab[i][j] = 0;
-
- m3->l = m1.l; m3->c = m2.c;
-
- for(i=0; i<m1.l; i++)
- for(k=0; k<m2.l; k++)
- for(j=0; j<m1.c; j++)
- m3->tab[i][k] = m3->tab[i][k] + m1.tab[i][j]*m2.tab[j][k];
- }
-
- void transpose(matrice m1, matrice *m2)
- {
- int i,j;
-
- m2->l = m1.c;
- m2->c = m1.l;
- for(i=0; i<m1.l; i++)
- for(j=0; j<m1.c; j++)
- m2->tab[j][i] = m1.tab[i][j];
- }
-
- void extraire (matrice m1, int l, int c, matrice *m2)
- {
- int i,j;
-
- for(i = l; i<m1.l; i++)
- for(j=0; j<m1.c; j++)
- m1.tab[i][j] = m1.tab[i+1][j];
- for(j = c; j<m1.c; j++)
- for(i = 0; i<m1.l; i++)
- m1.tab[i][j] = m1.tab[i][j+1];
- m2->l = m1.l -1;
- m2->c = m1.c -1;
- for(i=0; i<m2->l; i++)
- for(j=0; j<m2->l; j++)
- m2->tab[i][j] = m1.tab[i][j];
- }
-
- void comatrice(matrice m1, matrice *m2)
- {
- int i,j,p;
- matrice m3;
-
- m2->l = m1.l;
- m2->c = m1.c;
-
- for(i=0; i < m1.l; i++)
- for(j=0; j < m1.c; j++)
- {
- extraire(m1,i,j, &m3);
- if (((i+j) % 2) == 0) p = 1; else p = -1;
- m2->tab[i][j] = p*determinant(m3);
- }
- }
-
- float determinant(matrice m)
- {
- float d=0;
- int k = 1;
- int i,j;
- matrice m2;
-
- if( m.l != m.c)
- {
- printf("\n Erreur fatal: Determinant d'une matrice non carre.\n");
- scanf("%c",car);
- exit(1);
- }
- else
- {
- if( m.l == 1){ d = m.tab[0][0];}
- else
- for(j = 0; j<m.c; j++)
- {
- extraire(m,0,j,&m2);
- d = d + k*m.tab[0][j]*determinant(m2);
- k = -k;
- }
- }
- return d;
- }
-
- void inverse(matrice m1, matrice *m2)
- {
- float d;
- int i,j;
- matrice m,mm;
-
- sprintf(m2->nom,"inv(%s)",m1.nom);
- m2->l = m1.l; m2->c = m1.c;
- d = determinant(m1);
- comatrice(m1, &mm);
- transpose(mm, &m);
- for(i=0; i < m.l; i++)
- {
- for(j=0; j < m.c; j++)
- {
- m2->tab[i][j] = m.tab[i][j]/d;
- }
- }
- }
-
-
/*******************************/
/*El Antri Abdellah */
/* UDL */
/* Departement de mathématique */
/* sous licence GNU */
/*******************************/
/* Comiler et executer sous unix system V */
#include<values.h>
typedef struct { int l,c; float tab[10][10];char nom[15];} matrice;
char car;
matrice A,b, CB, CN, XBB, XNB, N, B, I, NB, J;
int probleme_max = 1;
float val_abs(float value)
{
return ( value>0 ? value : -value);
}
void produit (matrice m12, matrice m2, matrice *m3);
void transpose(matrice m1, matrice *m2);
void inverse(matrice m1, matrice *m2);
void comatrice(matrice m1, matrice *m2);
void lire(matrice *m);
void afficher(matrice m);
float determinant(matrice m);
void extraire (matrice m1, int l, int c, matrice *m2);
void entrer_donnee();
void initialisation();
void extraire_col(matrice m1, int c, matrice *m2);
void simplex();
/******************* Programmes principales ********************/
int main()
{
int i,j;
clrscr();
printf("\n Specifie le type du problème:");
scanf("%d",&probleme_max );
printf("Remplissage des matrices :\n");
initialisation();
simplex();
scanf("%c",car);
return 1;
}
/******************** fonctions et procedures *********************/
void initialisation()
{
int i, j;
printf("\n Remplir la matrice A:");
strcpy(A.nom,"A");
lire(&A);afficher(A);
printf("\n Remplir la matrice b:");
strcpy(b.nom,"b");
lire(&b);
printf("\n Remplir la matrice CN:");
strcpy(CN.nom,"CN");
lire(&CN);
printf("\n Remplir la matrice I:");
strcpy(I.nom,"I");
lire(&I);
printf("\n Remplir la matrice NB:");
strcpy(NB.nom,"NB");
lire(&NB);
/* Calcule de CB */
strcpy(CB.nom,"CB");
for(i=0; i < I.c; i++)
CB.tab[1][i] = 0;
CB.l = 1; CB.c = I.c;
afficher(CB);
scanf("%c",car);
/* Caclcul de la matrice N */
strcpy(N.nom,"N");
for(i=0; i < A.l; i++)
for(j=0; j < NB.c; j++)
N.tab[i][j] = A.tab[i][j];
N.l = A.l; N.c = NB.c;
afficher(N);
scanf("%c",car);
/* Caclcul de la matrice B */
strcpy(B.nom,"B");
for(i= 0; i < A.l ; i++)
for(j=NB.c; j < A.c; j++)
B.tab[i][j-NB.c] = A.tab[i][j];
B.l = A.l; B.c = I.c;
afficher(B);
scanf("%c",car);
/* Caclcul de la matrice XBB */
strcpy(XBB.nom,"XBB");
for(i=0; i < I.c; i++)
XBB.tab[0][i] = b.tab[i][0];
XBB.l = 1; XBB.c = b.l;
afficher(XBB);
scanf("%c",car);
/* Caclcul de la matrice XNB */
strcpy(XNB.nom,"XNB");
for(i=0; i < NB.c; i++)
XNB.tab[0][i] = 0;
XNB.l = 1; XNB.c = NB.c;
afficher(XNB);
scanf("%c",car);
/* Calcule de la matrice J*/
J.l = 1; J.c = NB.c;
for(i=0; i < NB.c; i++)
J.tab[0][i] = NB.tab[0][i];
strcpy(J.nom,"J");
afficher(J);
scanf("%c",car);
}
void lire (matrice *m)
{
int i,j;
/* Lecture ligne par ligne */
printf("\nEntrez le nbr de ligne:");
scanf("%d",&m->l);
printf("\nEntrez le nbr de colonne:");
scanf("%d",&m->c);
for(i=0; i<m->l; i++)
for(j=0; j<m->c; j++)
{
printf("\nEntrez l'element [%d][%d]:", i,j);
scanf("%f",&m->tab[i][j]);
}
}
void simplex()
{
int i,j, k;
float z[10], max;
float theta[10],t;
int entrant[10], i_e;
int sortant[10];
int fin;
matrice T1, T2, T3, IB;
matrice P;
int sol[10], i_s;
i_s = 0;
for(i=0; i < 10; i++) sol[i] = -1;
do
{
fin = 0; i_e = 0; max = 0; k=0;
for(j = 0; j < I.c; j++)
{
theta[j] = MAXINT;
}
for(i = 0; i < NB.c; i++)
{
extraire_col(A,NB.tab[0][i]-1,&T1);
inverse(B, &IB) ;
produit(CB,IB,&T2);
produit(T2,T1,&T3);
z[i] = T3.tab[0][0] - CN.tab[0][i];
printf("\n z%d - c%d = %.2f",i+1,i+1,z[i]);
scanf("%c",car);
/* ProblŠme de max*/
if(probleme_max)
{
if(z[i] < 0)
{
J.tab[0][i] = i;
fin =1;
}
else J.tab[0][i] = -1;
}
else /* Probleme de min */
{
if(z[i] > 0)
{
J.tab[0][i] = i;
fin =1;
}
else J.tab[0][i] = -1;
}
}
if(fin == 1)
{
for(j = 0; j < NB.c; j++)
if(J.tab[0][j] >= 0)
{
extraire_col(A, J.tab[0][j], &T1);
produit(IB,T1,&T2);
sprintf(T2.nom,"inv(B)*a%d",j+1);
afficher(T2);
scanf("%c",car);
i=0;
while(i < B.l)
{
if(T2.tab[0][i] >= 0)break;
i = i+1;
}
if(i == B.l)
{
printf("\n Pas de solution (Sol imborn‚e).");
scanf("%c",car);
exit(1);
}
}
for(i = 0; i < NB.c; i++)
if(J.tab[0][i] >= 0 )
{
if(val_abs(z[i]) > max)
{
max = val_abs(z[i]);
}
}
produit(IB,b, &T1);
for(i = 0; i < NB.c; i++)
{
if(J.tab[0][i] >= 0 )
{
if(val_abs(z[i]) == max)
{
entrant[i_e] = i;
extraire_col(A, i, &T2);
produit(IB,T2,&P);
for(j = 0; j < I.c; j++)
if(P.tab[j][0] > 0)
{
t = T1.tab[j][0]/P.tab[j][0];
printf("\n Theta%d = %.2f ",j+1,t);
if(t < theta[i_e] )
{
theta[i_e] = t ;
sortant[i_e] = j ;
}
}
i_e = i_e + 1;
}
}
}
t=theta[0];
for(i = 0; i<i_e; i++)
if(theta[i] >= t)
{
k = i;
t = theta[i];
}
printf("\n Sortant = X%.0f Entrant = X%.0f ",I.tab[0][sortant[k]], NB.tab[0][entrant[k]]);
sol[entrant[k]] = sortant[k]; i_s = i_s + 1;
scanf("%c",car);
for(i = 0; i < B.l ; i++)
{
B.tab[i][sortant[k]] = N.tab[i][entrant[k]];
}
afficher(B) ;scanf("%c",car);
inverse(B, &IB) ;afficher(IB);
produit(IB,b,&XBB);afficher(XBB);
i = I.tab[0][sortant[k]];
I.tab[0][sortant[k]] = NB.tab[0][entrant[k]];
NB.tab[0][entrant[k]] = i;
i = CB.tab[0][sortant[k]];
CB.tab[0][sortant[k]] = CN.tab[0][entrant[k]];
CN.tab[0][entrant[k]] = i;
afficher(I);afficher(NB); afficher(CB); afficher(CN);
}else {
printf("\nL'Optimum est atteint.\n");
for(i = 0; i< NB.c; i++)
if(sol[i] == -1)printf("\n X%d = 0",i+1);
else printf("\n X%d = %.2f",i+1,XBB.tab[sol[i]][0]);
produit(CB,XBB,&T1);
printf(" \n ZB = %f", T1.tab[0][0]);
}
} while(fin == 1);
}
void extraire_col(matrice m1, int c, matrice *m2)
{
int i;
m2->l = m1.l; m2->c = 1;
for(i = 0; i < m1.l; i++)
{
m2->tab[i][0] = m1.tab[i][c];
}
}
void afficher(matrice m)
{
int i,j;
printf("\n La matrice %s:",m.nom);
for(i=0; i<m.l; i++)
{
printf("\n|");
for(j=0; j<m.c; j++)
printf(" %.2f ",m.tab[i][j]);
printf("|");
}
}
void produit(matrice m1, matrice m2, matrice *m3)
{
int i,j,k;
if(m1.c != m2.l)
{
printf("\nErreur fatal: Produit de deux matrice incompatible");
scanf("%c",car);
exit(1);
}
for(i=0; i<m2.l; i++)
for(j=0; j<m2.c; j++)
m3->tab[i][j] = 0;
m3->l = m1.l; m3->c = m2.c;
for(i=0; i<m1.l; i++)
for(k=0; k<m2.l; k++)
for(j=0; j<m1.c; j++)
m3->tab[i][k] = m3->tab[i][k] + m1.tab[i][j]*m2.tab[j][k];
}
void transpose(matrice m1, matrice *m2)
{
int i,j;
m2->l = m1.c;
m2->c = m1.l;
for(i=0; i<m1.l; i++)
for(j=0; j<m1.c; j++)
m2->tab[j][i] = m1.tab[i][j];
}
void extraire (matrice m1, int l, int c, matrice *m2)
{
int i,j;
for(i = l; i<m1.l; i++)
for(j=0; j<m1.c; j++)
m1.tab[i][j] = m1.tab[i+1][j];
for(j = c; j<m1.c; j++)
for(i = 0; i<m1.l; i++)
m1.tab[i][j] = m1.tab[i][j+1];
m2->l = m1.l -1;
m2->c = m1.c -1;
for(i=0; i<m2->l; i++)
for(j=0; j<m2->l; j++)
m2->tab[i][j] = m1.tab[i][j];
}
void comatrice(matrice m1, matrice *m2)
{
int i,j,p;
matrice m3;
m2->l = m1.l;
m2->c = m1.c;
for(i=0; i < m1.l; i++)
for(j=0; j < m1.c; j++)
{
extraire(m1,i,j, &m3);
if (((i+j) % 2) == 0) p = 1; else p = -1;
m2->tab[i][j] = p*determinant(m3);
}
}
float determinant(matrice m)
{
float d=0;
int k = 1;
int i,j;
matrice m2;
if( m.l != m.c)
{
printf("\n Erreur fatal: Determinant d'une matrice non carre.\n");
scanf("%c",car);
exit(1);
}
else
{
if( m.l == 1){ d = m.tab[0][0];}
else
for(j = 0; j<m.c; j++)
{
extraire(m,0,j,&m2);
d = d + k*m.tab[0][j]*determinant(m2);
k = -k;
}
}
return d;
}
void inverse(matrice m1, matrice *m2)
{
float d;
int i,j;
matrice m,mm;
sprintf(m2->nom,"inv(%s)",m1.nom);
m2->l = m1.l; m2->c = m1.c;
d = determinant(m1);
comatrice(m1, &mm);
transpose(mm, &m);
for(i=0; i < m.l; i++)
{
for(j=0; j < m.c; j++)
{
m2->tab[i][j] = m.tab[i][j]/d;
}
}
}
Conclusion
Ce programme permet de resoudre les problemes qui ne comporte pas de variables artificielles. Avant de le lancer il faut aussi Standardise votre systeme (C-a-d il faut le rendre sous forme standard qui ne comporte que des egalitées).
Sources du même auteur
Sources de la même categorie
Commentaires et avis
Discussions en rapport avec ce code source dans le forum
simplex [ par bruno_bruno25 ]
Pouvez vous m'aidez quand à la réalisation d'un programme sur le simplex en vba? Quels sont les grandes lignes à suivre et les raisonn
programmer le simplex avec des listes chainées [ par leFeu ]
En fait, je dois programmer le SIMPLEX, je l'ai déja fait avec des tabeaux pour pouvoir mémoriser les bases a chaque itération.ma question : est il vr
|
Derniers Blogs
[MIX10] KEYNOTE DEUXIèME JOURNéE - INTERNET EXPLORER 9, HTML5, VISUAL STUDIO 2010, ODATA[MIX10] KEYNOTE DEUXIèME JOURNéE - INTERNET EXPLORER 9, HTML5, VISUAL STUDIO 2010, ODATA par cyril
Le deuxième keynote du mix fut très riche en contenu. Internet Explorer 9 Juste un après le lancement de Internet Explorer 8, Microsoft a dévoilé les nouveautés de Internet Explorer 9. Désormais, IE supportera HTML5, SVG et CSS3. L'élément ...
Cliquez pour lire la suite de l'article par cyril CERTIFICATIONS BETA .NET 4CERTIFICATIONS BETA .NET 4 par KooKiz
Les inscriptions pour les certifications beta .NET 4 ont commencé. L'inscription est offerte pour les examens suivants : - 71-511, TS: Windows Applications Development with Microsoft .NET Framework 4 - 71-515, TS: Web Applications Development with...
Cliquez pour lire la suite de l'article par KooKiz [MIX 2010] - MICROSOFT TRANSLATOR TECHNOLOGY PREVIEW V2[MIX 2010] - MICROSOFT TRANSLATOR TECHNOLOGY PREVIEW V2 par redo
J'imagine que la plupart d'entre vous connaissent bien et utilisent le service de traduction de Google, mais connaissez-vous celui de Microsoft . Microsoft Translator ? Effectivement, Microsoft nous annoncé le lancement version 2 de la Technologie Preview...
Cliquez pour lire la suite de l'article par redo LANCEMENT EN PREVIEW DE CYCLONE LORS DES TECHDAYS 2010!LANCEMENT EN PREVIEW DE CYCLONE LORS DES TECHDAYS 2010! par MPOWARE
Toutes les vidéos de ce lancement sont en ligne!
Partie I - Intro
http://www.youtube.com/watch?v=LkQzTQ8T6CA
Partie II - Démo 1
http://www.youtube.com/watch?v=drAhYQ7lqvo
Partie III - Démo 2
http://www.youtube.com/watch?v=c8KM_1Gqybc...
Cliquez pour lire la suite de l'article par MPOWARE [WP7] JE NE VEUX PAS D'UN NOUVEL IPHONE[WP7] JE NE VEUX PAS D'UN NOUVEL IPHONE par FREMYCOMPANY
Je pense qu'ils ont besoin d'une piqure de rappel chez Microsoft : c'est bien gentil d'avoir une interface jolie, mais si c'est pour avoir un truc qui ne convainct pas dedans, c'est peine perdue.
---->
Système ouvert ----> Fermé ?
P...
Cliquez pour lire la suite de l'article par FREMYCOMPANY
Logiciels
Academy System (10.9.4.0)ACADEMY SYSTEM (10.9.4.0)Logiciel de gestion des établissements.
- élèves/étudiants (inscription, dossier, absence...)
-... Cliquez pour télécharger Academy System Xilisoft Convertisseur Vidéo Ultimate (5.1.39.0305)XILISOFT CONVERTISSEUR VIDéO ULTIMATE (5.1.39.0305)Xilisoft Convertisseur Vidéo Ultimate est un outil puissant de conversion vidéo, facile à utilise... Cliquez pour télécharger Xilisoft Convertisseur Vidéo Ultimate Xilisoft DVD Ripper Ultimate (5.0.64.0304)XILISOFT DVD RIPPER ULTIMATE (5.0.64.0304)Xilisoft DVD Ripper Ultimate est un logiciel excellent pour copier et convertir DVD vers presque ... Cliquez pour télécharger Xilisoft DVD Ripper Ultimate Rigs of Rods (63.3)RIGS OF RODS (63.3)c'est un jeu de multi-simulation camions,autobus voitures, avions, bateaux, hélicoptère avec défo... Cliquez pour télécharger Rigs of Rods
|