Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
FIC_DK_P GA Solving
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
6
Issues
6
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
M3TAL
FIC_DK_P GA Solving
Commits
43c97b73
Commit
43c97b73
authored
Jun 04, 2020
by
HUMEAU Jéremie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
last exp
parent
bc4663c8
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
228 additions
and
120 deletions
+228
-120
main.cpp
application/main.cpp
+63
-5
exp.sh
run/exp.sh
+115
-0
exp.sh~
run/exp.sh~
+28
-0
job.sh
run/job.sh
+4
-3
job.sh~
run/job.sh~
+0
-10
startExp.sh
run/startExp.sh
+17
-22
startExp.sh~
run/startExp.sh~
+0
-77
crossover.h
src/model/ea/crossover.h
+1
-3
No files found.
application/main.cpp
View file @
43c97b73
...
...
@@ -154,7 +154,8 @@ int main(int argc, char* argv[]){
eoSGATransform
<
Cursus
>
transform
(
cross
,
PCROSS
,
mut
,
PMUT
);
eoDetTournamentSelect
<
Cursus
>
selectOne
(
SIZET
);
eoSelectPerc
<
Cursus
>
select
(
selectOne
);
eoGenerationalReplacement
<
Cursus
>
replace
;
eoGenerationalReplacement
<
Cursus
>
genReplace
;
eoWeakElitistReplacement
<
Cursus
>
replace
(
genReplace
);
//POPULATION INITIALISATION
eoPop
<
Cursus
>
pop
;
...
...
@@ -265,7 +266,6 @@ int main(int argc, char* argv[]){
std::cout << pb.coursesCatalogue().at(i) << std::endl;
}
*/
std
::
cout
<<
job
<<
std
::
endl
;
// ======================== TEST ZONE END========================
...
...
@@ -277,8 +277,28 @@ int main(int argc, char* argv[]){
oss
<<
_seedParam
;
filename
+=
oss
.
str
();
std
::
ofstream
outputfile
(
filename
.
c_str
(),
std
::
ios
::
app
);
oss
.
str
(
""
);
filename
=
_outputFile
+
"/pop."
;
oss
<<
_seedParam
;
filename
+=
oss
.
str
();
std
::
ofstream
outputfile2
(
filename
.
c_str
(),
std
::
ios
::
app
);
std
::
cout
<<
"===== CURRENT POP ====="
<<
std
::
endl
;
oss
.
str
(
""
);
filename
=
_outputFile
+
"/req."
;
oss
<<
_seedParam
;
filename
+=
oss
.
str
();
std
::
ofstream
outputfile3
(
filename
.
c_str
(),
std
::
ios
::
app
);
oss
.
str
(
""
);
filename
=
_outputFile
+
"/solsstats."
;
oss
<<
_seedParam
;
filename
+=
oss
.
str
();
std
::
ofstream
outputfile4
(
filename
.
c_str
(),
std
::
ios
::
app
);
/*std::cout << "===== CURRENT POP =====" << std::endl;
pop.best_element().printOn(std::cout);
std::cout << " fitness:" << pop.best_element().fitness() << std::endl;
std::cout << "Stats & metrics: \n" << std::endl;
...
...
@@ -315,18 +335,56 @@ int main(int argc, char* argv[]){
std::cout << "failed";
std::cout << " | value: " << resPrq.second << std::endl;
std::cout << "\n==========" << std::endl;
*/
// ---------- ALGO HERE
eoEasyEA
<
QUEEN
>
algo
(
cont
,
eval
,
select
,
transform
,
replace
);
//WRITE CURRENT POP
pop
.
best_element
().
printOn
(
outputfile4
);
outputfile4
<<
" "
<<
ctrECTS
.
integrityCheck
(
pop
.
best_element
()).
second
<<
" "
<<
ctrRep
.
integrityCheck
(
pop
.
best_element
()).
second
<<
" "
<<
ctrJob
.
integrityCheck
(
pop
.
best_element
()).
second
<<
" "
<<
ctrPrq
.
integrityCheck
(
pop
.
best_element
()).
second
<<
std
::
endl
;
outputfile2
<<
pop
.
size
()
<<
std
::
endl
;
outputfile3
<<
pop
.
size
()
<<
std
::
endl
;
for
(
int
i
=
0
;
i
<
pop
.
size
();
i
++
){
//Write pop + prerequires values
pop
[
i
].
printOn
(
outputfile2
);
outputfile2
<<
" "
<<
ctrECTS
.
integrityCheck
(
pop
[
i
]).
second
<<
" "
<<
ctrRep
.
integrityCheck
(
pop
[
i
]).
second
<<
" "
<<
ctrJob
.
integrityCheck
(
pop
[
i
]).
second
<<
" "
<<
ctrPrq
.
integrityCheck
(
pop
[
i
]).
second
<<
std
::
endl
;
//Write prerequires values
outputfile3
<<
ctrECTS
.
integrityCheck
(
pop
[
i
]).
second
<<
" "
<<
ctrRep
.
integrityCheck
(
pop
[
i
]).
second
<<
" "
<<
ctrJob
.
integrityCheck
(
pop
[
i
]).
second
<<
" "
<<
ctrPrq
.
integrityCheck
(
pop
[
i
]).
second
<<
std
::
endl
;
}
//RUN ALGO
algo
(
pop
);
//WRITE FINAL POP
pop
.
best_element
().
printOn
(
outputfile
);
pop
.
best_element
().
printOn
(
outputfile4
);
outputfile4
<<
" "
<<
ctrECTS
.
integrityCheck
(
pop
.
best_element
()).
second
<<
" "
<<
ctrRep
.
integrityCheck
(
pop
.
best_element
()).
second
<<
" "
<<
ctrJob
.
integrityCheck
(
pop
.
best_element
()).
second
<<
" "
<<
ctrPrq
.
integrityCheck
(
pop
.
best_element
()).
second
<<
std
::
endl
;
outputfile2
<<
pop
.
size
()
<<
std
::
endl
;
outputfile3
<<
pop
.
size
()
<<
std
::
endl
;
for
(
int
i
=
0
;
i
<
pop
.
size
();
i
++
){
//Write pop + prerequires values
pop
[
i
].
printOn
(
outputfile2
);
outputfile2
<<
" "
<<
ctrECTS
.
integrityCheck
(
pop
[
i
]).
second
<<
" "
<<
ctrRep
.
integrityCheck
(
pop
[
i
]).
second
<<
" "
<<
ctrJob
.
integrityCheck
(
pop
[
i
]).
second
<<
" "
<<
ctrPrq
.
integrityCheck
(
pop
[
i
]).
second
<<
std
::
endl
;
//Write prerequires values
outputfile3
<<
ctrECTS
.
integrityCheck
(
pop
[
i
]).
second
<<
" "
<<
ctrRep
.
integrityCheck
(
pop
[
i
]).
second
<<
" "
<<
ctrJob
.
integrityCheck
(
pop
[
i
]).
second
<<
" "
<<
ctrPrq
.
integrityCheck
(
pop
[
i
]).
second
<<
std
::
endl
;
}
outputfile
.
close
();
outputfile2
.
close
();
outputfile3
.
close
();
outputfile4
.
close
();
// -------------------
/*
std::cout << "\n===== BEST INDIVIDU =====" << std::endl;
pop.best_element().printOn(std::cout);
std::cout << " fitness:" << pop.best_element().fitness() << std::endl;
...
...
@@ -360,14 +418,14 @@ int main(int argc, char* argv[]){
std::cout << "Prereq: ";
if(resPrq.first)
std::cout << "succeed";
else
std::cout << "failed";
std::cout << " | value: " << resPrq.second << std::endl;
std::cout << "===============" << std::endl;
std
::
cout
<<
"cpt: "
<<
cross
.
cpt
<<
std
::
endl
;
*/
// ================================= END RUN ZONE ===============================
return
EXIT_SUCCESS
;
...
...
run/exp.sh
0 → 100644
View file @
43c97b73
for
nbCours
in
15
do
for
nbComps
in
10 20
do
for
cbyTF
in
2
do
for
rEngine
in
50
do
for
pMut
in
0.25 0.5 0.75
do
for
pCross
in
0.25 0.5 0.75
do
for
tSize
in
3 7
do
RESDIR
=
"../results/
${
nbCours
}
_
${
nbComps
}
_
${
cbyTF
}
_
${
rEngine
}
_
${
pMut
}
_
${
pCross
}
_
${
tSize
}
"
mkdir
$RESDIR
for
run
in
30
do
RESDIR
=
"../results/
${
nbCours
}
_
${
nbComps
}
_
${
cbyTF
}
_
${
rEngine
}
_
${
pMut
}
_
${
pCross
}
_
${
tSize
}
"
sbatch
--array
=
1-
${
run
}
--job-name
=
${
RESDIR
}
--output
=
${
RESDIR
}
.out
--export
=
C
=
$nbCours
,c
=
$nbComps
,A
=
$cbyTF
,O
=
$RESDIR
,B
=
$rEngine
,x
=
$pMut
,X
=
$pCross
,F
=
$tSize
job.sh
done
done
done
done
done
done
done
done
for
nbCours
in
25
do
for
nbComps
in
10
do
for
cbyTF
in
3
do
for
rEngine
in
50
do
for
pMut
in
0.25 0.5 0.75
do
for
pCross
in
0.25 0.5 0.75
do
for
tSize
in
3 7
do
RESDIR
=
"../results/
${
nbCours
}
_
${
nbComps
}
_
${
cbyTF
}
_
${
rEngine
}
_
${
pMut
}
_
${
pCross
}
_
${
tSize
}
"
mkdir
$RESDIR
for
run
in
30
do
RESDIR
=
"../results/
${
nbCours
}
_
${
nbComps
}
_
${
cbyTF
}
_
${
rEngine
}
_
${
pMut
}
_
${
pCross
}
_
${
tSize
}
"
sbatch
--array
=
1-
${
run
}
--job-name
=
${
RESDIR
}
--output
=
${
RESDIR
}
.out
--export
=
C
=
$nbCours
,c
=
$nbComps
,A
=
$cbyTF
,O
=
$RESDIR
,B
=
$rEngine
,x
=
$pMut
,X
=
$pCross
,F
=
$tSize
job.sh
done
done
done
done
done
done
done
done
for
nbCours
in
20
do
for
nbComps
in
20
do
for
cbyTF
in
3
do
for
rEngine
in
50
do
for
pMut
in
0.25 0.5 0.75
do
for
pCross
in
0.25 0.5 0.75
do
for
tSize
in
3 7
do
RESDIR
=
"../results/
${
nbCours
}
_
${
nbComps
}
_
${
cbyTF
}
_
${
rEngine
}
_
${
pMut
}
_
${
pCross
}
_
${
tSize
}
"
mkdir
$RESDIR
for
run
in
30
do
RESDIR
=
"../results/
${
nbCours
}
_
${
nbComps
}
_
${
cbyTF
}
_
${
rEngine
}
_
${
pMut
}
_
${
pCross
}
_
${
tSize
}
"
sbatch
--array
=
1-
${
run
}
--job-name
=
${
RESDIR
}
--output
=
${
RESDIR
}
.out
--export
=
C
=
$nbCours
,c
=
$nbComps
,A
=
$cbyTF
,O
=
$RESDIR
,B
=
$rEngine
,x
=
$pMut
,X
=
$pCross
,F
=
$tSize
job.sh
done
done
done
done
done
done
done
done
for
nbCours
in
30
do
for
nbComps
in
40
do
for
cbyTF
in
4
do
for
rEngine
in
50
do
for
pMut
in
0.25 0.5 0.75
do
for
pCross
in
0.25 0.5 0.75
do
for
tSize
in
3 7
do
RESDIR
=
"../results/
${
nbCours
}
_
${
nbComps
}
_
${
cbyTF
}
_
${
rEngine
}
_
${
pMut
}
_
${
pCross
}
_
${
tSize
}
"
mkdir
$RESDIR
for
run
in
30
do
RESDIR
=
"../results/
${
nbCours
}
_
${
nbComps
}
_
${
cbyTF
}
_
${
rEngine
}
_
${
pMut
}
_
${
pCross
}
_
${
tSize
}
"
sbatch
--array
=
1-
${
run
}
--job-name
=
${
RESDIR
}
--output
=
${
RESDIR
}
.out
--export
=
C
=
$nbCours
,c
=
$nbComps
,A
=
$cbyTF
,O
=
$RESDIR
,B
=
$rEngine
,x
=
$pMut
,X
=
$pCross
,F
=
$tSize
job.sh
done
done
done
done
done
done
done
done
run/exp.sh~
0 → 100644
View file @
43c97b73
for nbCours in 15
do
for nbComps in 10 20
do
for cbyTF in 2
do
for rEngine in 25 50 75
do
for pMut in 0.25 0.5 0.75
do
for pCross in 0.25 0.5 0.75
do
for tSize in 2 5 7
do
RESDIR="../results/${nbCours}_${nbComps}_${cbyTF}_${rEngine}_${pMut}_${pCross}_${tSize}"
mkdir $RESDIR
for run in 5
do
RESDIR="../results/${nbCours}_${nbComps}_${cbyTF}_${rEngine}_${pMut}_${pCross}_${tSize}"
sbatch --array=1-${run} --job-name=${RESDIR} --output=${RESDIR}.out --export=C=$nbCours,c=$nbComps,A=$cbyTF,O=$RESDIR,B=$rEngine,x=$pMut,X=$pCross,F=$tSize job.sh
done
done
done
done
done
done
done
done
run/job.sh
View file @
43c97b73
#!/bin/sh
#!/bin/
ba
sh
#SBATCH -o main.out
#SBATCH -N 1
#SBATCH -n 1
#SBATCH --mem=
10
G
#SBATCH --mem=
4
G
#SBATCH -p defq
/home/jeremie.humeau/private/gitProject/csdvp-evolutionary-algorithm-optimization/build/application/ceao
-B
=
50
-S
=
$S
-C
=
$C
-c
=
$c
-A
=
$A
--outputfile
=
$O
-n
=
$A
/home/jeremie.humeau/private/gitProject/csdvp-evolutionary-algorithm-optimization/build/application/ceao
-G
=
10000
-P
=
100
-S
=
$SLURM_ARRAY_TASK_ID
-C
=
$C
-c
=
$c
-A
=
$A
--outputfile
=
$O
-n
=
$A
-B
=
$B
-x
=
$x
-X
=
$X
-F
=
$F
exit
0
run/job.sh~
deleted
100644 → 0
View file @
bc4663c8
#!/bin/sh
#SBATCH -o main.out
#SBATCH -N 1
#SBATCH -n 1
#SBATCH --mem=10G
#SBATCH -p defq
/home/jeremie.humeau/private/gitProject/csdvp-evolutionary-algorithm-optimization/build/application/ceao
-B
=
50
-S
=
$S
-C
=
$C
-c
=
$c
-A
=
$A
--outputfile
=
$O
exit
0
run/startExp.sh
View file @
43c97b73
...
...
@@ -7,13 +7,12 @@ do
do
for
cbyTF
in
2
do
RESDIR
=
"
${
nbCours
}
_
${
nbComps
}
_
${
cbyTF
}
"
mkdir
$RESDIR
for
run
in
01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
RESDIR
=
"
../results/
${
nbCours
}
_
${
nbComps
}
_
${
cbyTF
}
"
mkdir
$RESDIR
for
run
in
5
do
RESDIR
=
"
${
nbCours
}
_
${
nbComps
}
_
${
cbyTF
}
"
# sbatch --job-name=${RESDIR}_${run} --output=${RESDIR}_${run}.out --export=C=$nbCours,c=$nbComps,A=$cbyTF,O=$RESDIR,S=$run job.sh
sbatch
--job-name
=
${
RESDIR
}
_
${
run
}
--export
=
C
=
$nbCours
,c
=
$nbComps
,A
=
$cbyTF
,O
=
$RESDIR
,S
=
$run
job.sh
RESDIR
=
"../results/
${
nbCours
}
_
${
nbComps
}
_
${
cbyTF
}
"
sbatch
--array
=
1-
${
run
}
--job-name
=
${
RESDIR
}
--output
=
${
RESDIR
}
.out
--export
=
C
=
$nbCours
,c
=
$nbComps
,A
=
$cbyTF
,O
=
$RESDIR
job.sh
done
done
done
...
...
@@ -25,13 +24,12 @@ do
do
for
cbyTF
in
3
do
RESDIR
=
"
${
nbCours
}
_
${
nbComps
}
_
${
cbyTF
}
"
RESDIR
=
"
../results/
${
nbCours
}
_
${
nbComps
}
_
${
cbyTF
}
"
mkdir
$RESDIR
for
run
in
01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
for
run
in
5
do
RESDIR
=
"
${
nbCours
}
_
${
nbComps
}
_
${
cbyTF
}
"
# sbatch --job-name=${RESDIR}_${run} --output=${RESDIR}_${run}.out --export=C=$nbCours,c=$nbComps,A=$cbyTF,O=$RESDIR,S=$run job.sh
sbatch
--job-name
=
${
RESDIR
}
_
${
run
}
--export
=
C
=
$nbCours
,c
=
$nbComps
,A
=
$cbyTF
,O
=
$RESDIR
,S
=
$run
job.sh
RESDIR
=
"../results/
${
nbCours
}
_
${
nbComps
}
_
${
cbyTF
}
"
sbatch
--array
=
1-
${
run
}
--job-name
=
${
RESDIR
}
--output
=
${
RESDIR
}
.out
--export
=
C
=
$nbCours
,c
=
$nbComps
,A
=
$cbyTF
,O
=
$RESDIR
job.sh
done
done
done
...
...
@@ -43,13 +41,12 @@ do
do
for
cbyTF
in
3
do
RESDIR
=
"
${
nbCours
}
_
${
nbComps
}
_
${
cbyTF
}
"
RESDIR
=
"
../results/
${
nbCours
}
_
${
nbComps
}
_
${
cbyTF
}
"
mkdir
$RESDIR
for
run
in
01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
for
run
in
5
do
RESDIR
=
"
${
nbCours
}
_
${
nbComps
}
_
${
cbyTF
}
"
# sbatch --job-name=${RESDIR}_${run} --output=${RESDIR}_${run}.out --export=C=$nbCours,c=$nbComps,A=$cbyTF,O=$RESDIR,S=$run job.sh
sbatch
--job-name
=
${
RESDIR
}
_
${
run
}
--export
=
C
=
$nbCours
,c
=
$nbComps
,A
=
$cbyTF
,O
=
$RESDIR
,S
=
$run
job.sh
RESDIR
=
"../results/
${
nbCours
}
_
${
nbComps
}
_
${
cbyTF
}
"
sbatch
--array
=
1-
${
run
}
--job-name
=
${
RESDIR
}
--output
=
${
RESDIR
}
.out
--export
=
C
=
$nbCours
,c
=
$nbComps
,A
=
$cbyTF
,O
=
$RESDIR
job.sh
done
done
done
...
...
@@ -61,17 +58,15 @@ do
do
for
cbyTF
in
4
do
RESDIR
=
"
${
nbCours
}
_
${
nbComps
}
_
${
cbyTF
}
"
RESDIR
=
"
../results/
${
nbCours
}
_
${
nbComps
}
_
${
cbyTF
}
"
mkdir
$RESDIR
for
run
in
01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
for
run
in
5
do
RESDIR
=
"
${
nbCours
}
_
${
nbComps
}
_
${
cbyTF
}
"
sbatch
--job-name
=
${
RESDIR
}
_
${
run
}
--output
=
${
RESDIR
}
_
${
run
}
.out
--export
=
C
=
$nbCours
,c
=
$nbComps
,A
=
$cbyTF
,O
=
$RESDIR
,S
=
$run
job.sh
# sbatch --job-name=${RESDIR}_${run} --export=C=$nbCours,c=$nbComps,A=$cbyTF,O=$RESDIR,S=$run job.sh
RESDIR
=
"../results/
${
nbCours
}
_
${
nbComps
}
_
${
cbyTF
}
"
sbatch
--array
=
1-
${
run
}
--job-name
=
${
RESDIR
}
--output
=
${
RESDIR
}
.out
--export
=
C
=
$nbCours
,c
=
$nbComps
,A
=
$cbyTF
,O
=
$RESDIR
job.sh
done
done
done
done
exit
0
run/startExp.sh~
deleted
100644 → 0
View file @
bc4663c8
#!/bin/bash
for
nbCours
in
15
do
for
nbComps
in
10 20
do
for
cbyTF
in
2
do
RESDIR
=
"
${
nbCours
}
_
${
nbComps
}
_
${
cbyTF
}
"
mkdir
$RESDIR
for
run
in
01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
do
RESDIR
=
"
${
nbCours
}
_
${
nbComps
}
_
${
cbyTF
}
"
# sbatch --job-name=${RESDIR}_${run} --output=${RESDIR}_${run}.out --export=C=$nbCours,c=$nbComps,A=$cbyTF,O=$RESDIR,S=$run job.sh
sbatch
--job-name
=
${
RESDIR
}
_
${
run
}
--export
=
C
=
$nbCours
,c
=
$nbComps
,A
=
$cbyTF
,O
=
$RESDIR
,S
=
$run
job.sh
done
done
done
done
for
nbCours
in
25
do
for
nbComps
in
10
do
for
cbyTF
in
3
do
RESDIR
=
"
${
nbCours
}
_
${
nbComps
}
_
${
cbyTF
}
"
mkdir
$RESDIR
for
run
in
01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
do
RESDIR
=
"
${
nbCours
}
_
${
nbComps
}
_
${
cbyTF
}
"
# sbatch --job-name=${RESDIR}_${run} --output=${RESDIR}_${run}.out --export=C=$nbCours,c=$nbComps,A=$cbyTF,O=$RESDIR,S=$run job.sh
sbatch
--job-name
=
${
RESDIR
}
_
${
run
}
--export
=
C
=
$nbCours
,c
=
$nbComps
,A
=
$cbyTF
,O
=
$RESDIR
,S
=
$run
job.sh
done
done
done
done
for
nbCours
in
20
do
for
nbComps
in
20
do
for
cbyTF
in
3
do
RESDIR
=
"
${
nbCours
}
_
${
nbComps
}
_
${
cbyTF
}
"
mkdir
$RESDIR
for
run
in
01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
do
RESDIR
=
"
${
nbCours
}
_
${
nbComps
}
_
${
cbyTF
}
"
# sbatch --job-name=${RESDIR}_${run} --output=${RESDIR}_${run}.out --export=C=$nbCours,c=$nbComps,A=$cbyTF,O=$RESDIR,S=$run job.sh
sbatch
--job-name
=
${
RESDIR
}
_
${
run
}
--export
=
C
=
$nbCours
,c
=
$nbComps
,A
=
$cbyTF
,O
=
$RESDIR
,S
=
$run
job.sh
done
done
done
done
for
nbCours
in
30
do
for
nbComps
in
40
do
for
cbyTF
in
4
do
RESDIR
=
"
${
nbCours
}
_
${
nbComps
}
_
${
cbyTF
}
"
mkdir
$RESDIR
for
run
in
01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
do
RESDIR
=
"
${
nbCours
}
_
${
nbComps
}
_
${
cbyTF
}
"
# sbatch --job-name=${RESDIR}_${run} --output=${RESDIR}_${run}.out --export=C=$nbCours,c=$nbComps,A=$cbyTF,O=$RESDIR,S=$run job.sh
sbatch
--job-name
=
${
RESDIR
}
_
${
run
}
--export
=
C
=
$nbCours
,c
=
$nbComps
,A
=
$cbyTF
,O
=
$RESDIR
,S
=
$run
job.sh
done
done
done
done
exit
0
src/model/ea/crossover.h
View file @
43c97b73
...
...
@@ -9,11 +9,10 @@ class crossCSDVP: public eoQuadOp<EOT>
public
:
crossCSDVP
(
CSDVP
&
_pb
,
ConstraintsRepetition
&
_ctr
,
CursusInitConstraint
&
_init
)
:
pb
(
_pb
),
ctr
(
_ctr
),
init
(
_init
)
,
cpt
(
0
)
{}
crossCSDVP
(
CSDVP
&
_pb
,
ConstraintsRepetition
&
_ctr
,
CursusInitConstraint
&
_init
)
:
pb
(
_pb
),
ctr
(
_ctr
),
init
(
_init
){}
virtual
bool
operator
()(
EOT
&
_chrom1
,
EOT
&
_chrom2
){
cpt
++
;
//Integrity Check BEFORE CROSS
std
::
pair
<
bool
,
double
>
ctrRes1
=
ctr
.
integrityCheck
(
_chrom1
);
std
::
pair
<
bool
,
double
>
ctrRes2
=
ctr
.
integrityCheck
(
_chrom2
);
...
...
@@ -137,7 +136,6 @@ class crossCSDVP: public eoQuadOp<EOT>
}
}
int
cpt
;
private
:
CSDVP
pb
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment