SWI-Prolog:错误:是/ 2:参数没有充分实例化

时间:2010-07-21 12:57:30

标签: prolog instantiation-error

我正在尝试创建一个程序,用于打印一个区间内有多少平滑数字。代码的一部分在这里:

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可以创建从2B的所有素数。

例如,如果B = 11,则为FilPrimes = [2,3,5,7,11]

当我在SWI-Prolog中呼叫countsmooth?- 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

1 个答案:

答案 0 :(得分:1)

我真的很抱歉。我一整天都在努力找出出了什么问题,最后我在同一个地方看到了我写过“FilPrimes”和其他一些地方的“Filprimes”。

我是个白痴!