Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
plumed2-fann
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
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
plumed2-fann
Commits
fe7c2bc0
There was an error fetching the commit references. Please try again later.
Commit
fe7c2bc0
authored
7 years ago
by
Giovanni Bussi
Browse files
Options
Downloads
Plain Diff
Merge branch 'v2.3' into v2.4
parents
4c92d806
53e3b6d1
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGES/v2.3.md
+1
-0
1 addition, 0 deletions
CHANGES/v2.3.md
src/core/ActionWithArguments.cpp
+4
-5
4 additions, 5 deletions
src/core/ActionWithArguments.cpp
with
5 additions
and
5 deletions
CHANGES/v2.3.md
+
1
−
0
View file @
fe7c2bc0
...
@@ -221,6 +221,7 @@ For developers:
...
@@ -221,6 +221,7 @@ For developers:
For users:
For users:
-
Fixed
`plumed partial_tempering`
to agree with GROMACS conventions for choice of dihedrals (see
\i
ssue{337}).
-
Fixed
`plumed partial_tempering`
to agree with GROMACS conventions for choice of dihedrals (see
\i
ssue{337}).
Should be irrelevant for the vast majority of cases.
Should be irrelevant for the vast majority of cases.
-
Fixed small bug in regexp parses - the part outside the parentheses was just ignored.
For developers:
For developers:
-
Doxygen on travis-ci has been updated to 1.8.14.
-
Doxygen on travis-ci has been updated to 1.8.14.
...
...
This diff is collapsed.
Click to expand it.
src/core/ActionWithArguments.cpp
+
4
−
5
View file @
fe7c2bc0
...
@@ -66,14 +66,13 @@ bool ActionWithArguments::parseArgumentList(const std::string&key,int i,std::vec
...
@@ -66,14 +66,13 @@ bool ActionWithArguments::parseArgumentList(const std::string&key,int i,std::vec
void
ActionWithArguments
::
interpretArgumentList
(
const
std
::
vector
<
std
::
string
>&
c
,
std
::
vector
<
Value
*>&
arg
)
{
void
ActionWithArguments
::
interpretArgumentList
(
const
std
::
vector
<
std
::
string
>&
c
,
std
::
vector
<
Value
*>&
arg
)
{
for
(
unsigned
i
=
0
;
i
<
c
.
size
();
i
++
)
{
for
(
unsigned
i
=
0
;
i
<
c
.
size
();
i
++
)
{
// is a regex? then just interpret it. The signal is ()
// is a regex? then just interpret it. The signal is ()
std
::
size_t
found1
=
c
[
i
].
find
(
"("
);
if
(
!
c
[
i
].
compare
(
0
,
1
,
"("
))
{
if
(
found1
!=
std
::
string
::
npos
)
{
unsigned
l
=
c
[
i
].
length
();
std
::
size_t
found2
=
c
[
i
].
find
(
")"
,
found1
+
1
,
1
);
// find it again
if
(
!
c
[
i
].
compare
(
l
-
1
,
1
,
")"
))
{
if
(
found2
!=
std
::
string
::
npos
)
{
// start regex parsing
// start regex parsing
#ifdef __PLUMED_HAS_CREGEX
#ifdef __PLUMED_HAS_CREGEX
// take the string enclosed in quotes and put in round brackets
// take the string enclosed in quotes and put in round brackets
std
::
string
myregex
=
c
[
i
]
.
substr
(
found1
,
found2
-
found1
+
1
)
;
std
::
string
myregex
=
c
[
i
];
log
.
printf
(
" Evaluating regexp for this action: %s
\n
"
,
myregex
.
c_str
());
log
.
printf
(
" Evaluating regexp for this action: %s
\n
"
,
myregex
.
c_str
());
int
errcode
;
int
errcode
;
regex_t
*
preg
=
(
regex_t
*
)
malloc
(
sizeof
(
regex_t
));
// pointer to the regular expression
regex_t
*
preg
=
(
regex_t
*
)
malloc
(
sizeof
(
regex_t
));
// pointer to the regular expression
...
...
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