gpt4 book ai didi

error-handling - 参数在序言中没有充分实例化

转载 作者:行者123 更新时间:2023-12-04 06:45:11 24 4
gpt4 key购买 nike

我正在尝试运行此代码,但每次使用此查询时都会收到此错误:gp174(P, S).
ERROR: >=/2: Arguments are not sufficiently instantiated.

这是我的代码:

call_option(B,S,C,E,P) :- 
0 =< S,
S =< E / 100,
P = -C * B.

call_option(B,S,C,E,P) :-
S >= E / 100,
P = (100 * S - E - C) * B.

gp173(P) :-
call_option(1, 7, 200, 300, P).

% butterfly strike p174.
butterfly(S, H) :-
H = P1 + 2*P2 + P3,
Buy = 1, Sell = -1,
call_option(Buy, S, 100, 500, P1),
call_option(Sell, S, 200, 300, P2),
call_option(Buy, S, 400, 100, P3).

% goal for butterfly strike

gp174(P,S) :-
P >= 0,
butterfly(S,P).

我该怎么办?
我应该在哪里加载我的 clpr 库?

最佳答案

我尝试使用 documented library 进行修改:

:- [library(clpr)].

call_option(B,S,C,E,P) :-
{0 =< S},
{S =< E / 100},
{P = -C * B}.

call_option(B,S,C,E,P) :-
{S >= E / 100},
{P = (100 * S - E - C) * B}.

gp173(P) :-
call_option(1, 7, 200, 300, P).

% butterfly strike p174.
butterfly(S, H) :-
{H = P1 + 2*P2 + P3,
Buy = 1, Sell = -1},
call_option(Buy, S, 100, 500, P1),
call_option(Sell, S, 200, 300, P2),
call_option(Buy, S, 400, 100, P3).

% goal for butterfly strike

gp174(P,S) :-
{P >= 0},
butterfly(S,P).

这是结果:
?- gp174(P,S).
{S=2.0+0.01*P, P=<100.0, _G56405= -300.0+P, P>=0.0} ;
{S=4.0-0.01*P, P=<100.0, _G59475= -100.0-P, _G59488=100.0+P, P>=0.0} ;
false.

HTH

关于error-handling - 参数在序言中没有充分实例化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12822281/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com