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
★unifyに失敗しているのにgoallistから消去しているのはなぜ??? pure-prover-gtrailで newgoallistの制御がおかしくて消えていく
(require :gtrail) (in-package :rubbish) (defparameter fkname "kqc/cake/cake006-sim1.kqc") ;; run (defparameter max-clauses 10000) (defparameter max-trials 1000) (defparameter max-steps 1000) (defparameter timeout-sec 10)
(logshow) の最後あたりをみよ。
何か変だ
The text was updated successfully, but these errors were encountered:
step-solverで (setq newgoal (step-solver goal))
(multiple-value-setq (newgoals cs ts) (gathercontra newgoal) ) (setq *contradictions* (append cs *contradictions*)) (setq valids (append ts valids)) (setq goallist (append (list newgoal) newgoals goallist))
; (setq goallist (append goallist newgoals)) (setq newgoal nil) (setq goallist goallist)
goallistをupdateしているが、どうもうまくいっていない。
そもそもどうなっていればよいのか、考え直すこと
Sorry, something went wrong.
sazare
No branches or pull requests
★unifyに失敗しているのにgoallistから消去しているのはなぜ???
pure-prover-gtrailで newgoallistの制御がおかしくて消えていく
(require :gtrail)
(in-package :rubbish)
(defparameter fkname "kqc/cake/cake006-sim1.kqc")
;; run
(defparameter max-clauses 10000)
(defparameter max-trials 1000)
(defparameter max-steps 1000)
(defparameter timeout-sec 10)
(logshow)
の最後あたりをみよ。
何か変だ
The text was updated successfully, but these errors were encountered: