Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
mantidproject
mantid
Commits
c242fe42
Unverified
Commit
c242fe42
authored
Oct 03, 2018
by
Nick Draper
Committed by
GitHub
Oct 03, 2018
Browse files
Merge pull request #23186 from mantidproject/23089_fitting_constraint_values_do_not_work
Solved fit constraints boundary problem Re #23089
parents
ba418a60
bd2fa016
Changes
2
Hide whitespace changes
Inline
Side-by-side
CMakeLists.txt
View file @
c242fe42
...
...
@@ -402,4 +402,4 @@ if ( ENABLE_CPACK )
include
(
CPack
)
# let people know what is coming out the other end - must be after cpack generates value for rpm
message
(
STATUS
"CPACK_PACKAGE_FILE_NAME =
${
CPACK_PACKAGE_FILE_NAME
}
"
)
endif
()
endif
()
\ No newline at end of file
qt/widgets/common/src/FitPropertyBrowser.cpp
View file @
c242fe42
...
...
@@ -2211,7 +2211,7 @@ void FitPropertyBrowser::addConstraint(int f, bool lo, bool up) {
if
(
!
h
)
return
;
double
x
=
m_doubleManager
->
value
(
parProp
);
double
x
=
parProp
->
valueText
().
toDouble
(
);
double
loBound
=
x
*
(
1
-
0.01
*
f
);
double
upBound
=
x
*
(
1
+
0.01
*
f
);
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment