Changeset 4263 for trunk/configs

Show
Ignore:
Timestamp:
05/15/08 07:37:46 (8 months ago)
Author:
pmoura
Message:

Modified the YAP config file to check the availability of the built-in predicate forall/2.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/configs/yap.config

    r4233 r4263  
    66%  configuration file for YAP Prolog 5.1.2 and later versions 
    77% 
    8 %  last updated: April 10, 2008 
     8%  last updated: May 15, 2008 
    99% 
    1010%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 
     
    111111% forall(+callable, +callble) -- built-in 
    112112 
     113:- if(\+ predicate_property(forall(_, _), built_in)). 
    113114forall(Generate, Test) :- 
    114115    \+ (call(Generate), \+ call(Test)). 
     116:- endif. 
    115117 
    116118