Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MAINT: Add assignment operators for Input and Parameter classes of solvers #3049

Merged
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,7 @@ class DAAL_EXPORT Input : public optimization_solver::iterative_solver::Input
typedef optimization_solver::iterative_solver::Input super;
Input();
Input(const Input & other);
Input & operator=(const Input & other);

using super::set;
using super::get;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,10 @@ services::Status Parameter::check() const

Input::Input() {}
Input::Input(const Input & other) {}
Input & Input::operator=(const Input & other)
{
return *this;
};

data_management::NumericTablePtr Input::get(OptionalDataId id) const
{
Expand Down
Loading