Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Arnaud Kress
easea
Commits
9b2022e6
Commit
9b2022e6
authored
Apr 27, 2010
by
kruger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Correction
parent
48db9e81
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
6 additions
and
1 deletion
+6
-1
libeasea/CEvolutionaryAlgorithm.cpp
libeasea/CEvolutionaryAlgorithm.cpp
+1
-0
libeasea/CGnuplot.cpp
libeasea/CGnuplot.cpp
+1
-0
libeasea/COptionParser.cpp
libeasea/COptionParser.cpp
+1
-0
libeasea/CStoppingCriterion.cpp
libeasea/CStoppingCriterion.cpp
+1
-0
libeasea/Parameters.cpp
libeasea/Parameters.cpp
+1
-0
makefile
makefile
+1
-1
No files found.
libeasea/CEvolutionaryAlgorithm.cpp
View file @
9b2022e6
...
...
@@ -23,6 +23,7 @@
#include "include/Parameters.h"
#include "include/CGnuplot.h"
#include "include/global.h"
#include <stdio.h>
using
namespace
std
;
...
...
libeasea/CGnuplot.cpp
View file @
9b2022e6
#include "include/CGnuplot.h"
#include <stdio.h>
CGnuplot
::
CGnuplot
(
int
nbEval
){
#ifdef __linux__
...
...
libeasea/COptionParser.cpp
View file @
9b2022e6
...
...
@@ -6,6 +6,7 @@
*/
#include "boost/program_options.hpp"
#include <iostream>
#include <stdio.h>
namespace
po
=
boost
::
program_options
;
...
...
libeasea/CStoppingCriterion.cpp
View file @
9b2022e6
...
...
@@ -8,6 +8,7 @@
#include "include/CStoppingCriterion.h"
#include <iostream>
#include <signal.h>
#include <stdio.h>
#include "include/CEvolutionaryAlgorithm.h"
/* ****************************************
...
...
libeasea/Parameters.cpp
View file @
9b2022e6
...
...
@@ -6,6 +6,7 @@
*/
#include "include/Parameters.h"
#include <stdio.h>
#ifdef WIN32
Parameters
::
Parameters
(){
...
...
makefile
View file @
9b2022e6
...
...
@@ -17,7 +17,7 @@ ifeq ($(UNAME), Darwin)
@
mv
$(HOME)
/.profile_save
$(HOME)
/.profile
@
echo
"export EZ_PATH=
\"
$(PWD)
/
\"
"
>>
$(HOME)
/.profile
else
@
if
[
$(EZ_PATH)
!=
"
$(PWD)
/"
]
;
then
echo
-e
"
\n
export EZ_PATH=
$(PWD)
/"
>>
$(HOME)
/.bashrc
;
fi
@
if
[
"
$(EZ_PATH)
"
!=
"
$(PWD)
/"
]
;
then
echo
-e
"
\n
export EZ_PATH=
$(PWD)
/"
>>
$(HOME)
/.bashrc
;
fi
endif
#
# Congratulations ! It looks like you compiled EASEA successfully.
...
...
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