1
0

initial commit

This commit is contained in:
Tibeuleu
2023-12-31 15:42:33 +01:00
commit 9882d0c0d1
484 changed files with 28426 additions and 0 deletions

BIN
DocProjet/Atelier Makefile.pdf Executable file

Binary file not shown.

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 105 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 95 KiB

Binary file not shown.

28
DocProjet/Gnuplot/exemple.cpp Executable file
View File

@@ -0,0 +1,28 @@
#include <stdlib.h>
#include <stdio.h>
#include <math.h>
#define NUM_POINTS 100
#define NUM_COMMANDS 2
int main()
{
char* commandsForGnuplot[] = {"set title \"EXEMPLE\"", "plot 'data.temp'"};
double xvals[NUM_POINTS];
double yvals[NUM_POINTS];
FILE * temp = fopen("data.temp", "w");
FILE * gnuplotPipe = popen ("gnuplot -persistent", "w");
int i;
for (i=0; i < NUM_POINTS; i++)
{
xvals[i]= i*3,1415/50;
yvals[i]= cos(xvals[i]);
fprintf(temp, "%lf %lf \n", xvals[i], yvals[i]);
}
for (i=0; i < NUM_COMMANDS; i++)
{
fprintf(gnuplotPipe, "%s \n", commandsForGnuplot[i]);
}
return 0;
}

BIN
DocProjet/Gnuplot/gnuplot.pdf Executable file

Binary file not shown.

BIN
DocProjet/JohnsonSA.pdf Executable file

Binary file not shown.

BIN
DocProjet/MCSMshortcourse09.pdf Executable file

Binary file not shown.

BIN
DocProjet/TP_VoyageurCommerce.pdf Executable file

Binary file not shown.

BIN
DocProjet/annealing-pt1.pdf Executable file

Binary file not shown.

BIN
DocProjet/simulated_annealing.pdf Executable file

Binary file not shown.

BIN
DocProjet/slide_projet.pdf Executable file

Binary file not shown.

BIN
DocProjet/v21b01.pdf Executable file

Binary file not shown.