Skip to content
Snippets Groups Projects
Commit 4a79300d authored by Roman Tolchenov's avatar Roman Tolchenov
Browse files

Re #18779. removeTie unfix even there is no tie.

parent 77f62e83
No related branches found
No related tags found
No related merge requests found
......@@ -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.
......
......@@ -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();
......
......@@ -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) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment