Skip to content
This repository has been archived by the owner on Mar 12, 2020. It is now read-only.

Allow passing SutState directly to executeAction(...) #11

Closed
beatngu13 opened this issue Dec 20, 2018 · 1 comment
Closed

Allow passing SutState directly to executeAction(...) #11

beatngu13 opened this issue Dec 20, 2018 · 1 comment
Labels
enhancement New feature or request

Comments

@beatngu13
Copy link
Contributor

Instead of doing the following on the client side:

SutState beforeState = ...
Action action = ...
SutState afterState = ...
Set<Action> unexploredActions = ...
final State state = stateMachine.getState( beforeState, unexploredActions );
stateMachine.executeAction( state, action, afterState, unexploredActions );

Could we pass SutState directly?

SutState beforeState = ...
Action action = ...
SutState afterState = ...
Set<Action> unexploredActions = ...
stateMachine.executeAction( beforeState, action, afterState, unexploredActions );
@beatngu13 beatngu13 added the enhancement New feature or request label Dec 20, 2018
@tdauth
Copy link
Contributor

tdauth commented Dec 24, 2018

Done, see cc01245

@tdauth tdauth closed this as completed Dec 24, 2018
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
enhancement New feature or request
Development

No branches or pull requests

2 participants