reset method
reset() is a function that resets the _results variable to a new
instance of the Results class and resets the commandCaller variable
to a new instance of the CommandCaller class
Implementation
void reset() {
_results = Results();
_commandCaller = CommandCaller(shape);
}