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
80527498
There was an error fetching the commit references. Please try again later.
Commit
80527498
authored
7 years ago
by
Giovanni Bussi
Browse files
Options
Downloads
Plain Diff
Merge branch 'v2.3'
parents
03131bef
3e908ac5
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.travis.yml
+1
-1
1 addition, 1 deletion
.travis.yml
CHANGES/v2.3.txt
+2
-2
2 additions, 2 deletions
CHANGES/v2.3.txt
src/tools/IFile.cpp
+3
-1
3 additions, 1 deletion
src/tools/IFile.cpp
with
6 additions
and
4 deletions
.travis.yml
+
1
−
1
View file @
80527498
...
...
@@ -24,7 +24,7 @@ matrix:
-
os
:
linux
dist
:
trusty
sudo
:
required
env
:
CPPCHECK=yes CPPCHECK_VERSION=1.7
7
env
:
CPPCHECK=yes CPPCHECK_VERSION=1.7
8
# then check with different optimization flags
-
os
:
linux
dist
:
trusty
...
...
This diff is collapsed.
Click to expand it.
CHANGES/v2.3.txt
+
2
−
2
View file @
80527498
...
...
@@ -151,9 +151,9 @@ See branch \branch{v2.3} on git repository.
with a package manager such as MacPorts.
- Resolved problem with nan in \ref SMAC with SPECIESA and SPECIESB involving molecules that are the same
- PDB reader is now able to read files with dos newlines (see \issue{223}).
-
f
ix
a
bug in \ref CS2BACKBONE (v2.3.1) related to ring currents of HIS and TRP
-
F
ix
ed
bug in \ref CS2BACKBONE (v2.3.1) related to ring currents of HIS and TRP
- Fixed bug in if condition in \ref PCAVARS so that you can run with only one eigenvector defined in input
- Fixed bu
t
with timers in \ref sum_hills \issue{194}.
- Fixed bu
g
with timers in \ref sum_hills \issue{194}.
- Fixed bug when using \ref MOVINGRESTRAINT with periodic variables such as \ref TORSION \issue{225}.
- Fixed bug in \ref HBONDS that used to apear when you used DONORNS and ACCEPTORS with same numbers of atoms
- Fixed bug in \ref DISTANCES that appears when using BETWEEN and link cells.
...
...
This diff is collapsed.
Click to expand it.
src/tools/IFile.cpp
+
3
−
1
View file @
80527498
...
...
@@ -28,6 +28,7 @@
#include
"Tools.h"
#include
<cstdarg>
#include
<cstring>
#include
<cmath>
#include
<iostream>
#include
<string>
...
...
@@ -162,7 +163,8 @@ IFile& IFile::scanField(const std::string&name,int &x){
}
IFile
&
IFile
::
scanField
(
Value
*
val
){
double
ff
;
scanField
(
val
->
getName
(),
ff
);
double
ff
=
NAN
;
// this is to be sure a NAN value is replaced upon failure
scanField
(
val
->
getName
(),
ff
);
val
->
set
(
ff
);
if
(
FieldExist
(
"min_"
+
val
->
getName
()
)
){
std
::
string
min
,
max
;
...
...
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