File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change 1
- // SPDX-FileCopyrightText: 2017 - 2024 The Ginkgo authors
1
+ // SPDX-FileCopyrightText: 2017 - 2025 The Ginkgo authors
2
2
//
3
3
// SPDX-License-Identifier: BSD-3-Clause
4
4
@@ -96,7 +96,6 @@ Ir<ValueType>& Ir<ValueType>::operator=(const Ir& other)
96
96
this ->parameters_ = other.parameters_ ;
97
97
this ->set_solver (other.get_solver ());
98
98
this ->set_relaxation_factor (other.relaxation_factor_ );
99
- parameters_ = other.parameters_ ;
100
99
}
101
100
return *this ;
102
101
}
@@ -114,7 +113,6 @@ Ir<ValueType>& Ir<ValueType>::operator=(Ir&& other)
114
113
this ->set_relaxation_factor (other.relaxation_factor_ );
115
114
other.set_solver (nullptr );
116
115
other.set_relaxation_factor (nullptr );
117
- parameters_ = other.parameters_ ;
118
116
}
119
117
return *this ;
120
118
}
You can’t perform that action at this time.
0 commit comments