We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
関連:#235
以下について
t. { {x(L1,L2)}. L1=L2 }. rule1@@ t, { {x(L1,L2)}. $p[L1,L2] } :- .
非決定的実行(--nd -t)の結果として次が得られる:
States 1::{t. {{x(L0,L0). }. }. @4. } Transitions init:1 1:: '# of States'(stored) = 1. '# of States'(end) = 1.
正しくは
t, {{x(L1,L2)}, L1=L2}
X = Y, {P} → {X = Y, P}
t, {{x(L1,L2), L1=L2}}
t, {{x(L0,L0)}}
rule1
(空)
の合計3状態が出力されてほしい
また,通常実行において初期状態の表示が正しくない:
1: t. {{x(L0,L0). }. }. @58. ----> 2: t. {{x(L0,L0). }. }. @58. t. {{x(L0,L0). }. }. @58.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
関連:#235
以下について
非決定的実行(--nd -t)の結果として次が得られる:
正しくは
t, {{x(L1,L2)}, L1=L2}
X = Y, {P} → {X = Y, P}
の適用結果:t, {{x(L1,L2), L1=L2}}
(またはこれと合同なt, {{x(L0,L0)}}
)rule1
の適用結果:(空)
の合計3状態が出力されてほしい
また,通常実行において初期状態の表示が正しくない:
The text was updated successfully, but these errors were encountered: