Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
easea
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Operations
Operations
Incidents
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Arnaud Kress
easea
Commits
43b20622
Commit
43b20622
authored
Mar 30, 2014
by
Joseph Pallamidessi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor aesthetic changes
parent
3c1f3c0a
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
7 deletions
+15
-7
EaseaLex.cpp
EaseaLex.cpp
+0
-1
EaseaParse.cpp
EaseaParse.cpp
+1
-0
Makefile
Makefile
+10
-5
tpl/CUDA.tpl
tpl/CUDA.tpl
+4
-1
No files found.
EaseaLex.cpp
View file @
43b20622
...
...
@@ -1518,7 +1518,6 @@ if( bGPOPCODE_ANALYSIS )printf("\n");lineCounter++;
{
#line 1109 "EaseaLex.l"
printf("evaluator insert\n");
yyreset();
yyin = fpGenomeFile; // switch to .ez file and analyser
lineCounter=1;
...
...
EaseaParse.cpp
View file @
43b20622
...
...
@@ -1628,6 +1628,7 @@ int main(int argc, char *argv[]){
char *sTemp;
int i=0;
printf("Easea v1.0.3 compiler \n");
TARGET=STD;
bVERBOSE=0;
sRAW_PROJECT_NAME[0]=0; // used to ask for a filename if no filename is found on the command line.
...
...
Makefile
View file @
43b20622
...
...
@@ -80,18 +80,23 @@ install:vars
cp
boost/program_options.a /usr/local/easea/boost
cp
-r
boost/boost/ /usr/local/easea/boost/boost/
cp
easeagrapher/EaseaGrapher.jar /usr/local/easea/easeagrapher/
vars
:
vars
:
profile_
ifeq
($(UNAME), Darwin)
@
sed
'/EZ_PATH/d'
$(HOME)
/.bash_profile>
$(HOME)
/.bash_profile_save
@
mv
$(HOME)
/.bash_profile_save
$(HOME)
/.bash_profile
@
echo
"export EZ_PATH=/usr/local/easea/"
>>
$(HOME)
/.bash_profile
@
echo
"export PATH=
\$
$PATH
:/usr/local/easea/bin:"
>>
$(HOME)
/.bash_profile
@
echo
"export EZ_PATH=/usr/local/easea/"
>>
$PROFILE
@
echo
"export PATH=
\$
$PATH
:/usr/local/easea/bin:"
>>
$PROFILE
else
@
echo
"
\n
export EZ_PATH=/usr/local/easea/"
>>
$(HOME)
/.bashrc
@
echo
"export PATH=
\$
$PATH
:/usr/local/easea/bin:"
>>
$(HOME)
/.bashrc
@
echo
"PATH and EZ_PATH variables have been set"
endif
profile_
:
ifeq
($(wildcard "$(HOME)/.profile"),)
PROFILE
=
"
$(HOME)
/.bash_profile"
else
PROFILE
=
"
$(HOME)
/.profile"
endif
build
:
@
test
-d
build
||
mkdir
build
||
echo
"Cannot make dir build"
bin
:
...
...
tpl/CUDA.tpl
View file @
43b20622
...
...
@@ -612,7 +612,10 @@ void ParametersImpl::setDefaultParameters(int argc, char** argv){
this->plotOutputFilename = (char*)"EASEA.png";
this->remoteIslandModel = setVariable("remoteIslandModel",\REMOTE_ISLAND_MODEL);
this->ipFile = (char*)setVariable("ipFile","\IP_FILE").c_str();
std::string* ipFilename=new std::string();
*ipFilename=setVariable("ipFile","\IP_FILE");
this->ipFile =(char*)ipFilename->c_str();
this->migrationProbability = setVariable("migrationProbability",(float)\MIGRATION_PROBABILITY);
this->serverPort = setVariable("serverPort",\SERVER_PORT);
...
...
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