I have an algorithm that is rather difficult to understand, so I have written it down in the form of single assignments to const variables, with lots of commentary in between explaining why I'm doing that. Whenever the algorithm rejects a solution, a return statement leads out.
The customer, on the other hand, requested that the method have no "early" return statements, which is a somewhat conflicting goal, as the only way I could use my const variables in this scenario is lots of nested if blocks.
Is there an elegant solution that would allow me to get the best of both worlds -- variables that are valid if they are in scope and still a somewhat flat hierarchy?
EDIT: The customer also frowns upon exceptions and goto. This is a hot path, implementing a decision tree that determines whether a proposed solution from a solution generator is both acceptable and better than the previous solution.
The scoping with nested ifs would look like
if(fulfills_condition_1(sol)) {
double const some_quality = quality_function_1(sol);
double const normalized_quality = normalize_quality_1(some_quality);
if(fulfills_condition_2(normalized_quality) {
{
double const another_quality = ...
}
}
My current approach looks like
if(!fulfills_condition_1(sol))
return;
double const some_quality = quality_function_1(sol);
double const normalized_quality = normalize_quality_1(some_quality);
if(!fulfills_condition_2(normalized_quality) {
return;
...
update_current_solution(sol);
return" types are annoying. If your method makes its arguments and return values clear, the details of the implementation should not be a concern. This knee-jerk approach to rejecting a valid method of implementing is often from paranoia. You use unit tests should exercise all branches and verify that they work correctly. – tadman Nov 19 '12 at 16:25try catch, throw on failure, catch and return. Problem fixed. – pmr Nov 19 '12 at 16:26returnline can call whatever lambda has been assigned? I doubt you're allowed C++11, though. – tadman Nov 19 '12 at 16:28