Я пытался написать простую программу на Прологе (я новичок ie и, очевидно, очень медленный ученик), и у меня было много проблем с этим. Я получаю следующие ошибки:
ERROR: No permission to modify static procedure `marital_status/2'
ERROR: Defined at c:/users/itsar/onedrive/documents/prolog/decision-tree.pl:1
ERROR: In:
ERROR: [12] asserta(marital_status(logan,single))
ERROR: [10] stable_risk(logan) at c:/users/itsar/onedrive/documents/prolog/decision-tree.pl:20
ERROR: [9] invest(logan,oil) at c:/users/itsar/onedrive/documents/prolog/decision-tree.pl:24
ERROR: [8] main(logan,oil) at c:/users/itsar/onedrive/documents/prolog/decision-tree.pl:6
ERROR: [7] <user>
ERROR:
ERROR: Note: some frames are missing due to last-call optimization.
ERROR: Re-run your program in debug mode (:- debug.) to get more detail.
Exception: (10) stable_risk(logan) ? creep
Exception: (9) invest(logan, _7506) ? creep
Exception: (8) main(_7504, _7506) ? creep
Если честно, я не совсем понимаю свой код (я пытаюсь получить какой-то код из работающего учебника) и не могу этого сделать Это. Код ниже.
marital_status(joe,married).
income(joe,60000).
mortgage(joe,20000).
age(joe,45).
main(X,Z):-var(X), write('what is your name?'),read(X), invest(X,Z),!.
main(X,Z):-invest(X,Z),!.
ask_marital_status(X,Y):-marital_status(X,Y).
ask_marital_status(X,Y):-not(marital_status(X,Y)), write('what is your marital status: married or single?'), read(Y), nl, asserta(marital_status(X,Y)).
ask_income(X,Y):-income(X,Y).
ask_income(X,Y):-not(income(X,Y)),write('what is your annual income?'), nl, read(Y), asserta(income(X,Y)).
ask_mortgage(X,Z):-mortgage(X,Z).
ask_mortgage(X,Z):-not(mortgage(X,Z)), write('what is your mortgage?'), read(Z), nl, asserta(mortgage(X,Z)).
ask_age(X,A):-age(X,A).
ask_age(X,A):-not(age(X,A)), write('what is your age?'), read(A), nl, asserta(age(X,A)).
moderate_risk(X):-ask_marital_status(X,Y), Y=married, ask_income(X,I), I=<50000, ask_mortgage(X,Z), Z=<50000,!.
moderate_risk(X):-ask_marital_status(X,M), M=married, ask_income(X,I), I=<50000,!.
moderate_risk(X):-ask_marital_status(X,M), M=single, ask_income(X,I), I=<35000,!.
stable_risk(X):-ask_marital_status(X,M), M=married, ask_income(X,I), I=<50000, ask_mortgage(X,Z), Z>50000,!.
stable_risk(X):-ask_marital_status(X,M), M=single, ask_income(X,I), I>35000, ask_age(X,A), A>50, !.
high_risk(X):-ask_marital_status(X,M), M=single, ask_income(X,I), I>35000, ask_age(X,A), A=<50, !.
invest(X,oil):-stable_risk(X),!.
invest(X,telecommunications):-moderate_risk(X),!.
invest(X,computers):-high_risk(X),!.
Я просто добавил случайные факты, потому что я получил ошибки, если их там не было. Введенные мной команды, приводящие к ошибке, следующие (в SWI-Prolog):
?- main(X,Z).
what is your name?logan.
what is your marital status: married or single?|: single.