small cleaning.

This commit is contained in:
Vítor Santos Costa 2014-08-20 09:58:33 -05:00
parent 0f1b47f860
commit 109597ab91
5 changed files with 11 additions and 0 deletions

View File

@ -10,6 +10,7 @@
:- yap_flag(unknown,error). :- yap_flag(unknown,error).
:- ensure_loaded(actionrules). :- ensure_loaded(actionrules).
:- use_module(library(lists)).
:- op(1200,fy,[delay]). :- op(1200,fy,[delay]).
:- op(1150,xfy,[?]). :- op(1150,xfy,[?]).
:- op(560,xfy,[..,to,downto]). :- op(560,xfy,[..,to,downto]).

View File

@ -48,6 +48,7 @@
clpbn_tabled_dynamic/1 clpbn_tabled_dynamic/1
]). ]).
:- dynamic '$aleph_global'/2.
% %
% Tell Aleph not to use default solver during saturation % Tell Aleph not to use default solver during saturation
% %

View File

@ -12,8 +12,12 @@
* but entirely at your own risk. * but entirely at your own risk.
*/ */
:- ensure_loaded( xml_utilities ). :- ensure_loaded( xml_utilities ).
:- use_module(library(lists)).
/* xml_to_document( +Controls, +XML, ?Document ) translates the list of /* xml_to_document( +Controls, +XML, ?Document ) translates the list of
* character codes XML into the Prolog term Document. Controls is a list * character codes XML into the Prolog term Document. Controls is a list
* of terms controlling the treatment of layout characters and character * of terms controlling the treatment of layout characters and character

View File

@ -13,6 +13,8 @@
*/ */
:- ensure_loaded( xml_utilities ). :- ensure_loaded( xml_utilities ).
:- use_module(library(lists)).
/* document_generation( +Format, +Document ) is a DCG generating Document /* document_generation( +Format, +Document ) is a DCG generating Document
* as a list of character codes. Format is true|false defining whether layouts, * as a list of character codes. Format is true|false defining whether layouts,

View File

@ -12,6 +12,9 @@
* but entirely at your own risk. * but entirely at your own risk.
*/ */
:- use_module(library(lists)).
% Entity and Namespace map operations: these maps are usually quite small, so % Entity and Namespace map operations: these maps are usually quite small, so
% a linear list lookup is okay. They could be substituted by a logarithmic % a linear list lookup is okay. They could be substituted by a logarithmic
% data structure - in extremis. % data structure - in extremis.