Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
mantid
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
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
mantidproject
mantid
Commits
4a79300d
Commit
4a79300d
authored
8 years ago
by
Roman Tolchenov
Browse files
Options
Downloads
Patches
Plain Diff
Re #18779. removeTie unfix even there is no tie.
parent
77f62e83
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
Framework/API/src/IFunction.cpp
+1
-3
1 addition, 3 deletions
Framework/API/src/IFunction.cpp
Framework/API/src/ParamFunction.cpp
+2
-2
2 additions, 2 deletions
Framework/API/src/ParamFunction.cpp
Framework/API/test/ParameterTieTest.h
+34
-0
34 additions, 0 deletions
Framework/API/test/ParameterTieTest.h
with
37 additions
and
5 deletions
Framework/API/src/IFunction.cpp
+
1
−
3
View file @
4a79300d
...
...
@@ -1165,9 +1165,7 @@ void IFunction::fixAll() {
/// Free all parameters
void
IFunction
::
unfixAll
()
{
for
(
size_t
i
=
0
;
i
<
nParams
();
++
i
)
{
fix
(
i
);
}
clearTies
();
}
/// Get number of domains required by this function.
...
...
This diff is collapsed.
Click to expand it.
Framework/API/src/ParamFunction.cpp
+
2
−
2
View file @
4a79300d
...
...
@@ -324,6 +324,7 @@ bool ParamFunction::removeTie(size_t i) {
unfix
(
i
);
return
true
;
}
unfix
(
i
);
return
false
;
}
...
...
@@ -345,8 +346,7 @@ ParameterTie *ParamFunction::getTie(size_t i) const {
/** Remove all ties
*/
void
ParamFunction
::
clearTies
()
{
for
(
auto
&
tie
:
m_ties
)
{
size_t
i
=
getParameterIndex
(
*
tie
);
for
(
size_t
i
=
0
;
i
<
nParams
();
++
i
)
{
unfix
(
i
);
}
m_ties
.
clear
();
...
...
This diff is collapsed.
Click to expand it.
Framework/API/test/ParameterTieTest.h
+
34
−
0
View file @
4a79300d
...
...
@@ -222,6 +222,40 @@ public:
TS_ASSERT_THROWS
(
tie
.
set
(
""
),
std
::
runtime_error
);
}
void
test_untie_fixed
()
{
ParameterTieTest_Linear
bk
;
bk
.
fix
(
0
);
TS_ASSERT
(
bk
.
isFixed
(
0
));
bk
.
removeTie
(
"a"
);
TS_ASSERT
(
!
bk
.
isFixed
(
0
));
bk
.
fix
(
0
);
bk
.
fix
(
1
);
bk
.
clearTies
();
TS_ASSERT
(
!
bk
.
isFixed
(
0
));
TS_ASSERT
(
!
bk
.
isFixed
(
1
));
}
void
test_untie_fixed_composite
()
{
CompositeFunction_sptr
mf
=
CompositeFunction_sptr
(
new
CompositeFunction
);
IFunction_sptr
bk1
=
IFunction_sptr
(
new
ParameterTieTest_Linear
());
IFunction_sptr
bk2
=
IFunction_sptr
(
new
ParameterTieTest_Linear
());
mf
->
addFunction
(
bk1
);
mf
->
addFunction
(
bk2
);
mf
->
fix
(
0
);
mf
->
fix
(
3
);
TS_ASSERT
(
mf
->
isFixed
(
0
));
TS_ASSERT
(
mf
->
isFixed
(
3
));
mf
->
removeTie
(
"f0.a"
);
mf
->
removeTie
(
"f1.b"
);
TS_ASSERT
(
!
mf
->
isFixed
(
0
));
TS_ASSERT
(
!
mf
->
isFixed
(
3
));
mf
->
fix
(
0
);
mf
->
fix
(
3
);
mf
->
clearTies
();
TS_ASSERT
(
!
mf
->
isFixed
(
0
));
TS_ASSERT
(
!
mf
->
isFixed
(
3
));
}
private
:
void
mustThrow1
(
CompositeFunction
*
fun
)
{
ParameterTie
tie
(
fun
,
"sig"
,
"0"
);
}
void
mustThrow2
(
CompositeFunction
*
fun
)
{
...
...
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