Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
MH-Builder
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
orkad-public
MH-Builder
Commits
d65d30eb
Commit
d65d30eb
authored
1 year ago
by
Caron Olivier
Browse files
Options
Downloads
Patches
Plain Diff
small changes
parent
e486b8f7
No related branches found
No related tags found
No related merge requests found
Pipeline
#4412
failed
1 year ago
Stage: test
Changes
3
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
src-bin/tspGeneticAlgorithm.cpp
+1
-1
1 addition, 1 deletion
src-bin/tspGeneticAlgorithm.cpp
src-bin/tspGreedy.cpp
+1
-1
1 addition, 1 deletion
src-bin/tspGreedy.cpp
tests/unit_tests/core/ArchiveTest.h
+3
-3
3 additions, 3 deletions
tests/unit_tests/core/ArchiveTest.h
with
5 additions
and
5 deletions
src-bin/tspGeneticAlgorithm.cpp
+
1
−
1
View file @
d65d30eb
...
...
@@ -45,7 +45,7 @@ using namespace representation::permutation::problems::tsp ;
using
namespace
opt
::
manySolutions
::
geneticAlgorithm
;
int
main
(
int
argc
,
char
*
argv
[]
)
{
int
main
(
void
)
{
typedef
core
::
fitness
::
FitnessMin
<
double
>
FIT
;
typedef
TSPSol
<
FIT
>
SOL
;
typedef
TSPEval
<
SOL
>
EVAL
;
...
...
This diff is collapsed.
Click to expand it.
src-bin/tspGreedy.cpp
+
1
−
1
View file @
d65d30eb
...
...
@@ -30,7 +30,7 @@
using
namespace
representation
::
permutation
::
problems
::
tsp
;
int
main
(
int
argc
,
char
*
argv
[]
)
{
int
main
(
void
)
{
typedef
core
::
fitness
::
FitnessMin
<
double
>
FIT
;
typedef
TSPSol
<
FIT
>
SOL
;
typedef
TSPEval
<
SOL
>
EVAL
;
...
...
This diff is collapsed.
Click to expand it.
tests/unit_tests/core/ArchiveTest.h
+
3
−
3
View file @
d65d30eb
...
...
@@ -19,8 +19,8 @@
Authors: Lucien Mousin and additional contributors (see Authors)
****************************************************************************************/
#ifndef MH_BUILDER_ARCHIVETEST_H
#define MH_BUILDER_ARCHIVETEST_H
#ifndef MH_BUILDER_ARCHIVE
_
TEST_H
#define MH_BUILDER_ARCHIVE
_
TEST_H
#include
"core/fitness/FitnessMax.h"
#include
"core/Archive.h"
...
...
@@ -43,4 +43,4 @@ namespace test {
};
}
#endif //MH_BUILDER_ARCHIVETEST_H
#endif //MH_BUILDER_ARCHIVE
_
TEST_H
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment