Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
qbox
qbox-public
Commits
ce047a09
Commit
ce047a09
authored
Jan 09, 2022
by
Francois Gygi
Browse files
Merge branch 'develop'
parents
9a87cfd2
b06d3a34
Changes
4
Hide whitespace changes
Inline
Side-by-side
src/BOSampleStepper.cpp
View file @
ce047a09
...
...
@@ -510,7 +510,6 @@ void BOSampleStepper::step(int niter)
}
}
cout
<<
"</atomset>"
<<
endl
;
cout
<<
"<rcm> "
<<
atoms
.
rcm
()
<<
"</rcm>"
<<
endl
;
cout
<<
setprecision
(
6
);
cout
<<
"<unit_cell_a_norm> "
<<
atoms
.
cell
().
a_norm
(
0
)
<<
" </unit_cell_a_norm>"
<<
endl
;
...
...
src/CPSampleStepper.cpp
View file @
ce047a09
...
...
@@ -196,7 +196,6 @@ void CPSampleStepper::step(int niter)
}
}
cout
<<
"</atomset>"
<<
endl
;
cout
<<
"<rcm> "
<<
atoms
.
rcm
()
<<
"</rcm>"
<<
endl
;
}
if
(
s_
.
constraints
.
size
()
>
0
)
...
...
src/StatusCmd.h
View file @
ce047a09
...
...
@@ -71,8 +71,11 @@ class StatusCmd : public Cmd
s
->
wfv
->
info
(
cout
,
"wfv"
);
if
(
ui
->
onpe0
()
)
{
cout
<<
"<rcm> "
<<
s
->
atoms
.
rcm
()
<<
" </rcm>"
<<
endl
;
cout
<<
"<vcm> "
<<
s
->
atoms
.
vcm
()
<<
" </vcm>"
<<
endl
;
setprecision
(
8
);
cout
<<
"<rcm> "
<<
setprecision
(
8
)
<<
s
->
atoms
.
rcm
()
<<
" </rcm>"
<<
endl
;
cout
<<
"<vcm> "
<<
setprecision
(
8
)
<<
s
->
atoms
.
vcm
()
<<
" </vcm>"
<<
endl
;
}
return
0
;
}
...
...
src/release.cpp
View file @
ce047a09
...
...
@@ -19,5 +19,5 @@
#include
"release.h"
std
::
string
release
(
void
)
{
return
std
::
string
(
"rel1_74_0"
);
return
std
::
string
(
"rel1_74_0
dev
"
);
}
Write
Preview
Supports
Markdown
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