Changeset 4414 for trunk/configs

Show
Ignore:
Timestamp:
08/09/08 03:50:38 (5 months ago)
Author:
pmoura
Message:

Updated the GNU Prolog config file to allow Logtalk to recognise as built-in predicates the finite domain solver built-in predicates.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/configs/gnu.config

    r4411 r4414  
    1212%  configuration file for GNU Prolog 1.3.0 (and later versions) 
    1313% 
    14 %  last updated: July 24, 2008 
     14%  last updated: August 9, 2008 
    1515% 
    1616%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 
     
    5555    functor(Pred, Functor, Arity), 
    5656    predicate_property(Functor/Arity, Prop). 
     57 
     58'$lgt_predicate_property'(Pred, built_in) :- 
     59    functor(Pred, Functor, Arity), 
     60    predicate_property(Functor/Arity, built_in_fd). 
    5761 
    5862