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
次について
{a. {b(X)}}, c(X). rule1@@ {$p1[], {$p2[|*X]}} :- {$p2[|*X]}.
通常実行の結果:
1: c(L0). {a. {b(L0). }. }. @4. c(L0). {a. {b(L0). }. }. @4.
期待される結果:
1: c(L0). {a. {b(L0). }. }. @4. ---->rule1 2: c(L0). {b(L0). }. @4. c(L0). {b(L0). }. @4.
二行目をrule1@@ {$p1[], {$p2[X]}} :- {$p2[X]}.(リンク束を含まない)に置き換えると期待する結果が得られる.
rule1@@ {$p1[], {$p2[X]}} :- {$p2[X]}.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
次について
通常実行の結果:
期待される結果:
二行目を
rule1@@ {$p1[], {$p2[X]}} :- {$p2[X]}.
(リンク束を含まない)に置き換えると期待する結果が得られる.The text was updated successfully, but these errors were encountered: