Skip to content
GitLab
Explorer
Connexion
Navigation principale
Rechercher ou aller à…
Projet
M
Multi-Objectives_Optimization_IBEA
Gestion
Activité
Membres
Programmation
Wiki externe
Code
Dépôt
Branches
Validations
Étiquettes
Graphe du dépôt
Comparer les révisions
Déploiement
Releases
Registre de conteneurs
Registre de modèles
Analyse
Analyse des contributeurs
Données d'analyse du dépôt
Expériences du modèle
Aide
Aide
Support
Documentation de GitLab
Comparer les forfaits GitLab
Forum de la communauté GitLab
Contribuer à GitLab
Donner votre avis
Raccourcis clavier
?
Extraits de code
Groupes
Projets
Afficher davantage de fils d'Ariane
SPLiiNe
Multi-Objectives_Optimization_IBEA
Validations
0526b788
Valider
0526b788
rédigé
Il y a 8 ans
par
Jonathan CROUZET
Parcourir les fichiers
Options
Téléchargements
Correctifs
Plain Diff
Added Makefile and renamed some files
parent
1557a709
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
Modifications
3
Afficher les modifications d'espaces
En ligne
Côte à côte
Affichage de
3 fichiers modifiés
Makefile
+17
-23
17 ajouts, 23 suppressions
Makefile
src/experiment.c
+1
-1
1 ajout, 1 suppression
src/experiment.c
src/ibea/ibea.cpp
+0
-0
0 ajout, 0 suppression
src/ibea/ibea.cpp
avec
18 ajouts
et
24 suppressions
Makefile
+
17
−
23
Voir le fichier @
0526b788
## Makefile to build C example programs included with the COCO distribution
##
## NOTE: We have tried to make this Makefile as generic and portable
## as possible. However, there are many (incompatible) versions of
## make floating around. We regularly test using GNU make and BSD make
## from FreeBSD. If you have trouble compiling the examples, please
## try to use GNU make.
##
## On Windows it is best to use either the included NMakefile by running
##
## nmake -f NMakefile
##
## or installing Cygwin and running GNU make from within Cygwin.
CC
=
gcc
CXX
=
g++
LDFLAGS
+=
-lm
CCFLAGS
=
-g
-ggdb
-std
=
c89
-pedantic
-Wall
-Wextra
-Wstrict-prototypes
-Wshadow
-Wno-sign-compare
-Wconversion
LDFLAGS
=
-lm
FLAGS
=
-g
-ggdb
-Iexternals
/coco
-Isrc
FLAGS
+=
-Wall
-Wextra
-Wstrict-prototypes
-Wshadow
-Wno-sign-compare
-Wconversion
SRC
=
src
BIN
=
bin
OBJS
=
$(
BIN
)
/coco.o
$(
BIN
)
/experiment.o
########################################################################
## Toplevel targets
all
:
experiment
clean
:
rm
-f
coco.o
rm
-f
experiment.o experiment
rm
-f
bin/
*
########################################################################
## Programs
experiment
:
example_experiment.o coco.o
${
CC
}
${
CC
FLAGS
}
-o
experiment coco.o experiment.o
${
LDFLAGS
}
experiment
:
$(OBJS)
${
CC
}
${
FLAGS
}
$(
OBJS
)
${
LDFLAGS
}
-o
$(
BIN
)
/
$@
########################################################################
## Additional dependencies
coco.o
:
coco.h coco.c
${
CC
}
-c
${
CCFLAGS
}
-o
coco.o coco.c
experiment.o
:
coco.h coco.c example_experiment.c
${
CC
}
-c
${
CCFLAGS
}
-o
experiment.o experiment.c
\ No newline at end of file
$(BIN)/coco.o
:
$(SRC)/coco/coco.h $(SRC)/coco/coco.c
${
CC
}
-c
$(
SRC
)
/coco/coco.c
$(
FLAGS
)
-o
$@
$(BIN)/experiment.o
:
$(SRC)/coco/coco.h $(SRC)/experiment.c
${
CC
}
-c
$(
SRC
)
/experiment.c
${
FLAGS
}
-o
$@
Ce diff est replié.
Cliquez pour l'agrandir.
src/experiment.c
+
1
−
1
Voir le fichier @
0526b788
...
...
@@ -9,7 +9,7 @@
#include
<string.h>
#include
<time.h>
#include
"coco.h"
#include
"coco
/coco
.h"
/**
* The maximal budget for evaluations done by an optimization algorithm equals dimension * BUDGET_MULTIPLIER.
...
...
Ce diff est replié.
Cliquez pour l'agrandir.
src/ibea/ibea.c
→
src/ibea/ibea.c
pp
+
0
−
0
Voir le fichier @
0526b788
Fichier déplacé
Ce diff est replié.
Cliquez pour l'agrandir.
Aperçu
0%
Chargement en cours
Veuillez réessayer
ou
joindre un nouveau fichier
.
Annuler
You are about to add
0
people
to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Enregistrer le commentaire
Annuler
Veuillez vous
inscrire
ou vous
se connecter
pour commenter