Skip to content

Commit a9cb959

Browse files
author
Nora Buschauer
committed
[Util] Implicitly delete the copy constructor, define default constructor and move constructor for 'SearchConfiguration' class
1 parent 2f1f061 commit a9cb959

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

include/mutable/util/HeuristicSearch.hpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -581,6 +581,9 @@ concept SearchConfigConcept =
581581
template<SearchConfigConcept StaticConfig>
582582
struct SearchConfiguration
583583
{
584+
SearchConfiguration() = default;
585+
SearchConfiguration(SearchConfiguration&&) = default;
586+
584587
/** Upper bound on the cost of plans to consider. More costly plans will be pruned. Defaults to NaN, expressing
585588
* that no bound is given. (Usually, the search algorithm will then initialize its internal upper bound with
586589
* infinity.) */

0 commit comments

Comments
 (0)