checkau.m
来自「一个matlab的将军模型」· M 代码 · 共 25 行
M
25 行
function AfUg = checkAU(f,g)
% Evaluate the `computation tree logic (CTL)` expression "A f U g".
%
% Syntax:
% "AfUg = checkAU(f,g)"
%
% Description:
% Given a finite-state transition system and its reverse transition system
% stored in the global variables "GLOBAL_TRANSITION" and
% "GLOBAL_REV_TRANSITION" and the "region" objects "f" and "g", compute
% the region corresponding to the CTL expression "A f U g".
%
% Implementation:
% Use the CTL identity
%
% "A f U g = ~(E ~g U (~f & ~g)) & ~(EG ~g)"
%
% See Also:
% region,auto2xsys,reach,findSCCf,checkAF,checkAG,checkAR,checkAX,
% checkEF,checkEG,checkER,checkEU,checkEX
AfUg = ~checkEU(~g,~f & ~g) & ~checkEG(~g);
return
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?