get_task_steps(feasibility,PrologCode,Msg) :-
b_top_level_operation(OpName),
operation_name_not_yet_covered(OpName),
\+ feasible_operation_cache(OpName,_), % not yet computed
PrologCode = enabling_analysis:feasible_operation(OpName,_), % will compute the cache
ajoin(['feasibility of ',OpName],Msg).
get_task_steps(enabling(ExtraTimeOut),PrologCode,Msg) :- %print(get_task(ExtraTimeOut)),nl,
init_or_op(OpName), %print(op(OpName)),nl,
\+ cbc_enable_analysis_cache(OpName,_,_,ExtraTimeOut), % not yet computed
PrologCode = findall(1,enabling_analysis:cbc_enable_analysis(OpName,_,_,ExtraTimeOut),_),
ajoin(['enabling of ',OpName],Msg).
get_task_steps(cbc_tests(EventSel,TargetPredicateStr,MaxLength,Filename,Final),PrologCode,Msg) :-
cbc_gen_test_cases_task_step(EventSel,TargetPredicateStr,MaxLength,Filename, Final, Depth, PrologCode),
ajoin(['cbc_tests for depth ',Depth],Msg).