%%%%%%%%%      Initial Situation       %%%%%%%%%%
%%%%%%%%% FAULTS and OTHER EXCEPTIONS  %%%%%%%%%%
stuck(lm5,closed).
has_leak(fom3).
h(in_state(fom3,open),0).
has_leak(lom3).
h(in_state(lom3,open),0).
%%%%%%%%%%%%     GOALS     %%%%%%%%%%%%%

% Maneuver to be performed: minus_yaw

goal(T,fwd_rcs) :- time(T),
                   h(maneuver_of(minus_yaw,fwd_rcs),T).

goal(T,left_rcs) :- time(T),
                   h(maneuver_of(minus_yaw,left_rcs),T).

goal(T,right_rcs) :- time(T),
                   h(maneuver_of(minus_yaw,right_rcs),T).

