区間内にある滑らかな数を出力するプログラムを作成しようとしています。コードの一部はここにあります:
countsmooth(_, [], _, _, Count) :-
Count is 0.
countsmooth(X, [H|T], Min, Max, Count) :-
( Y is X*H,
Y =< Max
-> ( Y >= Min
-> NewX is X*H,
countsmooth(X, T, Min, Max, NCount1),
countsmooth(NewX, [H|T], Min, Max, NCount2),
Count is (1+NCount1+NCount2)
; NewX is X*H,
countsmooth(X, T, Min, Max, NCount1),
countsmooth(NewX, [H|T], Min, Max, NCount2),
Count is (NCount1+NCount2)
)
; Count is 0
).
smooth(B, I, J, Smooths) :-
( B =< 1
-> Smooths is 0
; I =:= 1
-> primes(B, FilPrimes),
countsmooth(1, Filprimes, I, J, Count),
Smooths is (1+Count)
; primes(B, FilPrimes),
countsmooth(1, Filprimes, I, J, Count),
Smooths is Count
).
からまでprimes
のすべての素数を作成する述語もあります。2
B
たとえば、の場合B = 11
、FilPrimes = [2,3,5,7,11]
。
私がSWIを呼び出すときcountsmooth
-のようなProlog
?- countsmooth(1, [2,3,5,7,11,13,17,19,23], 1, 100000000, Count)
。結果が出ます。
しかし、私が電話をかけるとsmooth
、?- smooth(2,100,10000,Smooths).
次のエラーが発生します。
ERROR: is/2: Arguments are not sufficiently instantiated