Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
Plumed AlphaFold
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Martin Kurečka
Plumed AlphaFold
Commits
4b51a15e
There was an error fetching the commit references. Please try again later.
Commit
4b51a15e
authored
10 years ago
by
Giovanni Bussi
Browse files
Options
Downloads
Patches
Plain Diff
stupid mistake in merging
parent
78d422a4
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/core/Action.cpp
+0
-4
0 additions, 4 deletions
src/core/Action.cpp
with
0 additions
and
4 deletions
src/core/Action.cpp
+
0
−
4
View file @
4b51a15e
...
@@ -78,13 +78,10 @@ Action::Action(const ActionOptions&ao):
...
@@ -78,13 +78,10 @@ Action::Action(const ActionOptions&ao):
}
}
if
(
plumed
.
getActionSet
().
selectWithLabel
<
Action
*>
(
label
)
)
error
(
"label "
+
label
+
" has been already used"
);
if
(
plumed
.
getActionSet
().
selectWithLabel
<
Action
*>
(
label
)
)
error
(
"label "
+
label
+
" has been already used"
);
log
.
printf
(
" with label %s
\n
"
,
label
.
c_str
());
log
.
printf
(
" with label %s
\n
"
,
label
.
c_str
());
<<<<<<<
HEAD
if
(
keywords
.
exists
(
"UPDATE_FROM"
)
)
parse
(
"UPDATE_FROM"
,
update_from
);
if
(
keywords
.
exists
(
"UPDATE_FROM"
)
)
parse
(
"UPDATE_FROM"
,
update_from
);
if
(
update_from
!=
std
::
numeric_limits
<
double
>::
max
())
log
.
printf
(
" only update from time %f
\n
"
,
update_from
);
if
(
update_from
!=
std
::
numeric_limits
<
double
>::
max
())
log
.
printf
(
" only update from time %f
\n
"
,
update_from
);
if
(
keywords
.
exists
(
"UPDATE_UNTIL"
)
)
parse
(
"UPDATE_UNTIL"
,
update_until
);
if
(
keywords
.
exists
(
"UPDATE_UNTIL"
)
)
parse
(
"UPDATE_UNTIL"
,
update_until
);
if
(
update_until
!=
std
::
numeric_limits
<
double
>::
max
())
log
.
printf
(
" only update until time %f
\n
"
,
update_until
);
if
(
update_until
!=
std
::
numeric_limits
<
double
>::
max
())
log
.
printf
(
" only update until time %f
\n
"
,
update_until
);
=======
if
(
keywords
.
exists
(
"RESTART"
)
){
if
(
keywords
.
exists
(
"RESTART"
)
){
std
::
string
srestart
=
"AUTO"
;
std
::
string
srestart
=
"AUTO"
;
parse
(
"RESTART"
,
srestart
);
parse
(
"RESTART"
,
srestart
);
...
@@ -93,7 +90,6 @@ Action::Action(const ActionOptions&ao):
...
@@ -93,7 +90,6 @@ Action::Action(const ActionOptions&ao):
else
if
(
srestart
==
"AUTO"
)
{}
else
if
(
srestart
==
"AUTO"
)
{}
else
error
(
"RESTART should be either YES, NO, or AUTO"
);
else
error
(
"RESTART should be either YES, NO, or AUTO"
);
}
}
>>>>>>>
v2
.1
-
per
-
action
-
restart
}
}
Action
::~
Action
(){
Action
::~
Action
(){
...
...
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