To try to come up with an example, let's say we set as our goal to completely automate a process X, which consists of 10 subprocesses. Let's say we fairly quickly automated steps 1-9, but the 10th is tricky.
But we now realize the 10th step was only really necessary for certain edge cases, which we now realize we are fine not handling. So we "if" them away and now have a process that is 100% automated, even though it is different from what we originally wanted to achieve.
I'm intrigued and would appreciate further examples/explanations too.
It's an interesting approach.
To try to come up with an example, let's say we set as our goal to completely automate a process X, which consists of 10 subprocesses. Let's say we fairly quickly automated steps 1-9, but the 10th is tricky.
But we now realize the 10th step was only really necessary for certain edge cases, which we now realize we are fine not handling. So we "if" them away and now have a process that is 100% automated, even though it is different from what we originally wanted to achieve.