Changeset 4414

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.

Location:
trunk
Files:
2 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 
  • trunk/RELEASE_NOTES.txt

    r4412 r4414  
    1919    categories. This allows module predicates to be called using implicit  
    2020    qualification, improving readability. 
     21 
     22    Updated the GNU Prolog config file to allow Logtalk to recognise as  
     23    built-in predicates the finite domain solver built-in predicates. 
    2124 
    2225