add exhaustionstep and resumesearch concepts
[scpubgit/DX.git] / lib / DX / Step / MarkAsExhaustion.pm
CommitLineData
ae6f4d03 1package DX::Step::MarkAsExhaustion;
2
3use DX::Class;
4
5with 'DX::Role::Step';
6
7sub apply_to {
8 my ($self, $ss) = @_;
9 $ss->but(
10 is_solution_state => 0,
11 is_exhaustion_state => 1,
12 next_step => undef,
13 );
14}
15
161;